:root {
  --brand: #01b5fb;
  --sub: #6ac754;
  --body: #516171;
  --border: rgba(0,0,0,0.08);
  --shadow: 0px 6px 30px rgba(0, 0, 0, 0.08);
}
body{
  padding: 0;
  margin: 0;
  background-color: #e7c090;
}

.slide{
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding: 0;
  margin: 0;
}

.slide video{
  padding: 0;
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  filter: brightness(0.7);
}

.slide-inside{
  padding: 100px 50px 100px 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.slide-content .vin{
  display: inline-block;
  background: white;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  padding: 5px;
}

.slide-content img{
  object-fit: cover;
}

.slide-content h1, .slide-content p{
  color: white;
}
.slide-content h4{
  display: inline;
  font-size: 18px;
  padding: 5px 40px;
  font-weight: 700;
  background: #ffffff;
  color: #3fc182;
}
.slide-content h1{
  font-size: 70px;
  font-weight: 700;
}
.slide-content p{
  font-size: 16px;
  font-weight: 600;
}

.slide-img img{
  animation: rotate360 30s linear infinite;
}

@keyframes rotate360 {
  from {
      transform: rotate(0deg); 
  }
  to {
      transform: rotate(360deg); 
  }
}



@media (min-width:991px) {
  .slide-content{
    text-align: left !important;
  }
}
@media (max-width:700px) {
  .slide-content h1{
    font-size: 45px;
  }
  .slide-inside{
    padding: 100px 30px 100px 50px;
  }
}
@media (max-width:500px) {
  .slide-content h1{
    font-size: 25px;
  }
  .slide-img{
    display: none;
  }
}


/* 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/img1.jpg) ;

  background-size: cover;

  background-position: center;

  background-repeat: no-repeat;

}



.banner-title {

  color: #fff;

  text-transform: uppercase;

  font-size: 38px;

  font-weight: 900;

}



@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;

}


/* Image Gallery */
.untree_co-section {
  /* padding: 50px 0; */
  /* background: #0f1324; */
  position: relative;
}

/* @media (max-width: 991.98px) {
  .untree_co-section {
      padding: 50px 0;
  }
} */

.untree_co-section .heading h3 {
  font-size: 35px;
  color: #000000;
}

@media (max-width: 991.98px) {
  .untree_co-section .heading {
      font-size: 20px;
  }
}

.untree_co-section .heading strong {
  font-weight: 700;
}

.item {
  border: none;
  margin-bottom: 30px;
  border-radius: 4px;
  display: block;
}

.item a {
  height: 250px;
  display: block;
  overflow: hidden;
  position: relative;
  border-radius: 4px;
  display: block;
}

.item a img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  position: relative;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: .3s all ease-in-out;
  -o-transition: .3s all ease-in-out;
  transition: .3s all ease-in-out;
}

.item .item-wrap {
  display: block;
  position: relative;
  border-radius: 10px;
}

.item .item-wrap:after {
  z-index: 2;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: .3s all ease-in-out;
  -o-transition: .3s all ease-in-out;
  transition: .3s all ease-in-out;
}

.item .item-wrap > i {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  -webkit-transform: translate(-50%, -50%) scale(0);
  -ms-transform: translate(-50%, -50%) scale(0);
  transform: translate(-50%, -50%) scale(0);
  color: #ffffff;
  font-size: 1.7rem;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
}

.item .item-wrap:hover:after {
  opacity: 1;
  visibility: visible;
}

.item .item-wrap:hover i {
  margin-top: 0px;
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
}

/* .item:hover a  img {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
  -webkit-transition: .3s all ease-in-out;
  -o-transition: .3s all ease-in-out;
  transition: .3s all ease-in-out;
} */

.item-wrap:hover img{
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
  -webkit-transition: .3s all ease-in-out;
  -o-transition: .3s all ease-in-out;
  transition: .3s all ease-in-out;
}

/*** Section Title ***/
.section-title {
  position: relative;
  display: inline-block;
  font-weight: 700;
}

.section-title::before {
  position: absolute;
  content: "";
  width: 45px;
  height: 2px;
  top: 50%;
  left: -55px;
  margin-top: -1px;
  background: var(--brand);
}

.section-title::after {
  position: absolute;
  content: "";
  width: 45px;
  height: 2px;
  top: 50%;
  right: -55px;
  margin-top: -1px;
  background: var(--brand);
}

.section-title.text-start::before,
.section-title.text-end::after {
  display: none !important;
}

.section-titles {
  position: relative;
  display: inline-block;
  font-weight: 700;
}

.section-titles::before {
  position: absolute;
  content: "";
  width: 45px;
  height: 2px;
  top: 50%;
  left: -55px;
  margin-top: -1px;
  background: var(--brand);
}

.section-titles::after {
  position: absolute;
  content: "";
  width: 45px;
  height: 2px;
  top: 50%;
  left: 155px;
  margin-top: -1px;
  background: var(--brand);
}

.section-titles.text-start::before,
.section-titles.text-end::after {
  display: none !important;
}

/* .bg-chapters{
  background-color: #0f1324 !important;
} */

/*** Service ***/
.service-item {
  position: relative;
  border-radius: 8px;
  box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.service-item .service-img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 8px;
  overflow: hidden;
  z-index: -1;
}

.service-item .service-img img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  object-fit: cover;
  border-radius: 10px;
}

.service-item .service-img::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
  /* background: rgba(255, 255, 255) !important; */
  border-radius: 10px;
  z-index: 1;
}

.service-item .service-img::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #FFFFFF !important;
  transition: .5s ease-out;
  z-index: 2;
}

.service-item:hover .service-img::after {
  width: 0;
  left: auto;
  right: 0;
}

.service-item .service-text .service-icon {
  width: 170px;
  height: 120px;
  padding: 5px;
  margin-top: -70px;
  margin-bottom: 20px;
  background: #ffffff;
  color: black;
  /* border-radius: 140px; */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 60px rgba(0, 0, 0, .1);
}
.service-icon img{
  height: 100px;
  width: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* border-radius: 140px; */
  /* margin-top: -10px; */
}

.service-item .service-text h5,
.service-item .service-text p {
  transition: .5s;
}

.service-item:hover .service-text h5,
.service-item:hover .service-text h6,
.service-item:hover .service-text p {
  color: #FFFFFF;
}

.service-item .service-text .btn {
  color: var(--sub);
  background: #0f1324;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.404);
}

.service-item .service-text .btn:hover {
  color: #FFFFFF;
  background: var(--brand);
}

.service-text{
  padding: 30px 50px;
}

@media (max-width:567px) {
  .service-text{
    padding: 30px;
  }
  .product-head{
    font-size: 22px;
  }
}
.service-text h5{
  font-size: 18px;
  font-weight: 700;
}
.service-text h6{
  font-size: 16px;
  font-weight: 700;
}


.about-left{
  height: 100%;
  padding: 30px 50px;
}

@media (max-width:500px) {
  .about-left{
    padding: 30px;
  }
}

.bg-banner {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../img/image-2/img2.jpg) no-repeat center;
  /* background-attachment: fixed; */
  background-size: cover;
}

.banner-btn{
  font-size: 16px;
  padding: 10px 20px;
  background: var(--brand);
  border: 1px solid var(--brand);
  color: white;
  transition: all 0.5s;
}
.banner-btn:hover{
  background: transparent;
  border: 1px solid var(--brand);
  color: var(--brand);
}

.bg-banner h2{
  font-weight: 700;
}
.bg-banner h4{
  font-weight: 500;
}

.banner-a{
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

@media (max-width:567px) {
  .banner-a{
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
  }
}


/**Courses**/

.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;
}

@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%;
  }
}


.about__text .services__item .services__item__icon:after {
  border-color: #281A3E;
}

.about__text__desc {
  margin-top: -10px;
}

.about__pic {
  margin-bottom: 50px;
}

.services__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 45px;
}

.services__item h4 {
  /* color: #ffffff; */
  font-size: 18px;
  font-weight: 700;
  margin-top: 26px;
  margin-bottom: 18px;
}
.services__item p {
  text-align: center;
  margin-bottom: 0;
}

.services__item__icon {
  text-align: center;
  position: relative;
  height: 70px;
  width: 70px;
  line-height: 70px;
  text-align: center;
}
.services__item__icon:after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: 2px solid var(--brand);
  content: "";
  -webkit-transition: all, 0.5s;
  -o-transition: all, 0.5s;
  transition: all, 0.5s;
}
.services__item:hover .services__item__icon:after {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
      transform: rotate(45deg);
}
.services__item:hover .services__item__icon{
  border: 2px solid black;
}

/* .services__item__icon img{
  height: 50px;
  color: white;
} */

.topbar{
  background: var(--brand);
}

/*******************************/
/********* Contact CSS *********/
/*******************************/
.contact {
  /* background-color: #0f1324; */
  position: relative;
  width: 100%;
  padding: 45px 0;
}

.contact .contact-img {
  position: relative;
  width: 100%;
}

.contact .contact-img img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}

.contact .contact-form {
  position: relative;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  margin-top: -220px;
  padding: 10px;
  background: #ffffff;
}

@media (max-width: 991.98px) {
  .contact .contact-form {
      max-width: 600px;
  }
}

@media (max-width: 767.98px) {
  .contact .contact-form {
      max-width: 400px;
  }
}

@media (max-width: 575.98px) {
  .contact .contact-form {
      max-width: 300px;
  }
}

.icon {
  padding: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF !important;
  border-radius: 50px;
  border: 1px dashed var(--brand) !important;
}

.contact-box{
  height: 100px;
}


.contact-box span{
  font-size: 14px;
}

@media (max-width:400px) {
  .contact-box{
    height: 130px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }
}


.info1 {
  background-color: var(--brand);
  padding: 50px 20px 50px 50px;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
}

.info .info2 {
  height: 500px;
}

.info .info1 h2{
  font-size: 40px;
}

.info .info1 h2 {
  font-size: 30px;
  padding-bottom: 20px;
}

.info .info1 h4 {
  font-size: 16px;
}

@media (max-width:991px) {
  .info1{
    order: 0;
  }
  .info2{
    order: 1;
  }
}

@media only screen and (max-width: 767px) {
  .info .info2 {
    height: 200px;
  }
}

@media only screen and (max-width: 460px) {
  .info .info1 {
    padding: 50px 20px;
  }

  .info .info1 h2 {
    font-size: 25px;
    padding-bottom: 20px;
  }

  .info .info1 h4 {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------

# Cta

--------------------------------------------------------------*/

.cta {

  background: linear-gradient(to right,rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("../img/image-2/img2.jpg") 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;

}

.welcome{
  font-size: 30px;
  text-transform: uppercase;
  color: #fd0c0c !important;
}
@media (max-width:467px) {
  .welcome{
    font-size: 24px;
  }
}

.owner{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (min-width:425px) {
  .owner img{
    height: 400px;
  }
}
.owner span{
  /* font-weight: 700; */
  font-family: 'Anton';
  font-size: 18px;
}

.wraping{
  word-wrap: break-word !important;
}

.chapter-icon{
  /* margin: 0 auto; */
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  position: relative;
}

.chapter-icon i {
  font-size: 36px;
  transition: 0.5s;
  position: relative;
  color: white;
}

.chapter-icon svg {
  position: absolute;
  top: 0;
  left: 0;
}

.chapter-icon svg path {
  transition: 0.5s;
  /* fill: color-mix(in srgb, var(--default-color), transparent 95%); */
  fill: var(--brand);
}

.service-item:hover .chapter-icon i {
  color: var(--brand);
}

.service-item:hover .chapter-icon path {
  fill: white;
}

/* Slider pages */
.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: 330px; */
  background-size: contain;
}

.page-slider.small-bg .box-slider-content {
  left: 20%;
}

.page-slider.small-bg .box-slider-text {
  background: rgba(0, 0, 0, 0.55);
  padding: 5px 20px;
}

.page-slider.small-bg .box-slide-title {
  font-size: 28px;
  color: #fff;
  font-weight: 900;
}


@media (min-width:992px) {
  .page-slider .item{
    /* width: 100px; */
    height: 400px;
    object-fit: contain;
  }
  .page-slider .item img{
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}
