/*  global css start here */
* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    transition: background-color 5000s ease-in-out 0s;
    /* Adjust the transition time as needed */
}

/* Override autofill background color */
input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px #fff inset !important;
    /* Change the color to your preferred background color */
    /* -webkit-text-fill-color: #808080 !important; */
    /* Change the text color to your preference */
}

a {
    text-decoration: none;
}

li {
    list-style-type: none;
}

/*  global css end here */
.container {
    width: 100%;
    margin: 0 auto;
    max-width: 1700px;
    padding: 0px 30px;
}

.header-top {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
}

.header-top .logo {
    width: 140px;
    height: 55px;
}

.logo a img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.header-top .navs ul {
    display: flex;
    width: 536px;
    margin: 0 auto;
    justify-content: space-between;
}

.navs ul li {
    font-weight: 500;
    line-height: 29px;
    font-size: 17px;
    color: #060912;
}

.navs ul li a {
    color: #060912;
    position: relative;
    display: inline-block;
    transition: 0.3s ease;
    text-decoration: none;
}

.header-top .navs ul li a::before {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    /* background-color: #003049; */
    background-color: #003049;
    transition: width 0.3s ease-in-out;
}

.header-top .navs ul li a:hover::before {
    width: 100%;
}

.header-top .header-btns {
    display: flex;
    align-items: center;
}

.header-top .header-btns li {
    margin: 0px 14px 0px 0px;
}

.header-btns .register {
    /* color: rgb(6, 9, 18); */
    /* background-color: #003049; */
    /* background-color: #003049; */
    background-color: #5eae84;
    color: #fff;
    font-weight: 500;
    line-height: 20px;
    font-size: 15px;
    width: 150px;
    margin: 0 auto;
    font-weight: 600;
    border-radius: 6px;
    padding: 14px 0px;
    border: none;
    cursor: pointer;
}

.bottom-header {
    /* background-color: #003049; */
    background-color: #003049;
    padding: 12px;
    color: #fff;
}

.bottom-header .navs-wrapper ul {
    display: flex;
    justify-content: space-between;
}

.navs-wrapper ul li {
    display: flex;
    align-items: center;
}

.navs-wrapper ul li:hover {
    font-weight: 400;
}

.navs-wrapper ul li a {
    color: #fff;
    font-weight: normal;
    text-decoration: none !important;
}

.navs-wrapper ul li a span {
    display: inline-block;
    transition: 0.3s ease-in-out;
}

.sidenav {
    background-color: #003049;
    /* background-color: #003049; */
    color: #222222;
    background-color: #fcfcfc;
    padding: 30px 15px;
    position: absolute;
    left: -300%;
    top: 0px;
}

/*  hamburger icon css */
.hamburger {
    display: inline-block;
    cursor: pointer;
    display: none;
}

.bar1,
.bar2,
.bar3 {
    width: 35px;
    height: 5px;
    background-color: #060912;
    margin: 6px 0;
    transition: 0.4s;
}

.change .bar1 {
    transform: translate(0, 11px) rotate(-45deg);
}

.change .bar2 {
    opacity: 0;
}

.change .bar3 {
    transform: translate(0, -11px) rotate(45deg);
}

.sidenav ul {
    padding: 0px;
}

.sidenav ul li a {
    margin-bottom: 20px;
    font-size: 17px;
    font-weight: 500;
    /* color: #003049; */
    color: #060912;
    border-bottom: 1px solid #003049;
    padding-bottom: 4px;
    width: 100%;
    display: inline-block;
    text-decoration: none;
    line-height: 24px;
}

.sidenav.show {
    display: block;
    left: 0%;
    top: 0px;
    width: 80%;
    transition: 0.5s ease-in-out;
    z-index: 4;
    height: 100%;
}

/*  header css ends here */
/*  section banner css start here */
.banner {
    background-image: url(./images/section.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 165px 0px 100px;
    position: relative;
}

.banner::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.66) 100%
    );
    background: linear-gradient(
        316deg,
        rgb(187 187 187 / 18%) 100%,
        #00000005 0%
    );
    z-index: 1;
}

/* .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0.66) 100%);
    z-index: 1;
    display: flex;
    align-items: center;
} */

.banner .banner-content h1 {
    font-size: 48px;
    line-height: 58px;
    max-width: 727px;
    width: 100%;
    /* font-weight: bold; */
    color: #fff;
}

.banner .banner-content {
    position: relative;
    z-index: 3;
}

.banner .banner-content p {
    font-size: 22px !important;
    line-height: 30px !important;
    max-width: 680px !important;
    width: 100% !important;
    font-weight: normal;
    color: #fff !important;
    margin: 20px 0px !important;
}

.banner .banner-search {
    max-width: 960px;
    width: 100%;
    display: flex;
    background-color: #fff;
    border-radius: 50px;
    padding: 7px 10px 7px 30px;
    align-items: center;
}

.banner .search {
    background-color: #fff;
    display: flex;
    align-items: center;
}

.banner .search i {
    color: #222;
    font-size: 16px;
    line-height: 22px;
    font-weight: normal;
}

.banner .search input {
    background-color: transparent;
    border: none;
    font-size: 16px;
    line-height: 22px;
    color: #222222;
    outline: none;
    margin-left: 0px;
    width: 440px;

    padding: 13px 0px 13px 20px;
    /* padding: 13px 0px 13px 20px; */
    border-radius: 15px;
}

.banner .search input::placeholder {
    color: #222;
}

.custom-select {
    position: relative;
    display: inline-block;
    margin-right: 10px;
}

.custom-select select {
    /* appearance: none; */
    /* -webkit-appearance: none; */
    /* -moz-appearance: none;    */
    width: 100%;
    border: 2px solid #e9e9e9;
    border-radius: 8px;
    outline: none;
    cursor: pointer;
    padding: 10px;
    width: 293px;
    font-size: 16px;
    line-height: 22px;
    font-weight: normal;
}

.custom-select select option {
    /* background-color: #003049 !important; */
    background-color: #003049 !important;
    color: #fff;
    margin: 10px 0px;
}

.icon-container {
    position: absolute;
    top: 50%;
    right: 10px;
    /* transform: translateY(-50%); */
    /* pointer-events: none; */
}

.banner .search-button button {
    /* background-color: #003049; */
    background-color: #003049;
    color: #fff;
    border-radius: 50px;
    width: 160px;
    padding: 15px 0px;
    font-size: 16px;
    cursor: pointer;
    border: none;
}

/*  section banner css ends here */
/*  carousel cards css here */
.carousel-cards-wrapper {
    padding: 20px 0px;
    display: flex;
    align-items: center;
}

.carousel-card {
    /* background-image: url(./images/c1.png); */
    background-repeat: no-repeat;
    background-position: center;

    background-size: cover;
    /* max-width: 212px; */
    position: relative;
    margin-right: 15px;
    overflow: hidden;
}

.carousel-card .carousel-card-img {
    max-width: 260px;
    width: 100%;
    height: 200px;
    border-radius: 13px;
}

.carousel-card .carousel-card-img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.carousel-card .card-overlay {
    background-color: rgba(0, 0, 0, 0.58);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    border-radius: 13px;
}

.carousel-card .carousel-card-img img {
    width: 100%;
    height: 100%;
    border-radius: 13px;
}

.carousel-card .carousel-card-text {
    /* padding: 173px 0px 25px 23px; */
    position: absolute;
    left: 25px;
    bottom: 25px;
    z-index: 3;
}

.carousel-card .carousel-card-text p {
    color: #fff;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 17px;
}

.carousel-card .carousel-card-text h4 {
    color: #fff;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
    margin-top: 12px;
}

.carousel-cards-wrapper .slick-prev,
.slick-next {
    background-color: #fff;
    font-weight: bold;
    border-radius: 50%;
    cursor: pointer;
    color: #000;
    height: 60px;
    width: 60px;
    border: none;
    z-index: 3;
    font-size: 30px;
    outline: none;
    box-shadow: 3px 3px 6px 0px rgba(0, 0, 0, 0.32);
    -webkit-box-shadow: 3px 3px 6px 0px rgba(0, 0, 0, 0.32);
    -moz-box-shadow: 3px 3px 6px 0px rgba(0, 0, 0, 0.32);
}

.carousel-cards-wrapper .slick-prev,
.slick-next:focus {
    outline: none;
}

.carousel-cards-wrapper .slick-prev {
    position: absolute;
    left: -20px;
    top: 38%;
}

.carousel-cards-wrapper .slick-next {
    position: absolute;
    right: -20px;
    top: 38%;
}

/*  top services section start here */

.top-services {
    padding: 30px 0px;
    text-align: center;
}

.top-services h3 {
    color: #222;
    text-align: center;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    margin-bottom: 16px;
}

.top-services p {
    color: #222;
    text-align: center;
    font-size: 20px;
    line-height: 27px;
    margin-top: 8px;
}

.top-services .services-cards-wrapper {
    padding: 40px 0px;
    display: flex;
    justify-content: space-between;
}

.service-card {
    width: 23%;
    text-align: initial;
}

.service-card .service-img {
    width: 37px;
    height: 37px;
    margin-bottom: 40px;
}

.service-card .service-img img {
    width: 100%;
    height: 100%;
}

.service-card .service-content {
    width: 100%;
}

.service-card .service-content h6 {
    color: #222;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
    margin: 8px 0px;
}

.service-card .service-content span {
    color: #222;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    display: inline-block;
}

.expanded-nav {
    /* display: none; */
    /* background-color: #003049; */
    background-color: #003049;
    padding: 20px 0px;
}

.expanded-nav ul {
    display: flex;
    justify-content: space-between;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 20px;
}

.expanded-nav ul li a {
    color: #fff;
    font-weight: normal;
    /* width: 40%; */
}

.expanded-nav ul li {
    width: 100%;
}

.expanded-nav ul .show {
    display: none;
    /* width: 40%; */
}

.expandable.expand a span {
    rotate: -180deg !important;
    transition: 0.3s ease-in-out;
}

/*   responsiveness code here */
@media only screen and (max-width: 1200px) {
    .container {
        max-width: 100% !important;
        padding: 0px 30px !important;
    }

    .header-top {
        padding: 12px 0px;
    }
}

@media only screen and (max-width: 1024px) {
    .slider-heading-div {
        padding-left: 0px !important;
        /* padding: 0px; */
    }

    .all-category-btn {
        padding: 0px !important;
    }
}

@media (min-width: 1003px) and (max-width: 991px) {
    .banner .search input {
        width: 420px;
    }
}

@media only screen and (max-width: 991px) {
    .container {
        max-width: 100% !important;
        padding: 0px 20px !important;
    }

    .header-top .header-btns {
        display: none;
    }

    .banner {
        padding: 100px 0px;
    }

    .banner .banner-search {
        width: 100%;
    }

    .banner .search {
        display: flex;
        align-items: center;
    }

    .banner .search input {
        width: 250px;
    }

    .banner .search-button button {
        width: 132px;
        padding: 18px 0px;
    }

    .navs-wrapper ul .hide {
        display: none;
    }

    .expanded-nav.show {
        display: block;
    }

    .header-top .navs {
        display: none;
    }

    .header-top .navs ul {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .carousel-card .carousel-card-img {
        max-width: 100%;
    }

    .top-services .services-cards-wrapper {
        flex-wrap: wrap;
        padding: 30px 0px 0px 0px;
    }

    .services-cards-wrapper .service-card {
        width: 48%;
        text-align: center;
        margin-bottom: 25px;
    }

    .services-cards-wrapper .service-card:last-child {
        margin-bottom: 0px;
    }

    .service-card .service-img {
        /* margin-bottom: 20px; */
        margin: 0px auto 20px auto;
    }

    .banner .banner-search {
        padding: 7px 5px 7px 22px;
        justify-content: space-between;
    }
}

@media only screen and (max-width: 894px) {
    .header-top .logo {
        /* width: 100px; */
    }

    .header-top .navs ul {
        width: 464px;
    }

    .navs-wrapper ul li a {
        /* width: px; */
        /* min-height: 41px; */
    }

    /* .bottom-header .navs-wrapper ul {
        flex-wrap: wrap;
    } */
}

@media only screen and (max-width: 768px) {
    .header-top {
        padding: 12px 0px;
    }

    .header-top .navs ul {
        display: none;
    }

    .sidenav.show {
        display: block;
        left: 0%;
        top: 0px;
        width: 80%;
        transition: 0.5s ease-in-out;
        z-index: 100;
        height: 100%;
        overflow-y: scroll;
    }

    #navs-wrapper {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .expanded-nav ul {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }

    .banner .banner-content h1 {
        font-size: 42px;
        line-height: 65px;
        width: 100%;
    }

    .banner .banner-content p {
        width: 100%;
        font-size: 18px !important;
        line-height: 27px !important;
    }

    .banner .banner-search {
        width: 98%;
        margin: 0 auto;
    }

    .banner {
        padding: 80px 0px;
    }

    .banner .banner-search {
        display: flex;
        padding: 20px 20px;
        flex-wrap: wrap;
        border-radius: 20px;
    }

    .banner .search {
        width: 100%;
        margin: 10px;
        box-shadow: 1px 1px 4px 1px rgba(0, 0, 0, 0.2);
        -webkit-box-shadow: 1px 1px 4px 1px rgba(0, 0, 0, 0.2);
        -moz-box-shadow: 1px 1px 4px 1px rgba(0, 0, 0, 0.2);
        padding: 4px 10px;
        border-radius: 10px;
        margin: 15px 0px;
    }

    .search-button {
        width: 100%;
        margin: 10px auto;
    }

    .banner .search input {
        width: 100%;
        padding-left: 5px;
    }

    .banner .search-button button {
        width: 100%;
        margin: 0 auto;
        display: block;
        padding: 15px 0px;
    }

    .sidenav .header-btns {
        display: none;
    }

    .header-btns {
        display: none;
    }

    .sidenav .header-btns {
        display: block;
    }

    .custom-select {
        width: 100%;
        margin: 10px 0px;
    }

    .custom-select select {
        width: 100%;
    }

    .services-cards-wrapper {
        display: flex;
        flex-wrap: wrap;
        row-gap: 40px;

        padding: 40px 0px !important;
    }

    .services-cards-wrapper {
        padding: 20px 0px 0px 0px !important;
    }

    .services-cards-wrapper .service-card {
        width: 100%;
        /* margin-right: 10px; */
        text-align: center;
    }

    .services-cards-wrapper .service-card .service-img {
        margin: 0px auto 20px;
    }

    .services-cards-wrapper .service-card h1 {
        font-size: 21px;
    }

    .top-services h3 {
        font-size: 27px !important;
    }

    .navs-wrapper ul .hide {
        display: none;
    }

    .expanded-nav ul .show {
        display: block;
    }

    .navs-wrapper ul .show {
        display: none;
    }

    .expanded-nav ul {
        flex-wrap: wrap;
    }

    .expanded-nav ul li {
        /* display: block; */
        width: 100% !important;
        margin: 10px 0px;
    }

    .expanded-nav ul .show {
        display: block;
        /* width: 40%; */
    }

    .carousel-card .carousel-card-img {
        height: 400px;
    }
}

@media only screen and (max-width: 640px) {
    .banner {
        padding: 50px 0px;
    }

    .banner .banner-content h1 {
        font-size: 33px;
        line-height: 48px;
        width: 100%;
    }

    .carousel-card .carousel-card-img {
        height: 250px;
    }

    .carousel-card .carousel-card-text {
        margin: 0px 0px 0px 23px;
    }

    .bottom-header {
        padding: 12px 0px;
    }

    .expanded-nav ul {
        grid-template-columns: 1fr 1fr;
    }

    /* .header-top .header-btns {
        display: none;
    } */

    .carousel-cards-wrapper .slick-prev,
    .carousel-cards-wrapper .slick-next {
        width: 50px;
        height: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 26px;
    }

    .search-button {
        width: 100%;
        margin: 10px auto;
    }

    .banner .search-button button {
        width: 100%;
    }

    .carousel-card {
        margin-right: 0px;
    }

    .carousel-cards-wrapper {
        padding: 20px 0px !important;
    }

    .services-cards-wrapper {
        padding: 20px 0px !important;
    }

    .top-services {
        padding: 30px 0px 0px 0px;
    }

    .services-cards-wrapper {
        row-gap: 20px;
    }

    .header-btns .register {
        width: 100%;
    }
}

@media (max-width: 520px) {
    .top-services {
        padding: 20px 0px 0px 0px;
    }
}

@media only screen and (max-width: 485px) {
    .banner {
        padding: 30px 0px;
    }

    .banner .banner-content h1 {
        font-size: 24px;
        line-height: 33px;
        margin: 0px 0px 20px 0px;
    }

    .banner .banner-content p {
        display: none;
    }

    .service-section .service-section-top p {
        display: none;
    }
}

@media only screen and (max-width: 425px) {
    .header-top .logo {
        height: 40px;
    }

    .header-btns .register {
        width: 120px;
        padding: 12px 0px;
    }

    .banner {
        padding: 30px 0px 30px;
    }

    .banner .banner-content h1 {
        font-size: 24px;
        line-height: 33px;
        margin: 0px 0px 20px 0px;
    }

    .banner .banner-content p {
        display: none;
        padding: 0px !important;
        font-size: 16px !important;
        line-height: 22px !important;
    }

    .hamburger {
        margin-left: 10px;
    }

    .service-card .service-content span {
        font-size: 16px !important;
        line-height: 30px;
    }

    .slider-heading-wrapper {
        padding: 20px 0px 0px 0px !important;
    }
}

@media only screen and (max-width: 375px) {
    .header-btns .register {
        /* width: 110px; */
        width: 100%;
        padding: 8px 0px;
        font-weight: normal;
    }

    .banner .banner-content h1 {
        font-size: 22px;
        line-height: 35px;
    }

    .header-top {
        padding: 12px 0px;
    }

    .banner .banner-content h1 {
        padding: 0px;
    }

    .banner .banner-search {
        border-radius: 10px;
        padding: 10px 10px;
    }

    .carousel-cards-wrapper {
        padding: 20px 0px !important;
    }

    .top-services h3 {
        font-size: 20px !important;
    }

    .banner .search svg {
        font-size: 14px;
    }

    .banner .search input {
        font-size: 14px;
    }
}
