@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import "vendors/aos-animation/aos.css";
@import "vendors/fontawesome/all.min.css";
@import "vendors/slick-slider/slick.slider.css";
@import "vendors/bootstrap_v5.3.5/bootstrap.min.css";
:root {
  --color-primary: #70a08a;
  --color-primary-rgb: 112, 160, 138;
  --color-secondary: #ccb9a4;
  --color-secondary-rgb: 204, 185, 164;
  --color-white: #fff;
  --color-white-rgb: 255, 255, 255;
  --color-black: #000;
  --color-black-rgb: 0, 0, 0;
  --base-text-color: #808080;
  --base-text-color-rgb: 128, 128, 128;
  --base-font-size: 20px;
  --base-line-height: 1.5;
  --base-font-family: "Poppins", sans-serif;
  --base-body-bg: var(--color-white);
  --heading-font-family: "Poppins", sans-serif;
  --heading-font-color: var(--color-black);
  --container-width: 1210px;
}
h1, .h1 {
  font-size: 32px;
}
@media (min-width: 768px) {
  h1, .h1 {
    font-size: 36px;
  }
}
@media (min-width: 992px) {
  h1, .h1 {
    font-size: 40px;
  }
}
@media (min-width: 1200px) {
  h1, .h1 {
    font-size: 44px;
  }
}
h2, .h2 {
  font-size: 30px;
}
@media (min-width: 768px) {
  h2, .h2 {
    font-size: 34px;
  }
}
@media (min-width: 992px) {
  h2, .h2 {
    font-size: 38px;
  }
}
h3, .h3 {
  font-size: 28px;
}
@media (min-width: 768px) {
  h3, .h3 {
    font-size: 30px;
  }
}
@media (min-width: 992px) {
  h3, .h3 {
    font-size: 34px;
  }
}
h4, .h4 {
  font-size: 22px;
}
@media (min-width: 768px) {
  h4, .h4 {
    font-size: 26px;
  }
}
@media (min-width: 992px) {
  h4, .h4 {
    font-size: 30px;
  }
}
h5, .h5 {
  font-size: 22px;
}
@media (min-width: 768px) {
  h5, .h5 {
    font-size: 26px;
  }
}
h6, .h6 {
  font-size: 20px;
}
@media (min-width: 768px) {
  h6, .h6 {
    font-size: 22px;
  }
}
img {
  border: 0;
  height: auto;
  max-width: 100%;
}
img.alignleft {
  float: left;
  margin: 15px 15px 15px 0;
}
img.aligncenter {
  margin: 15px auto;
  float: none;
  display: block;
}
img.alignright {
  float: right;
  margin: 15px 0 15px 15px;
}
a {
  color: var(--color-primary);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}
a:hover {
  color: var(--color-secondary);
  text-decoration: none;
  outline: 0;
}
body {
  font-family: var(--base-font-family);
  font-size: 18px;
  color: var(--base-text-color);
  line-height: var(--base-line-height);
  background-color: var(--base-body-bg);
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}
@media (min-width: 768px) {
  body {
    font-size: var(--base-font-size);
  }
}
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  font-weight: 600;
  color: var(--color-primary);
}
.clear::after {
  content: "";
  display: block;
  clear: both;
}
.container {
  max-width: var(--container-width);
  padding-right: 15px;
  padding-left: 15px;
}
.container-lg {
  max-width: var(--container-width-lg);
  padding-right: 15px;
  padding-left: 15px;
}
label {
  cursor: pointer;
}
.form-group {
  margin-bottom: 14px;
}
.form-control, .form-select {
  font-size: 20px;
  color: #808080;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  border-radius: 50px;
  height: 50px;
  border: 1px solid #e6e6e6;
  background-color: #e6e6e6;
  padding-left: 17px;
}
.form-control::-webkit-input-placeholder, .form-select::-webkit-input-placeholder {
  color: gray;
}
.form-control:-moz-placeholder, .form-select:-moz-placeholder {
  color: gray;
}
.form-control::-moz-placeholder, .form-select::-moz-placeholder {
  color: gray;
}
.form-control:-ms-input-placeholder, .form-select:-ms-input-placeholder {
  color: gray;
}
@media (min-width: 768px) {
  .form-control, .form-select {
    font-size: 23px;
  }
}
.form-control:focus, .form-select:focus {
  color: #808080;
  background-color: #e6e6e6;
  border: 1px solid var(--color-primary);
  outline: 0;
  box-shadow: none;
}
.form-select {
  background-image: url("../images/select-arrow.png");
  background-size: 24px 40px;
  background-position: right center;
  background-repeat: no-repeat;
}
.form-select::-ms-expand {
  display: none;
}
.form-select:focus {
  background-image: url("../images/select-arrow-down.png");
}
input[type="radio"] {
  width: 20px;
  height: 20px;
  outline: 0;
  cursor: pointer;
  margin: -4px 0 0 0;
  appearance: none;
  vertical-align: middle;
  border: 1px solid #586779;
  border-radius: 100%;
  position: relative;
  display: inline-block;
  background-color: transparent;
}
input[type="radio"]::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background-image: none;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #586779;
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  opacity: 0;
}
input[type="radio"]:checked::before {
  opacity: 1;
}
input[type="radio"]:disabled {
  cursor: not-allowed;
  background-color: grey;
}
input[type="checkbox"] {
  width: 30px;
  height: 30px;
  outline: 0;
  cursor: pointer;
  margin: -4px 0 0 0;
  appearance: none;
  vertical-align: middle;
  background-color: #e5e5e5;
  border-radius: 50px;
  position: relative;
  display: inline-block;
}
input[type="checkbox"]::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50px;
  width: 16px;
  height: 16px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  background-color: var(--color-primary);
}
input[type="checkbox"]:checked::before {
  opacity: 1;
}
input[type="checkbox"]:disabled {
  background-color: grey;
  cursor: not-allowed;
}
textarea.form-control {
  min-height: 192px;
  border-radius: 25px;
  padding: 11px 10px 10px 17px;
  resize: none;
}
blockquote {
  font-size: 20px;
  border-left: 10px solid #ececec;
  position: relative;
  text-align: center;
  padding: 30px 70px;
  margin: 12px 0 12px 20px;
}
blockquote:before {
  top: 0;
  left: 0;
  content: "“";
}
blockquote:after {
  bottom: 0;
  right: 0;
  content: "”";
}
blockquote:before, blockquote:after {
  font-size: 80px;
  position: absolute;
  width: 60px;
  height: 60px;
  line-height: 1;
}
.wpcf7-form-control-wrap {
  display: block;
}
.wpcf7-form-control-wrap .wpcf7-acceptance .wpcf7-list-item {
  margin-left: 0;
}
.wpcf7-form-control-wrap .wpcf7-checkbox .wpcf7-list-item.first, .wpcf7-form-control-wrap .wpcf7-radio .wpcf7-list-item.first {
  margin-left: 0;
}
.wpcf7-form-control-wrap .wpcf7-not-valid-tip {
  font-size: 14px;
}
.wpcf7-form-control-wrap .wpcf7 form.invalid .wpcf7-response-output, .wpcf7-form-control-wrap .wpcf7 form.unaccepted .wpcf7-response-output {
  font-size: 14px;
}
.btn {
  --bs-btn-font-family: var(--base-font-family);
  --bs-btn-font-size: 20px;
  --bs-btn-font-weight: 500;
  --bs-btn-border-radius: 50px;
  --bs-btn-border-width: 1px;
  padding: 6px 20px;
}
@media (min-width: 768px) {
  .btn {
    --bs-btn-font-size: 22px;
  }
}
@media (min-width: 992px) {
  .btn {
    --bs-btn-font-size: 24px;
  }
}
.btn [class*="fa-"] {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  margin-right: 8px;
}
.btn-primary {
  --bs-btn-color: var(--color-white);
  --bs-btn-bg: var(--color-primary);
  --bs-btn-border-color: #70a08a;
  --bs-btn-hover-color: var(--color-white);
  --bs-btn-hover-bg: var(--color-secondary);
  --bs-btn-hover-border-color: var(--color-secondary);
  --bs-btn-active-color: var(--color-white);
  --bs-btn-active-bg: var(--color-secondary);
  --bs-btn-active-border-color: var(--color-secondary);
}
.btn-primary [class*="fa-"] {
  color: var(--color-secondary);
}
.btn-primary:hover [class*="fa-"] {
  color: var(--color-primary);
}
.btn-light {
  --bs-btn-color: var(--color-primary);
  --bs-btn-bg: var(--color-white);
  --bs-btn-border-color: var(--color-white);
  --bs-btn-hover-color: #fbf3e8;
  --bs-btn-hover-bg: var(--color-primary);
  --bs-btn-hover-border-color: var(--color-primary);
  --bs-btn-active-color: #fbf3e8;
  --bs-btn-active-bg: var(--color-primary);
  --bs-btn-active-border-color: var(--color-primary);
}
.btn-light [class*="fa-"] {
  color: var(--color-secondary);
}
.btn-secondary {
  --bs-btn-color: #70a08a;
  --bs-btn-bg: #fff;
  --bs-btn-border-color: #fff;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #70a08a;
  --bs-btn-hover-border-color: #70a08a;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #70a08a;
  --bs-btn-active-border-color: #70a08a;
}
.btn-secondary i {
  margin-left: 8px;
  color: #ccb9a4;
  transition: all 0.2s;
}
.btn-outline-primary {
  --bs-btn-color: #0d6efd;
  --bs-btn-border-color: #0d6efd;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #0d6efd;
  --bs-btn-hover-border-color: #0d6efd;
  --bs-btn-focus-shadow-rgb: 13, 110, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #0d6efd;
  --bs-btn-active-border-color: #0d6efd;
}
.btn-outline-primary svg {
  width: 10px;
  margin-left: 10px;
}
/* Outer */
#outer {
  min-height: 100%;
}
/* Header */
.header {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding-top: 20px;
  padding-bottom: 25px;
}
.header .container {
  max-width: 1858px;
}
.header__logo {
  margin-right: 12px;
}
@media (min-width: 1500px) {
  .header__logo {
    width: 289px;
  }
}
.header__logo img {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  max-width: 200px;
}
@media (min-width: 992px) {
  .header__logo img {
    max-width: 180px;
  }
}
@media (min-width: 1500px) {
  .header__logo img {
    max-width: 100%;
  }
}
@media (max-width: 991px) {
  .header__rgt {
    padding-right: 10px;
  }
}
.header__tel {
  font-size: 22px;
  font-weight: 600;
  width: 50px;
  height: 50px;
  padding: 0;
  margin-top: 2px;
}
@media (min-width: 992px) {
  .header__tel {
    font-size: 16px;
    width: auto;
    height: auto;
    padding: 6px 28px 6px 22px;
  }
}
@media (min-width: 1200px) {
  .header__tel {
    font-size: 20px;
  }
}
@media (min-width: 1500px) {
  .header__tel {
    font-size: 24px;
  }
}
@media (max-width: 991px) {
  .header__tel [class*=fa-] {
    margin-right: 0;
  }
}
.header--sticky {
  box-shadow: 0px 0px 30px -14px rgba(66, 68, 90, 0.7);
}
@media (min-width: 992px) {
  .header--sticky {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
@media (min-width: 992px) {
  .header--sticky .header__logo img {
    max-width: 170px;
  }
}
@media (min-width: 1200px) {
  .header--sticky .header__logo img {
    max-width: 180px;
  }
}
/* Navigation */
.navbar {
  padding: 0;
}
.navbar .navbar-toggler {
  font-family: var(--heading-font-family);
  border: 0;
  outline: 0;
  width: 50px;
  height: 50px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  z-index: 9;
  background-color: var(--color-primary);
  border-radius: 50px;
  margin: 0;
  padding: 0;
}
.navbar .navbar-toggler .btn_txt {
  font-size: 20px;
  color: var(--color-primary);
  margin-right: 10px;
}
@media (min-width: 768px) {
  .navbar .navbar-toggler .btn_txt {
    font-size: 23px;
    margin-right: 20px;
  }
}
.navbar .navbar-toggler .menu_icon {
  width: 23px;
  height: 20px;
  margin: 0;
}
.navbar .navbar-toggler .menu_icon .icon-bar {
  display: block;
  position: absolute;
  opacity: 1;
  height: 3px;
  background-color: var(--color-secondary);
  left: 0;
  margin: 0 auto;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.navbar .navbar-toggler .menu_icon .icon-bar:nth-child(1) {
  top: 0;
  width: 100%;
  -webkit-transform: rotate(0deg);
  /* WebKit */
  -moz-transform: rotate(0deg);
  /* Mozilla */
  -o-transform: rotate(0deg);
  /* Opera */
  -ms-transform: rotate(0deg);
  /* Internet Explorer */
  transform: rotate(0deg);
  /* CSS3 */
}
.navbar .navbar-toggler .menu_icon .icon-bar:nth-child(2) {
  top: 9px;
  left: 0;
  width: 100%;
  opacity: 1;
}
.navbar .navbar-toggler .menu_icon .icon-bar:nth-child(3) {
  top: 18px;
  width: 100%;
  -webkit-transform: rotate(0deg);
  /* WebKit */
  -moz-transform: rotate(0deg);
  /* Mozilla */
  -o-transform: rotate(0deg);
  /* Opera */
  -ms-transform: rotate(0deg);
  /* Internet Explorer */
  transform: rotate(0deg);
  /* CSS3 */
}
.navbar .navbar-toggler:hover .menu_icon .icon-bar:nth-child(1) {
  width: 100%;
}
.navbar .navbar-toggler:hover .menu_icon .icon-bar:nth-child(2) {
  width: 100%;
}
.navbar .navbar-toggler:hover .menu_icon .icon-bar:nth-child(3) {
  width: 100%;
}
.navbar .navbar-toggler.collapsed {
  background-color: var(--color-primary);
}
.navbar .navbar-toggler.collapsed .btn_txt {
  color: var(--color-white);
}
.navbar .navbar-toggler.collapsed .icon-bar {
  background-color: var(--color-secondary);
}
.navbar .navbar-toggler.collapsed .icon-bar:nth-child(1) {
  top: 9px;
  width: 100%;
  -webkit-transform: rotate(135deg);
  /* WebKit */
  -moz-transform: rotate(135deg);
  /* Mozilla */
  -o-transform: rotate(135deg);
  /* Opera */
  -ms-transform: rotate(135deg);
  /* Internet Explorer */
  transform: rotate(135deg);
  /* CSS3 */
}
.navbar .navbar-toggler.collapsed .icon-bar:nth-child(2) {
  top: 9px;
  left: -10px;
  width: 100%;
  opacity: 0;
}
.navbar .navbar-toggler.collapsed .icon-bar:nth-child(3) {
  top: 9px;
  width: 100%;
  -webkit-transform: rotate(-135deg);
  /* WebKit */
  -moz-transform: rotate(-135deg);
  /* Mozilla */
  -o-transform: rotate(-135deg);
  /* Opera */
  -ms-transform: rotate(-135deg);
  /* Internet Explorer */
  transform: rotate(-135deg);
  /* CSS3 */
}
@media (min-width: 992px) {
  .navbar .navbar-collapse {
    padding-right: 12px;
    padding-left: 12px;
  }
}
@media (min-width: 1500px) {
  .navbar .navbar-collapse {
    padding-top: 11px;
    padding-left: 20px;
  }
}
@media (min-width: 1600px) {
  .navbar .navbar-collapse {
    justify-content: flex-start !important;
    padding-left: 70px;
  }
}
@media (min-width: 1700px) {
  .navbar .navbar-collapse {
    padding-left: 127px;
  }
}
@media (min-width: 1800px) {
  .navbar .navbar-collapse {
    padding-left: 227px;
  }
}
@media (max-width: 991px) {
  .navbar .navbar-collapse {
    position: fixed;
    top: 0;
    inset: 20px 15px 20px 15px;
    background-color: rgba(var(--color-white-rgb), 1);
    z-index: 2;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    display: block;
    overflow: auto;
    box-shadow: 0px 0px 20px 0px rgba(73, 60, 44, 0.15);
    border-radius: 25px;
    height: auto !important;
    padding: 70px 30px 30px 30px;
    opacity: 0;
    visibility: hidden;
  }
  .navbar .navbar-collapse.open {
    opacity: 1;
    visibility: visible;
  }
}
.navbar .navbar-nav > .nav-item:not(:last-child) {
  margin-bottom: 10px;
}
@media (min-width: 992px) {
  .navbar .navbar-nav > .nav-item:not(:last-child) {
    margin-right: 20px;
    margin-bottom: 0;
  }
}
@media (min-width: 1200px) {
  .navbar .navbar-nav > .nav-item:not(:last-child) {
    margin-right: 30px;
  }
}
@media (min-width: 1600px) {
  .navbar .navbar-nav > .nav-item:not(:last-child) {
    margin-right: 45px;
  }
}
.navbar .navbar-nav > .nav-item > a.nav-link {
  font-size: 24px;
  font-weight: 600;
  color: var(--color-primary);
  padding: 0 0;
}
@media (min-width: 992px) {
  .navbar .navbar-nav > .nav-item > a.nav-link {
    font-size: 16px;
    padding: 18px 0;
  }
}
@media (min-width: 1200px) {
  .navbar .navbar-nav > .nav-item > a.nav-link {
    font-size: 20px;
  }
}
@media (min-width: 1500px) {
  .navbar .navbar-nav > .nav-item > a.nav-link {
    font-size: 24px;
  }
}
.navbar .navbar-nav > .nav-item > a.nav-link.dropdown-toggle.show .caret {
  -webkit-transform: rotate(-180deg);
  /* WebKit */
  -moz-transform: rotate(-180deg);
  /* Mozilla */
  -o-transform: rotate(-180deg);
  /* Opera */
  -ms-transform: rotate(-180deg);
  /* Internet Explorer */
  transform: rotate(-180deg);
  /* CSS3 */
}
.navbar .navbar-nav > .nav-item > a.nav-link.dropdown-toggle::after {
  content: "";
  font-family: "Font Awesome 6 Pro";
  font-weight: 400;
  color: var(--color-secondary);
  vertical-align: middle;
  border: 0;
  margin-left: 0;
}
@media (max-width: 991px) {
  .navbar .navbar-nav > .nav-item > a.nav-link.dropdown-toggle::after {
    display: none;
  }
}
.navbar .navbar-nav > .nav-item:hover > a.nav-link, .navbar .navbar-nav > .nav-item > a.nav-link.active, .navbar .navbar-nav > .nav-item > a.nav-link:focus-visible, .navbar .navbar-nav > .nav-item.current-menu-ancestor > a.dropdown-toggle {
  background-color: transparent;
  outline: 0;
  color: var(--color-secondary);
  box-shadow: none;
}
@media (min-width: 992px) {
  .navbar .navbar-nav > .nav-item:hover > a.nav-link, .navbar .navbar-nav > .nav-item > a.nav-link.active, .navbar .navbar-nav > .nav-item > a.nav-link:focus-visible, .navbar .navbar-nav > .nav-item.current-menu-ancestor > a.dropdown-toggle {
    color: var(--color-secondary);
  }
}
.navbar .navbar-nav > .nav-item ul.dropdown-menu {
  display: none;
  width: auto;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
  border: 0;
  background-color: transparent;
  padding: 0;
  margin: 0;
}
@media (min-width: 992px) {
  .navbar .navbar-nav > .nav-item ul.dropdown-menu {
    width: 450px;
    border-radius: 25px;
    background-color: var(--color-white);
    box-shadow: 0 0 30px 0 rgba(112, 160, 138, 0.25);
    padding: 28px 25px 34px 32px;
  }
}
@media (min-width: 992px) {
  .navbar .navbar-nav > .nav-item ul.dropdown-menu li:not(:last-child) {
    margin-bottom: 8px;
  }
}
.navbar .navbar-nav > .nav-item ul.dropdown-menu li > a.dropdown-item {
  color: var(--color-primary);
  font-size: 22px;
  font-weight: 400;
  border-bottom: 0;
  padding: 5px 15px;
}
@media (min-width: 992px) {
  .navbar .navbar-nav > .nav-item ul.dropdown-menu li > a.dropdown-item {
    padding: 5px 5px;
    font-size: 16px;
    padding: 0;
  }
}
@media (min-width: 1200px) {
  .navbar .navbar-nav > .nav-item ul.dropdown-menu li > a.dropdown-item {
    font-size: 18px;
  }
}
@media (min-width: 1500px) {
  .navbar .navbar-nav > .nav-item ul.dropdown-menu li > a.dropdown-item {
    font-size: 22px;
  }
}
.navbar .navbar-nav > .nav-item ul.dropdown-menu li > a.dropdown-item::before {
  content: "";
  color: var(--color-secondary);
  font-family: "Font Awesome 6 Pro", sans-serif;
  margin-right: 10px;
}
.navbar .navbar-nav > .nav-item ul.dropdown-menu li > a.dropdown-item.dropdown-toggle::after {
  height: 2px !important;
  background-color: black;
  opacity: 1;
  flex: 1;
  border: 0;
  display: block;
  margin-left: 10px;
  display: none;
}
.navbar .navbar-nav > .nav-item ul.dropdown-menu li:hover > a.dropdown-item, .navbar .navbar-nav > .nav-item ul.dropdown-menu li > a.dropdown-item:focus, .navbar .navbar-nav > .nav-item ul.dropdown-menu li > a.dropdown-item:hover, .navbar .navbar-nav > .nav-item ul.dropdown-menu li > a.dropdown-item:active, .navbar .navbar-nav > .nav-item ul.dropdown-menu li > a.dropdown-item.active, .navbar .navbar-nav > .nav-item ul.dropdown-menu li.current-menu-ancestor > a.dropdown-toggle {
  font-weight: 700;
  background-color: transparent;
  transform: translateX(16px);
}
.navbar .navbar-nav > .nav-item ul.dropdown-menu li:hover > a.dropdown-toggle::after {
  opacity: 1;
}
.navbar .navbar-nav > .nav-item ul.dropdown-menu li ul.dropdown-menu {
  padding: 0;
}
.navbar .navbar-nav > .nav-item.dropdown--two-columns .dropdown-menu {
  column-gap: 35px;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}
@media (min-width: 992px) {
  .navbar .navbar-nav > .nav-item.dropdown--two-columns .dropdown-menu {
    width: 475px;
  }
}
@media (min-width: 1200px) {
  .navbar .navbar-nav > .nav-item.dropdown--two-columns .dropdown-menu {
    width: 610px;
  }
}
@media (min-width: 1400px) {
  .navbar .navbar-nav > .nav-item.dropdown--two-columns .dropdown-menu {
    width: 700px;
  }
}
@media (max-width: 991px) {
  .navbar .navbar-nav .caret {
    width: 17px;
    height: 17px;
    background-image: url("../images/chevron-down-white-icn.svg");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
  }
  .navbar .navbar-nav .caret.caret-open {
    -webkit-transform: rotate(-180deg);
    /* WebKit */
    -moz-transform: rotate(-180deg);
    /* Mozilla */
    -o-transform: rotate(-180deg);
    /* Opera */
    -ms-transform: rotate(-180deg);
    /* Internet Explorer */
    transform: rotate(-180deg);
    /* CSS3 */
  }
}
@media (min-width: 992px) {
  /**:: First Dropdown ::**/
  /**:: Second Dropdown ::**/
  /**:: Third Dropdown ::**/
  /**:: Fourth Dropdown ::**/
  .navbar .navbar-collapse ul li {
    position: relative;
  }
  .navbar .navbar-collapse ul li:hover > ul {
    display: block !important;
  }
  .navbar .navbar-collapse ul li.dropdown--two-columns:hover > ul {
    display: grid !important;
  }
  .navbar .navbar-collapse ul ul {
    position: absolute;
    top: 100%;
    left: -32px;
    min-width: 250px;
    display: none !important;
  }
  .navbar .navbar-collapse ul ul li {
    position: relative;
  }
  .navbar .navbar-collapse ul ul li:hover > ul {
    display: block;
  }
  .navbar .navbar-collapse ul ul ul {
    position: absolute;
    top: 0;
    left: 100%;
    min-width: 250px;
    display: none;
    background-color: aqua;
  }
  .navbar .navbar-collapse ul ul ul li {
    position: relative;
  }
  .navbar .navbar-collapse ul ul ul li:hover ul {
    display: block;
  }
  .navbar .navbar-collapse ul ul ul ul {
    position: absolute;
    top: 0;
    left: -100%;
    min-width: 250px;
    display: none;
    z-index: 1;
    background-color: bisque;
  }
  .navbar .navbar-collapse ul ul ul ul li {
    position: relative;
  }
  .navbar .navbar-collapse ul ul ul ul li:hover ul {
    display: block;
  }
  .navbar .navbar-collapse ul ul ul ul ul {
    position: absolute;
    top: 0;
    left: -100%;
    min-width: 250px;
    display: none;
    z-index: 1;
    background-color: fuchsia;
  }
}
/* ContentBox */
#content-area.main-content {
  position: relative;
  padding-top: var(--padding-top);
}
#content-area.main-content::before, #content-area.main-content::after {
  content: "";
  opacity: 0.1;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
}
#content-area.main-content::before {
  background-position: center left;
  background-image: url("../images/main-content-left-bg.png");
  width: 18.43%;
  height: 679px;
  top: 654px;
  left: 0;
}
#content-area.main-content::after {
  background-position: center right;
  background-image: url("../images/main-content-right-bg.png");
  width: 18.75%;
  height: 679px;
  top: 1450px;
  right: 0;
}
/* Banner */
.banner {
  padding-top: 75px;
  padding-bottom: 50px;
}
@media (min-width: 992px) {
  .banner {
    min-height: 450px;
    padding-top: 100px;
  }
}
@media (min-width: 1200px) {
  .banner {
    min-height: 500px;
    padding-top: 177px;
  }
}
.banner::before {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("../images/banner-overlay.png");
  background-position: top center;
  background-repeat: repeat-x;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.banner__bg {
  top: 0;
  left: 0;
  z-index: -2;
}
.banner__ttl {
  line-height: 1.1;
  margin-bottom: 24px;
}
.banner__item img {
  height: 400px;
  width: 100%;
  object-fit: cover;
}
.banner.banner--inner {
  background-color: var(--color-primary);
  padding-top: 50px;
}
@media (min-width: 768px) {
  .banner.banner--inner {
    min-height: 270px;
    padding-top: 65px;
  }
}
.banner.banner--inner .banner__bg {
  mix-blend-mode: luminosity;
}
.banner.banner--inner .banner__actn {
  margin-top: 11px;
}
/* Intro */
.intro {
  padding-top: 60px;
  padding-bottom: 118px;
}
@media (min-width: 768px) {
  .intro {
    padding-top: 87px;
  }
}
.intro__lft {
  border-radius: 25px;
}
.intro__rgt {
  padding-top: 6px;
}
.intro__smlttl {
  font-size: 24px;
  font-weight: 400;
  color: var(--color-secondary);
  line-height: 1.15;
}
.intro__ttl {
  color: var(--color-primary);
  margin-bottom: 32px;
}
.intro__des {
  line-height: 1.6;
}
.intro__des > *:last-child {
  margin-bottom: 0;
}
.intro__actn {
  margin-top: 27px;
}
/* Quote */
.quote__ttl {
  color: var(--color-primary);
  line-height: 1.17;
}
.quote__ttl::after {
  content: "";
  width: 100%;
  max-width: 191px;
  height: 2px;
  background-color: var(--color-secondary);
  display: block;
  margin: 30px auto 0;
}
@media (min-width: 768px) {
  .quote__ttl::after {
    margin: 57px auto 0;
  }
}
/* Review Slider */
.revSldr {
  padding-bottom: 83px;
}
.revSldr__wrap::before {
  content: "";
  width: 50px;
  height: 60px;
  background-image: url("../images/quote-icn.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 20px;
  z-index: 1;
}
@media (min-width: 1450px) {
  .revSldr__wrap::before {
    left: -120px;
    width: 82px;
    height: 60px;
  }
}
.revSldr__wrap .slick-list {
  overflow: visible;
}
.revSldr__wrap .slick-list {
  margin: 0 -11px;
}
.revSldr__itm {
  padding: 0 11px;
}
.revSldr__itm-wrap {
  background-color: var(--color-primary);
  border-radius: 40px;
  padding: 50px 30px 30px 30px;
}
.revSldr__itm-txt {
  font-size: 20px;
  font-style: italic;
  color: var(--color-white);
}
.revSldr__itm-name {
  font-size: 25px;
  color: var(--color-white);
}
.revSldr__itm-frm {
  font-size: 25px;
  color: var(--color-secondary);
}
.revSldr__itm:nth-child(2n) .revSldr__itm-wrap {
  background-color: #e2ece8;
}
.revSldr__itm:nth-child(2n) .revSldr__itm-txt {
  color: var(--color-primary);
}
.revSldr__itm:nth-child(2n) .revSldr__itm-name {
  color: var(--color-primary);
}
.revSldr__arrows {
  column-gap: 15px;
  margin-top: 62px;
}
.revSldr__arrows .slick-arrow {
  font-size: 30px;
  color: var(--color-white);
  position: static;
  transform: none;
  width: 56px;
  height: 56px;
  border-radius: 100px;
  background-color: var(--color-secondary);
  background-image: none;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.revSldr__arrows .slick-arrow:hover {
  background-color: var(--color-primary);
}
/* USP */
.usp {
  padding-top: 73px;
}
.usp__bg {
  background-color: var(--color-primary);
  height: calc(100% - 64px);
}
.usp__bg img {
  opacity: 0.5;
  mix-blend-mode: luminosity;
}
.usp__ttl {
  line-height: 1.05;
  margin-bottom: 70px;
}
.usp .row {
  margin-right: -8.5px;
  margin-left: -8.5px;
}
.usp .row [class*="col-"] {
  padding-right: 8.5px;
  padding-left: 8.5px;
}
.usp__itm {
  background-color: var(--color-white);
  border-radius: 40px;
  box-shadow: 0px 0px 20px 0px rgba(73, 60, 44, 0.15);
  padding: 50px 20px 35px 20px;
}
.usp__itm img {
  margin-bottom: 15px;
}
.usp__itm-ttl {
  font-size: 22px;
  color: var(--color-primary);
  line-height: 1.09;
}
@media (min-width: 992px) {
  .usp__itm-ttl {
    font-size: 24px;
  }
}
/* FAQ's */
.faqs {
  padding-top: 78px;
  padding-bottom: 145px;
}
.faqs__ttl {
  color: var(--color-primary);
  margin-bottom: 10px;
}
.faqs__subttl {
  font-size: 20px;
  color: var(--color-secondary);
  margin-bottom: 28px;
}
@media (min-width: 768px) {
  .faqs__subttl {
    font-size: 22px;
  }
}
.faqs .accordion-item {
  background-color: transparent;
  border: 0;
}
.faqs .accordion-item:not(:last-child) {
  margin-bottom: 6px;
}
.faqs .accordion-button {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-primary);
  background-color: #e0e0e0;
  border-radius: 50px;
  padding: 15px 23px 12px 24px;
  box-shadow: none;
}
@media (min-width: 768px) {
  .faqs .accordion-button {
    font-size: 22px;
  }
}
.faqs .accordion-button::after {
  width: 25px;
  height: 25px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M256 80c0-17.7-14.3-32-32-32s-32 14.3-32 32V224H48c-17.7 0-32 14.3-32 32s14.3 32 32 32H192V432c0 17.7 14.3 32 32 32s32-14.3 32-32V288H400c17.7 0 32-14.3 32-32s-14.3-32-32-32H256V80z' fill='%2370a08a'/%3E%3C/svg%3E");
  background-size: auto;
  background-position: center;
  background-repeat: no-repeat;
}
.faqs .accordion-button:not(.collapsed) {
  color: var(--color-white);
  background-color: var(--color-primary);
}
.faqs .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M432 256c0 17.7-14.3 32-32 32L48 288c-17.7 0-32-14.3-32-32s14.3-32 32-32l352 0c17.7 0 32 14.3 32 32z' fill='%23fff'/%3E%3C/svg%3E");
}
.faqs .accordion-button:focus {
  box-shadow: none;
}
.faqs .accordion-button-child {
  color: #4c4c4c;
  font-weight: 600;
  background-color: rgba(var(--color-secondary-rgb), 0.2);
}
.faqs .accordion-button-child:not(.collapsed) {
  color: #4c4c4c;
  background-color: #e6dcd1;
}
.faqs .accordion-button-child:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M432 256c0 17.7-14.3 32-32 32L48 288c-17.7 0-32-14.3-32-32s14.3-32 32-32l352 0c17.7 0 32 14.3 32 32z' fill='%2370a08a'/%3E%3C/svg%3E");
}
.faqs .accordion-body-child {
  padding: 17px 90px 14px 24px;
}
.faqs .accordion .accordion {
  margin-top: 10px;
}
/* Contact */
.contact {
  padding-top: 62px;
  padding-bottom: 62px;
}
.contact__ttl {
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  .contact__ttl {
    margin-bottom: 42px;
  }
}
.contact__des {
  line-height: 1.6;
}
.contact__actn {
  margin-top: 10px;
}
@media (min-width: 768px) {
  .contact__actn {
    margin-top: 37px;
  }
}
.contact__actn span {
  font-size: 18px;
}
@media (min-width: 768px) {
  .contact__actn span {
    font-size: 21px;
  }
}
.contact__rgt {
  box-shadow: 0px 0px 20px 0px rgba(73, 60, 44, 0.15);
  border-radius: 30px;
  padding: 20px;
}
@media (min-width: 768px) {
  .contact__rgt {
    padding: 31px 30px 31px 32px;
    margin-top: 12px;
  }
}
.contact__info {
  color: var(--color-primary);
  line-height: 1.6;
}
.contact__info a {
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  overflow-wrap: break-word;
  word-break: break-word;
}
.contact__adrs {
  border-top: 2px solid #e4e4e4;
  padding-top: 25px;
  margin-top: 26px;
}
.contact__adrs address {
  font-style: normal;
  line-height: 1.6;
}
.contact__social {
  list-style: none;
  padding-left: 0;
  margin-bottom: 8px;
  gap: 21px;
}
.contact__social li a {
  width: 50px;
  height: 50px;
  background-color: var(--color-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 28px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.contact__social li a:hover {
  background-color: var(--color-primary);
}
.contact__frm {
  border-top: 2px solid #e4e4e4;
  padding-top: 46px;
  margin-top: 71px;
}
.contact__frm-ttl {
  color: var(--color-primary);
  margin-bottom: 21px;
}
.contact__frm input[type=checkbox] {
  margin-right: 7px;
}
.contact__frm .wpcf7-spinner {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 2px;
  margin: 0;
}
.contact__frm .wpcf7-response-output {
  font-size: 14px;
}
/* Subpage */
.subpage {
  padding-top: 62px;
  padding-bottom: 56px;
}
.subpage__ttl {
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  .subpage__ttl {
    margin-bottom: 42px;
  }
}
.subpage__cntnt {
  line-height: 1.6;
  padding-right: 20px;
}
.subpage__cntnt h2, .subpage__cntnt h3, .subpage__cntnt h4, .subpage__cntnt h5, .subpage__cntnt h6 {
  color: var(--color-secondary);
  margin-bottom: 3px;
}
.subpage__cntnt > *:not(:last-child, h2, h3, h4, h5, h6) {
  margin-bottom: 33px;
}
.subpage__cntnt ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.subpage__cntnt ul li {
  position: relative;
  padding-left: 32px;
}
.subpage__cntnt ul li::before {
  content: "";
  color: var(--color-primary);
  font-family: "Font Awesome 6 Pro";
  font-weight: 400;
  position: absolute;
  left: 0px;
}
.subpage__cntnt ol {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.subpage__cntnt ol li {
  position: relative;
  padding-left: 32px;
}
.subpage__cntnt ol li::before {
  content: "";
  color: var(--color-secondary);
  font-family: "Font Awesome 6 Pro";
  font-weight: 400;
  position: absolute;
  left: 0px;
}
.subpage__actn {
  margin-top: 37px;
}
.subpage__actn span {
  font-size: 21px;
}
/* Text Block */
.txtblk__bg {
  background-color: rgba(var(--color-primary-rgb), 0.2);
  border-radius: 40px;
  padding: 20px;
}
@media (min-width: 992px) {
  .txtblk__bg {
    padding: 25px 30px 25px 30px;
  }
}
@media (min-width: 1200px) {
  .txtblk__bg {
    padding: 34px 46px 32px 52px;
  }
}
.txtblk__bg--warm-beige {
  background-color: rgba(var(--color-secondary-rgb), 0.2);
}
.txtblk__lft {
  margin-top: 14px;
}
.txtblk__ttl {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .txtblk__ttl {
    margin-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .txtblk__ttl {
    margin-bottom: 42px;
  }
}
.txtblk__cntnt {
  line-height: 1.6;
}
.txtblk__cntnt > *:last-child {
  margin-bottom: 0;
}
.txtblk__rgt {
  border-radius: 40px;
}
.txtblk ~ .txtblk {
  margin-top: 50px;
}
/* footer */
.footer__cta {
  padding-top: 106px;
  padding-bottom: 98px;
}
.footer__cta::before, .footer__cta::after {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.2;
}
.footer__cta::before {
  left: 0;
  width: 17.08%;
  height: 401px;
  background-image: url("../images/cta-left-leaf.png");
}
.footer__cta::after {
  right: 0;
  bottom: 0;
  width: 12.29%;
  height: 361px;
  background-image: url("../images/cta-right-leaf.png");
  background-position: bottom right;
}
.footer__cta-ttl {
  color: var(--color-primary);
  margin-bottom: 1px;
}
.footer__cta-subttl {
  font-size: 24px;
  color: var(--color-secondary);
}
.footer__cta-actn {
  margin-top: 19px;
}
.footer__bg {
  background-color: var(--color-primary);
  padding-top: 60px;
  padding-bottom: 60px;
}
.footer__bg-img {
  opacity: 0.3;
  mix-blend-mode: luminosity;
}
.footer__logo {
  margin-bottom: 25px;
}
@media (min-width: 992px) {
  .footer__logo {
    margin-bottom: 55px;
  }
}
.footer__info {
  column-gap: 95px;
}
.footer__info ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.footer__info ul li {
  color: var(--color-white);
  font-weight: 300;
  line-height: 1.9;
}
.footer__info ul li a {
  color: var(--color-white);
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  overflow-wrap: break-word;
  word-break: break-word;
}
.footer__info-dtl {
  line-height: 1.9;
}
.footer__social {
  margin-top: 40px;
}
.footer__social ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  column-gap: 26px;
}
.footer__social ul li a {
  width: 56px;
  height: 56px;
  background-color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--color-primary);
  font-size: 28px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.footer__social ul li a:hover {
  background-color: var(--color-secondary);
}
.footer__links {
  margin-top: 44px;
}
.footer__links ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.footer__links ul li {
  font-weight: 300;
  margin-bottom: 8px;
}
.footer__links ul li::before {
  content: "";
  color: var(--color-secondary);
  font-family: "Font Awesome 6 Pro";
  font-weight: 400;
  margin-right: 7px;
}
@media (min-width: 768px) {
  .footer__links ul li:not(:first-child) {
    padding-left: 17px;
  }
}
.footer__links ul li a {
  color: var(--color-white);
}
.footer__links ul li a:hover {
  text-decoration: underline;
}
.footer__crdt::before {
  content: "";
  color: var(--color-secondary);
  font-family: "Font Awesome 6 Pro";
  font-weight: 400;
  margin-right: 7px;
}
.footer__crdt a {
  color: inherit;
}
/* SCROLL UP */
a.scrollup {
  color: var(--color-black);
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 46px;
  height: 46px;
  background-color: var(--color-primary);
  z-index: 9;
  margin-left: -24px;
}
a.scrollup svg {
  width: 20px;
}
.outerfloating-div {
  background-color: rgba(var(--color-black-rgb), 0.8);
  font-size: 12px;
  color: var(--color-white);
  border-radius: 5px 0px 0px 5px;
  z-index: 9999;
  padding: 8px 5px 5px 5px;
}
