@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
/***** General CSS *****/

body {
  word-break: break-word;
  font: 15px/25px 'Poppins', sans-serif;
  color: #393939;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: #28b16d;
  white-space: initial;
}

a:hover,
a:focus {
  text-decoration: none;
  color: #393939;
}

a:hover {
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
}

img {
  max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

ul {
  margin: 0 0 20px;
  padding: 0;
  list-style-type: none;
}

p {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}


/***** Font Files *****/

@font-face {
  font-family: 'Bollent';
  src: url(../fonts/Bollent-Regular.otf);
  font-weight: 400;
  font-style: normal
}


/***** Custom Classes *****/

.noPadding {
  padding: 0;
}

.noLeft {
  padding-left: 0;
}

.noRight {
  padding-right: 0;
}

.centerCol {
  float: none;
  margin: 0 auto;
}

.theme-btn {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  padding: 15px 40px;
  color: #fff;
  margin: 20px 20px 20px 0;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  text-transform: capitalize;
  border: 2px solid;
  text-transform: uppercase;
}

.theme-btn:hover {
  background-color: #fff;
  color: #28b16d;
  border-color: #28b16d;
}

.flexRow {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}

.flexCol {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  align-items: center;
}

h1 {
  font-family: 'Bollent';
  font-size: 55px;
  line-height: 60px;
  color: #fff;
  font-weight: 500;
  margin: 0 0 17px;
}

h2 {
  font-family: 'Bollent';
  font-size: 55px;
  line-height: 60px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 30px;
}

h3 {
  font-family: 'Bollent';
  font-size: 30px;
  line-height: 34px;
  color: #000000;
  font-weight: 600;
  margin: 0 0 28px;
}

h4 {
  font-family: 'Bollent';
  font-size: 24px;
  line-height: 29px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 13px;
}

h5 {
  font-family: 'Bollent';
  font-size: 20px;
  line-height: 25px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 20px;
}

h6 {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  line-height: 23px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 22px;
}

select {
  background: #fff url('../images/arrow.png') no-repeat right;
  padding: 0 40px 0 30px;

}

::-webkit-input-placeholder {
  color: #575757;
}

::-moz-placeholder {
  color: #575757;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #575757;
}

:-moz-placeholder {
  color: #575757;
  opacity: 1;
}


/*header css start */

.menuSec {
  padding: 30px 0;
}

.menuSec img {
  margin: 0;
}

.container-fluid {
  padding: 0 3%;
}

.menuSec ul {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menuSec ul li {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0;
}

.menuSec li ul {
  display: none;
}

.menuSec ul li a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: #fff;
  padding: 0;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Montserrat';
  text-transform: uppercase;
}

.menuSec ul li a:after {
  content: '';
  position: absolute;
  top: 35%;
  right: 0;
  width: 1px;
  height: 13px;
  background-color: #393939;
  display: none;
}

.menuSec ul li:last-child a {
  padding-right: 0px;
}

.menuSec ul li:last-child a:after {
  display: none;
}

.menuSec ul li a:hover,
.menuSec ul li a.active {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  color: #c5a376;
}

.menuSec li:hover>ul {
  display: block;
  position: absolute;
  z-index: 1000;
  background-color: #000000;
  left: 0px;
  width: 230px;
  text-align: left;
  top: 38px;
}

.menuSec li>ul>li>a {
  border: none;
  padding: 13px 20px !important;
  color: #fff !important;
  overflow: hidden;
  font-size: 13px;
  line-height: 20px;
}

.menuSec li>ul>li,
.menuSec li>ul>li>a {
  display: block;
  margin: 0;
}

.menuSec li>ul>li>a:before,
.menuSec li>ul>li>a:after {
  display: none;
}

.menuSec li:hover li {
  float: none;
}

.menuSec li ul li a:hover {
  background-color: #ffffff;
  color: #000000 !important;
}

.menuSec ul ul ul {
  left: 100%;
  top: 0;
}

.menuSec ul:before,
.menuSec ul:after {
  content: " ";
  display: table;
}

.menuSec ul:after {
  clear: both;
}

.menuSec li>ul>li:hover>ul {
  left: 230px;
  top: 0px;
  width: 270px;
}

.droopdwon li:hover>ul {
  display: block;
  position: absolute;
  z-index: 1000;
  background-color: #000000;
  left: 0px;
  width: 230px;
  text-align: left;
  top: 40px;
}

.droopdwon {
  float: left;
}

.droopdwon li:hover li a:hover {
  background-color: #ffffff;
  color: #000 !important;
}

/*header css start */

.dropdown-menu {
  position: absolute !important;
  z-index: 1000;
  display: block;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0;
  font-size: 1rem;
  color: #212529;
  text-align: left !important;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
}

/*banner css start */
section.banner {
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../images/banner.jpg);
  position: relative;
  padding: 450px 0px 60px 0px;
  background-attachment: fixed;
}

.menuSec .row {
  align-items: center;
}

header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
}

a.btn-1 {
  display: inline-block;
  font-size: 14px;
  color: #000;
  text-transform: uppercase;
  font-family: 'Montserrat';
  font-weight: 700;
  background-color: #c5a376;
  padding: 18px 25px;
  border-radius: 5px;
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
  transition: all 0.35s ease;
}

.banner-txt {
  text-align: center;
}

.banner-txt h5 {
  font-size: 43px;
  line-height: 1;
  color: #fff;
  margin-bottom: unset;
}

.banner-txt h1 {
  font-size: 100px;
  line-height: 1;
  color: #c5a376;
}

.banner-txt p {
  font-size: 14px;
  color: #fff;
  margin: 0 auto;
  width: 91%;
  margin-bottom: 40px;
}

/*banner end*/

/* about start */
section.about {
  padding: 90px 0 40px;
}

.abt-img img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 20px;
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
}

.abt-txt {
  padding-left: 10px;
}

.abt-txt h4 {
  font-size: 32px;
  line-height: 1;
  color: #0d1724;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.abt-txt h2 {
  font-size: 58px;
  line-height: 1.04;
  color: #c5a376;
  margin-bottom: 18px;
}

.abt-txt p {
  font-size: 15px;
  color: #666;
  margin-bottom: 18px;
  width: 100%;
  line-height: 1.8;
}

.stats-bottom {
  padding: 0 0 25px;
}

.stats-bottom .row {
  border-top: 1px solid #d5d5d5;
}

.stats-item {
  min-height: 60px;
  padding: 4px 15px 7px;
  text-align: center;
}

.stats-item+.stats-item {
  border-left: 1px solid #eadcca;
}

.stats-item strong {
  display: block;
  color: #c5a376;
  font-family: 'Bollent';
  font-size: 60px;
  font-weight: 400;
  line-height: 60px;
}

.stats-item span {
  display: block;
  color: #10131a;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
  text-transform: uppercase;
}

@media (max-width: 991px) {
  .stats-item:nth-child(3) {
    border-left: 0;
  }
}

.services {
  padding: 90px 0 90px;
}

.services-heading {
  margin: 0 auto 35px;
  max-width: 1040px;
  text-align: center;
}

.services-heading h4 {
  color: #0d1724;
  font-size: 30px;
  line-height: 1;
  margin-bottom: 12px;
}

.services-heading h2 {
  color: #c5a376;
  font-size: 60px;
  line-height: 1.04;
  margin-bottom: 18px;
}

.services-heading p {
  color: #626262;
  font-size: 16px;
  line-height: 1.9;
  margin: 0 0 18px;
}

.adolescent-hero,
.adolescent-story,
.adolescent-support,
.adolescent-cta,
.adult-hero,
.adult-story,
.adult-support,
.adult-cta,
.athlete-hero,
.athlete-story,
.athlete-support,
.athlete-cta {
  position: relative;
}

.adolescent-hero,
.adult-hero,
.athlete-hero {
  padding: 90px 0 40px;
}

.adolescent-image img,
.adult-image img,
.athlete-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 20px;
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
  display: block;
}

.adolescent-copy,
.adult-copy,
.athlete-copy {
  padding-left: 10px;
}

.adolescent-copy h4,
.adolescent-header h4,
.adolescent-support-copy h5,
.adult-copy h4,
.adult-header h4,
.adult-support-copy h5,
.athlete-copy h4,
.athlete-header h4,
.athlete-support-copy h5,
.contact-copy h4 {
  font-size: 32px;
  line-height: 1;
  color: #0d1724;
  margin-bottom: 12px;
}

.adolescent-copy h2,
.adolescent-header h2,
.adolescent-support-copy h2,
.adult-copy h2,
.adult-header h2,
.adult-support-copy h2,
.athlete-copy h2,
.athlete-header h2,
.athlete-support-copy h2,
.contact-copy h2 {
  color: #c5a376;
  font-size: 60px;
  line-height: 1.04;
  margin-bottom: 18px;
}

.adolescent-copy p,
.adolescent-header p,
.adolescent-support-box p,
.adult-copy p,
.adult-header p,
.adult-support-box p,
.athlete-copy p,
.athlete-header p,
.athlete-support-box p,
.contact-copy p {
  color: #666;
  font-size: 16px;
  line-height: 1.9;
  margin: 0 0 18px;
}

.adolescent-story,
.adult-story,
.athlete-story {
  padding: 90px 0 90px;
}

.adolescent-header,
.adult-header,
.athlete-header {
  max-width: 1040px;
  margin: 0 auto;
  text-align: center;
}

.adolescent-support,
.adult-support,
.athlete-support {
  padding: 90px 0 100px;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  background-image: url(../images/offer-bg.jpg);
}

.adolescent-support-copy,
.adult-support-copy,
.athlete-support-copy {
  text-align: center;
  margin-bottom: 20px;
}

.adolescent-support-copy h5,
.adult-support-copy h5,
.athlete-support-copy h5 {
  color: #fff;
  margin-bottom: 12px;
}

.adolescent-support-copy h2,
.adult-support-copy h2,
.athlete-support-copy h2 {
  color: #c5a376;
}

.adolescent-support-box,
.adult-support-box,
.athlete-support-box {
  margin-top: 25px;
  border: 1px solid #333943;
  padding: 28px 24px;
  border-radius: 20px;
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
}

.adolescent-support-box p,
.adolescent-support-box li,
.adult-support-box p,
.adult-support-box li,
.athlete-support-box p,
.athlete-support-box li {
  color: #fff;
}

.adolescent-story--alt,
.adult-story--alt,
.athlete-story--alt {
  padding-top: 20px;
}

.adolescent-support--family,
.adult-support--family,
.athlete-support--family {
  padding-top: 80px;
}

.adolescent-cta,
.adult-cta,
.athlete-cta {
  padding: 70px 0 90px;
  background: #f4f5f5 url('../images/cont-bg.jpg') center center / cover no-repeat;
}

.contact-copy {
  padding-left: 40px;
}

.contact-copy h4 {
  font-size: 32px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.contact-copy h2 {
  font-size: 64px;
  line-height: 0.95;
}

.athlete-support-box--stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.athlete-skill-block {
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
}

.athlete-skill-block h3 {
  color: #c5a376;
  font-size: 28px;
  margin: 0 0 10px;
}

.athlete-skill-block p {
  margin: 0;
}

@media (max-width: 767px) {

  .adolescent-copy h2,
  .adolescent-header h2,
  .adolescent-support-copy h2,
  .adult-copy h2,
  .adult-header h2,
  .adult-support-copy h2,
  .athlete-copy h2,
  .athlete-header h2,
  .athlete-support-copy h2,
  .contact-copy h2 {
    font-size: 36px;
    line-height: 1.08;
  }

  .adolescent-image img,
  .adult-image img,
  .athlete-image img {
    height: 420px;
  }

  .contact-copy {
    padding-left: 0;
  }

  .adolescent-support-box,
  .adult-support-box,
  .athlete-support-box {
    padding: 20px 18px;
  }

  .service-content-list,
  .athlete-support-box--stack {
    grid-template-columns: 1fr;
  }
}

.services-row>div {
  margin-bottom: 25px;
}

.service-card {
  position: relative;
  height: 100%;
  overflow: hidden;
  background: #fff;
  border-radius: 20px;
  border: 1px solid #e1e1e1;
}

.service-image {
  display: block;
  width: 100%;
  height: 265px;
  object-fit: cover;
  border-radius: 20px;
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
}

.service-content {
  position: relative;
  min-height: 157px;
  padding: 30px 18px 30px;
}

.service-icon {
  position: absolute;
  top: -29px;
  right: 18px;
  width: 70px;
  height: 70px;
  object-fit: contain;
  border-radius: 50%;
  background-color: #fff;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-content h3 {
  color: #0d1724;
  font-size: 30px;
  line-height: 1;
  margin: 0 0 10px;
  text-transform: capitalize;
}

.service-content p {
  color: #626262;
  font-size: 14px;
  line-height: 24px;
  margin: 0 0 8px;
}

.service-content ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px 12px;
  margin: 0;
}

.service-content li {
  position: relative;
  padding-left: 16px;
  color: #222;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  line-height: 24px;
}

.service-content li::before {
  position: absolute;
  top: 9px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c5a376;
  content: '';
}

.service-link {
  display: block;
  padding: 15px 15px 15px;
  border-top: 1px solid #e1e1e1;
  color: #161b23;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  text-decoration: underline;
  text-transform: uppercase;
}

.service-link:hover {
  color: #c5a376;
}

.service-icon:hover {
  background-color: #c5a376;
}

@keyframes sectionReveal {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes imageDrift {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.06);
  }
}

.services-heading,
.offer-txt,
.test-txt-top,
.contact-copy,
.footer-content {
  animation: sectionReveal .8s ease both;
}

.service-card {
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  animation: sectionReveal .7s ease both;
}

.services-row>div:nth-child(2) .service-card {
  animation-delay: .12s;
}

.services-row>div:nth-child(3) .service-card {
  animation-delay: .24s;
}

.service-card:hover {
  border-color: #c5a376;
  box-shadow: 0 14px 30px rgba(13, 23, 36, .14);
  transform: translateY(-8px);
}

.service-image {
  transition: transform .6s ease;
}

.service-card:hover .service-image {
  animation: imageDrift .6s ease forwards;
}

.service-icon {
  transition: transform .35s ease, background-color .35s ease;
}

.service-card:hover .service-icon {
  background-color: #c5a376;
  transform: rotate(8deg) scale(1.08);
}

.service-link,
.btn-1,
.footer-newsletter button {
  position: relative;
  overflow: hidden;
  transition: color .3s ease, background-color .3s ease, transform .3s ease;
}

.service-link:hover,
.btn-1:hover,
.footer-newsletter button:hover {
  transform: translateY(-3px);
}

.service-link::after,
.btn-1::after,
.footer-newsletter button::after {
  position: absolute;
  top: 0;
  left: -110%;
  width: 70%;
  height: 100%;
  background: rgba(255, 255, 255, .25);
  content: '';
  transform: skewX(-20deg);
  transition: left .45s ease;
  display: none;
}

.service-link:hover::after,
.btn-1:hover::after,
.footer-newsletter button:hover::after {
  left: 130%;
}

.contact-form {
  transition: box-shadow .35s ease, transform .35s ease;
}

.contact-form:hover {
  box-shadow: 0 14px 38px rgba(24, 37, 48, .15);
  transform: translateY(-4px);
}

.form-field input,
.form-field textarea,
.footer-newsletter input {
  transition: border-color .25s ease, box-shadow .25s ease;
}

.form-field input:focus,
.form-field textarea:focus,
.footer-newsletter input:focus {
  border-color: #c5a376;
  box-shadow: 0 0 0 3px rgba(197, 163, 118, .16);
}

.footer-socials a {
  transition: color .3s ease, background-color .3s ease, border-color .3s ease, transform .3s ease;
}

.footer-socials a:hover {
  transform: translateY(-5px) rotate(-8deg);
}

.footer-links a,
.footer-contact p i {
  transition: color .25s ease, transform .25s ease;
}

.footer-links a:hover {
  padding-left: 4px;
}

.footer-contact p:hover i {
  transform: scale(1.2);
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

/* about end */
/* offer start */
section.offer {
  padding: 90px 0px 100px;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  background-image: url(../images/offer-bg.jpg);
}

.offer-txt h5 {
  font-size: 30px;
  line-height: 1;
  color: #fff;
  margin-bottom: 12px;
}

.offer-txt h2 {
  font-size: 60px;
  line-height: 1.04;
  color: #c5a376;
}

.off-main {
  margin-top: 25px;
  border: 1px solid #333943;
  padding: 28px 24px;
  border-radius: 20px;
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
}

.off-img-had {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 40px;
}

.off-img-had h4 {
  font-size: 25px;
  line-height: 1;
  color: #fff;
  text-transform: uppercase;
  margin: unset;
}

.off-img-had h4 span {
  display: block;
}

.off-img-had img {
  width: 30px;
  object-fit: contain;
}

.off-main p {
  font-size: 15px;
  color: #fff;
  line-height: 26px;
}

.service-content-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 22px;
  margin: 24px 0 0;
  padding-left: 0;
}

.service-content-list li {
  position: relative;
  padding-left: 18px;
  color: #fff;
  font-size: 15px;
  line-height: 1.7;
  list-style: none;
}

.service-content-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c5a376;
}

/* offer end */
section.testimonail {
  padding: 100px 0%;
}

.testimonial-main-box {
  gap: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  box-shadow: 0 0 3px #00000061;
  margin: 30px 0px;
  border-top-left-radius: 20px;
}

.testimonial-main-img {
  width: 40%;
  height: 350px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 20px;
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.testimonial-main-text h6 {
  font-size: 14px;
  color: #040404;
}

.testimonial-main-text h4 {
  font-size: 30px;
  color: #c5a376;
}

.test-txt-top {
  text-align: center;
}

.test-txt-top h2 {
  font-size: 50px;
  line-height: 1;
  color: #c5a376;
}

.test-txt-top h4 {
  font-size: 30px;
  color: #0d1724;
}

.testimonial-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-main-text {
  height: auto;
  display: flex;
  padding: 0px 0px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}

.testimonial-main-text-box p {
  margin-bottom: 20px;
  line-height: 26px;
  font-size: 14px;
}

.testimonial-main-text-box {
  /* height: 200px; */
  padding-right: 8px;
  overflow-y: auto;
}

.testimonial-main-text-box::-webkit-scrollbar {
  width: 4px;
  background-color: #fff;
}

.testimonial-main-text-box::-webkit-scrollbar-thumb {
  background-color: var(--themeColor2);
  outline: 1px solid var(--themeColor2);
  border-radius: 100px;
}

.testimonial-main-text-box::-webkit-scrollbar-track {
  box-shadow: inset 0 0 10px rgb(0 0 0 / 55%);
}

.testimonial-main-text ul {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.testimonial-main-text ul li h5 span {
  display: block;
  font-size: 14px;
  color: var(--themeColor);
}

.review-rate {
  gap: 8px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.review-rate span {
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-rate i {
  font-size: 12px;
  color: #fbcd19;
}

.testimonial-left-box {
  padding: 0px;
  display: flex;
  height: 235px;
  overflow: hidden;
  position: relative;
  border-radius: 15px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  background-color: var(--white);
  box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.11);
  border-radius: 20px;
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
}

.testimonial-left-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.testimonialLeftSlider .slick-slide,
.testimonialRightSlider .slick-slide {
  opacity: 1;
  margin: 0px;
}

.testimonialLeftSlider .slick-list,
.testimonialRightSlider .slick-list {
  overflow: visible;
}

.testimonialRightSlider .testimonial-left-box {
  justify-content: flex-end
}

.testimonialRightSlider .testimonial-left-box::before {
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  content: '';
  height: 100%;
  position: absolute;
  background: linear-gradient(180deg, rgb(0 0 0 / 10%) 0%, rgb(0 0 0 / 60%) 70%);
}

.testimonialRightSlider .testimonial-left-box img {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0px;
  position: absolute;
}

.testimonialRightSlider .testimonial-left-box ul {
  z-index: 2;
  position: relative;
}

.testimonialRightSlider .testimonial-left-box ul * {
  color: var(--white);
}

.testimonialRightSlider .testimonial-left-box ul i {
  color: #fbcd19;
}

.contact-section {
  position: relative;
  padding: 70px 0 90px;
  background: #f4f5f5 url('../images/cont-bg.jpg') center center / cover no-repeat;
  margin-top: 70px;
}

.contact-section .container,
.contact-section .row {
  position: relative;
  min-height: 350px;
}

.contact-form {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 38px 32px 42px;
  border-radius: 22px 0 22px 0;
  background: #fff;
  box-shadow: 0 8px 34px rgba(24, 37, 48, .08);
  margin-top: 0;
}

a.btn-1:hover {
  background-color: #000;
  color: #fff;
  transition: 1s;
}

.form-field {
  margin-bottom: 10px;
}

.form-field label {
  display: block;
  margin-bottom: 10px;
  color: #1f252b;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 500;
}

.form-field input,
.form-field textarea {
  display: block;
  width: 100%;
  border: 1px solid #c9c9c9;
  border-radius: 4px;
  color: #333;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  padding: 0 14px;
}

.form-field input {
  height: 52px;
  margin-bottom: 20px;
}

.form-field textarea {
  height: 150px;
  padding-top: 13px;
  resize: none;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #929292;
}

.contact-submit {
  display: inline-block;
  border: 0;
  border-radius: 0 0 6px 0;
  margin-top: 9px;
  padding: 13px 20px;
  font-size: 10px;
  cursor: pointer;
  font-size: 14px;
  color: #000;
  text-transform: uppercase;
  font-family: 'Montserrat';
  font-weight: 700;
  background-color: #c5a376;
  padding: 18px 25px;
  border-radius: 5px;
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
}

.contact-copy-col {
  align-self: flex-start;
  padding-top: 0;
}

.contact-copy {
  padding-left: 40px;
  margin-top: 0;
}

.contact-copy h4 {
  margin-bottom: 8px;
  color: #0d1724;
  font-size: 32px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.site-footer {
  color: #fff;
  background: #0d1724 url('../images/footer-bg.jpg') center center / cover no-repeat;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 100px;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.footer-logo {
  display: block;
  width: 126px;
}

.footer-logo img {
  display: block;
  width: 100%;
}

.footer-socials {
  display: flex;
  gap: 8px;
  align-items: center;
}

.footer-socials a {
  display: flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 50%;
  color: rgba(255, 255, 255, .26);
  font-size: 15px;
}

.footer-socials a.social-active,
.footer-socials a:hover {
  border-color: #c5a376;
  background: #c5a376;
  color: #18202a;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.35fr .95fr 1.25fr 1fr;
  gap: 45px;
  padding: 40px 0 35px;
}

.site-footer h4 {
  margin: 0 0 30px;
  color: #c5a376;
  font-family: 'Bollent';
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
}

.site-footer p,
.site-footer a,
.footer-newsletter input,
.footer-newsletter button {
  font-family: 'Montserrat', sans-serif;
}

.footer-about p {
  max-width: 320px;
  margin: 0;
  color: rgba(255, 255, 255, .7);
  font-size: 14px;
  line-height: 24px;
}

.footer-link-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.footer-links ul {
  margin: 0;
}

.footer-links li {
  margin-bottom: 13px;
}

.footer-links a {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
}

.footer-links a:hover {
  color: #c5a376;
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, .78);
  font-size: 14px;
  line-height: 23px;
}

.footer-contact i {
  width: 12px;
  color: #c5a376;
  text-align: center;
}

.footer-newsletter form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-newsletter input {
  width: 100%;
  height: 55px;
  margin-bottom: 19px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 0 0 14px 0;
  outline: none;
  background: transparent;
  color: #fff;
  font-size: 10px;
}

.footer-newsletter input::placeholder {
  color: rgba(255, 255, 255, .7);
}

.footer-newsletter button {
  min-width: 107px;
  height: 41px;
  border: 0;
  border-radius: 0 0 6px 0;
  background: #c5a376;
  color: #111820;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, .1);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  text-align: center;
}

.contact-copy h2 {
  margin-bottom: 18px;
  color: #c5a376;
  font-size: 78px;
  line-height: 0.92;
  letter-spacing: 0.01em;
}

.contact-copy p {
  margin: 0 0 18px;
  color: #535353;
  font-size: 16px;
  line-height: 1.8;
  max-width: 600px;
}

.contact-copy .btn-1 {
  margin-top: 14px;
  display: inline-block;
}

@media (max-width: 767px) {
  .contact-section {
    padding: 40px 0 55px;
  }

  .contact-section .container,
  .contact-section .row {
    min-height: 0;
  }

  .contact-form {
    width: 100%;
    padding: 25px 20px 28px;
  }

  .contact-copy-col {
    padding-top: 38px;
  }

  .contact-copy {
    padding-left: 0;
    text-align: center;
  }

  .contact-copy h2 {
    font-size: 30px;
  }

  .footer-top {
    min-height: 85px;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 30px 20px;
  }

  .footer-about p {
    max-width: none;
  }

  .footer-newsletter input {
    max-width: 220px;
  }
}

.testimonialMainSlider .slick-slide {
  margin: 0px 1px;
}

.testimonialMainSlider .slick-prev,
.testimonialMainSlider .slick-next {
  width: 50px;
  height: 50px;
  display: flex;
  border-radius: 50%;
  align-items: center;
  transition: ease-in-out;
  justify-content: center;
  transition-duration: 0.5s;
  border: 1px solid #7f7f7f;
  background-color: var(--white);
}

.testimonialMainSlider .slick-prev:hover,
.testimonialMainSlider .slick-next:hover {
  transition: ease-in;
  transition-duration: 0.5s;
  border-color: #c5a376;
  background-color: #c5a376;
  color: #000;
}

.testimonialMainSlider .slick-prev {
  top: 58px;
  left: -70px;
  transform: rotate(180deg);
}

.testimonialMainSlider .slick-next {
  top: unset;
  bottom: 20px;
  right: -91px;
}

.testimonialMainSlider .slick-prev::before,
.testimonialMainSlider .slick-next::before {
  width: 100%;
  height: 100%;
  display: flex;
  content: '\f061';
  position: absolute;
  color: #000;
  align-items: center;
  justify-content: center;
  font-family: 'fontawesome';
  transition: ease-in;
  transition-duration: 0.5s;
}

.testimonialMainSlider .slick-prev:hover::before,
.testimonialMainSlider .slick-next:hover::before {
  color: var(--white);
  transition: ease-in;
  transition-duration: 0.5s;
}

/* testimonials-sec */

/* page-wide motion */
header {
  animation: pageDrop .8s ease both;
}

@keyframes pageDrop {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.banner-txt h5,
.banner-txt h1,
.banner-txt p,
.banner-txt .btn-1 {
  animation: sectionReveal .8s ease both;
}

.banner-txt h1 {
  animation-delay: .12s;
}

.banner-txt p {
  animation-delay: .24s;
}

.banner-txt .btn-1 {
  animation-delay: .36s;
}

.abt-img,
.abt-txt,
.stats-item,
.off-main,
.testimonial-main-box,
.testimonial-left-box,
.contact-form,
.footer-top,
.footer-bottom {
  animation: sectionReveal .8s ease both;
}

.abt-img img,
.off-main,
.testimonial-left-box,
.testimonial-main-box {
  transition: transform .4s ease, box-shadow .4s ease, filter .4s ease;
}

.abt-img:hover img {
  filter: saturate(1.08);
  transform: scale(1.025);
}

.stats-item {
  transition: background-color .3s ease, transform .3s ease;
}

.stats-item:hover {
  background-color: rgba(197, 163, 118, .08);
  transform: translateY(-4px);
}

.off-main:hover,
.testimonial-left-box:hover {
  box-shadow: 0 12px 28px rgba(0, 0, 0, .16);
  transform: translateY(-7px);
}

.testimonial-main-box:hover {
  box-shadow: 0 12px 28px rgba(0, 0, 0, .14);
  transform: translateY(-5px);
}

.testimonial-main-img img {
  transition: transform .6s ease;
}

.testimonial-main-box:hover .testimonial-main-img img {
  transform: scale(1.06);
}

.menuSec ul li a {
  transition: color .3s ease, transform .3s ease;
}

.menuSec ul li a:hover {
  transform: translateY(-2px);
}

.footer-logo,
.footer-bottom {
  transition: opacity .3s ease, transform .3s ease;
}

.footer-logo:hover {
  opacity: .8;
  transform: translateY(-3px);
}

section.services.te {
  padding-top: 0;
}

/* ===== Booking Form Styles ===== */

.booking-section {
  padding: 80px 0 100px;
  background: #f9f9f9;
}

.booking-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.booking-header {
  text-align: center;
  margin-bottom: 50px;
}

.booking-header h2 {
  color: #c5a376;
  font-size: 60px;
  line-height: 1.04;
  margin-bottom: 15px;
  font-weight: 600;
}

.booking-header p {
  color: #666;
  font-size: 16px;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

.booking-form {
  background: #fff;
  border: 1px solid #e8e8e8;
  padding: 45px;
  border-radius: 20px;
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-bottom: 25px;
}

.form-row-full {
  grid-template-columns: 1fr;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  color: #0d1724;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: capitalize;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.03em;
}

.required {
  color: #c5a376;
  font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  color: #333;
  background: #fff;
  transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #999;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #c5a376;
  outline: none;
  box-shadow: 0 0 0 3px rgba(197, 163, 118, 0.1);
}

.form-group textarea {
  resize: vertical;
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 18px;
  padding-right: 35px;
}

.submit-booking {
  width: 100%;
  margin-top: 15px;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  border: unset;
  background-color: #bb9b70;
}

@media (max-width: 767px) {
  .booking-header h2 {
    font-size: 36px;
    line-height: 1.08;
  }

  .booking-form {
    padding: 30px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .booking-section {
    padding: 60px 0 80px;
  }
}