
/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50%;
}

.btn.btn-primary {
    box-shadow: #2b90c9;
}

.btn.btn-primary:hover {
    box-shadow: inset 300px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}

.btn.btn-light {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.btn.btn-light:hover {
    box-shadow: inset 300px 0 0 0 var(--bs-primary);
    color: var(--bs-light) !important;
}

.btn-hover {
    transition: 0.5s;
}

.btn-hover:hover {
    color: var(--bs-secondary) !important;
}

/*** Section Title Start ***/
.section-title {
    max-width: 1000px;
    text-align: center;
    margin: 0 auto;

}

.section-title .sub-style {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.section-title .sub-style::before {
    content: "";
    width: 100px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-top: 8px;
    margin-left: -100px;
    border: 1px solid var(--bs-primary) !important;
}

.section-title .sub-style::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-bottom: 5px;
    margin-left: -50px;
    border: 1px solid var(--bs-primary) !important;
}

.sub-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: #116D89;
}

.sub-title::before {
    content: "";
    width: 100px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-top: 8px;
    margin-right: -100px;
    border: 1px solid var(--bs-primary) !important;
}

.sub-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-bottom: 8px;
    margin-right: -50px;
    border: 1px solid var(--bs-primary) !important;
}


/*** Topbar Start ***/
.fixed-top .container {
    transition: 0.5s;
}

.topbar {
    padding: 2px 10px 2px 20px;
    background: var(--bs-primary) !important;
}

.topbar a,
.topbar a i {
    transition: 0.5s;
}

.topbar a:hover,
.topbar a i:hover {
    color: var(--bs-secondary) !important;
}


@media (max-width: 576px) {
    .topbar {
        display:none;    
    }
}
/*** Topbar End ***/


/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    font-family: 'Open Sans', sans-serif;
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    color: var(--bs-dark) !important;
    font-size: 17px;
    font-weight: 500;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--bs-primary) !important;
}

.navbar-light .navbar-brand img {
    max-height: 50px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light) !important;
    transition: .5s;
    opacity: 1;
}

@media (max-width: 600px) {
    .sticky-top.navbar-light {
        position: relative;
        background:#fff;
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 10px 10px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--bs-dark) !important;
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
        z-index: 999;
    }
    
    .sticky-top.navbar-light {
        position: fixed;
        background: #fff;
    }

    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--bs-primary);
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        width: calc(100% - 2px);
        left: 1px;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }
}
/*** Carousel Hero Header Start ***/
.header-carousel {
    position: relative; 
}

.header-carousel .owl-nav .owl-prev {
    position: absolute;
    width: 70px;
    height: 70px;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    border-radius: 50%;
    background: var(--bs-primary);
    color: var(--bs-white);
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-next {
    position: absolute;
    width: 70px;
    height: 70px;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    border-radius: 50%;
    background: var(--bs-primary);
    color: var(--bs-white);
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 150px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}

@media (max-width: 576px) {
    .header-carousel .owl-nav .owl-prev,
    .header-carousel .owl-nav .owl-next {
        top: 630px;
        transition: 0.5s;
    }

    .header-carousel .header-carousel-item .carousel-caption .carousel-caption-content {
        width: 95% !important;
    }
 
}

.header-carousel .header-carousel-item,
.header-carousel .header-carousel-item img {
    position: relative;
    width: 100%;
    height: 700px;
    margin-top: 95px;
    display: block;
    object-fit: cover;
    transition: 0.5s;

}

@media (max-width: 992px) {
    .header-carousel .header-carousel-item,
    .header-carousel .header-carousel-item img {
        margin-top: 0;
        transition: 0.5s;
    }

}

@media (min-width: 992px) {
    .header-carousel .owl-nav .owl-prev,
    .header-carousel .owl-nav .owl-next {
        margin-top: 50px;
    }
}

.header-carousel .header-carousel-item .carousel-caption {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
}

.header-carousel .header-carousel-item .carousel-caption .carousel-caption-content {
    position: relative;
    width: 75%;
    
}

.bg-breadcrumb {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 160px 0 60px 0;
}

.bg-breadcrumb .breadcrumb-item a {
    color: var(--bs-white) !important;
}

.service .service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .2) ;
}
.service .service-item .service-img {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service .service-item .service-img img {
    transition: 0.5s;
}

.service .service-item .service-img::before {
    width: 100%;
    height: 0;
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    transition: 0.5s;
    z-index: 5;
    
}

.service .service-item:hover .service-img::before {
    height: 100%;
    background: rgba(21, 185, 217, .3);
}

.service .service-item .service-img:hover img {
    transform: scale(1.3);
}

.service .service-item .service-content {
    position: relative;
    z-index: 2;

}

.service .service-item .service-content::before {
    width: 100%;
    height: 8px;
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: rgba(21, 185, 217, .5);
    transition: 0.5s;
    z-index: 3;
}

.service .service-item:hover .service-content::before {
    background: rgba(21, 185, 217, .5);
    height: 100%;
}

.service .service-item .service-content .service-content-inner {
    transition: 0.5s;
}


.service .service-item:hover .service-content .service-content-inner {
    position: relative;
    color: var(--bs-white) !important;
    z-index: 9;
}
.service .service-item:hover .service-content .service-content-inner h5 {
    color: var(--bs-secondary);
}

/*** Service End ***/

/*** About Start ***/
.about .about-img {
    position: relative;
    overflow: hidden;
    height: 100%;
    border-radius: 10px;
}

.about .about-img .about-img-inner {
    position: absolute;
    left: 0; 
    bottom: 0; 
    border: 10px solid; 
    border-color: var(--bs-white) var(--bs-white) var(--bs-white) var(--bs-white);
    border-radius: 50%;

}

.about .about-img .about-experience {
    position: absolute;
    top: 125px; 
    left: -125px; 
    transform: rotate(-90deg);
    background: transparent;
    color: var(--bs-primary);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 4px;
}


/*** About End ***/

/*** Feature Start ***/
.feature .feature-item {
    position: relative;
    display: flex;
    border: 1px solid var(--bs-primary);
    border-radius: 10px;
    background: var(--bs-light);
    transition: 0.5s;

}

.feature .feature-item::before {
    width: 0;
    height: 100%;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 10px;
    transition: 0.5s;
}

.feature .feature-item:hover::before {
    width: 100%;
    background: var(--bs-primary);
}

.feature .feature-item .feature-icon {
    display: inline-flex;
    border-radius: 10px;
    transition: 0.5s;
}

.feature .feature-item:hover .feature-icon {
    position: relative;
    z-index: 2;
}

.feature .feature-item:hover .feature-content {
    position: relative;
    color: var(--bs-white);
    z-index: 2;
}

.feature .feature-item:hover .feature-content h5 {
    color: var(--bs-dark);
}
/*** Feature End ***/


/*** Appointment Start ***/
.appointment {
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9));
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.appointment .appointment-form {
    background: rgba(239, 162, 134, 0.3);
}

.appointment .appointment-form .btn.btn-primary {
    box-shadow: #2b90c9;
}

.appointment .appointment-form .btn.btn-primary:hover {
    box-shadow: inset 600px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}
/*** Youtube Video start ***/
/* .video {
    position: relative;
}

.video .btn-play {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-sizing: content-box;
    display: block;
    width: 33px;
    height: 44px;
    border-radius: 50%;
    transition: 0.5s;
    

}

.video .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 115px;
    height: 115px;
    background: var(--bs-primary);
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
    transition: 0.5s;
}

.video .btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--bs-secondary);
    border-radius: 50%;
    transition: all 300ms;
}

.video .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 33px solid var(--bs-white);
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
    margin-left: 5px;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

#videoModal {
    z-index: 99999;
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #ffffff;
    background: #000000;
    opacity: 1;
} */
/*** Youtube Video End ***/
/*** Appointment End ***/


/*** Team Start ***/
.team .team-item .team-img {
    position: relative;
    overflow: hidden;
}

.team .team-item .team-img::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    transition: 0.5s;
}

.team .team-item .team-img .team-icon {
    position: absolute;
    bottom: -125px;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.5s;
}

.team .team-item .team-img:hover .team-icon {
    margin-bottom: 145px;
}

.team .team-item:hover .team-img::before {
    background: rgba(21, 185, 217, .3);
}

.team .team-item .team-content {
    color: var(--bs-primary);
    transition: 0.5s;
}

.team .team-item .team-content h5 {
    color: var(--bs-secondary);
    transition: 0.5s;
}

.team .team-item:hover .team-content h5 {
    color: var(--bs-dark);
}

.team .team-item:hover .team-content {
    background: var(--bs-primary);
    color: var(--bs-white);
}
/*** Team End ***/


/*** testimonial Start ***/
.testimonial {
    background: linear-gradient(rgba(21, 185, 217, 0.9), rgba(21, 185, 217, 0.9));
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.testimonial .testimonial-item .testimonial-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-radius: 10px;
    background: transparent;
}

.testimonial .testimonial-item .testimonial-inner .testimonial-inner-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 5px solid var(--bs-white);
}

.testimonial .testimonial-carousel.owl-carousel {
    position: relative;
}

.testimonial .testimonial-carousel .owl-nav .owl-prev {
    position: absolute;
    top: 50%;
    left: -20px;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background: var(--bs-light);
    color: var(--bs-primary);
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background: var(--bs-light);
    color: var(--bs-primary);
    transition: 0.5s;
}


.testimonial .testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial .testimonial-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 100px 0 0 0 var(--bs-primary) !important;
    color: var(--bs-white) !important;
}


@media (max-width: 900px) {
    .testimonial .testimonial-carousel .owl-nav .owl-prev {
        margin-top: -190px;
        margin-left: 40px;
    }

    .testimonial .testimonial-carousel .owl-nav .owl-next {
        margin-top: -190px;
        margin-right: 40px;
    }
    
}

.testimonial-carousel .owl-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.testimonial-carousel .owl-dots .owl-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-right: 15px;
    border: 1px solid var(--bs-white);
    background: transparent;
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 20px;
    height: 20px;
    background: var(--bs-secondary) !important;
}

.testimonial-carousel .owl-dots .owl-dot span {
    position: relative;
    margin-top: 50%;
    margin-left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-dots .owl-dot span::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 1px;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bs-white);
}

.testimonial .testimonial-carousel .testimonial-item .testimonial-inner p.fs-7 {
    transition: 0.5s;
}

@media (min-width: 900px) {
    .testimonial .testimonial-carousel .testimonial-item .testimonial-inner p.fs-7 {
        font-size: 20px;
    }
}


/* Testimonial Section Title Start */
.testimonial .section-title {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.testimonial .section-title .sub-style {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.testimonial .section-title .sub-style::before {
    content: "";
    width: 100px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-top: 8px;
    margin-left: -100px;
    border: 1px solid var(--bs-white) !important;
}

.testimonial .section-title .sub-style::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-bottom: 5px;
    margin-left: -50px;
    border: 1px solid var(--bs-white) !important;
}

.testimonial .section-title .sub-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.testimonial .section-title .sub-title::before {
    content: "";
    width: 100px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-top: 8px;
    margin-right: -100px;
    border: 1px solid var(--bs-white) !important;
}

.testimonial .section-title .sub-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-bottom: 8px;
    margin-right: -50px;
    border: 1px solid var(--bs-white) !important;
}
/*** Testimonial End ***/


/*** Blog Start ***/
.blog .blog-item .blog-img {
    position: relative;
    overflow: hidden;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    height: 300px;
}

.blog .blog-item .blog-img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    transition: 0.5s;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item .blog-img:hover img {
    transform: scale(1.3);
}

.blog .blog-item:hover .blog-img::after {
    background: rgba(21, 185, 217, .5);
}

.blog .blog-item .blog-centent {
    background: var(--bs-light);
    border: 1px solid var(--bs-primary);
    border-top: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
/*** Blog End ***/


/*** Contact Start ***/
.contact {
   
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}


.contact .contact-form .btn.btn-light {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.contact .contact-form .btn.btn-light:hover {
    box-shadow: inset 600px 0 0 0 var(--bs-primary) !important;
    color: var(--bs-white) !important;
}

.contact .contact-form .form-floating input,
.contact .contact-form .form-floating textarea,
.contact .contact-form .form-floating label {
    color: var(--bs-light);
}



/* Testimonial Section Title Start */
.contact .section-title {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.contact .section-title .sub-style {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.contact .section-title .sub-style::before {
    content: "";
    width: 100px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-top: 8px;
    margin-left: -100px;
    border: 1px solid var(--bs-white) !important;
}

.contact .section-title .sub-style::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-bottom: 5px;
    margin-left: -50px;
    border: 1px solid var(--bs-white) !important;
}

.contact .section-title .sub-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.contact .section-title .sub-title::before {
    content: "";
    width: 100px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-top: 8px;
    margin-right: -100px;
    border: 1px solid var(--bs-white) !important;
}

.contact .section-title .sub-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-bottom: 8px;
    margin-right: -50px;
    border: 1px solid var(--bs-white) !important;
}
/*** Contact End ***/


/*** Footer Start ***/
.footer {
    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9));
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.footer .footer-item a {
    line-height: 35px;
    color: var(--bs-body);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 35px;
}

.footer .footer-item a:hover {
    letter-spacing: 2px;
    color: var(--bs-primary);
}

.copyright {
    background: var(--bs-dark) !important;
}

.profile-section {
    position: relative; 
    width: 100%; 
    height: 100vh; 
    overflow: hidden; 

  }

  @media only screen and (max-width: 600px){
    .profile-section {
      width: 100%; 
    height: 30vh;
    }

  }
  
  @media only screen and (max-width: 900px){
    .profile-section {
    height: 35vh;
    width: 100%; 
    }

  }
  
  /* #video-background {
    position: absolute; 
    top: 0;
    left: 0;
    width: 100%;
    height: 95%; 
    object-fit: fill; 
    z-index: -1; 
  }

  @media only screen and (max-width: 600px){
    #video-background {
      height: auto;  
    }

  }
  @media only screen and (max-width: 800px){
    #video-background {
      height: auto;  
    }

  } */

  .container {
    margin: 0 auto;
    padding: 0 20px;
    
  }
  
  .client-section {
    padding: 50px 0;
    background-color: #116D89;
    overflow-x: hidden;
  }
  
  .sec-title {
    text-align: center;
    margin-bottom: 20px;
  }
  .sec-title h2 {
    font-size: 35px;
    color:#fff;
    text-shadow: #fff;
  }
  
  .client-slider {
    width: 100%;
    overflow: hidden;
    overflow-x: hidden;
  }
  .swiper-wrapper {
    display: flex;
    grid-gap: 5px; 
    margin: 5%;
  }
  
  .swiper-slide {
    text-align: center;
    min-width: 150px;
  }
  .client-card {
    background-color: #FFFFFF;
    border: 2px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease-in-out; 
    height: 100px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .client-card img {
    max-width: 100%;
    max-height: 100%;
  }
  .client-card:hover {
    transform: scale(1.05);
  }

  .swiper-button-prev-c,
  .swiper-button-next-c {
    font-size: 24px;
    color: #000;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 1;
  }
  .swiper-button-prev-c {
    left: 10px;
  }
  .swiper-button-next-c {
    right: 10px;
  }
  .grid-section {
    padding: 20px 0;
    background-color:#116D89;
  }
  .container {
    max-width: 100%;
    margin: 0 auto;
  }
  .grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    background-color:#116D89;
  }
  .grid-item {
    text-align: center;
  }
  .card-box {
    background-color: #FFFFFF;
    border: 2px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
  }
  .card-box h4 {
    font-size: 18px;
    color: #333;
  }
  .counter {
    font-size: 25px;
    font-weight: bold;
    color: #333;
    margin-top: 10px;
  }
  .card-box:hover {
    transform: scale(1.05);
    background-color: aqua;
  }
  @media (max-width: 600px) {
    .grid-container {
      width: 100%;
      display: block;
      margin-bottom: 20px;
     gap: 10%;
      margin-right: 5%; 
  }
  }
  @media (max-width: 800px) {
    .grid-container {
      width: 100%;
      display: block;
      margin-bottom: 20px;
    }
  }
  #map {
    height: 400px;
    width: 650px;
    margin-left: 40px;
    margin-top: 40px;
  }
  @media only screen and (max-width: 600px){
    #map {
      height: 300px;
      width: auto;
      margin-left: 5px;
      margin-top: 40px;
      margin-right: 5px;
    }
    .heading {
      margin-right: 15%;
    }
    .presence-content {
      margin-right: 10%;
  }

  }
.presence {
    display: flex;
    flex-direction: row;
}
.presence-content {
    flex: 1;
    margin-left: 40px;
    margin-right:60px;
    margin-top: 100px;
}
@media screen and (max-width: 768px) {
    .presence {
        flex-direction: column;
    }
    .presence-content{
      margin-right: 5%;
    }
    .presence-image {
        flex: none;
        width: 100%;
    }
}

@media screen and (max-width: 900px) {
  .presence {
      flex-direction: column;
  }

  .presence-content{
    margin-right: 5%;
  }
  .presence-image {
      flex: none;
      width: 100%;
  }
}
.title {
    text-align: center;
    margin-top: 20px;
  } 
  .row-award {
    display: flex;
    flex-wrap: wrap;
  }
  .coulmn-award {
    flex: 1;
    max-width: calc(33.333% - 20px); 
  }
  .card-award {
    text-align: center;
    border: 1px solid white;
    padding: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: whitesmoke;
    margin-left: 10px;
    margin-right: 10px; 
  } 
  .card-award img {
    width: 100%;
    height: 100%;
    margin-bottom: 10px;
    transition: transform 0.3s ease-in-out;
    object-fit: cover;
    transform: scale(1.1); 
  }
  .card-award:hover img {
    transform: scale(1.5);
  }
  @media (max-width: 768px) {
    .coulmn-award {
      min-width: 300px;
      margin-left: 10%;
    }
  }
  @media only screen and (max-width: 600px){
    .coulmn-award {
      min-width: 300px;
      margin-left: 10%;
    }
  }
  .container-happing {
    margin: 0 auto;
    padding: 20px;
  }
  .title {
    text-align: center;
    margin-bottom: 20px;
  }
  .title h2 {
    font-size: 30px;
  }
  .slide-container {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none; 
    -ms-overflow-style: none; 
  }
  .slide-container::-webkit-scrollbar {
    display: none; 
  }
  .slide-image {
    flex: 0 0 auto;
    margin: 10px;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  }
  .slide-image img {
    width: 450px;
    height: auto;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
  }
  .slide-image-holi img {
    position: relative;
    margin-top: 10px;
  }
  .slide-image:hover img {
    transform: scale(1);
  }
  .container-happing .web-text p {
    font-size: 20px;
    text-align: justify;
    font-weight: 400;
    color: #666;
    margin: 50px;
  }
  @media screen and (max-width: 768px) {
    .slide-container {
      flex-direction: column; 
    }
    .slide-image,
    .container-happing .web-text {
      order: 2; 
    }
    .slide-image img {
      max-width: 100%;
      height: auto;
    }
    .container-happing .web-text p {
      font-size: 18px;
      margin: 10px 0; 
    }
  }
  @media screen and (max-width: 600px) {
    .slide-container {
        align-items: center;
        flex-direction: row;
    }
    .slide-image {
        margin-bottom: 20px;
        width: 100%; 
    }
  }
  @media screen and (max-width: 800px) {
    .slide-container {
        align-items: center;
        flex-direction: row;
    }
    .slide-image {
        margin-bottom: 20px;
        width: auto; 
    }
  }
  .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;
    opacity: 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;
    opacity: 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;
    opacity: 0;
}
.project-content a {
    display: inline-block;
    padding: 20px 25px;
    background:white;
    border-radius: 10px;
}
.project-item:hover .project-content {
    opacity: 1;
    transition: .5s;
}
.project-item:hover .project-img::before,
.project-item:hover .project-img::after {
    opacity: 0;
}
@media (min-width: 992px) {
    .container.feature {
        max-width: 100% !important;
    }
    .feature-text  {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}
@media (min-width: 1200px) {
    .feature-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}
@media (min-width: 1400px) {
    .feature-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}
  .footer-bottom {
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: center;  
 }
 .page-section h2.section-heading, .page-section .section-heading.h2 {
    font-size: 2.5rem;
    margin-top: 0;
    margin-bottom: 1rem;
  }
  .page-section h3.section-subheading, .page-section .section-subheading.h3 {
    font-size: 1rem;
    font-weight: 400;
    font-style: italic;
    font-family: "Roboto Slab", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    margin-bottom: 4rem;
  }
  .timeline {
    position: relative;
    padding: 0;
    list-style: none;
  }
  .timeline:before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 40px;
    width: 2px;
    margin-left: -1.5px;
    content: "";
    background-color: #e9ecef;
  }
  .timeline > li {
    position: relative;
    min-height: 50px;
    margin-bottom: 50px;
  }
  .timeline > li:after, .timeline > li:before {
    display: table;
    content: " ";
  }
  .timeline > li:after {
    clear: both;
  }
  .timeline > li .timeline-panel {
    position: relative;
    float: right;
    width: 100%;
    padding: 0 20px 0 100px;
    text-align: left;
  }
  .timeline > li .timeline-panel:before {
    right: auto;
    left: -15px;
    border-right-width: 15px;
    border-left-width: 0;
  }
  .timeline > li .timeline-panel:after {
    right: auto;
    left: -14px;
    border-right-width: 14px;
    border-left-width: 0;
  }
  .timeline > li .timeline-image {
    position: absolute;
    z-index: 100;
    left: 0;
    width: 80px;
    height: 80px;
    margin-left: 0;
    text-align: center;
    color: white;
    border: 7px solid #e9ecef;
    border-radius: 100%;
    background-color: #15B9D9;
  }
  .timeline > li .timeline-image h4, .timeline > li .timeline-image .h4 {
    font-size: 10px;
    line-height: 14px;
    margin-top: 12px;
  }
  .timeline > li.timeline-inverted > .timeline-panel {
    float: right;
    padding: 0 20px 0 100px;
    text-align: left;
  }
  .timeline > li.timeline-inverted > .timeline-panel:before {
    right: auto;
    left: -15px;
    border-right-width: 15px;
    border-left-width: 0;
  }
  .timeline > li.timeline-inverted > .timeline-panel:after {
    right: auto;
    left: -14px;
    border-right-width: 14px;
    border-left-width: 0;
  }
  .timeline > li:last-child {
    margin-bottom: 0;
  }
  .timeline .timeline-heading h4, .timeline .timeline-heading .h4 {
    margin-top: 0;
    color: inherit;
  }
  .timeline .timeline-heading h4.subheading, .timeline .timeline-heading .subheading.h4 {
    text-transform: none;
  }
  .timeline .timeline-body > ul,
  .timeline .timeline-body > p {
    margin-bottom: 0;
  }
  
  @media (min-width: 768px) {
    .timeline:before {
      left: 50%;
    }
    .timeline > li {
      min-height: 100px;
      margin-bottom: 100px;
    }
    .timeline > li .timeline-panel {
      float: left;
      width: 41%;
      padding: 0 20px 20px 30px;
      text-align: right;
    }
    .timeline > li .timeline-image {
      left: 50%;
      width: 100px;
      height: 100px;
      margin-left: -50px;
    }
    .timeline > li .timeline-image h4, .timeline > li .timeline-image .h4 {
      font-size: 13px;
      line-height: 18px;
      margin-top: 16px;
    }
    .timeline > li.timeline-inverted > .timeline-panel {
      float: right;
      padding: 0 30px 20px 20px;
      text-align: left;
    }
  }
  @media (min-width: 992px) {
    .timeline > li {
      min-height: 150px;
    }
    .timeline > li .timeline-panel {
      padding: 0 20px 20px;
    }
    .timeline > li .timeline-image {
      width: 150px;
      height: 150px;
      margin-left: -75px;
    }
    .timeline > li .timeline-image h4, .timeline > li .timeline-image .h4 {
      font-size: 18px;
      line-height: 26px;
      margin-top: 30px;
    }
    .timeline > li.timeline-inverted > .timeline-panel {
      padding: 0 20px 20px;
    }
  }
  @media (min-width: 1200px) {
    .timeline > li {
      min-height: 170px;
    }
    .timeline > li .timeline-panel {
      padding: 0 20px 20px 100px;
    }
    .timeline > li .timeline-image {
      width: 170px;
      height: 170px;
      margin-left: -85px;
    }
    .timeline > li .timeline-image h4, .timeline > li .timeline-image .h4 {
      margin-top: 40px;
    }
    .timeline > li.timeline-inverted > .timeline-panel {
      padding: 0 100px 20px 20px;
    }
  }
  .contact-area {
    background: #F7FEFF;
    padding-bottom: 50px;
}

.container-career {
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 15px; 
}

.getin-touch {
    margin-top: 50px; 
}

.contact-form {
    background-color: #F7FEFF; 
    padding: 30px; 
    border-radius: 8px; 
}

.contact-form h3 {
    font-size: 24px; 
    font-weight: bold; 
    color: #333; 
    margin-bottom: 20px; 
}

.contact-form p {
    color:#666; 
    font-size: 20px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="number"],
.contact-form select,
.contact-form textarea {
    width: 100%; 
    padding: 10px; 
    margin-bottom: 20px; 
    border: 1px solid #ccc; 
    border-radius: 5px; 
}
.contact-form input[type="file"] {
    margin-top: 10px; 
}
.contact-form input[type="submit"] {
    background-color: #3366cc; 
    color: #fff; 
    padding: 12px 20px; 
    border: none; 
    border-radius: 5px; 
    cursor: pointer; 
}
.contact-form input[type="submit"]:hover {
    background-color: #004080; 
}
.call-banner img {
    max-width: 100%; 
    height: auto; 
}
@media (max-width: 800px) {
    .contact-form input[type="text"],
    .contact-form input[type="email"],
    .contact-form input[type="number"],
    .contact-form select,
    .contact-form textarea {
        margin-bottom: 15px;
        margin-right: 10%; 
    }
    .contact-form input[type="submit"] {
        padding: 10px 15px; 
    }
}
@media (max-width: 600px) {
    .contact-form h3 {
        font-size: 20px;
        margin-right: 20px; 
    }
}
.buttion-demo {
    padding: 10px 15px;
    background-color:#116D89;
    color: #FFFFFF;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: inline-block; 
    font-size: 18px;
    border-radius: 10px;
}
.buttion-demo:hover {
  background-color:brown;
  color: #FFFFFF; 
}
.contact-area {
  padding: 50px 0;
  background-color: #f9f9f9;
}
.container-contact {
  max-width: 1200px;
  margin: 0 auto;
}
.contact-left {
  padding-right: 20px;
}
.sec-title h2 {
  margin-bottom: 20px;
  color: #333;
}
.sec-title span{
margin-bottom: 20px;
  color: #189AB4;
}
.informations {
  margin-bottom: 30px;
}
.informations .info p{
   color: #333;
   font-weight: 300;
}
.informations .info span{
    color: #333;
}
.single-info {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.single-info .icon {
  margin-right: 10px;
}

.single-info h3 {
  margin-bottom: 5px;
  color: #333;
}
.mapouter {
  overflow: hidden;
  width: 100%;
  position: relative;
}
.gmap_canvas {
  width: 100%;
  height: 400px;
}
.getin-touch {
  margin-top: 30px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
}
.contact-form input[type="submit"] {
  background-color: #007bff;
  color: #fff;
  cursor: pointer;
  border: none;
  width: 175px;
}
.contact-form input[type="submit"]:hover {
  background-color: #0056b3;
}
.call-banner img {
  max-width: 100%;
  display: block;
  margin: 0 auto;
}
.container{
  position: relative;
  margin-top: 20px;
}
.container .slide-container .slide{
 min-height: 100vh;
 display: flex;
 align-items: center;
 flex-wrap: wrap;
 gap: 15px;
 padding: 20px 9%;
 padding-bottom: 70px;
}
.container .slide-container .slide .content{
 flex:  1 1 350px;
 animation: slideContent .4s linear .6s backwards;
 font-family: 'poppins', sans-serif;
}
@keyframes slideContent{
0%{
 opacity: 0;
 transform: translateX(-50px);
}
}
.container .slide-container .slide .image{
 flex:  1 1 400px;
}
.container .slide-container .slide .image img{
 width: 600px;
 animation: slideImage .4s linear ;
}
@keyframes slideImage{
0%{
 opacity: 0;
 transform: translateY(-50px);
}
}
.container .slide-container .slide .content h2{
font-size: 27px;
color: #333;
}
.container .slide-container .slide .content h3{
 font-size: 25px;
 color: #189AB4;
 text-align: start;
 align-items: start;
}
.container .slide-container .slide .content p{
 font-size: 19px;
 color: #333;
 padding: 10px 0;
 text-align: start;
}
.container .slide-container .slide .content .btn{
 margin-top: 10px;
 display: inline-block;
 background: #666;
 color: #fff;
 font-size: 15px;
 padding: 9px 40px;
}
.container .slide-container .slide .content .btn:hover{
 background-color: #333;
}
.container .slide-container{
    display: none;
}
.container .slide-container.active{
 display: block;
} 
.container .slide-container:nth-child(1) .slide{
 background: linear-gradient(90deg,  #f9f9f9 100%, #ffff99  31.1%);
} 
.container .slide-container:nth-child(2)  .slide{
 background: linear-gradient(90deg,  #f9f9f9 100%, #ff9090 31.1%);

} 
.container .slide-container:nth-child(3) .slide{
 background: linear-gradient(90deg,  #f9f9f9 100%, #99bbff  31.1%);
} 
.container .slide-container:nth-child(4) .slide{
 background: linear-gradient(90deg,  #f9f9f9 100%, #ffff99  31.1%);
} 
.container .slide-container:nth-child(5) .slide{
 background: linear-gradient(90deg,  #f9f9f9 100%,  #99bbff  31.1%);
} 
.container .slide-container:nth-child(6) .slide{
 background: linear-gradient(90deg,  #f9f9f9 100%, #297fb8  31.1%);
} 
.container .slide-container:nth-child(7) .slide{
 background: linear-gradient(90deg,  #f9f9f9 100%, #ff99d6  31.1%);
} 
.container .slide-container:nth-child(8) .slide{
 background: linear-gradient(90deg,  #f9f9f9 100%, #780e4d  31.1%);
} 
.container .slide-container:nth-child(9) .slide{
 background: linear-gradient(90deg,  #f9f9f9 100%, #116D89  31.1%);
} 
.container .slide-container:nth-child(10) .slide{
 background: linear-gradient(90deg,  #f9f9f9 100%, #99bbff  31.1%);
} 
.container .slide-container:nth-child(11) .slide{
 background: linear-gradient(90deg,  #f9f9f9 100%, #ff9090  31.1%);
} 
.container .slide-container:nth-child(12) .slide{
 background: linear-gradient(90deg,  #f9f9f9 100%, #f9f9f9  31.1%);
} 
.container .slide-container:nth-child(13) .slide{
 background: linear-gradient(90deg,  #f9f9f9 100%, #99bbff  31.1%);
} 
.container .slide-container:nth-child(14) .slide{
 background: linear-gradient(90deg,  #f9f9f9 100%, #780e4d  31.1%);
} 
.container .slide-container:nth-child(15) .slide{
 background: linear-gradient(90deg,  #f9f9f9 100%, #ff9090   31.1%);
}
.container .slide-container:nth-child(16) .slide{
 background: linear-gradient(90deg,  #f9f9f9 100%, #99bbff   31.1%);
}
.container .slide-container:nth-child(17) .slide{
 background: linear-gradient(90deg,  #f9f9f9 100%, #780e4d  31.1%);
}
.container .slide-container:nth-child(18) .slide{
 background: linear-gradient(90deg,  #f9f9f9 100%,  #ff9090 31.1%);
}
.container .slide-container:nth-child(19) .slide{
 background: linear-gradient(90deg,  #f9f9f9 100%, #99bbff  31.1%);
}
.container .slide-container:nth-child(20) .slide{
 background: linear-gradient(90deg,  #f9f9f9 100%, #780e4d  31.1%);
}
.container .slide-container:nth-child(21) .slide{
 background: linear-gradient(90deg,  #f9f9f9 100%,  #ff9090   31.1%);
}

.container .slide-container:nth-child(22) .slide{
 background: linear-gradient(90deg,  #f9f9f9 100%,  #99bbff 31.1%);
}

.container .slide-container:nth-child(23) .slide{
 background: linear-gradient(90deg,  #f9f9f9 100%, #780e4d  31.1%);
}
.container .slide-container:nth-child(24) .slide{
 background: linear-gradient(90deg,  #f9f9f9 100%,  #99bbff 31.1%);
}
.container #prev,
.container #next{
   position: absolute;
   top: 50%;
   transform: translateY(-50%);
   color: #fff;
   background: #333;
   height: 50px;
   width: 40px;
   line-height: 50px;
   font-size: 25px;
   text-align: center;
   cursor: pointer;
   font-weight: bolder;
}
.container #prev:hover,
.container #next:hover{
  background: #666;
}

.container #prev{
 left: 20px;
}
.container #next{
 right: 20px;
}
.container-offices {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
h1 {
  font-size: 2em;
  margin-bottom: 20px;
}
.grid-container-offices {
  display: flex;
  flex-direction: column; 
  align-items: center;
}
.grid-item-offices {
  width: 350px;
  height: 300px; 
  margin: 20px 0; 
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  background-color: #fff;
  transition: transform 0.5s, box-shadow 0.5s;
}
.grid-item-offices:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}
.card-box-offices {
  padding: 20px;
}
.card-box-offices img {
  max-width: 100%;
  height:220px;
  border-radius: 4px;
}
.card-box-offices h4 {
  margin-top: 10px;
  font-size: 1.2em;
  color: #333;
}
@media screen and (min-width: 768px) {
  
  .grid-container-offices {
      flex-direction: row;
      justify-content: space-around;
  }
  .grid-item-offices {
      width: calc(33.333% - 20px);
      margin: 20px;
  }
}
.contactUs .title{
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2em;
}
.contactus .title h2{
  color:#000;
  font-weight: 500;
}
.form{
  grid-area: form;
}
.info{
   grid-area: info;
}
map{
   grid-area: map;
}
.contact{
  padding: 40px;
  background-color: #fff;
  box-shadow: 0 5px 35px rgba(0,0,0,0.15);
}
.box-contact{
  position: relative;
  display: grid;
  grid-template-columns: 2fr, 1fr;
  grid-template-rows: 5fr,4fr;
  grid-template-areas: 
  "form info"
  "form map";
  grid-gap: 20px;
  margin-top: 20px;
  margin-bottom: 30px; 
}
.contact h3{
  color: #116D89;
  font-weight: 500;
  font-size: 1.4em;
  margin-bottom: 10px;
}
.from_div{
  width: 50%;
  float: left;
}
.contact_form{
  width: 100%;
}
.formBox{
  position: relative;
  width: 100%;
}
.formBox .row50{
   display: flex;
   gap: 20px;
}
.inputBox{
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
  width: 50%;
  padding: 0px 10px;
  float: left;
}
.inputBox span{
  color:#116D89;
  margin-top: 10px;
  margin-bottom: 5px;
  font-weight: 500; 
}
.inputBox input{
  padding: 10px;
  font-size: 1.1em;
  outline: none;
  border: 1px solid #333;
  width: 100%;
}
.inputBox .textarea{
  padding: 10px;
  font-size: 1.1em;
  outline: none;
  border: 1px solid #333;
 min-height: 220px;
  margin-bottom: 10px;
  resize: none;
}
.inputBox input[type="submit"]
{
  background-color:#116D89;
  color: #fff;
  border: none;
  font-size: 1.1em;
  max-width: 100px;
  font-weight: 500;
  cursor: pointer;
  padding:  10px 12px;
}
  @media only screen and (max-width: 800px){
    .from_div{
      width: 100%;
    }
    .inputBox{
      width: 100%;
    }
  }
  .contactUs {
    padding: 40px 100px;
  }
.why-choose {
  padding: 100px 0; 
  background-color: #f7f7f7;
  overflow-x: hidden; 
  margin-left: 5%;
}
.container-tpms {
  max-width: 1200px; 
  margin: 0 auto; 
}
.why-choose-right {
  padding: 0 15px; 
}
.why-choose-right .sec-title {
  text-align: center; 
  margin-bottom: 50px; 
}

.why-choose-right h2 {
  color: #333; 
  font-size: 36px; 
  margin-bottom: 20px; 
}
.why-choose-right h5 {
  color: #007bff; 
  font-size: 22px; 
  margin-bottom: 10px; 
}
.check-lunch {
  margin-bottom: 30px;
}
.check-lunch .check {
  list-style: none; 
  padding: 0;  
}
.check-lunch .check li {
  color: #666; 
  font-size: 18px; 
  margin-bottom: 15px; 
  position: relative; 
  padding-left: 30px;  
}
.check-lunch .check li i {
  position: absolute; 
  left: 0; 
  top: 20%; 
  transform: translateY(-50%); 
}
.check-lunch .check li i img {
  max-width: 20px; 
  height: auto; 
}
.about-area {
  padding: 100px 0; 
  background-color: #f7f7f7; 
}
.container-tpms {
  max-width: 1200px;
  margin: 0 auto; 
}
.about-right,
.about-left {
  display: flex;
  align-items: center; 
}
.banner-1 img {
  max-width: 100%; 
  height: auto; 
  border-radius: 8px; 
}
.or-2 {
  margin-top: 50px; 
}
.about-left p {
  color: #666; 
  font-size: 20px; 
  line-height: 1.6;
  margin: 5%; 
}
.about-left h2 {
  color: #333; 
  font-size: 36px;
  margin-bottom: 20px; 
}
.container-tpms {
  max-width: 1300px; 
  margin: 0 auto; 
  margin-bottom: 10%;
}
.title-wrap {
  text-align: center; 
  margin-bottom: 60px; 
}
.sec-title h2 {
  color: #333; 
  font-size: 36px; 
  margin-bottom: 10px; 
}
.sec-title h4 {
  color: #ff0000; 
  font-size: 24px; 
  margin-bottom: 0; 
}
.sec-title p{
  color: #666;
  font-size: 20px;
  text-align: justify;
}
.why-choose-right p{
 color: #666;
 font-size: 20px;
 text-align: justify;
 margin: 5%;
}
.single-history {
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
}
.history-thumb {
  flex: 0 0 100%;  
  position: relative;
}
.history {
  position: relative;
  margin-right: 3%;
  
 
}
@media only screen and (max-width: 768px) {
  .single-history {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .single-history img {
    width: 100%;
    max-width: 300px;
    height: auto;
    margin: 20px 0;
  }
  .history {
    text-align: center;
  }
}



.dm-width2 {
  max-width: 100%; 
}

.dm-device2 {
  position: relative; 
  overflow: hidden; 
}

.device2 {
  width: 100%; 
  height: auto; 
  overflow: hidden; 
}

.screen2 {
  width: 100%; 
  height: auto; 
 
} 


.slider2 {
  width: 100%; 
  height: auto; 
}

.slider__item1 {
  width: 100%; 
  height: auto;
}

.slider__item1 img {
  width: 100%; 
  height: auto; 
}
/* Styling the container */
.col-12 {
  width: 100%;
  padding: 0;
}

/* Adjusting the text alignment for different screen sizes */
.text-right {
  text-align: right;
}

/* Styling the button */
.slider-left-right-btn {
  margin-top: 10px; /* Adjust as needed */
}

.slider-left-right-btn a {
  display: inline-block;
  padding: 10px 20px;
  text-decoration: none;
  color: #fff;
  border-radius: 5px;
}

/* Styling the button background */
.slider-left-right-btn a.nxt {
  background-color: aqua;
}

/* Styling the button hover effect */
.slider-left-right-btn a:hover {
  opacity: 0.8;
}

/* Styling the arrow icon */
.slider-left-right-btn img {
  width: 20px; /* Adjust as needed */
  margin-left: 5px; /* Adjust as needed */
}
.responsive {
  max-width: 100%;
  height: auto;
  margin: 5%;
}

/* section{
	position: relative;
	width: 100%;
	height: 95vh;
} */
/* section video{
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: fill;
} */
section .navigation{
	position: absolute;
	padding: 1px;
	bottom: 5%;
	left: 50%;
	transform: translateX(-50%);
	z-index: 100;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100px;
	width: 150px;
}

section .navigation li img{
	transition: 0.5s;
}
section .navigation li img:hover{
	height: 150px;
	width: 200px;
	border: 2px solid #fff;
}







  


  

 

  



  
  
 
 

  
  

  



  

  
