/*** Spinner Start ***/

#spinner {
    opasubject: 0;
    visibility: hidden;
    transition: opasubject .8s ease-out, visibility 0s linear .5s;
    z-index: 99999;
 }

 #spinner.show {
     transition: opasubject .8s ease-out, visibility 0s linear .0s;
     visibility: visible;
     opasubject: 1;
 }

/*** Spinner End ***/


/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-md-square {
    width: 46px;
    height: 46px;
}

.btn-lg-square {
    width: 58px;
    height: 58px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.back-to-top {
    position: fixed;
    width: 50px;
    height: 50px;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

/*** Button End ***/


/*** Topbar Start ***/

.topbar .top-info {
    letter-spacing: 1px;
}

.topbar .top-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.topbar .top-link a {
    margin-right: 10px;
}

.topbar .top-link .text-primary {color: #175e60!important;}

#note {
    width: 500px;
    overflow: hidden;
}

#note small {
    position: relative;
    display: inline-block;
    animation: mymove 10s infinite;
    animation-timing-function: all;
}

@keyframes mymove {
    from {right: -100%;}
    to {right: 100%;}
}

/*** Topbar End ***/


/*** Navbar Start ***/
.header {width: 100%;}
.header .bg-primary-1 {background-color: #ffffff;}
.header .text-white-50 {color: #373435!important;}
.header .text-secondary a {color: #175e60;}
.navbar .navbar-nav {
    padding: 15px 0;
}

.navbar .navbar-nav .nav-link {
    padding: 10px;
    color:#373435;
    font-size: 18px;
    outline: none;
    
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: #175e60!important;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "font awesome 5 free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 320px) {
    .navbar-dark .navbar-brand {width: 60%;}
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opasubject: 0;
    }
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    transition: .5s;
    opasubject: 1;
}

/*** Navbar End ***/


/*** Carousel Start ***/

.carousel-item {
    position: relative;
}

.carousel-item::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .6);
}

.carousel-caption {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.carousel-item p {
    max-width: 700px;
    margin: 0 auto 35px auto;
}

.carousel-control-prev {
    width: 90px;
    height: 60px;
    position: absolute;
    top: 50%;
    left: 0;
    background: #175e60;
    border-radius: 0 50px 50px 0;
    opasubject: 1;
}

.carousel-control-prev:hover {
    background: #373435;
    transition: .8s;
}

.carousel-control-next {
    width: 90px;
    height: 60px;
    position: absolute;
    top: 50%;
    right: 0;
    background: #175e60;
    border-radius: 50px 0 0 50px;
    opasubject: 1;
}

.carousel-control-next:hover {
    background: #e3d88b;
    transition: .8s;
}

.carousel-caption .carousel-content a button.carousel-content-btn1 {
    background: var(--bs-secondary);
    color: #ffffff;
    opasubject: 1;
    border: 0;
    border-radius: 20px;
}

.carousel-caption .carousel-content a button.carousel-content-btn1:hover {
    background: #e3d88b;
    color: #ffffff;
    border: 0;
    opasubject: 1;
    transition: 1s;
    border-radius: 20px;
}

.carousel-caption .carousel-content a button.carousel-content-btn2 {
    background: #e3d88b;
    color: var(--bs-white);
    opasubject: 1;
    border: 0;
    border-radius: 20px;
}

.carousel-caption .carousel-content a button.carousel-content-btn2:hover {
    background: var(--bs-secondary);
    color: #ffffff;
    border: 0;
    opasubject: 1;
    transition: 1s;
    border-radius: 20px;
}

#carouselId .carousel-indicators li {
    width: 30px;
    height: 10px;
    background: var(--bs-secondary);
    margin: 10px;
    border-radius: 30px;
    opasubject: 1;
}

#carouselId .carousel-indicators li:hover {
    background: #373435;
    opasubject: 1;
}

@media (max-width: 992px) {
    .carousel-item {
        min-height: 500px;
    }
    
    .carousel-item img {
        min-height: 500px;
        object-fit: cover;
    }

    .carousel-item h1 {
        font-size: 40px !important;
    }

    .carousel-item p {
        font-size: 16px !important;
    }
}

@media (max-width: 768px) {
    .carousel-item {
        min-height: 400px;
    }
    
    .carousel-item img {
        min-height: 400px;
        object-fit: cover;
    }

    .carousel-item h1 {
        font-size: 28px !important;
    }

    .carousel-item p {
        font-size: 14px !important;
    }
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .6)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--bs-white);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--bs-white);
}

/*** Carousel End ***/

.counter {width: 100%;}

.counter .text-primary {color: #e3d88b!important;}

/*** Services Start ***/

.services .services-item {
    box-shadow: 0 0 60px rgba(0, 0, 0, .2);
    width: 100%;
    height: 100%;
    border-radius: 10px;
    padding: 10px 0;
    position: relative;
}


.services-content::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-radius: 10px 10px 0 0;
    background: #e3d88b;
    transition: .5s;
}

.services-content::after {
    top: 0;
    bottom: auto;
    border-radius: 10px 10px 10px 10px;
}

.services-item:hover .services-content::after {
    height: 100%;
    opasubject: 1;
    transition: .5s;
}

.services-item:hover .services-content-icon {
    position: relative;
    z-index: 2;
}

.services-item .services-content-icon i,
.services-item .services-content-icon p {
    transition: .5s;
}

.services-item .services-content-icon .text-primary {color: #175e60!important;}

.services-item:hover .services-content-icon i {
    color: var(--bs-secondary) !important;
}

.services-item:hover .services-content-icon p {
    color: var(--bs-white);
}

/*** Services End ***/

.why {width: 100%; background-color: #e3d88b;}

.why .accordion-button:not(.collapsed) {background-color: #175e60; color: #FFFFFF;}

.why .accordion-button {color: #175e60;}

.why .accordion-item {border: 1px solid rgba(0, 152, 218, .125);}

/*** Project Start ***/

.project-img {
    position: relative;
    padding: 15px;
}

.project-img::before {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    top: 0;
    left: 0;
    background: var(--bs-secondary);
    border-radius: 10px;
    opasubject: 1;
    z-index: -1;
    transition: .5s;
}

.project-img::after {
    content: "";
    width: 150px;
    height: 150px;
    position: absolute;
    right: 0;
    bottom: 0;
    background: var(--bs-primary);
    border-radius: 10px;
    opasubject: 1;
    z-index: -1;
    transition: .5s;
}

.project-content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opasubject: 0;
}

.project-content a {
    display: inline-block;
    padding: 20px 25px;
    background: var(--bs-primary);
    border-radius: 10px;
}

.project-item:hover .project-content {
    opasubject: 1;
    transition: .5s;
}

.project-item:hover .project-img::before,
.project-item:hover .project-img::after {
    opasubject: 0;
}

/*** Project End ***/


/*** Blog Start ***/
.blog-item .blog-btn {
    z-index: 2;
}

.blog-btn .blog-btn-icon {
    height: 50px;
    position: relative;
    overflow: hidden;
}

.blog-btn-icon .blog-icon-2 {
    display: flex;
    position: absolute;
    top: 6px;
    left: -140px;
    
}

.blog-btn-icon:hover .blog-icon-2 {
    transition: 1s;
    left: 5px;
    top: 6px;
    padding-bottom: 5px;
}
.blog-icon-1 {
    position: relative;
    top: -4px;
}
.blog-btn-icon:hover .blog-icon-1 {
    top: 0;
    right: -140px;
    transition: 1s;
}

/*** Blog End ***/


/*** Team Start ***/

.team-item {
    border-top: 30px solid var(--bs-secondary) !important;
    background: rgba(239, 239, 241, 0.8);
}

.team-content::before {
    height: 200px;
    display: block;
    content: "";
    position: relative;
    top: -101px;
    background: var(--bs-secondary);
    clip-path: polygon(50% 50%, 100% 50%, 50% 100%, 0% 50%);
    padding: 60px;
    opasubject: 1;
}

.team-img-icon {
    position: relative;
    margin-top: -200px;
    padding: 30px;
    padding-bottom: 0;
}

.team-img {
    border: 15px solid var(--bs-white);
}

.team-img img {
    border: 10px solid var(--bs-secondary);
    transition: .5s;
}

.team-item:hover h4 {
    color: var(--bs-primary);
    transition: .5s;
}

.team-item:hover .team-img img {
    transform: scale(1.05);
    border: 10px solid var(--bs-secondary);
}

.team-carousel .owl-stage {
    position: relative;
    width: 100%;
    height: 100%;
}

.team-carousel .owl-nav {
    position: absolute;
    top: -100px;
    right: 50px;
    display: flex;
}

.team-carousel .owl-nav .owl-prev,
.team-carousel .owl-nav .owl-next {
    width: 56px;
    height: 56px;
    border-radius: 56px;
    margin-left: 15px;
    background: var(--bs-secondary);
    color: var(--bs-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team-carousel .owl-nav .owl-prev:hover,
.team-carousel .owl-nav .owl-next:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

@media (max-width: 992px) {
    .team-carousel {
        margin-top: 3rem;
    }

    .team-carousel .owl-nav {
        top: -85px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        margin-left: -15px;
    }
}

/*** Team End ***/


/*** Testimonial Start ***/

.testimonial-item {
    background: #fff;
    text-align: center!important;
    width: 100%;
}

.testimonial-carousel .owl-dots {
    margin-top: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: #c1dad0;
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--bs-primary);
}

.testimonial-carousel .owl-item.center {
    position: relative;
    z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: #FFFFFF !important;
    box-shadow: 0 0 30px #DDDDDD;
}

/*** Testimonial End ***/


/*** Contact Start ***/
.contact-detail::before {
    position: absolute;
    content: "";
    height: 50%;
    width: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(rgb(210, 243, 235, 1), rgba(230, 250, 245, .3)), url(../img/background.jpg) center center no-repeat;
    background-size: cover;
    border-radius: 10px;
    z-index: -1;
}

.contact-map {
    background: #175e60;
}

.contact-form {
    background: #175e60;
}

/*** Contact End ***/


/*** Footer Start ***/

.footer .short-link a,
.footer .help-link a,
.footer .contact-link a {
    transition: .5s;
}

.footer .short-link a:hover,
.footer .help-link a:hover,
.footer .contact-link a:hover {
    letter-spacing: 1px;
}

.footer .hightech-link a:hover {
    background:#fff;
    border: 0;
}

/*** Footer End ***/

.get {width: 100%;}

.get a:hover {color: #175e60;}

.service-11 h1, .service-11 h2, .service-11 h3, .service-11 h4, .service-11 h5, .service-11 h6 {
    color: #3e4555;
  }
  
  .service-11 .font-weight-medium {
      font-weight: 500;
  }
  
  .service-11 .bg-light {
      background-color: #f4f8fa !important;
  }
  
  .service-11 .subtitle {
      color: #8d97ad;
      line-height: 24px;
  }
  
  .service-11 .card.card-shadow {
      -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
      box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  }
  
  .service-11 .wrap-service11-box {
    margin-top: 60px;
  }
  
  .service-11 .wrap-service11-box .icon-space {
    margin: -70px 0 20px;
  }
  
  .service-11 .wrap-service11-box .icon-space .icon-round {
    font-size: 45px;
    color: #ffffff;
  }
  
  .service-11 .bg-success-gradiant {
      background: #175e60;
  }
  
  .service-11 .icon-round {
          width: 80px;
      line-height: 80px;
  }
  
  .service-11 .btn-success-gradiant {
          background: #2cdd9b;
      background: -webkit-linear-gradient(legacy-direction(to right), #2cdd9b 0%, #1dc8cc 100%);
      background: -webkit-gradient(linear, left top, right top, from(#2cdd9b), to(#1dc8cc));
      background: -webkit-linear-gradient(left, #2cdd9b 0%, #1dc8cc 100%);
      background: -o-linear-gradient(left, #2cdd9b 0%, #1dc8cc 100%);
      background: linear-gradient(to right, #2cdd9b 0%, #1dc8cc 100%);
  }
  
  .service-11 .btn-success-gradiant:hover {
          background: #1dc8cc;
      background: -webkit-linear-gradient(legacy-direction(to right), #1dc8cc 0%, #2cdd9b 100%);
      background: -webkit-gradient(linear, left top, right top, from(#1dc8cc), to(#2cdd9b));
      background: -webkit-linear-gradient(left, #1dc8cc 0%, #2cdd9b 100%);
      background: -o-linear-gradient(left, #1dc8cc 0%, #2cdd9b 100%);
      background: linear-gradient(to right, #1dc8cc 0%, #2cdd9b 100%);	
  }
  
  .service-11 .btn-md {
      padding: 15px 45px;
      font-size: 16px;
  }

.google-ads {width: 100%; background-color: #175e60;}

.google-ads .shadow, .subscription-wrapper {
    box-shadow: 0px 15px 39px 0px rgba(8, 18, 109, 0.1) !important;
}

.google-ads .icon-primary {
    color: #062caf;
}

.google-ads .icon-bg-circle {
    position: relative;
}

.google-ads .icon-lg {
    font-size: 50px;
} 

.google-ads .icon-bg-circle::before {
    z-index: 1;
    position: relative;
}

.google-ads .icon-bg-primary::after {
    background: #062caf !important;
}

.google-ads .icon-bg-circle::after {
    content: '';
    position: absolute;
    width: 68px;
    height: 68px;
    top: -35px;
    left: 15px;
    border-radius: 50%;
    background: inherit;
    opasubject: .1;
} 

.google-ads p, .paragraph {
    font-weight: 400;
    color: #000000;
    font-size: 15px;
    line-height: 1.6;
    font-family: "Roboto", sans-serif;
}

.demo-tab {width: 100%;}

.demo-tab .nav-tabs {margin-bottom: 20px;}

.demo-tab .nav-tabs .nav-link {border: 1px solid #175e60!important; margin-bottom: 10px; border-radius: 8px; color: #175e60;}

.demo-tab .nav-tabs .nav-link.active {background-color: #175e60; color: #FFFFFF;}

.demo-tab .nav-tabs .nav-link:hover {background-color: #175e60; color: #FFFFFF;}

.mission {width: 100%; padding: 5% 0 5%; background-color: #175e60;}

.mission h4 {margin: 0; padding: 0 10% 0;}

.mission-1 {width: 100%; padding: 5% 0 5%; background-color: #175e60;}

.mission-1 p {text-align: justify;}

.process_main
{
    width: 100%;
    float: left;
    padding: 50px 0;
    background: url(../img/bg.jpg);
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
}
.process_main .heading_main {
    width: 100%;
    float: left;
    margin: 0 0 30px 0;
    text-align: center;
    color: #ffffff;
}
.process_main .heading_main h1 {color: #ffffff;}
.process_main .process_full {
    width: 100%;
    float: left;
}
.process_full .process_content {
    width: 18%;
    float: left;
    margin: 30px 1%;
    text-align: center;
}
.process_full .process_content img {
    width: 65px;
    margin: 0 0 15px 0;
}
.process_full .process_content p {
    color: #fff;
    letter-spacing: 1px;
    font-size: 14px;
}
.process_full .process_aro_1 {
    width: 6%;
    float: left;
    text-align: center;
    font-size: 40px;
    color: #ffffffd4;
    padding: 35px 0 0 0;
}
.process_full .process_aro_2 {
    width: 6%;
    float: left;
    text-align: center;
    font-size: 40px;
    color: #ffffffd4;
    padding: 35px 0 0 0;
}

.process_full.d_show {
    display: none;
}

.search-ads {padding: 5% 0 1%;}

@media only screen and (max-width:767px){
    .process_full .process_content {
    width: 100%;
    margin: 30px 0;
}
.process_full.d_hide {
    display: none;
}
.process_full.d_show {
    display: block;
}
.process_full .process_aro_1 {
    width: 100%;
    padding: 20px 0;
    transform: rotate(90deg);
}
}
.provide {
    padding-top: 5rem;
    padding-bottom: 4rem;
    background-color: #f1f4fa;
}
.provide .wrap {
    display: flex;
    background: #e3d88b ;
    padding: 1rem 1rem 1rem 1rem;
    border-radius: 0.5rem;
    box-shadow: 7px 7px 30px -5px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.provide .wrap:hover {
    background: #175e60;
    color: white;
}

.provide .ico-wrap {
    margin: auto;
}

.provide .mbr-iconfont {
    font-size: 4.5rem !important;
    color: #fff;
    margin: 1rem;
    padding-right: 1rem;
}
.provide .vcenter {
    margin: auto;
}

.provide .mbr-section-title3 {
    text-align: left;
}
.provide h1 {text-align: center; color: #373435; margin: 0 0 40px;}
.provide h2 {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}
.provide .display-5 {
    font-size: 1.4rem;
    color: #fff;
}
.provide .mbr-bold {
    font-weight: 700;
}

.provide p {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    line-height: 25px;
}
.provide .display-6 {
    font-size: 18px;}

/* .timeline-1 {padding: 6% 0 5%;}

.timeline-1 h2 {margin-bottom: 5%; text-align: center; color: #175e60;}

    .main-timeline {
        position: relative;
        width: 100%;
    }
    
    .main-timeline:before {
        content: "";
        display: block;
        width: 2px;
        height: 100%;
        background: #373435;
        margin: 0 auto;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
    }
    
    .main-timeline .timeline {
        margin-bottom: 40px;
        position: relative;
    }
    
    .main-timeline .timeline:after {
        content: "";
        display: block;
        clear: both;
    }
    
    .main-timeline .icon {
        width: 18px;
        height: 18px;
        line-height: 18px;
        margin: auto;
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
    }
    
    .main-timeline .icon:before,
    .main-timeline .icon:after {
        content: "";
        width: 100%;
        height: 100%;
        border-radius: 50%;
        position: absolute;
        top: 0;
        left: 0;
        transition: all 0.33s ease-out 0s;
    }
    
    .main-timeline .icon:before {
        background: #fff;
        border: 2px solid #175e60;
        left: -3px;
    }
    
    .main-timeline .icon:after {
        border: 2px solid #373435;
        left: 3px;
    }
    
    .main-timeline .timeline:hover .icon:before {
        left: 3px;
    }
    
    .main-timeline .timeline:hover .icon:after {
        left: -3px;
    }
    
    .main-timeline .date-content {
        width: 50%;
        float: left;
        margin-top: 2px;
        position: relative;
    }
    
    .main-timeline .date-content:before {
        content: "";
        width: 36.5%;
        height: 2px;
        background: #373435;
        margin: auto 0;
        position: absolute;
        top: 0;
        right: 10px;
        bottom: 0;
    }
    
    .main-timeline .date-outer {
        width: 125px;
        height: 125px;
        font-size: 16px;
        text-align: center;
        margin: auto;
        z-index: 1;
    }
    
    .main-timeline .date-outer:before,
    .main-timeline .date-outer:after {
        content: "";
        width: 125px;
        height: 125px;
        margin: 0 auto;
        border-radius: 50%;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        transition: all 0.33s ease-out 0s;
    }
    
    .main-timeline .date-outer:before {
        background: #fff;
        border: 2px solid #175e60;
        left: -6px;
    }
    
    .main-timeline .date-outer:after {
        border: 2px solid #373435;
        left: 6px;
    }
    
    .main-timeline .timeline:hover .date-outer:before {
        left: 6px;
    }
    
    .main-timeline .timeline:hover .date-outer:after {
        left: -6px;
    }
    
    .main-timeline .date {
        width: 100%;
        margin: auto;
        position: absolute;
        top: 36%;
        left: 0;
    }
    
    .main-timeline .month {
        font-size: 18px;
        font-weight: 700;
    }
    
    .main-timeline .year {
        display: block;
        font-size: 30px;
        font-weight: 700;
        color: #175e60;
        line-height: 36px;
    }
    
    .main-timeline .timeline-content {
        width: 50%;
        padding: 20px 0 20px 50px;
        float: right
    }
    
    .main-timeline .title {
        font-size: 19px;
        font-weight: 700;
        line-height: 24px;
        margin: 0 0 15px 0
    }
    
    .main-timeline .description {
        margin-bottom: 0;
        font-size: 15px;
    }
    
    .main-timeline .timeline:nth-child(2n) .date-content {
        float: right
    }
    
    .main-timeline .timeline:nth-child(2n) .date-content:before {
        left: 10px
    }
    
    .main-timeline .timeline:nth-child(2n) .timeline-content {
        padding: 20px 50px 20px 0;
        text-align: right
    }
    
    @media only screen and (max-width: 991px) {
        .main-timeline .date-content {
            margin-top: 35px
        }
        .main-timeline .date-content:before {
            width: 22.5%
        }
        .main-timeline .timeline-content {
            padding: 10px 0 10px 30px
        }
        .main-timeline .title {
            font-size: 17px
        }
        .main-timeline .timeline:nth-child(2n) .timeline-content {
            padding: 10px 30px 10px 0
        }
    }
    
    @media only screen and (max-width: 767px) {
        .main-timeline:before {
            margin: 0;
            left: 7px
        }
        .main-timeline .timeline {
            margin-bottom: 20px
        }
        .main-timeline .timeline:last-child {
            margin-bottom: 0
        }
        .main-timeline .icon {
            margin: auto 0
        }
        .main-timeline .date-content {
            width: 95%;
            float: right;
            margin-top: 0
        }
        .main-timeline .date-content:before {
            display: none
        }
        .main-timeline .date-outer {
            width: 110px;
            height: 110px
        }
        .main-timeline .date-outer:before,
        .main-timeline .date-outer:after {
            width: 110px;
            height: 110px
        }
        .main-timeline .date {
            top: 30%
        }
        .main-timeline .year {
            font-size: 24px
        }
        .main-timeline .timeline-content,
        .main-timeline .timeline:nth-child(2n) .timeline-content {
            width: 95%;
            text-align: center;
            padding: 10px 0
        }
        .main-timeline .title {
            margin-bottom: 10px
        }
    } */



.main-time-01 {width: 100%; padding: 5% 0 5%;}
.main-time-01:after{
    content: '';
    display: block;
    clear: both;
}
.main-time-01 .timeline{
    width: 50%;
    padding: 60px 0 0 0;
    margin: 0 5px 25px 0;
    float: left;
}
.main-time-01 .timeline-content{
    min-height: 100px;
    padding: 0 15px 0 0;
    border-right: 2px solid var(--main-color);
    display: block;
    position: relative;
}
.main-time-01 .timeline-content:hover{ text-decoration: none; }
.main-time-01 .timeline-content:before,
.main-time-01 .timeline-content:after{
    content: '';
    background-color: var(--main-color);
    height: 6px;
    width: 6px;
    border-radius: 50%;
    position: absolute;
    right: -4px;
    top: 0;
}
.main-time-01 .timeline-content:after{
    top: auto;
    bottom: 0;
}
.main-time-01 .timeline-year{
    color: #fff;
    background-color: var(--main-color);
    font-size: 25px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 3px 20px 3px 50px;
    position: absolute;
    right: -2px;
    top: -60px;
    z-index: 1;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 15% 100%, 0 50%);
}
.main-time-01 .title{
    color: var(--main-color);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: capitalize;
    margin: 0 0 7px;
}
.main-time-01 .description{
    color: #555;
    font-size: 13px;
    font-weight: 500;
    line-height: 22px;
    text-align: left;
    letter-spacing: 0.5px;
    margin: 0;
}
.main-time-01 .timeline:nth-child(even){
    margin: 0 0 25px 5px;
    float: right;
}
.main-time-01 .timeline:nth-child(even) .timeline-content{
    text-align: left;
    padding: 0 0 0 15px;
    border-left: 2px solid var(--main-color);
    border-right: none;
}
.main-time-01 .timeline:nth-child(even) .timeline-content:before,
.main-time-01 .timeline:nth-child(even) .timeline-content:after{
    right: auto;
    left: -4px;
}
.main-time-01 .timeline:nth-child(even) .timeline-year{
    right: auto;
    left: -2px;
    clip-path: polygon(0 0, 85% 0, 100% 50%, 85% 100%, 0 100%);
}
.main-time-01 .timeline:nth-child(1){ --main-color: #e3d88b; }
.main-time-01 .timeline:nth-child(2){ --main-color: #e3d88b; }
.main-time-01 .timeline:nth-child(3){ --main-color: #e3d88b; }
.main-time-01 .timeline:nth-child(4){ --main-color: #e3d88b; }
.main-time-01 .timeline:nth-child(5){ --main-color: #e3d88b; }
@media screen and (max-width:767px){
    .main-time-01 .timeline,
    .main-time-01 .timeline:nth-child(even){
        width: 100%;
        margin: 0 0 25px;
    }
}

.ftco-section {padding: 5% 0 5%;}

.ftco-section .form-control {
    height: 36px;
    background: #fff;
    color: rgba(0, 0, 0, 0.8);
    font-size: 14px;
    border-radius: 2px;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.ftco-section .form-control::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: rgba(0, 0, 0, 0.3) !important;
}

.ftco-section .form-control::-moz-placeholder {
    /* Firefox 19+ */
    color: rgba(0, 0, 0, 0.3) !important;
}

.ftco-section .form-control:-ms-input-placeholder {
    /* IE 0+ */
    color: rgba(0, 0, 0, 0.3) !important;
}

.ftco-section .form-control:-moz-placeholder {
    /* Firefox 18- */
    color: rgba(0, 0, 0, 0.3) !important;
}

.ftco-section .form-control:focus,
.form-control:active {
    border-color: #01d28e !important;
}

.ftco-section textarea.form-control {
    height: inherit !important;
}

.ftco-section .wrapper {
    width: 100%;
    -webkit-box-shadow: 0px 21px 41px -13px rgba(0, 0, 0, 0.18);
    -moz-box-shadow: 0px 21px 41px -13px rgba(0, 0, 0, 0.18);
    box-shadow: 0px 21px 41px -13px rgba(0, 0, 0, 0.18);
}

.ftco-section .contact-wrap {
    background: #fff;
}

.ftco-section .info-wrap {
    color: rgba(255, 255, 255, 0.8);
}

.ftco-section .info-wrap h3 {
    color: #fff;
}

.ftco-section .info-wrap .dbox {
    width: 100%;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
}

.ftco-section .info-wrap .dbox:last-child {
    margin-bottom: 0;
}

.ftco-section .info-wrap .dbox p {
    margin-bottom: 0;
}

.ftco-section .info-wrap .dbox p span {
    font-weight: 500;
    color: #fff;
}

.ftco-section .info-wrap .dbox p a {
    color: #fff;
}

.ftco-section .info-wrap .dbox .icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.ftco-section .info-wrap .dbox .icon span {
    font-size: 20px;
    color: #fff;
}

.ftco-section .info-wrap .dbox .text {
    width: calc(100% - 50px);
    padding-left: 20px;
}

.ftco-section .contactForm .label {
    color: #000;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
}

.ftco-section .contactForm .form-control {
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0;
}

.ftco-section #contactForm .error {
    color: red;
    font-size: 12px;
}

.ftco-section #contactForm .form-control {
    font-size: 16px;
}

.ftco-section #message {
    resize: vertical;
}

.ftco-section #form-message-warning,
#form-message-success {
    display: none;
}

.ftco-section #form-message-warning {
    color: red;
}

.ftco-section #form-message-success {
    color: #28a745;
    font-size: 18px;
    font-weight: bold;
}

.ftco-section .submitting {
    float: left;
    width: 100%;
    padding: 10px 0;
    display: none;
    font-size: 16px;
    font-weight: bold;
}

.ftco-section .form-group {margin-bottom: 1rem;}

.testi-1 {width: 100%;}

.whatsapp {
    position: fixed;
    bottom: 30px;
    left: 30px;
    float: left !important;
    z-index: 999999;
}

.navbar-dark .navbar-toggler {border-color: rgb(0,0,0);}

.navbar-dark .navbar-toggler-icon {
    background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgb%280, 0, 0%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    color: 000000;
  }

  .about-us {width: 100%;}

  @media (min-width: 320px) {
    .carousel-content .me-2 {margin-right: 0 !important;}
    .carousel-content .ms-2 {margin-left: 0 !important;}
    .carousel-caption .carousel-content a button.carousel-content-btn1 {margin: 10px 0 10px!important;}
    .carousel-caption .carousel-content a button.carousel-content-btn2 {margin: 10px 0 10px!important;}
    .counter h1 {width: 20%;}
    .counter h5 {width: 80%;}
    .carousel-control-prev {width: 50px;}
    .carousel-control-next {width: 50px;}
    .about-us p {text-align: justify;}
    .search-ads {padding: 5% 8% 1%!important;}
  }
