:root {
  --primary-color-dark: #8D8576;
  --input-bg: rgba(219, 219, 219, 0.14);
  --page-bg: #ffffff;
  --card-bg: #e9e9e9;
  --primary-color: #08152c;
  --primary-light-color: #f2f6fd;
  --secondary-color: #c39900;
  --secondary-color-light: #fff9e6;
  --heading-color: var(--primary-color);
  --content-color: #565d6d;
  --sky-color: #fafafb;
  --border-color: #ced4da;
  --white-color: #ffffff;
  --black-color: #000000;
  --box-shadow:0px 0px 1px #171a1f0d, 0px 0px 2px #171a1f14;
  --radius: 6px;
  --radius-lg: 20px;
  --radius-md: 16px;
  --radius-sm: 4px;
  --primary-font: "Merriweather", serif;
  --secondary-font: "Open Sans", sans-serif;
  --heading-font: var(--primary-font);
  --content-font: var(--secondary-font);
}

/* Color bindings */
.primary-bg {
  background: var(--primary-color);
}

.primary-light-bg {
  background: var(--primary-light-color);
}

.secondary-bg {
  background: var(--secondary-color);
}

.secondary-light-bg {
  background: var(--secondary-color-light);
}

.sky-bg {
  background: var(--sky-color);
}

.white-bg {
  background: var(--white-color);
}

.black-bg {
  background: var(--black-color);
}

.primary-color {
  color: var(--primary-color);
}

.primary-light-color {
  color: var(--primary-light-color);
}

.secondary-color {
  color: var(--secondary-color);
}

.secondary-light-color {
  color: var(--secondary-color-light);
}

.sky-color {
  color: var(--sky-color);
}

.heading-color {
  color: var(--heading-color);
}

.content-color {
  color: var(--content-color);
}

.border {
  border: 1px solid var(--border-color) !important;
}

.border-color {
  border-color: var(--border-color) !important;
}

.white-color {
  color: var(--white-color);
}

.black-color {
  color: var(--black-color);
}

.content-xl {
  font-size: clamp(1.25rem, 1.189rem + 0.26vw, 1.5rem);
}

.content-lg {
  font-size: clamp(1.125rem, 1.095rem + 0.13vw, 1.25rem);
}

.content-md {
  font-size: clamp(1rem, 0.97rem + 0.13vw, 1.125rem);
}

.content-sm {
  font-size: 1rem;
}

.content-xs {
  font-size: 0.9rem;
  line-height: 1.4;
}

.box-shadow {
  box-shadow: var(--box-shadow);
}

.radius {
  border-radius: 6px;
}

.radius-lg {
  border-radius: 20px;
}

.radius-md {
  border-radius: 16px;
}

.radius-sm {
  border-radius: 4px;
}

* {
  margin: 0;
  padding: 0;
  outline: none;
}

html {
  height: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  overflow-x: hidden;
  height: 100%;
  width: 100%;
  background: white;
  position: relative;
  font-size: 1rem;
  line-height: 1.7;
  font-weight: normal;
  font-family: var(--content-font);
  color: var(--content-color);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::-moz-selection {
  color: white;
  background: var(--primary-color);
  opacity: 0.5;
}

::selection {
  color: white;
  background: var(--primary-color);
  opacity: 0.5;
}

a {
  text-decoration: none;
  outline: none;
}
a:hover {
  text-decoration: none;
}

ul,
ol {
  margin-bottom: 30px;
}
ul li,
ol li {
  margin-bottom: 0.6em;
  position: relative;
}
ul li::marker,
ol li::marker {
  color: var(--primary-color);
}
ul li:last-child,
ol li:last-child {
  margin-bottom: 0;
}
ul:last-child,
ol:last-child {
  margin-bottom: 0;
}

ol li {
  list-style: decimal;
}
ol li::marker {
  color: var(--content-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  font-family: var(--heading-font);
  line-height: 1.3;
  color: var(--heading-color);
  letter-spacing: 0;
  margin: 0 0 12px 0;
  padding: 0;
  position: relative;
}
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
  margin-bottom: 0;
}

h1,
.title-h1 {
  font-size: clamp(1.75rem, 1.083rem + 2.85vw, 4.5rem);
  font-weight: 700;
}

h2,
.title-h2 {
  font-size: clamp(1.625rem, 1.291rem + 1.42vw, 3rem);
  line-height: 1.15;
}

h3, .title-h3 {
  font-size: clamp(1.5rem, 1.348rem + 0.65vw, 2.125rem);
}

h4, .title-h4 {
  font-size: clamp(1.375rem, 1.284rem + 0.39vw, 1.75rem);
}

h5, .title-h5 {
  font-size: clamp(1.25rem, 1.189rem + 0.26vw, 1.5rem);
}

h6, .title-h6 {
  font-size: clamp(1.125rem, 1.064rem + 0.26vw, 1.375rem);
}

p {
  margin-bottom: 1.8em;
}
p:last-child {
  margin: 0;
}
p a {
  color: var(--primary-color);
}
p a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

blockquote {
  padding: 45px 35px 45px 56px;
  margin-bottom: 30px;
  max-width: 100%;
  color: var(--content-color);
  background: var(--secondary-color-light);
  position: relative;
}
@media all and (max-width: 575px) {
  blockquote {
    padding: 20px 20px 20px 43px;
    margin-bottom: 20px;
  }
}
blockquote::before {
  content: "";
  position: absolute;
  top: 45px;
  bottom: 45px;
  left: 30px;
  width: 4px;
  background: var(--primary-color);
}
@media all and (max-width: 575px) {
  blockquote::before {
    top: 22px;
    bottom: 22px;
    width: 3px;
    left: 20px;
  }
}

figure {
  margin: 0;
}
figure img {
  width: 100%;
  height: auto;
}

img {
  max-width: 100%;
}

.container {
  --bs-gutter-x: 40px;
}
@media (min-width: 1200px) {
  .container {
    max-width: 1064px;
  }
}
@media all and (max-width: 1199px) {
  .container {
    --bs-gutter-x: 32px;
  }
}

.row {
  --bs-gutter-x: 32px;
}

section {
  padding-top: clamp(3.125rem, 2.215rem + 3.88vw, 6.875rem);
  padding-bottom: clamp(3.125rem, 2.215rem + 3.88vw, 6.875rem);
}

.main-wrapper {
  padding-top: 120px;
}
@media all and (max-width: 1199px) {
  .main-wrapper {
    padding-top: 100px;
  }
}
@media all and (max-width: 575px) {
  .main-wrapper {
    padding-top: 74px;
  }
}

img.alignright {
  float: right;
  margin: 0 0 1em 1em;
}

img.alignleft {
  float: left;
  margin: 0 1em 1em 0;
}

img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

a img.alignright {
  float: right;
  margin: 0 0 1em 1em;
}

a img.alignleft {
  float: left;
  margin: 0 1em 1em 0;
}

a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.btn, input[type=submit] {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
  font-family: var(--content-font);
  padding: 11px 24px;
  background: var(--primary-color);
  border: 1px solid transparent;
  color: var(--white-color);
  display: inline-block;
  border-radius: var(--radius-sm);
  vertical-align: baseline;
  text-transform: capitalize;
  box-shadow: none;
  transition: 0.3s all;
}
@media all and (max-width: 1199px) {
  .btn, input[type=submit] {
    font-size: 0.9rem;
  }
}
.btn:hover, input[type=submit]:hover, .btn:focus, input[type=submit]:focus, .btn:active, input[type=submit]:active, .btn:focus-visible, input[type=submit]:focus-visible {
  background: var(--secondary-color) !important;
  color: var(--white-color) !important;
  box-shadow: none !important;
  border-color: transparent !important;
}
.btn-secondary {
  background: var(--secondary-color);
  color: var(--white-color);
}
.btn-secondary:hover, .btn-secondary:focus, .btn-secondary:active, .btn-secondary:focus-visible {
  background: var(--primary-color) !important;
  color: var(--white-color) !important;
  box-shadow: none !important;
}
.btn-outline {
  background: transparent;
  color: var(--secondary-color);
  border-color: var(--secondary-color);
}
.btn.disabled, input.disabled[type=submit], .btn:disabled, input[type=submit]:disabled {
  opacity: 0.3;
  pointer-events: none;
  background: var(--primary-color);
  color: var(--white-color);
  border-color: transparent;
  box-shadow: none;
}

input[type=submit]:hover {
  background-color: var(--primary-color);
}

textarea, select, input[type=week], input[type=time], input[type=month], input[type=datetime-local], input[type=datetime], input[type=date], input[type=color], input[type=url], input[type=text], input[type=tel], input[type=search], input[type=password], input[type=select], input[type=number], input[type=email] {
  width: 100%;
  height: 48px;
  border: 1px solid #dee1e6;
  background: var(--white-color);
  padding: 0 12px;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  font-family: var(--content-font);
  color: var(--content-color);
  transition: 0.3s ease-in-out;
  outline: none;
  position: relative;
}
@media all and (max-width: 991px) {
  textarea, select, input[type=week], input[type=time], input[type=month], input[type=datetime-local], input[type=datetime], input[type=date], input[type=color], input[type=url], input[type=text], input[type=tel], input[type=search], input[type=password], input[type=select], input[type=number], input[type=email] {
    height: 44px;
  }
}

textarea:focus, select:focus, input[type=week]:focus, input[type=time]:focus, input[type=month]:focus, input[type=datetime-local]:focus, input[type=datetime]:focus, input[type=date]:focus, input[type=color]:focus, input[type=url]:focus, input[type=text]:focus, input[type=tel]:focus, input[type=search]:focus, input[type=password]:focus, input[type=select]:focus, input[type=number]:focus, input[type=email]:focus {
  color: var(--primary-color) !important;
}

input[type=email]:focus {
  border: 1px solid var(--primary-color) !important;
}

input[type=number]:focus {
  border: 1px solid var(--primary-color) !important;
}

input[type=select]:focus {
  border: 1px solid var(--primary-color) !important;
}

input[type=password]:focus {
  border: 1px solid var(--primary-color) !important;
}

input[type=search]:focus {
  border: 1px solid var(--primary-color) !important;
}

input[type=tel]:focus {
  border: 1px solid var(--primary-color) !important;
}

input[type=text]:focus {
  border: 1px solid var(--primary-color) !important;
}

input[type=url]:focus {
  border: 1px solid var(--primary-color) !important;
}

input[type=color]:focus {
  border: 1px solid var(--primary-color) !important;
}

input[type=date]:focus {
  border: 1px solid var(--primary-color) !important;
}

input[type=datetime]:focus {
  border: 1px solid var(--primary-color) !important;
}

input[type=datetime-local]:focus {
  border: 1px solid var(--primary-color) !important;
}

input[type=month]:focus {
  border: 1px solid var(--primary-color) !important;
}

input[type=time]:focus {
  border: 1px solid var(--primary-color) !important;
}

input[type=week]:focus {
  border: 1px solid var(--primary-color) !important;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url(../images/select-caret-down.svg);
  background-repeat: no-repeat;
  background-position: right 18px center;
}
select:focus {
  border: 1px solid var(--primary-color) !important;
}

textarea {
  height: 120px;
  resize: none;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
}
textarea:focus {
  border-color: var(--primary-color);
}
@media all and (max-width: 991px) {
  textarea {
    height: 100px;
  }
}

input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: -9999px !important;
}
input[type=checkbox] + label {
  padding: 0 0 0 20px !important;
  padding-left: 30px !important;
  color: var(--primary-color) !important;
  display: inline-block !important;
  max-width: inherit !important;
  margin: 0px 10px 0 0 !important;
  font-size: 1rem !important;
  font-weight: 400 !important;
  line-height: 22px !important;
  position: relative !important;
  letter-spacing: 0 !important;
  -webkit-user-select: none;
  /* Safari */
  /* IE 10 and IE 11 */
  -moz-user-select: none;
       user-select: none;
  /* Standard syntax */
}
input[type=checkbox] + label:before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border: 1px solid var(--input-bg);
  background: var(--input-bg);
  left: 0;
  top: 0px;
  border-radius: 0;
}
input[type=checkbox] + label:after {
  content: "";
  background: none !important;
  position: absolute;
  left: 8px;
  top: 4px;
  width: 5px;
  height: 9px;
  border: solid var(--primary-color);
  border-width: 0 2px 2px 0;
  transform: rotate(50deg);
  display: none;
}
input[type=checkbox]:checked + label {
  color: var(--primary-color) !important;
  font-weight: 400 !important;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}
input[type=checkbox]:checked + label:before {
  border-color: var(--primary-color);
}
input[type=checkbox]:checked + label:after {
  display: block;
}

input[type=radio] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: -9999px !important;
}
input[type=radio] + label {
  padding: 0 0 0 35px !important;
  color: var(--primary-color) !important;
  display: inline-block !important;
  max-width: inherit !important;
  margin: 0px 10px 0 0 !important;
  font-size: 1rem !important;
  font-weight: 400 !important;
  line-height: 22px !important;
  position: relative !important;
  letter-spacing: 0 !important;
  -webkit-user-select: none;
  /* Safari */
  /* IE 10 and IE 11 */
  -moz-user-select: none;
       user-select: none;
  /* Standard syntax */
}
input[type=radio] + label:before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border: 1px solid var(--input-bg);
  background: var(--input-bg);
  left: 0;
  top: 0px;
  border-radius: 55%;
}
input[type=radio] + label:after {
  content: "";
  position: absolute;
  width: 7.5px;
  height: 7.5px;
  background: var(--primary-color) !important;
  left: 6.25px;
  top: 6.25px;
  border-radius: 55%;
  display: none;
}
input[type=radio]:checked + label {
  color: var(--primary-color) !important;
  font-weight: 400 !important;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
input[type=radio]:checked + label:before {
  border-color: var(--primary-color) !important;
}
input[type=radio]:checked + label:after {
  display: block;
}

.input-wrapper {
  margin-bottom: 36px;
}
@media all and (max-width: 575px) {
  .input-wrapper {
    margin-bottom: 20px;
  }
}

/* ---------------- menu -----------------*/
.main-header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  transition: 0.3s all;
  background: none;
  padding: 20px 0;
  background: var(--white-color);
  box-shadow: 0px 0px 1px rgba(23, 26, 31, 0.0509803922), 0px 0px 2px rgba(23, 26, 31, 0.0784313725);
}
@media all and (max-width: 575px) {
  .main-header {
    padding: 12px 0;
  }
}
.main-header .container {
  max-width: 1600px;
}
.main-header .navbar {
  padding: 0;
  height: 100%;
}
.main-header .navbar-brand {
  max-width: 80px;
  padding: 0;
  margin-right: auto;
}
@media all and (max-width: 1199px) {
  .main-header .navbar-brand {
    max-width: 60px;
  }
}
@media all and (max-width: 575px) {
  .main-header .navbar-brand {
    max-width: 50px;
  }
}
.main-header .navbar-brand img {
  width: 100%;
}
.primary-nav ul {
  display: inline-block;
}
@media all and (max-width: 1199px) {
  .primary-nav ul {
    display: block;
  }
}
.primary-nav ul li {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  transition: 0.3s;
  margin: 0 24px;
}
@media all and (max-width: 1600px) {
  .primary-nav ul li {
    margin: 0 20px;
  }
}
@media all and (max-width: 1399px) {
  .primary-nav ul li {
    margin: 0 15px;
  }
}
@media all and (max-width: 1199px) {
  .primary-nav ul li {
    padding: 0;
    display: block;
    margin: 0 0 26px;
  }
}
.primary-nav ul li a {
  font-weight: 500;
  text-transform: capitalize;
  color: var(--primary-color);
  display: block;
  text-align: center;
  padding: 0;
  position: relative;
  transition: 0.3s all;
}
@media all and (max-width: 1399px) {
  .primary-nav ul li a {
    font-size: 0.9rem;
  }
}
@media all and (max-width: 1199px) {
  .primary-nav ul li a {
    text-align: left;
  }
}
.primary-nav ul li:hover a {
  color: var(--secondary-color);
}
.primary-nav ul li:first-child {
  margin-left: 0;
}
.primary-nav ul li:last-child {
  margin-right: 0;
}

/* ---------------- menu -----------------*/
/* ---------------- dorpdown menu -----------------*/
#myUL {
  padding: 0;
  list-style-type: none;
}
@media all and (max-width: 1199px) {
  #myUL {
    width: 100%;
    margin: 0 25px 0 0;
  }
}
#myUL .dropdown-menu {
  position: absolute;
  background: var(--card-bg);
  border: 0;
  border-radius: 0;
  padding: 13px 20px 20px;
  width: 220px;
  top: 58px;
  border-top: 3px solid var(--primary-color);
  display: none;
}
@media all and (max-width: 1199px) {
  #myUL .dropdown-menu {
    top: 0;
    padding: 16px;
    position: relative;
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border-top: 2px solid var(--primary-color);
    margin: 25px 0;
  }
}
#myUL .dropdown-menu::after {
  content: "";
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
  height: 36px;
  background: transparent;
}
@media all and (max-width: 1199px) {
  #myUL .dropdown-menu::after {
    display: none;
  }
}
#myUL .dropdown-menu li {
  padding: 0;
  margin: 0 0 15px 0;
  display: block;
}
@media all and (max-width: 575px) {
  #myUL .dropdown-menu li {
    margin: 0 0 10px 0;
  }
}
#myUL .dropdown-menu li a {
  font-size: 13px;
  line-height: 20px;
  letter-spacing: 0.2em;
  color: var(--primary-color);
  padding: 0;
  display: block;
  text-align: left;
}
@media all and (max-width: 575px) {
  #myUL .dropdown-menu li a {
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0.15em;
  }
}
#myUL .dropdown-menu li a:hover {
  color: var(--primary-color);
}
#myUL .dropdown-menu li:last-child {
  margin-bottom: 0;
}
#myUL .sub-menu .sub-menu {
  left: 100%;
  top: 0;
}
@media all and (max-width: 1199px) {
  #myUL .sub-menu .sub-menu {
    left: 0;
  }
}
#myUL .dropdown-toggle::after {
  display: none;
}

.menu-item-has-children {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  position: relative;
  padding: 0;
  padding-right: 35px !important;
}
@media all and (max-width: 1600px) {
  .menu-item-has-children {
    padding-right: 30px !important;
    margin-right: 10px !important;
  }
}
@media all and (max-width: 1399px) {
  .menu-item-has-children {
    padding-right: 30px !important;
    margin-right: 10px !important;
  }
}
@media all and (max-width: 1199px) {
  .menu-item-has-children {
    padding-right: 0 !important;
  }
}
.menu-item-has-children::after {
  content: "";
  background: url(../../images/down-arrow-blue.svg) no-repeat center/contain;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 2px;
  right: 5px;
  z-index: 6;
}
@media all and (max-width: 1199px) {
  .menu-item-has-children::after {
    top: 6px;
    right: 0;
  }
}
@media all and (max-width: 1199px) {
  .menu-item-has-children a {
    padding-right: 30px !important;
  }
}

/* ---------------- dorpdown menu -----------------*/
/* ---------------- hamburger -----------------*/
.hamburger-menu {
  display: none;
  padding: 12px 10px;
  background-color: rgba(141, 133, 118, 0.12);
  border-radius: var(--radius);
}
@media all and (max-width: 1199px) {
  .hamburger-menu {
    display: block;
  }
}
@media all and (max-width: 575px) {
  .hamburger-menu {
    padding: 10px 8px;
  }
}
.hamburger-menu span {
  background: var(--primary-color);
  height: 2px;
  width: 24px;
  margin-bottom: 7px;
  display: block;
  border-radius: 3px;
  transition: 0.3s;
}
@media all and (max-width: 575px) {
  .hamburger-menu span {
    width: 20px;
    margin-bottom: 5px;
  }
}
.hamburger-menu span:nth-child(3) {
  margin-bottom: 0px;
}

/* ---------------- hamburger -----------------*/
/* ---------------- menu overlay -----------------*/
.menu-overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
  display: none;
}
@media all and (max-width: 1199px) {
  .menu-overlay {
    display: block;
  }
}
.menu-overlay.collapse-overlay {
  opacity: 1;
  pointer-events: auto;
  transition: 0.3s;
}

/* ---------------- menu overlay -----------------*/
/* ---------------- collapse menu -----------------*/
@media all and (max-width: 1199px) {
  .mobile-scroll {
    height: 90%;
    overflow-y: auto;
    padding-right: 30px;
    padding-bottom: 30px;
  }
}

@media all and (max-width: 1199px) {
  .collapse-menu {
    position: fixed;
    top: 0;
    bottom: 0;
    left: auto;
    right: 0;
    z-index: 1050;
    transition: 0.3s;
    transform: translateX(100%);
    width: 330px;
    padding: 30px;
    background: var(--white-color);
    transition: 0.3s all;
  }
}
@media all and (max-width: 575px) {
  .collapse-menu {
    width: 270px;
    padding: 20px;
  }
}
.collapse-menu.collapse-menu-open {
  transform: translateX(0%);
}

.responsive-logo {
  display: none;
  position: relative;
}
@media all and (max-width: 1199px) {
  .responsive-logo {
    display: block;
    margin-bottom: 30px;
  }
}
@media all and (max-width: 575px) {
  .responsive-logo {
    margin-bottom: 20px;
  }
}
.responsive-logo a {
  display: block;
  max-width: 80px;
}
@media all and (max-width: 575px) {
  .responsive-logo a {
    max-width: 60px;
  }
}
.responsive-logo a img {
  width: 100%;
}

.colapse-close {
  width: 32px;
  height: 32px;
  position: absolute;
  right: 30px;
  top: 54px;
  display: none;
  transition: 0.3s all;
  background: var(--white-color);
  border: 1px solid var(--primary-color);
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
@media all and (max-width: 1199px) {
  .colapse-close {
    display: flex;
  }
}
@media all and (max-width: 575px) {
  .colapse-close {
    right: 20px;
    top: 34px;
  }
}
.colapse-close img {
  max-width: 14px;
}

.mega-menu-megamenu {
  font-family: var(--primary-font) !important;
}
.mega-menu-megamenu ul.mega-sub-menu {
  position: fixed !important;
  width: 100% !important;
  height: auto !important;
  background: white !important;
  left: 0 !important;
  top: 144px !important;
  padding: 45px 17% 45px !important;
  box-shadow: 0px 15px 30px rgba(103, 100, 100, 0.12) !important;
}
@media all and (max-width: 1600px) {
  .mega-menu-megamenu ul.mega-sub-menu {
    top: 145px !important;
    padding: 45px 6% 45px !important;
  }
}
@media all and (max-width: 1399px) {
  .mega-menu-megamenu ul.mega-sub-menu {
    top: 145px !important;
    padding: 45px 4% 45px !important;
  }
}
@media all and (max-width: 1199px) {
  .mega-menu-megamenu ul.mega-sub-menu {
    padding: 0px !important;
    position: relative !important;
    top: 0px !important;
    box-shadow: none !important;
  }
}
.mega-menu-megamenu ul.mega-sub-menu .rpwwt-widget {
  padding: 0 10px;
}
.mega-menu-megamenu ul.mega-sub-menu .rpwwt-widget ul {
  display: flex;
  justify-content: space-between;
}
@media all and (max-width: 1199px) {
  .mega-menu-megamenu ul.mega-sub-menu .rpwwt-widget ul {
    display: block;
  }
}
.mega-menu-megamenu ul.mega-sub-menu .rpwwt-widget ul li {
  background: white;
  border: 1px solid #E8E8E8;
  border-radius: 10px;
  padding: 20px;
  width: 234px;
  margin-bottom: 0;
  position: relative;
  text-align: left;
}
@media all and (max-width: 1199px) {
  .mega-menu-megamenu ul.mega-sub-menu .rpwwt-widget ul li {
    width: 100% !important;
  }
}
.mega-menu-megamenu ul.mega-sub-menu .rpwwt-widget ul li a img {
  height: 117px !important;
  width: 100%;
  margin: 0 0 14px;
}
.mega-menu-megamenu ul.mega-sub-menu .rpwwt-widget ul li a span.rpwwt-post-title {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: black;
  display: block;
  align-items: center;
  margin: 0 0 14px 0;
  text-align: left;
  font-family: var(--primary-font) !important;
}
.mega-menu-megamenu ul.mega-sub-menu .rpwwt-widget ul li .rpwwt-post-excerpt {
  font-weight: 300;
  font-size: 14px;
  line-height: 22px;
  font-family: var(--primary-font) !important;
}
.mega-menu-megamenu ul.mega-sub-menu .mega-menu-columns-2-of-5 {
  width: 35% !important;
  display: inline-block !important;
}
@media all and (max-width: 1199px) {
  .mega-menu-megamenu ul.mega-sub-menu .mega-menu-columns-2-of-5 {
    width: 100% !important;
    position: relative !important;
    top: 0 !important;
    padding: 16px !important;
    background: #F6F7F8 !important;
    border-radius: 8px !important;
    margin: 25px 0 !important;
    box-shadow: none !important;
  }
}
.mega-menu-megamenu ul.mega-sub-menu .mega-menu-columns-2-of-5 .mega-block-title {
  font-weight: 500 !important;
  font-size: 22px !important;
  line-height: 26px;
  margin: 0 0 30px 0 !important;
  position: relative !important;
  font-family: var(--primary-font) !important;
  text-transform: inherit !important;
  color: black !important;
  letter-spacing: -0.02em;
}
@media all and (max-width: 1199px) {
  .mega-menu-megamenu ul.mega-sub-menu .mega-menu-columns-2-of-5 .mega-block-title {
    font-size: 16px !important;
    line-height: 20px !important;
    text-transform: capitalize !important;
    margin: 0 0 20px 0 !important;
    padding-bottom: 0 !important;
  }
}
.mega-menu-megamenu ul.mega-sub-menu .mega-menu-columns-3-of-5 {
  width: 65% !important;
  display: inline-block !important;
}
@media all and (max-width: 1199px) {
  .mega-menu-megamenu ul.mega-sub-menu .mega-menu-columns-3-of-5 {
    width: 100% !important;
    display: none !important;
  }
}
.mega-menu-megamenu .menu-inner-menu-container ul.menu {
  font-size: 0;
}
.mega-menu-megamenu .menu-inner-menu-container ul.menu li {
  width: 50%;
  display: inline-block;
  margin: 0 0 18px 0;
  padding: 0;
}
@media all and (max-width: 1199px) {
  .mega-menu-megamenu .menu-inner-menu-container ul.menu li {
    width: 100% !important;
  }
}
.mega-menu-megamenu .menu-inner-menu-container ul.menu li a {
  font-size: 14px;
  line-height: 19px;
  font-weight: 400;
  text-align: left;
  padding: 0;
}
.mega-menu-megamenu .menu-inner-menu-container ul.menu li a:hover {
  color: #2F3AA4;
}

/* ---------------------- search -----------------------*/
.header-search-icon {
  font-size: 0;
  width: 20px;
  margin-left: 60px;
  cursor: pointer;
}
@media all and (max-width: 1600px) {
  .header-search-icon {
    margin-left: 40px;
  }
}
@media all and (max-width: 1399px) {
  .header-search-icon {
    width: 18px;
  }
}
@media all and (max-width: 1199px) {
  .header-search-icon {
    height: 44px;
    width: 44px;
    background-color: rgba(141, 133, 118, 0.12);
    margin-right: 20px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media all and (max-width: 575px) {
  .header-search-icon {
    height: 36px;
    width: 36px;
    margin-right: 15px;
    background-size: 18px;
  }
}
.header-search-icon img {
  max-width: 18px;
}

.search-panel {
  position: relative;
  display: flex;
  align-items: center;
}
.search-panel a {
  padding: 0 10px;
  margin: 0;
}

.header-srch-wpr {
  padding: 20px 0;
  background: white;
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 1000;
  transition: 0.3s all;
  box-shadow: var(--box-shadow);
  transform: translateY(-120%);
}
@media all and (max-width: 575px) {
  .header-srch-wpr {
    padding: 10px 0;
  }
}
.header-srch-wpr ::-moz-placeholder {
  color: var(--primary-color);
  opacity: 1;
}
.header-srch-wpr ::placeholder {
  color: var(--primary-color);
  opacity: 1;
}
.header-srch-wpr :-ms-input-placeholder {
  color: var(--primary-color);
}
.header-srch-wpr ::-ms-input-placeholder {
  color: var(--primary-color);
}
.header-srch-wpr input[type=search] {
  width: 100%;
  height: 50px;
  line-height: 90px;
  color: var(--content-color);
  background: url(../../images/icon-search-blue.svg) right 30px center no-repeat rgba(255, 255, 255, 0.1);
  padding: 0 90px 0 30px !important;
  border-bottom: 1px solid var(--border-color);
}
@media all and (max-width: 575px) {
  .header-srch-wpr input[type=search] {
    padding: 0 50px 0 20px !important;
    background-position-x: calc(100% - 15px);
  }
}
.header-srch-wpr input[type=search]::-moz-placeholder {
  color: var(--content-color);
  -moz-transition: 0.3s;
  transition: 0.3s;
}
.header-srch-wpr input[type=search]::placeholder {
  color: var(--content-color);
  transition: 0.3s;
}
.header-srch-wpr input[type=search]::-ms-input-placeholder {
  color: var(--content-color);
  -ms-transition: 0.3s;
  transition: 0.3s;
}
.header-srch-wpr input[type=search]:focus {
  border: none !important;
  border-bottom: 1px solid var(--primary-color) !important;
}
.header-srch-wpr input[type=search]:focus::-moz-placeholder {
  color: var(--primary-color);
  -moz-transition: 0.3s;
  transition: 0.3s;
}
.header-srch-wpr input[type=search]:focus::placeholder {
  color: var(--primary-color);
  transition: 0.3s;
}
.header-srch-wpr input[type=search]:focus::-ms-input-placeholder {
  color: var(--primary-color);
  -ms-transition: 0.3s;
  transition: 0.3s;
}
.header-srch-wpr button[type=submit] {
  position: absolute;
  padding: 0;
  width: 50px;
  height: 50px;
  letter-spacing: 0;
  bottom: 15px;
  right: 0;
  background: url(../images/header-search-dark.svg) center center no-repeat;
  background-size: 40px;
  opacity: 0;
  transform: scale(0);
  transition: 0.3s;
}
.header-srch-wpr button[type=submit]:focus {
  outline: none;
  border: 0;
}
.header-srch-wpr button[type=submit]::after {
  right: 0;
  margin: 0;
}
.header-srch-wpr .header-srch-close {
  margin: 20px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  background: url(../images/header-search-close-grey.svg) no-repeat center;
  background-size: 30px;
  cursor: pointer;
  background: var(--secondary-color-light);
  border-radius: 50%;
}
@media all and (max-width: 575px) {
  .header-srch-wpr .header-srch-close {
    margin-top: 12px;
    width: 36px;
    height: 36px;
  }
}
.header-srch-wpr .header-srch-close img {
  max-width: 14px;
  transition: 0.3s all;
}
@media all and (max-width: 575px) {
  .header-srch-wpr .header-srch-close img {
    max-width: 12px;
  }
}
.header-srch-wpr .header-srch-close:hover {
  background: var(--primary-color);
  transition: 0.3s all;
}
.header-srch-wpr .header-srch-close:hover img {
  filter: brightness(0) invert(1);
}
.header-srch-wpr.open {
  transform: translateY(0);
}

footer {
  background: linear-gradient(90deg, #08152c 0%, #c39900 100%);
  padding: 48px 0;
}

.footer-top-row {
  align-items: center;
  --bs-gutter-y: 30px;
}

.footer-cnt-social {
  color: var(--white-color);
}
.footer-cnt-social p {
  line-height: 1.5;
  margin-bottom: 14px;
}
@media all and (max-width: 991px) {
  .footer-cnt-social p {
    margin-bottom: 18px;
  }
}
.footer-cnt-social .footer-social ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 24px;
}
.footer-cnt-social .footer-social ul li {
  padding: 0;
  margin: 0;
}
.footer-cnt-social .footer-social ul li a:hover img {
  transform: scale(1.1);
}
.footer-cnt-social .footer-social ul li a img {
  max-width: 20px;
  transition: 0.3s all;
}

.footer-menu-wpr {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
}
@media all and (max-width: 991px) {
  .footer-menu-wpr {
    justify-content: space-between;
  }
}
@media all and (max-width: 575px) {
  .footer-menu-wpr {
    justify-content: space-between;
    gap: 20px;
  }
}
.footer-menu-wpr .footer-menu {
  color: var(--white-color);
  min-width: 184px;
}
@media all and (max-width: 991px) {
  .footer-menu-wpr .footer-menu {
    min-width: 100px;
  }
}
.footer-menu-wpr .footer-menu .footer-title {
  font-weight: 600;
  font-family: var(--heading-font);
  margin-bottom: 12px;
  line-height: 1.5;
}
.footer-menu-wpr .footer-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
  line-height: 1.44;
  text-transform: capitalize;
  color: rgba(255, 255, 255, 0.8);
}
.footer-menu-wpr .footer-menu ul li {
  margin: 0 0 8px;
  padding: 0;
}
.footer-menu-wpr .footer-menu ul li:last-child {
  margin-bottom: 0;
}
.footer-menu-wpr .footer-menu ul li a {
  color: inherit;
}
.footer-menu-wpr .footer-menu ul li a:hover {
  text-decoration: underline;
}

.footer-divider {
  margin-top: 42px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.8);
}

.btn-grp {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}

.sec-head {
  margin-bottom: 60px;
}
@media all and (max-width: 1199px) {
  .sec-head {
    margin-bottom: 40px;
  }
}
@media all and (max-width: 991px) {
  .sec-head {
    margin-bottom: 26px;
  }
}

.pillar-card {
  padding: 24px;
  height: 100%;
}
@media all and (max-width: 575px) {
  .pillar-card {
    padding: 20px;
  }
}
.pillar-card figure {
  width: 48px;
  height: 48px;
  margin: 0 auto 24px;
}
.pillar-card figure img {
  height: 100%;
}
@media all and (max-width: 991px) {
  .pillar-card figure {
    width: 40px;
    height: 40px;
    margin-bottom: 14px;
  }
}
.pillar-card h3 {
  margin-bottom: 0.88em;
}
@media all and (max-width: 991px) {
  .pillar-card h3 {
    margin-bottom: 0.6em;
  }
}

.team-card {
  background: var(--white-color);
  text-align: center;
  padding: 24px 20px;
  height: 100%;
}
@media all and (max-width: 575px) {
  .team-card {
    padding: 20px;
  }
}
.team-card figure {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 12px;
}
.team-card figure img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.team-card-sm figure {
  width: 120px;
  height: 120px;
  margin-bottom: 17px;
}

.about-us-card-row {
  --bs-gutter-y: 30px;
}

.about-us-card {
  padding: clamp(1.25rem, 0.825rem + 1.81vw, 3rem);
  height: 100%;
}
.about-us-card h3 {
  margin-bottom: 32px;
}
@media all and (max-width: 1199px) {
  .about-us-card h3 {
    margin-bottom: 20px;
  }
}

.founder-msg {
  font-family: var(--primary-font);
  color: #19191f;
}
.founder-msg h2 {
  margin-bottom: 30px;
}
.founder-msg p {
  margin: 0 auto 12px;
  max-width: 896px;
}
.founder-msg .founder-msg-author {
  margin-bottom: 60px;
}

.hero-sec {
  background: linear-gradient(124.62deg, #f2f6fd 0%, white 100%);
}

.hero-row {
  --bs-gutter-x: 48px;
  --bs-gutter-y: 50px;
  align-items: center;
}
@media all and (max-width: 991px) {
  .hero-row {
    --bs-gutter-x: 15px;
  }
}

@media all and (max-width: 991px) {
  .hero-content {
    text-align: center;
  }
}
.hero-content p {
  margin-bottom: 60px;
}
@media all and (max-width: 991px) {
  .hero-content p {
    margin-bottom: 30px;
  }
}
@media all and (max-width: 575px) {
  .hero-content p {
    margin-bottom: 20px;
  }
}
@media all and (max-width: 1199px) {
  .hero-content .btn-grp {
    justify-content: center;
  }
}

.hero-img {
  border-radius: var(--radius);
  overflow: hidden;
}

.pillar-card-row {
  --bs-gutter-y: 30px;
}
@media all and (max-width: 991px) {
  .pillar-card-row {
    --bs-gutter-x: 20px;
    --bs-gutter-y: 20px;
  }
}
@media all and (max-width: 991px) {
  .pillar-card-row .pillar-card {
    max-width: 350px;
    margin: 0 auto;
  }
}

.team-card-row {
  --bs-gutter-y: 30px;
}
@media all and (max-width: 991px) {
  .team-card-row {
    --bs-gutter-x: 20px;
    --bs-gutter-y: 20px;
  }
}
@media all and (max-width: 575px) {
  .team-card-row .team-card {
    max-width: 300px;
    margin: 0 auto;
  }
}

.cta-sec {
  background: var(--primary-color);
}

.cmn-bnr-content p {
  max-width: 768px;
  margin: 0 auto;
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}
@media all and (max-width: 991px) {
  .contact-info {
    gap: 10px;
  }
}
.contact-info:last-child {
  margin-bottom: 0;
}
.contact-info .contact-info-icon {
  width: 28px;
  flex: none;
}
@media all and (max-width: 991px) {
  .contact-info .contact-info-icon {
    width: 22px;
  }
}
.contact-info .contact-info-icon img {
  width: 100%;
}
.contact-info label {
  display: block;
  font-weight: 500;
}
.contact-info a,
.contact-info p {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
  transition: 0.3s all;
}
@media all and (max-width: 991px) {
  .contact-info a,
  .contact-info p {
    font-size: 15px;
    line-height: 1.6;
  }
}
.contact-info a:hover {
  color: var(--secondary-color);
}

.getin-touch-wpr {
  box-shadow: var(--box-shadow);
  padding: clamp(1.5rem, 1.379rem + 0.52vw, 2rem);
  border-radius: var(--radius-sm);
}
.getin-touch-wpr h3 {
  margin-bottom: 32px;
}
@media all and (max-width: 991px) {
  .getin-touch-wpr h3 {
    margin-bottom: 20px;
  }
}

.divider {
  width: 100%;
  height: 1px;
  background: var(--border-color);
}

.contact-social {
  padding-top: 26px;
}
@media all and (max-width: 991px) {
  .contact-social {
    padding-top: 22px;
  }
}
.contact-social h3 {
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--heading-color);
  font-family: var(--heading-font);
}
.contact-social ul {
  list-style: none;
  margin: 0;
  padding: 0;
  color: var(--heading-color);
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.contact-social ul li {
  width: 40px;
  height: 40px;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-social ul li a {
  transition: 0.3s all;
}
.contact-social ul li a:hover {
  transform: scale(1.1);
}
.contact-social ul li img {
  filter: brightness(0) saturate(100%) invert(53%) sepia(42%) saturate(2200%) hue-rotate(21deg) brightness(99%) contrast(103%);
}

.contact-form-wpr {
  padding: clamp(1.5rem, 1.379rem + 0.52vw, 2rem);
  box-shadow: var(--box-shadow);
  border-radius: var(--radius-sm);
}
@media all and (max-width: 991px) {
  .contact-form-wpr p {
    margin-bottom: 1em;
  }
}

.contact-form {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 24px;
}
@media all and (max-width: 991px) {
  .contact-form {
    gap: 16px;
  }
}
.contact-form label {
  font-size: 14px;
  margin-bottom: 6px;
  color: var(--heading-color);
}

.contact-row {
  --bs-gutter-x: clamp(1.5rem, 0.893rem + 2.59vw, 4rem);
  --bs-gutter-y: clamp(1.25rem, 1.068rem + 0.78vw, 2rem);
}

.blog-section main {
  display: flex;
  flex-wrap: wrap;
}
.blog-section .article {
  flex-basis: 0;
  flex-grow: 999;
  min-width: 40%;
}
.blog-section .sidebar {
  flex-grow: 1;
  flex-basis: 440px;
  align-self: start;
  position: sticky;
  top: 160px;
  margin: 0 0 0 70px;
}
@media all and (max-width: 1600px) {
  .blog-section .sidebar {
    flex-basis: 330px;
    margin: 0 0 0 60px;
  }
}
@media all and (max-width: 1399px) {
  .blog-section .sidebar {
    flex-basis: 330px;
    margin: 0 0 0 60px;
  }
}
@media all and (max-width: 1199px) {
  .blog-section .sidebar {
    flex-basis: 310px;
    margin: 0 0 0 30px;
  }
}
@media all and (max-width: 991px) {
  .blog-section .sidebar {
    flex-basis: 100%;
    margin: 40px 0 0 0;
  }
}
@media all and (max-width: 575px) {
  .blog-section .sidebar {
    margin: 30px 0 0 0;
  }
}

.standard-content figure {
  margin-bottom: 30px;
}/*# sourceMappingURL=main.css.map */