@import url("https://fonts.googleapis.com/css?family=Lato:100,200,300,400,500,600,700");
@import url("https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700");
@import url("https://fonts.googleapis.com/css?family=Dancing Script:100,200,300,400,500,600,700");
@import url(classy-nav.css);

:root {
  --brand: #01b5fb;
  --primary: #fbf3e6;
  --secondary: #210110;
  --orange: #fe6e03;
  --green: #59a404;
  --body: #516171;
  --border: rgba(0,0,0,0.08);
  --shadow: 0px 6px 30px rgba(0, 0, 0, 0.08);
}

.classynav ul li a:hover{
  color: var(--secondary) !important;
}

.primary-btn {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    padding: 16px 50px;
    color: #ffffff;
    position: relative;
  }
  
  .primary-btn.normal-btn {
    color: #111111;
  }
  
  .primary-btn.normal-btn:before {
    border-color: #c4c4c4;
  }
  
  .primary-btn.normal-btn:after {
    border-color: #c4c4c4;
  }
  
  .primary-btn:before {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 28px;
    width: 28px;
    border-left: 2px solid rgba(255, 255, 255, 0.2);
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    content: "";
    border-radius: 0 0 0 4px;
    -webkit-transition: all, 0.5s;
    -o-transition: all, 0.5s;
    transition: all, 0.5s;
  }
  
  .primary-btn:after {
    position: absolute;
    right: 0;
    top: 0;
    height: 28px;
    width: 28px;
    border-right: 2px solid rgba(255, 255, 255, 0.2);
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    content: "";
    border-radius: 0 4px 0 0;
    -webkit-transition: all, 0.5s;
    -o-transition: all, 0.5s;
    transition: all, 0.5s;
  }
  
  .primary-btn:hover:before {
    height: 100%;
    width: 100%;
    border-radius: 4px;
  }
  
  .primary-btn:hover:after {
    height: 100%;
    width: 100%;
    border-radius: 4px;
  }

  .nav-link {
  /* font-family: 'Jost', sans-serif; */
  position: relative;
  /* margin-left: 30px; */
  /* padding: 30px 0; */
  /* font-size: 30px; */
  font-weight: 500;
  color: var(--dark);
  outline: none;
  transition: .5s;
}

/* .sticky-top.navbar-light .navbar-nav .nav-link {
  padding: 20px 0;
} */

.nav-link:hover,
.nav-link.active {
  color: var(--orange);
}

@media (min-width: 992px) {
  .nav-link::before {
      position: absolute;
      content: "";
      width: 0;
      height: 3px;
      bottom: 0;
      left: 50%;
      background: var(--secondary);
      transition: .5s;
  }

  .nav-link:hover::before,
  .nav-link.active::before {
      width: 60%;
      text-align: center;
      left: 20%;
  }

  .nav-link.nav-contact::before {
      display: none;
  }
}

@media (max-width: 991.98px) {
  .nav-link  {
      margin-left: 0;
      padding: 10px 0;
  }
}

.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, .5);
    z-index: 1;
  }

  .carousel-caption h3{
    font-weight: 700;
  }
  .carousel-item img{
    filter: brightness(80%);
  }
  
  .carousel-control-prev,
  .carousel-control-next {
    width: 10%;
  }
  
  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 1rem;
    height: 1rem;
    background-color: transparent;
  }
  /* .carousel-control-prev-icon:hover,
  .carousel-control-next-icon:hover {
    width: 3rem;
    height: 3rem;
    background-color: var(--brand);
  } */
  
  @media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 600px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
  }

  @keyframes slideInDownWithOpacity {
    0% {
      transform: translateY(-100%); /* Start above the viewport */
      opacity: 0; /* Fully transparent */
    }
    100% {
      transform: translateY(0); /* End at its original position */
      opacity: 1; /* Fully opaque */
    }
  }
  
  @keyframes slideInUpWithOpacity {
    0% {
      transform: translateY(100%); /* Start below the viewport */
      opacity: 0; /* Fully transparent */
    }
    100% {
      transform: translateY(0); /* End at its original position */
      opacity: 1; /* Fully opaque */
    }
  }
  
  @keyframes slideInRightWithOpacity {
    0% {
      transform: translateX(100%); /* Start from the right */
      opacity: 0; /* Fully transparent */
    }
    100% {
      transform: translateX(0); /* End at its original position */
      opacity: 1; /* Fully opaque */
    }
  }
  
  @keyframes slideInLeftWithOpacity {
    0% {
      transform: translateX(-100%); /* Start from the left */
      opacity: 0; /* Fully transparent */
    }
    100% {
      transform: translateX(0); /* End at its original position */
      opacity: 1; /* Fully opaque */
    }
  }
  
  .animated {
    animation-duration: 1s;
    animation-fill-mode: both; /* Ensure the element retains the final state */
  }
  
  .slideInDown {
    animation-name: slideInDownWithOpacity;
  }
  
  .slideInUp {
    animation-name: slideInUpWithOpacity;
  }
  
  .slideInRight {
    animation-name: slideInRightWithOpacity;
  }
  
  .slideInLeft {
    animation-name: slideInLeftWithOpacity;
  }
  
  .about-box{
    height: 100% !important;
  }
  .about-img{
    width: 100%;
    height: 100%;
  }
  .main-title{
    font-family: 'Dancing Script';
    font-weight: 700;
    color: var(--secondary);
  }

  .about-title{
    color: var(--orange) !important;
  }

  .about-content{
    padding-left: 20px;
    padding-right: 20px;
  }

  .about-content h3{
    /* font-family: "Volkhov", "DM Serif Display", 'cursive'; */
    font-weight: 700;
    color: var(--orange);
  }
  .about-content h5{
    /* font-family: "Volkhov", "DM Serif Display", 'cursive'; */
    font-family: "Poppins";
    font-weight: 500;
    font-size: 1rem !important;
    color: var(--secondary);
  }

  @media (max-width:992px) {
    .about-img-one{
      display: none;
    }
  }
  @media (min-width:992px) {
    .about-img-one{
      display: block;
    }
  }

  .why_us_section .why_us_container .box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    align-items: center;
    margin-top: 45px;
  }
  
  .why_us_section .why_us_container .box .img-box {
    background-color: var(--orange);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 175px;
    min-width: 175px;
    height: 125px;
    margin-right: 25px;
    /* padding-right: 25px; */
    /* -webkit-clip-path: polygon(0 0, 85% 0, 85% 35%, 100% 50%, 85% 65%, 85% 100%, 0 100%);
            clip-path: polygon(0 0, 85% 0, 85% 35%, 100% 50%, 85% 65%, 85% 100%, 0 100%); */
    -webkit-transition: all .3s;
    transition: all .3s;
  }
  
  .why_us_section .why_us_container .box .img-box img {
    width: 45px;
  }
  .why_us_section .why_us_container .box .img-box i{
    color: white;
  }
  
  .why_us_section .why_us_container .box .detail-box h5 {
    font-weight: bold;
  }
  
  .why_us_section .why_us_container .box:hover .img-box {
    background-color: #252525;
  }
  
  .why_us_section .btn-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 45px;
  }
  
  .why_us_section .btn-box a {
    display: inline-block;
    padding: 8px 25px;
    background-color: #f07b26;
    color: #ffffff;
    border-radius: 0;
    -webkit-transition: all .3s;
    transition: all .3s;
    border: none;
  }
  
  .why_us_section .btn-box a:hover {
    background-color: #bc570d;
  }

  .detail-box-1, .detail-box-3{
    border-left: 2px solid var(--orange);
    padding-left: 10px;
  }
  .detail-box-2{
    border-right: 2px solid var(--orange);
    padding-right: 10px;
    margin-right: 25px;
    text-align: right;
  }


  @media (max-width: 576px) {
  
    .why_us_section .why_us_container .box {
      flex-direction: column;
    }
  
    .why_us_section .why_us_container .box .img-box {
      width: 150px;
      min-width: 150px;
      height: 160px;
      margin-right: 0;
      padding-right: 0;
      margin-bottom: 25px;
      padding-bottom: 25px;
      clip-path: polygon(0 85%, 0 0, 100% 0, 100% 85%, 65% 85%, 50% 100%, 35% 85%);
      order: 0;
    }
    .why_us_section .why_us_container .box .detail-box {
      order: 1;
    }
  }


  /*--------------------------------------------------------------

# Cta

--------------------------------------------------------------*/

.cta {

    background: linear-gradient(to right,rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("../img/image-2/img-5.webp") fixed center center;
    /* background-color: var(--brand); */
  
    background-size: cover;
  
    padding: 120px 0;
  
    /* margin-bottom: 50px; */
  
  }
  
  
  
  .cta h3 {
  
    color: #fff;
  
    font-size: 28px;
  
    font-weight: 700;
  
  }
  
  
  
  .cta p {
  
    color: #fff;
  
  }
  
  
  
  .cta .cta-btn {
  
    font-family: "Raleway", sans-serif;
  
    text-transform: uppercase;
  
    font-weight: 500;
  
    font-size: 15px;
  
    letter-spacing: 0.5px;
  
    display: inline-block;
  
    padding: 8px 26px;
  
    border-radius: 2px;
  
    transition: 0.5s;
  
    margin: 10px;
  
    border-radius: 50px;
  
    border: 2px solid white;
  
    color: #fff;
  
  }
  
  
  
  .cta .cta-btn:hover {
  
    background: white;
    border: 2px solid white;
    color: rgb(0, 0, 0);
  
  }
  
  
  
  @media (max-width: 1024px) {
  
    .cta {
  
      background-attachment: scroll;
  
    }
  
  }
  
  
  
  @media (min-width: 769px) {
  
    .cta .cta-btn-container {
  
      display: flex;
  
      align-items: center;
  
      justify-content: flex-end;
  
    }
  
  }
  
  .cta-one {
  
    background: url("../img/image-2/slide3.jpg") fixed center center;
  
    background-size: cover;
  
    padding: 120px 0;
  
    margin-bottom: 50px;
  
  }

  .cta h3{
    font-family: "Volkhov", "DM Serif Display", 'cursive' !important;
    padding-bottom: 10px;
  }

  /* ============ products start =============  */
.courses-3 {
  margin-top: -30px;
  position: relative;
  background-color: #fff;
  border-radius: 8px; /* Rounded corners */
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  overflow: hidden;
  height: 100%; /* Ensures all elements in the row are the same height */
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Keeps content aligned neatly */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.courses-3:hover {
  transform: translateY(-5px); /* Subtle lift on hover */
  box-shadow: 5px 6px 12px rgba(0, 0, 0, 0.2); /* Stronger shadow on hover */
}
.courses-3 img {
  border-radius: 8px 8px 0 0; /* Image corners match container */
  object-fit: cover;
  height: 200px; /* Ensures images are the same height */
  width: 100%;
}

.courses-3 h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 10px 0;
  color: var(--orange);
  font-family: "Volkhov", "DM Serif Display", 'cursive' !important;
  padding-top: 20px;
}

.courses-3 p {
  /* font-size: 1rem; */
  line-height: 1.6;
  flex-grow: 1; /* Ensures text takes up remaining space */
}

.back-img {
  background: linear-gradient(rgba(0, 0, 0, 0.5),rgba(0, 0, 0, 0.5)), url("../img/image-2/img-7.webp") no-repeat center center;
  background-size: cover;
  color: white;
  /* min-height: 550px; */
  width: 100%;
  border: 5px solid white;
}

@media only screen and (max-width: 760px) {
  .back-img {
    min-height: 450px;
  }
}


  /*** Testimonial ***/

.testimonials h6, .testimonials h2{
    font-weight: 600;
  }
  
  .testimonials h6{
    color: var(--orange);
  }
  
  .testimonial-item h5{
    font-weight: 600;
  }
  
  .testimonial-text{
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
  }
  
  .testimonial-carousel .owl-item .testimonial-text,
  .testimonial-carousel .owl-item.center .testimonial-text * {
      position: relative;
      transition: .5s;
  }
  
  .testimonial-carousel .owl-item.center .testimonial-text {
      background: var(--secondary) !important;
  }
  
  .testimonial-carousel .owl-item.center .testimonial-text * {
      color: #FFFFFF !important;
  }
  
  .testimonial-carousel .owl-item .testimonial-text::after {
      position: absolute;
      content: "";
      width: 0;
      height: 0;
      left: 50%;
      bottom: -30px;
      transform: translateX(-50%);
      border: 15px solid;
      border-color: #EDF1FC transparent transparent transparent;
      transition: .5s;
  
  }
  
  .testimonial-carousel .owl-item.center .testimonial-text::after {
      border-color: var(--secondary) transparent transparent transparent;
  }
  
  .testimonial-carousel .owl-nav {
      position: absolute;
      width: 300px;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      justify-content: space-between;
      opacity: 0;
      transition: .5s;
      z-index: 1;
  }
  
  .testimonial-carousel:hover .owl-nav {
      width: 250px;
      opacity: 1;
  }
  
  .testimonial-carousel .owl-nav .owl-prev,
  .testimonial-carousel .owl-nav .owl-next {
      font-size: 30px;
      color: var(--orange);
  }
  
  .testimonial-carousel .owl-nav .owl-prev:hover,
  .testimonial-carousel .owl-nav .owl-next:hover {
      color: var(--dark);
  }

  .section-header-s h3 {
  font-size: 32px;
  color: #111;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}

.section-header-s h3::before {
  content: '';
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-header-s h3::after {
  content: '';
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: var(--orange);
  bottom: 0;
  left: calc(50% - 20px);
}

  .contact .info-item {
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
    padding: 20px 0 30px 0;
    height: 100%;
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
    transition: all 0.5s;
  }
  .contact .info-item:hover {
    box-shadow: none;
  }
  
  .contact .info-item i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    font-size: 24px;
    line-height: 0;
    color: var(--color-primary);
    border-radius: 50%;
    border: 2px dotted var(--orange);
  }
  
  .contact .info-item h3 {
    font-size: 20px;
    /* color: #6c757d; */
    color: var(--green);
    font-weight: 700;
    margin: 10px 0;
  }
  
  .contact .info-item p {
    padding: 0;
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
  }
  
  .contact .php-email-form {
    width: 100%;
    background: #fff;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
    padding: 30px;
  }
  
  .contact .php-email-form .form-group {
    padding-bottom: 20px;
  }
  
  .contact .php-email-form .error-message {
    display: none;
    color: #fff;
    background: var(--brand);
    text-align: left;
    padding: 15px;
    font-weight: 600;
  }
  
  .contact .php-email-form .error-message br+br {
    margin-top: 25px;
  }
  
  .contact .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #059652;
    text-align: center;
    padding: 15px;
    font-weight: 600;
  }
  
  .contact .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
  }
  
  .contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #059652;
    border-top-color: #fff;
    -webkit-animation: animate-loading 1s linear infinite;
    animation: animate-loading 1s linear infinite;
  }
  
  .contact .php-email-form input,
  .contact .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
  }
  
  .contact .php-email-form input:focus,
  .contact .php-email-form textarea:focus {
    border-color: var(--brand);
  }
  
  .contact .php-email-form input {
    height: 44px;
  }
  
  .contact .php-email-form textarea {
    padding: 10px 12px;
  }
  
  .contact .php-email-form button[type=submit] {
    background: var(--brand);
    border: 0;
    padding: 10px 35px;
    color: #fff;
    transition: 0.4s;
    border-radius: 5px;
  }
  
  .contact .php-email-form button[type=submit]:hover {
    background: rgba(68, 209, 12, 0.8);
  }

  .font-one{
    /* font-family: "Volkhov", "DM Serif Display", 'cursive' !important; */
    font-weight: 700;
    color: var(--green) !important;
  }

  /* Path */

.banner-area {

  position: relative;

  min-height: 300px;

  color: #fff;

  background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), url(../img/image-2/img-4.webp) ;

  background-size: cover;

  background-position: center;

  background-repeat: no-repeat;

}



.banner-title {

  color: #fff;

  text-transform: uppercase;

  font-size: 38px;

  font-weight: 900;

  font-family: "Volkhov", "DM Serif Display", 'cursive' !important;

}



@media (max-width: 767px) {

  .banner-title {

    font-size: 48px;

  }

}



@media (max-width: 575px) {

  .banner-title {

    font-size: 32px;

  }

}



.banner-text {

  position: absolute;

  top: 50%;

  left: 0;

  right: 0;

  max-width: 1170px;

  margin: 0 auto;

  width: 100%;

  z-index: 1;

  -webkit-transform: translateY(-50%);

          transform: translateY(-50%);

}



.banner-heading {

  text-align: center;

}



.breadcrumb {

  padding: 0;

  background: none;

  font-weight: 700;

  text-transform: uppercase;

  font-size: 12px;

}



.breadcrumb li a,

.breadcrumb .breadcrumb-item,

.breadcrumb li a:focus {

  color: #fff !important;

  text-decoration: none;

}



.breadcrumb li a:hover {

  text-decoration: underline;

}



.breadcrumb .breadcrumb-item + .breadcrumb-item::before {

  color: #fff;

}

.product-btn a{
  background: var(--orange);
  color: white;
  border: 1px solid var(--orange);
  border-radius: 5px;
  transition: all 0.5s;
}
.product-btn a:hover{
  background: transparent;
  color: var(--orange);
}

/**products**/

.mv{
  overflow: hidden;
}
.mv-img{
  overflow: hidden;
}
.mv-img img{
  object-fit: cover;
}
.mv .mv-row .mv-img img{
  height: 300px;
  width: 100%;
  border-radius: 10px;
}
.mv .mv-row{
  display: flex;
  align-items: center;
  justify-content: center;
}
.mv-content h3{
  font-family: "Volkhov", "DM Serif Display", 'cursive' !important;
  color: var(--orange);
}

@media (max-width: 991px){
  .mv-row .mission-content{
    margin-bottom: 70px;
  }
  .mv-row .mv-content{
    margin-bottom: 30px;
  }
  .mv .mv-row{
    margin-bottom: 50px;
  }
  .mv .mv-row .mv-img{
    margin-bottom: 50px;
    order: 1;
  }
  .mv .mv-row .mv-content{
    order: 2;
  }
}

@media (max-width: 370px){
  .mv .mv-row .mv-img, .mv .mv-row .mv-content{
    width: 100%;
  }
}

.mv-content h5{
  font-weight: 700;
  color: var(--green);
  padding-bottom: 10px;
}

.flags a img{
  height: 20px;
}


.faq-section .accordion .accordion-item .accordion-header .accordion-button {
    color: var(--green);
    background-color: transparent;
    transition: background-color 0.3s ease, color 0.5s ease;
}

.faq-section .accordion .accordion-item .accordion-header .accordion-button.collapsed {
    color: var(--secondary);
    background-color: transparent;
}

.faq-section .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
    background-color: var(--green);
    color: #fff; 
}

.faq-section .accordion .accordion-item .accordion-header .accordion-button:focus {
    box-shadow: none;
    outline: none;
}

.faq-section .accordion .accordion-item .accordion-header .accordion-button::after {
    filter: brightness(0) saturate(100%) invert(30%) sepia(80%) saturate(300%) hue-rotate(90deg);
    transition: filter 0.3s ease;
}

.faq-section .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
    filter: brightness(0) saturate(100%) invert(100%);
}


@media (max-width:992px) {
  .flags{
    padding-left: 20px;
    padding-top: 20px;
    display: flex;
    gap: 10px;
    flex-direction: column;
  }
  .flags span{
    font-weight: 500;
  }
}


@media (min-width:992px) {
  .flags {
    display: flex;
    gap: 5px;
}

.flags a {
    position: relative;
    display: inline-block;
    text-align: center;
}
  .flags a span {
    position: absolute;
    top: 100%; /* show below the image */
    left: 50%;
    transform: translateX(-50%);
    background-color: #000;
    color: #fff;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.flags a:hover span {
    opacity: 1;
    visibility: visible;
}
}



.page-slider .carousel-control {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: inline-block;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: transparent;
  text-shadow: none;
  transition: all .25s ease;
  padding: 0;
  outline: 0;
  border: 0;
}

.page-slider .carousel-control.left {
  left: 0;
}

.page-slider .carousel-control.right {
  right: 0;
}

.page-slider .carousel-control i {
  /* background: rgba(0, 0, 0, 0.3); */
  color: #fff;
  line-height: 70px;
  width: 40px;
  height: 70px;
  font-size: 22px;
  border-radius: 0;
  transition: all 500ms ease;
}

.page-slider .carousel-control i:hover {
  /* background: var(--brand); */
  color: #fff;
}

.page-slider.small-bg .item {
  /* min-height: 400px; */
  background-size: cover;
}

/* .page-slider{
  display: flex;
  align-items: center;
  justify-content: center;
} */