

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat';
    background-color: #F2F0EB;
   font-display: swap; 

 
}

:root{
  --bg-left: #F2F0EB;
  --text: #111;
  --accent: #111;

  --cut-top: 30%;               
  --cut-bottom: 0%;           
   --circle: 100px;  
   
    --acsc-mint: #A8D3B9;
    --acsc-white: #ffffff;
    --acsc-yellow: #FADB4B;
    --faq-q-col: 360px;
    --faq-radius: 14px;
}



a { color: inherit; text-decoration: none; }



@media (max-width: 400px) {
  body{
    text-align: center;
  }
}





/* ===============  Hero  =============== */
.hero{



  position: relative;
  background: var(--bg-left);
}

/* Left panel */
nav{
 background-color: #43675D;
 transform: skew(-18deg);
 border-radius: 5px;
}
.navbar{
    padding-left: 10%;


 
}
.nav-item .nav-link{
  color: white!important;
  font-size: 19px;
  margin-right: 2%;
  font-weight: bold;
}
.logo{
  width: 300px;
}






/* Text block */
.hero__content{

  margin-top: 5%; 
  padding-left: 10%;
 
 
}
.hero__content h1{
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: .2px;
  margin: 0 0 16px;
}
.hero__content p{
  color:#666;
  margin: 0 0 22px;
  font-size: 22px;
}
.btn{
  display:inline-block;
  padding: 12px 22px;
  background: #44655B;
  color:#fff;
  border-radius: 4px;
  font-weight: 600;
}

.social .btn{
  display:inline-block;
  padding:  8px 10px;
  background: #44655B;
  color:#fff;

  font-weight: 600;
}
/* Right panel (image with diagonal cut) */
.hero__right{
  position: relative;
  background-image: url("../img/header-image.webp");
  background-size: cover;
  background-position: center;

  clip-path: polygon(
    var(--cut-top) 0%, 100% 0%,
    100% 100%, var(--cut-bottom) 100%
  );
  min-height: 800px;

}




.btn.btn-primary {
    color: white;
    border: none;
    transform: skew(-18deg);
    transition: 0.5s;}

.btn-primary:hover{
  background-color: #FADB4B;

}
    .btn.btn-primary:hover{
color: #3E4D48;
    }

.navbar-collapse ul{
transform: skew(5deg);
}
/* ===============  Responsive  =============== */
@media (max-width: 980px){
  /* So the right image takes a bit more width on tablets */
  .hero{
    grid-template-columns: 1.1fr .9fr;
  }
}

@media (max-width: 760px){
  /* Stack vertically on mobile; drop the clip for simplicity */
  .hero{
    grid-template-columns: 1fr;
  }
  .hero__right{
    order:-1;                 /* image first on mobile */
    min-height: 42vh;
    clip-path: none;
  }

}










/* ===== Features Section with Half-Overlapping Circles ===== */
.features-section {
  position: relative;
  background-color: #3E4D48; /* Dark green-gray from palette */
  color: #fff;
padding-bottom: 2%;
  overflow: visible;
}

/* The circular icon */
.feature-icon {
  position: absolute;
  top: -50px; /* half above the section */
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 100px;
  background-color: #FADB4B; /* bright yellow */
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #3E4D48;
  font-size: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

/* Container alignment */
.feature-item {
  position: relative;
  padding-top: 70px; /* ensures text sits below the circle */
}

.feature-item:hover .feature-icon {
  background-color: #A8D3B9; /* soft green hover */
  transform: translateX(-50%) scale(1.05);
}

.feature-item h6 {
  font-weight: 700;
  letter-spacing: 1px;
  margin-top: 50px;
  color: #fff;
}

.feature-item p {
  color: #dcdcdc;
  margin-top: 5px;
}


.feature-col{
  margin-bottom: 1%;
}
/* Responsive adjustment */


@media (max-width: 991px) {
  .feature-col{
  margin-bottom: 10%;
}
}
@media (max-width: 768px) {
  .feature-icon {
    width: 80px;
    height: 80px;
    top: -40px;
    font-size: 1.5rem;
  }

  .feature-item {
    padding-top: 60px;
  }
}


.hero__content i{
  font-size: 30px;
}

.hero__content button{
  border: none;
}
.hero__content button a:hover{
  color: #FADB4B;
}
.hero__content button a{

  font-size: 22px;
}



/* start offer */
  .about{
    position: relative;
    overflow: hidden;
    background: #3E4D48;
  }

@media (min-width: 992px) {
 .about::before {
    content: "";
    position: absolute;
    width: 70%;
    height: 100%;
    top: 0;
    right: -400px;
    background-color: #F2F0EB;

    /* add padding effect (acts as an inner border before image area) */
    padding: 80px; 
    box-sizing: border-box;




    /* keep same skew */
    transform: skew(28deg);
    transform-origin: top left;

    z-index: 1;
        
    }

    .about .about-content {
        margin-bottom: 60px;
    }
}

@media (max-width: 991px) {
  .about::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 100%;
    top: 0;
    left: -400px;
    background-color: #F2F0EB;

    /* padding and inner image centering */
    padding: 60px;
    box-sizing: border-box;


    transform: skew(0);
    transform-origin: top right;

    z-index: 1;
  }
}










.about .about-content {
    position: relative;
    z-index: 9;
}

.about .about-img {
    position: relative;
    z-index: 10;
display: flex;
justify-content:center ;
align-items: center;
}
.about .about-img img{
  height: 700px;

}


.about .tab-class .nav .nav-item a {
    position: relative;
    transform: skew(18deg);
    text-align: center;
    background: white;
    color: #3E4D48;
}

.about .tab-class .nav .nav-item a span {
    transform: skew(-18deg);
}

.about .tab-class .nav .nav-item a.active {
    background: #FADB4B;
    color: #3E4D48;
}


.about-span{
  font-size: 20px;
}
.fa-gift{
  font-size: 22px;
}

@media (max-width: 500px) {
.about .about-img img {
    height: 400px;
}
}


/* end offer */

/*** Fitness Goal Start ***/
.goal {
    position: relative;
    overflow: hidden;
    background: #F2F0EB;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* .goal::after {
    content: "";
    position: absolute;
    width: 60%;
    height: 100%;
    top: 0;
    right: 0;
    margin-right: -320px;
    transform: skew(22deg);
    background: #3E4D48;
z-index: 0;
} */

.goal .goal-item {
    transform: skew(10deg);
    box-shadow: 0 0 45px rgba(12, 24, 68, 0.4);
    margin: 0 15px 15px 15px;
}



.goal p{
  font-size: 20px;
}

.goal .goal-img img{
width: 100%;
  height: 300px;
clip-path: polygon(19% 0, 100% 0, 84% 100%, 0 100%);
  z-index: 2;
}
@media (min-width: 992px) {
    .goal .goal-content {
        padding-bottom: 80px;
    }
}

@media (max-width: 991px) {
    .goal .goal-content {
        padding-bottom: 0;
    }
    .goal .goal-img img {

clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);

}
}

@media (max-width: 400px) {
  .goal-buttons{
    text-align: center;
  }
.goal-buttons button{
 
  margin-bottom: 5%;
}



}
/*** Fitness Goal End ***/



/* start core */
.core{
  padding: 5%;
  padding-bottom: 2%;
}

.core-col{
  clip-path: polygon(10% 0, 76% 0, 95% 100%, 28% 100%)
}
.core p{
    font-size: 20px;
}

.cor img{
  width: 100%;
}
@media (max-width: 1200px) {

  .core-buttons{
    text-align: center;
  }
  .core button{
  
    margin-bottom: 5%;
  }
}

@media (max-width: 991px) {
.core-col{
  clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
  margin-bottom: 2%;
}
}



/* end core */

/*** Explore Fitness Start ***/
.explore {
    position: relative;
    overflow: hidden;
    background-color: #3E4D48;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    
  
}

/*** Explore Fitness End ***/






/*** Features Start ***/
.feature {
    overflow: hidden;
}

.feature-carousel.owl-carousel {
    z-index: 9;
    padding: 0 60px;
    transform: skew(10deg);
}

.feature .feature-shaps {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 300px;
    margin-top: -200px;
    transform: skewX(-10deg);
    border: 3px solid #3E4D48;
    z-index: 2;
}

@media (max-width: 576px) {
    .feature .feature-shaps {
        width: 90%;
        margin-left: 5%;
    }
}

.feature .feature-item {
    position: relative;
}

.feature .feature-item .feature-img {
    position: relative;
    overflow: hidden;
}

.feature .feature-item .feature-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background: rgba(255, 245, 225, .5);
    transition: 0.5s;
}

.feature .feature-item:hover .feature-img::after {
    height: 100%;
    transform: scaleX(-1.1);
}

.feature .feature-item .feature-img img {
    transition: 0.5s;
}

.feature .feature-item:hover .feature-img img {
    transform: scaleX(-1.1);
}

.feature .feature-item .feature-content {
    position: relative;
    background: var(--bs-white);
    z-index: 1;
}

.feature .feature-item .feature-content h4 {
    transition: 0.5s;
     color: #3E4D48;
}

.feature .feature-item:hover .feature-content h4 {
    color: #3E4D48;
    font-weight: 600;
}

.feature .feature-item .feature-content::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    top: 0;
    left: 0;
    background-color: #A8D3B9;
    transition: 0.5s;
    z-index: -1;
}

.feature .feature-item:hover .feature-content::after {
    height: 100%;
}

.feature-carousel .owl-nav .owl-prev,
.feature-carousel .owl-nav .owl-next {
    position: absolute;
    width: 50px;
    height: 50px;
    bottom: -122px;
    transform: skew(18deg);
    background: #A8D3B9;
    color: #3E4D48;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.feature-carousel .owl-nav .owl-prev i,
.feature-carousel .owl-nav .owl-next i {
    transform: skew(-18deg);
}

.feature-carousel .owl-nav .owl-prev {
    left: 0;
}
.feature-carousel .owl-nav .owl-next {
    right: 150px;
}

.feature-carousel .owl-nav .owl-prev:hover,
.feature-carousel .owl-nav .owl-next:hover {
    background: #3E4D48;
    color: var(--bs-white);
}
/*** Features End ***/

/* start cta  */

/* Pulse the whole button */
.cta-pulse {
  position: relative;
  transform-origin: center;
  animation: pulse-scale 1.6s ease-in-out infinite;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .cta-pulse { animation: none; }
}

@keyframes pulse-scale {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0,0,0,0.0); }
  50%      { transform: scale(1.04); box-shadow: 0 0 0 10px rgba(0,0,0,0.06); }
}


.cta-buttons {
display: flex;
justify-content: center;
}
@media (max-width: 400px) {

.cta-buttons {
  text-align: center;
}
.cta-buttons .button {
margin-bottom: 5%;
}

}


/* end cta  */

/* start advanced */

.advanced p{
  font-size: 20px;
}


@media (min-width: 992px) {

    .about .about-content {
        margin-bottom: 60px;
    }
}


/* end advanced */


/*** Team Start ***/
.team {
    overflow: hidden;
}

.team .team-item {
    position: relative;
   
}
.team .team-item .team-img {
    position: relative;
    overflow: hidden;
    transform: matrix(1, -0.1, 0, 1, 0, 0);
    transition: 0.5s;

}

.team .team-item .team-img img {
    transition: 0.5s;

}

.team .team-item:hover .team-img img {
    transform: scale(1.1);
}









.team .team-item:hover .team-img {
    transform: matrix(1, 0.1, 0, 1, 0, 0);
    border: none;
}

.team-buttons{
  display: flex;
  justify-content: center;
}
@media (max-width: 600px) {

.team-buttons {
  text-align: center;
}
.team-buttons .button {
margin-bottom: 5%;
}

}

/*** Team End ***/


/*** Testimonial Start ***/
.testimonial {
    position: relative;
    overflow: hidden;
    background-color: #3E4D48;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
}

.testimonial-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.testimonial-item .quote-icon {
    position: absolute;
    top: 0;
    left: 0;
    color: var(--bs-white);
}



.testimonial-item .testimonial-img img {
    width: 200px; 
    height: 200px;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: absolute;
    width: 50px;
    height: 50px;
    top: 0;
    transform: skew(18deg);
    background: #FADB4B;
    color: #3E4D48;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-prev i,
.testimonial-carousel .owl-nav .owl-next i {
    transform: skew(-18deg);
}

.testimonial-carousel .owl-nav .owl-prev {
    left: 0;
}
.testimonial-carousel .owl-nav .owl-next {
    right: 0;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--bs-white);
    color: var(--bs-primary);
}
/*** Testimonial End ***/


/*** Blog Start ***/
.blog {
    overflow: hidden;
}

.blog .blog-item {
    position: relative;
    /* border: 1px solid #3E4D48; */
    transition: 0.5s;
  
}

.blog .blog-item .blog-content {
    background: var(--bs-white);
}

.blog .blog-item .blog-img {
    position: relative;
    overflow: hidden;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}





.blog-content .blog-comment {
    transform: skew(8deg);
    background: #3E4D48;
}

.blog-content .blog-comment div.small,
.blog-content .blog-comment span {
    transform: skew(-4deg);
}

.blog-carousel .owl-stage-outer {
    margin-right: -1px;
}

.blog-carousel .owl-dots {
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.blog-carousel .owl-dots .owl-dot {
    width: 30px;
    height: 30px;
    margin: 30px 10px 0 10px;
    background: #3E4D48;
    transform: skew(18deg);
    transition: 0.5s;
}

.blog-carousel .owl-dots .owl-dot.active {
    width: 30px;
    height: 50px;
    background: #3E4D48;
    transition: 0.5s;
}

.blog-carousel .owl-dots .owl-dot span {
    position: relative;
    margin-top: 50%;
    margin-left: 50%;
    transform: translate(-50%, -50%);
    margin-right: -1px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.blog-carousel .owl-dots .owl-dot.active span::after {
    background: white;
    height: 30px;
    margin-top: 10px;
}

.blog-carousel .owl-dots .owl-dot span::after {
    content: "";
    width: 15px;
    height: 15px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-top: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #3E4D48;
    transition: 0.5s;
}

.btn-dark i{
  color: #FADB4B;
}
.btn-dark:hover{
  background-color: #FADB4B;
  color: #3E4D48;
}

.btn-dark:hover i{

  color: #3E4D48;
}
/*** Blog End ***/

/* faq */
.faq{
  background-color: #3E4D48;
}

.faq-section {
  background: transparent;
  color: var(--acsc-white);
}

.faq-title {
  color: var(--acsc-white);
  font-weight: 800;
  letter-spacing: .2px;
}

.faq-intro {
  color: rgba(255,255,255,.9);
}

/* Accordion base */
.faq-accordion .accordion-item {
  background: transparent;
  border: 1px solid var(--acsc-mint);
  /* border-radius: 14px; */
  overflow: hidden;
  margin-bottom: 12px;
}

.faq-accordion .accordion-button {
  background: transparent;
  color: var(--acsc-white);
  font-weight: 600;
  padding: 1rem 1.25rem;
  box-shadow: none;
}

/* --- Custom Chevron Arrow in Yellow (#FADB4B) --- */
.faq-accordion .accordion-button::after {
  background-image: none !important;   /* remove default Bootstrap arrow */
  content: "▾";                        /* custom down arrow */
  font-size: 1.25rem;
  color: #FADB4B;                      /* yellow arrow color */
  transform: rotate(0deg);
  transition: transform 0.25s ease;
  margin-left: auto;                   /* push arrow to right */
}

.faq-accordion .accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);           /* rotate when opened */
}

/* Expanded state: keep transparent, add subtle outline */
.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--acsc-white);
  background: transparent;
  border-bottom: 1px solid rgba(168, 211, 185, .35);
  box-shadow: none;
}

.faq-accordion .accordion-body {
  color: var(--acsc-white);
  background: transparent;
}

/* Focus ring for accessibility (mint glow) */
.faq-accordion .accordion-button:focus {
  border-color: var(--acsc-mint);
  box-shadow: 0 0 0 .25rem rgba(168, 211, 185, .35);
}

/* Optional: tighter container on large screens */
@media (min-width: 992px) {
  .faq-section .container { 
    max-width: 980px; 
  }}
/* faq */
/* start courses */

.course-txt {
  display: flex;
  flex-direction: column;
}
.courses .courses-row {
  display: flex;
  justify-content: space-between;   /* spreads items apart */
  align-items: flex-start;
  flex-wrap: wrap;                  /* keeps responsive wrapping */
  gap: 2rem;                        /* spacing between cards */
}

/* Each item takes half the width (adjust as needed) */
.courses .courses-item {
  flex: 1 1 48%;                    /* about half of container width */
  display: flex;
  justify-content: center;
}

.courses .courses-item .courses-item-inner {
  /* transform: skew(10deg); */
  background-color: #3E4D48;
  width: 100%;
  color: white;
  border-radius: 10px;
}

/* Make sure text color and style remain */
.courses .courses-item p {
  color: white;
}

/* Responsive: stack vertically on small screens */

@media (max-width: 1200px) {
  .eco-image {
    margin-bottom: 5%;
  }
}
@media (max-width: 768px) {
  .courses .courses-row {
    flex-direction: column;
    align-items: center;
  }

  .courses .courses-item {
    flex: 1 1 100%;
    max-width: 600px;
  }
}

/* end courses */





/*** Conatct Start ***/
.contact {
    overflow: hidden;
}

.contact .form-section form .form-section-col {
    transform: skewX(18deg);
    margin: 0 12px;
}




.contact form button {
    border: none;
    transition: 0.5s;
}

.contact form button:hover {
    background: var(--bs-white);
    color: var(--bs-primary);
}

 .locations-section {
    margin-top: 20px;
  }
  .locations-section h4, .dallas-details h4 {
    color: #3E4D48;
    font-weight: 700;
    margin-bottom: 12px;
  }

  .city-btn {
    background: #3E4D48;
    border: none;
    padding: 5px;
    border-radius: 5px;
  }
  .city-btn a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    line-height: 1.2;
  }
  .city-btn:hover,
  .city-btn:focus-within {
    filter: brightness(1.1);
    cursor: pointer;
  }
  .city-btn a:focus {
    outline: 2px solid #FADB4B;
    outline-offset: 2px;
  }

.phone-no a:hover{
  color: black;
}

.city-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #3E4D48;   /* dark background */
  color: #ffffff;              /* white text */
  text-decoration: none;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  padding: 10px 16px;
  min-height: 44px;            /* ✅ touch target */
  margin: 6px;                 /* ✅ spacing between buttons */
  line-height: 1.2;
  transition: all 0.3s ease;
  cursor: pointer;
}

.city-btn:hover {
  color: #FADB4B;              /* hover text color */
  background-color: #3E4D48;   /* keep same bg for consistency */
  text-decoration: none;
}

.city-btn:focus-visible {
  outline: 3px solid #FADB4B;  /* accessibility focus ring */
  outline-offset: 2px;
  color: #FADB4B;
}



/*** Contact End ***/

/*** Footer Start ***/
.footer {
    overflow: hidden;


}


.footer .contact-form{
background-color: #3E4D48;
padding: 5% ;
}
.footer button {
    border: none;
    transition: 0.5s;
    background-color: #FADB4B;
}

.footer button:hover {
    background: var(--bs-white);
    color: var(--bs-dark);
}

.footer .footer-item {
    display: flex;
    flex-direction: column;
}

.footer .footer-item .footer-item-img {
    transform: matrix(1, -0.09, 0, 1, 0, 0);
    transition: 0.5s;
}

.footer .footer-item .footer-item-img:hover {
    transform: matrix(1, 0.09, 0, 1, 0, 0);
}



.footer .footer-item a {
    line-height: 35px;
    font-size: 16px;
    font-weight: 500;
    color: var(--bs-white);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 35px;
}

.footer .footer-item a:hover {
    letter-spacing: 1px;
   color: #FADB4B;
}

.footer .footer-item .footer-btn a {
    transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-white);
}

.footer .footer-item .footer-btn a:hover {
    color: #FADB4B;
}


.footer form label{
  color: white;
}
 .form-control:focus {
  border: 2px solid #FADB4B;
  box-shadow: none;
}



.footer-contact-details{
  font-size: 20px;
}
form button{
  font-weight: bold;
  text-transform: uppercase;
  font-size: 19px;
}

.obfuscatedEmail a:hover{
  color: #3E4D48;
}
/*** Footer End ***/

/*** copyright Start ***/
.copyright {
  padding: 0.5%;
  text-align: center;
    background-color: #3E4D48;
}
/*** copyright end ***/


/* start sitemap */
/* ===== Sitemap Tree Section Styles ===== */
.sitemap-tree-section {
  background-color: #f8f9fa;
  font-family: 'Open Sans', sans-serif;
}

.sitemap-tree {
  max-width: 600px;
  margin: 0 auto;
}

.sitemap-tree ul {
  padding-left: 20px;
  list-style: none;
  position: relative;
  margin: 0;
}

.sitemap-tree ul::before {
  content: "";
  border-left: 2px solid #3E4D48;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 10px;
}

.sitemap-tree li {
  position: relative;
  padding: 10px 0 0 20px;
  font-size: 20px;
}

.sitemap-tree li::before {
  content: "";
  border-top: 2px solid #43675D;
  width: 15px;
  position: absolute;
  top: 20px;
  left: -1.3%;
}

.sitemap-tree li:last-child::before {
  background: #fff;
  height: 20px;
}

.sitemap-tree a {
  text-decoration: none;
  color: #333;
  font-weight: 700;
  transition: color 0.3s ease;
}

.sitemap-tree a:hover {
  color: #3E4D48;
  text-decoration: underline;
}

/* Remove connector line for last child */
.sitemap-tree ul li:last-child::after {
  content: "";
  position: absolute;
  left: 10px;
  bottom: 0;
  width: 2px;
  height: 0;
  background: transparent;
}

/* Responsive design */
@media (max-width: 768px) {
  .sitemap-tree {
    max-width: 100%;
    padding-left: 10px;
  }
  .sitemap-tree ul::before {
    left: 5px;
  }
  .sitemap-tree li {
    padding-left: 15px;
  }
  .sitemap-tree li::before {
    left: 5px;
    width: 10px;
  }
}














/* end sitemap */

/* responsive */

@media (max-width: 1330px) {

.hero__content button a {
    font-size: 19px;
}

}

@media (max-width: 1199px) {

.hero__content {
    margin-bottom: 5%;
    padding-left: 10%;
}
.navbar-light .navbar-toggler {
    color: #43675D;
    border-color: white;
}

.navbar{
  text-align: center;
  position: static !important;
}

.navbar-light .navbar-toggler-icon {
    background-image: url(../img/bars.svg);
}
.navbar-light .navbar-toggler {
 margin: auto;

}
nav {
    background-color: #43675D;
    transform: skew(0);
    border-radius: 5px;
   
}

.hero__right {
    clip-path: none;
    height: 800px;
}
}




@media (max-width: 991px) {


.hero__content {
    margin-top: 5%;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    padding-bottom: 5%;
}



}


@media (max-width: 767px) {


.hero__content button a {
    font-size: 23px;
}

.header-button{
 display: block;

 margin: auto;
  margin-bottom: 5%;
}

.hero__content p {
    color: #666;
    margin: 0 0 22px;
    font-size: 17px;
}
.logo {
    width: 200px;
}
.hero__content h1 {
  font-size: 30px;
}
}

@media (max-width: 450px) {

.hero__content p {
    color: #666;
    margin: 0 0 22px;
    font-size: 15px;
}

.hero__content button a {
    font-size: 18px;
}

}


.wow {
  visibility: hidden;
}
.animated {
  visibility: visible !important;
}


