@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

:root {
    /*--theme-color: #1E47FF;*/
    /*--white: #fff;*/
    /*--black: #000;*/
    --theme-color: #01204E;
    --white: #F6DCAC;
    --black: #028391;
    --black1: #000;
    --white1: #fff;
}

* {
    list-style: none;
    text-decoration: none;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Open Sans", sans-serif;
}

body {
    padding: 0;
    margin: 0;
    padding-bottom: 65px;
}

h1,
h2,
h3,
h4,
h5,
h6,
span,
p {
    padding: 0;
    margin: 0;
    font-family: "Open Sans", sans-serif;
}

a {
    text-decoration: none !important;
    font-family: "Open Sans", sans-serif;
}


h2 {
    font-size: calc(16px + (44 - 16) * ((100vw - 320px) / (1920 - 320))) !important;
    color: var(--theme-color);
    text-transform: uppercase;
    text-align: center;
}

ul {
    padding: 0;
    margin: 0;
}

/* -------------Header Start----------- */

.header .row {
    margin: 0 !important;
}

.header .btn {
    background-color: var(--theme-color) !important;
    color: var(--white1);
}

.logo img {
    max-width: 100px;
    min-width: 60px;
}

.off-main .offcanvas-body ul li a::before {
    position: absolute;
    content: "";
    width: 0%;
    height: 2px;
    top: 100%;
    transition: all 0.3s ease;
}

.off-main {
    z-index: 999999;
}

.off-main .offcanvas-body ul li a:hover::before,
.off-main .offcanvas-body ul li a.active::before {
    width: 80%;
    background-color: var(--theme-color);
}



.off-main .offcanvas-body ul li a:hover,
.off-main .offcanvas-body ul li a.active {
    color: var(--theme-color);
}

.off-main .offcanvas-header {
    border-bottom: 1px solid var(--theme-color);
}


.off-main .offcanvas-body ul li a {
    position: relative;
    color: var(--black);
    text-decoration: none;
    padding: 10px;
    display: inline-block;
}

.off-main .offcanvas-body ul li a i {
    font-size: 20px;
    padding-right: 6px;
}

/* -------------Header End----------- */

/* search-css */
.search-logo-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;

}

.search {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 0 0px 0;
    border-bottom: 2px solid #ffffff;
}

.search input {
    background-color: transparent;
    font-size: 24px;
    color: var(--white);
    width: 100%;
    line-height: 70px;
    border: 0;

}

.search input:focus {
    outline: 0;
}

.search input::placeholder {
    color: var(--white);
    font-size: 24px;

}

.search i {
    color: var(--white);
    font-size: 22px;
    cursor: pointer;
    line-height: 60px;

}

.search-logo-main i {
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    line-height: 60px;


}

.search-bg {
    background: var(--theme-color);
    /*background: rgb(30, 28, 172);*/
    /*background: linear-gradient(214deg, rgba(30, 28, 172, 1) 20%, rgba(0, 5, 42, 1) 90%);*/
    width: 100%;
    height: 250px;
    top: 0;
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 9999;
    transform: translateY(-700px);
    transition: all ease 0.2s;

}

#search {
    background-color: #00000036;
    top: 0;
    position: fixed;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    transform: translateY(-100%);
    transition: all ease 0.5s;
}

.search-open.search-bg {
    transform: translateY(0);
    transition: all ease 0.3s;
}

.search-open#search {
    transform: translateY(0);
    transition: all ease 2s;
}

.down-bg {
    width: 100%;
    height: 100%;
    background-color: #c1020200;
    cursor: crosshair;
}

/* search-css */


/* contact-css */
#contact-form-main {
    width: 100%;
    display: inline-block;
    /* background-color: var(--theme-color); */
    padding: 50px 0;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: 100%;
    background-image: url(../images/bg-fixed.jpg);
    position: relative;
}

#contact-form-main::before {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    background-color: #00000067;
}

.contact-text {
    padding: 100px 0;
}

.contact-main {
    position: relative;
}

.contact-form {
    background-color: var(--white);
    padding: 50px;
    box-shadow: 0 0 40px rgb(51 51 51 / 77%);
}

label {
    font-size: 20px;
    color: var(--theme-color);
}

input,
textarea {
    border: 1px solid var(--black);
    height: 60px;
}

input,
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 16px;
    resize: vertical;
    font-size: 18px;
}

input[type=submit] {
    background-color: var(--theme-color);
    color: white;
    border-radius: 4px;
    width: 100%;
    font-size: 25px;
    font-weight: 700;
    cursor: pointer;
    border: none !important;
    letter-spacing: 2px;
    transition: 0.5s;
}

textarea {
    height: 120px !important;
}

input[type=submit]:hover {
    color: var(--white);
    background-color: var(--black);
}

.call-us-form h3,
.email-form h3,
.location-form h3 {
    color: var(--white1) !important;
}

.email-form {
    padding: 15px 0;
}

.call-us-form a,
.email-form a,
.location-form p {
    color: var(--white);
    transition: 0.5s;
}

.call-us-form a:hover,
.email-form a:hover {
    color: var(--white);
}

/* contact-css */







/* -------------Banner Section Start----------- */

.banner-img-box img {
    width: 100%;
    min-height:280px;
    aspect-ratio: 3/1;

}

.banner {
    position: relative;
    padding: 15px 0;
}

.tab-wrapper .tabs {
    display: flex;
    row-gap: 10px;
    column-gap: 15px;
    justify-content: center;
    margin-bottom: 15px;
    transition: height 0.5s ease-in;
}

.tab-wrapper.fixed {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 111;
    background: var(--white1);
    left: 0;
    padding-top: 10px;
    box-shadow:0 0 50px #000000cf;
}

.tab-wrapper {
    overflow-x: auto;
}

.tab-wrapper .tabs li {
    text-align: center;
    color: var(--theme-color);
    height: 45px;
    display: flex;
    column-gap: 5px;
    align-items: center;
    border-radius:10px;
}

.tab-wrapper .tabs li img {
    width: 100%;
}

.tab-link {
    padding: 10px;
    cursor: pointer;
    font-weight: 700;
    transition: all ease 0.5s;
    border-bottom: solid 3px transparent;
}

.tab-wrapper .tabs li:hover {
    color: #fff !important;
}

.tab-link.active {
    color: var(--theme-color);
    border-color: var(--theme-color);
}

.content-wrapper {
    display: flex;
}

.tab-content {
    display: none;
    text-align: center;
    color: #888;
    opacity: 0;
    transform: translateY(15px);
    animation: fadeup-banner 0.5s ease 1 forwards;
    width: 100%;
}

.tab-content.active {
    display: flex;
    align-items: center;
    column-gap: 15px;
    flex-wrap: wrap;
}

@keyframes fadeup-banner {
    100% {
        opacity: 1;
        transform: none;
    }
}


/* -------------Banner Section Start----------- */

/* -------------Btn----------- */
.custom-btn {
    height: 40px;
    color: #fff;
    padding: 10px 25px;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    outline: none;
}

.btn-15 {
    background: transparent;
    border: 2px solid var(--theme-color);
    z-index: 1;
}

.btn-15:after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    right: 0;
    z-index: -1;
    background-color: var(--theme-color);
    transition: all 0.3s ease;
    border-radius:6px;
}

.btn-15.active {
    background-color: var(--theme-color);
    transition: all 0.3s ease;
    color: var(--white1) !important;

}

.btn-15:hover {
    color: var(--white);
}

.btn-15:hover:after {
    left: 0;
    width: 100%;
}


.button {
    display: inline-flex;
    height: 40px;
    width: 150px;
    border: 2px solid var(--theme-color);
    margin: 20px 20px 20px 20px;
    color: #BFC0C0;
    text-transform: uppercase;
    text-decoration: none;
    font-size: .8em;
    letter-spacing: 1.5px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#button-3 {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    margin: 0;
    margin-top: 20px;
    margin-left: 10px;
}

#button-3 a {
    position: relative;
    transition: all .45s ease-Out;
    text-decoration: none;
    font-weight: 800;
    color:var(--theme-color);
}

#circle {
    width: 0%;
    height: 0%;
    opacity: 0;
    line-height: 40px;
    border-radius: 50%;
    background: var(--theme-color);
    position: absolute;
    transition: all .5s ease-Out;
    top: 20px;
    left: 70px;
}

#button-3:hover #circle {
    width: 200%;
    height: 500%;
    opacity: 1;
    top: -70px;
    left: -70px;
}

#button-3:hover a {
    color: var(--white1);
}

.banner .card {
    border: 1px solid var(--theme-color);
}

/* -------------Btn----------- */

.banner .owl-carousel .owl-nav button.owl-prev {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    top: 50%;
    left: 0%;
    background-color: var(--white1);
    color: var(--black1);
    z-index: 111;
    transform: translate(-0%, -50%);
    transition: all ease .5s;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 50px;
}

.category-wrapper .owl-carousel .owl-nav button.owl-prev {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    top: 50%;
    left: 5px;
    background-color: var(--white1);
    color: var(--black1);
    z-index: 111;
    transform: translate(-0%, -50%);
    transition: all ease .5s;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 50px;
}

.banner .owl-carousel .owl-nav button.owl-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    top: 50%;
    right: 0%;
    background-color: var(--white1);
    color: var(--black1);
    z-index: 111;
    transform: translate(0%, -50%);
    transition: all ease .5s;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 50px;
}

.category-wrapper .owl-carousel .owl-nav button.owl-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    top: 50%;
    right: 5px;
    background-color: var(--white1);
    color: var(--black1);
    z-index: 111;
    transform: translate(0%, -50%);
    transition: all ease .5s;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 50px;
}

.banner .owl-carousel .owl-nav button.owl-prev span,
.banner .owl-carousel .owl-nav button.owl-next span {
    margin-top: -8px;
}

.category-wrapper .owl-carousel .owl-nav button.owl-prev span,
.category-wrapper .owl-carousel .owl-nav button.owl-next span {
    margin-top: -8px;
}

.banner .owl-carousel .owl-nav button.owl-prev:hover {
    background-color: var(--theme-color);
    color: var(--white);
}

.category-wrapper .owl-carousel .owl-nav button.owl-prev:hover {
    background-color: var(--theme-color);
    color: var(--white);
}

.banner .owl-carousel .owl-nav button.owl-next:hover {
    color: var(--white);
    background-color: var(--theme-color);
}

.category-wrapper .owl-carousel .owl-nav button.owl-next:hover {
    color: var(--white);
    background-color: var(--theme-color);
}

.banner .owl-theme .owl-dots .owl-dot span {
    background: var(--black);
}

.category-wrapper .owl-theme .owl-dots .owl-dot span {
    background: var(--black);
}

.banner .owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--theme-color);
}

.category-wrapper .owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--theme-color);
}

.banner .card-img-top {
    min-height: 230px;
    border-radius: 0 !important;
}

.category-wrapper .card-img-top {
    min-height: 230px;
    border-radius: 0 !important;
}

.banner .card-title {
    font-size: calc(18px + (36 - 18) * ((100vw - 320px) / (1920 - 320))) !important;
    font-weight: 700;
}

.banner .card-text {
    font-size: calc(16px + (18 - 16) * ((100vw - 320px) / (1920 - 320))) !important;
    color: #000 !important;
    max-width: 700px;
    margin: 0 auto;
}

.banner-img-box {
    padding-top: 20px;
    padding-bottom: 20px;
}

.size-city {
    display: flex;
    column-gap: 50px;
    justify-content: center;
}

.size-city p {
    color: var(--theme-color);
    font-size: calc(16px + (18 - 16) * ((100vw - 320px) / (1920 - 320))) !important;

}

.size-city p span {
    color: var(--black);
}

.whatapp-position {
    position: absolute;
    bottom: 15px;
    right: 15px;
}

.whatapp-position a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 0;
    background-color: rgba(54, 218, 54, 0.774);
    color: var(--white1);
    font-size: 30px;
    transition: all ease .5s;
}

.whatapp-position a:hover {
    box-shadow: 0 2px 20px 10px #0000003f;
}

/* ==================Fotter Css================== */
.footer_container {
    width: 100%;
    height: 65px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    display: flex;
    align-items: center;
    position: fixed;
    bottom: 0;
    background: var(--theme-color);
    z-index: 9999;
}

.footer_container .footer_menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 35px;
}

.footer_container .footer_menu_item {
    display: flex;
    align-items: center;
    flex-direction: column;
    row-gap: 5px;
}

.footer_container .footer_menu_item {
    cursor: pointer;
    color: var(--white1);
}

.footer_container .upload_menu_item {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 50%;
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient);
    color: var(--white);
}

.footer_container .upload_menu_item i {
    font-size: 25px;
}

.footer_container .footer_menu_item.active {
    color: var(--black);
}

.footer_menu.container-fluid a.active .footer_menu_item {
    color: var(--black) !important;
}

.footer_container .footer_menu_item span {
    font-size: calc(12px + (18 - 12) * ((100vw - 320px) / (1920 - 320))) !important;
    font-weight: bold;
}

.footer_menu_item i {
    font-size: 24px;
}

.location-form {
    max-width: 400px;
}



/* aspire-work-section-css-start */
#aspire-work {
    background: var(--white);
    padding: 75px 0;
}

.main-aspire {
    background: var(--theme-color);
    padding: 83px 0;
    border-radius: 10px;
    
    display: flex;
    row-gap: 30px;
}

.aspire-image img {
    width: 100%;
    border-radius:10px;
    max-height:550px;
}

.aspire-text .last-child {
    margin-bottom: 0;
}

.aspire-text h2{
    color:#fff;
}

.aspire-text p{
    max-width: 550px;
    margin-bottom: 35px;
    color: var(--white) !important;
    text-align:justify;
    margin:0 auto;
    margin-top:12px;
}

.aspire-text p span {
    color: orangered;
    font-weight: 700;
}

/* aspire-work-section-css-end */


.contact-form.agent-login {
    position: static;
}

.contact-form.agent-login .main-input {
    flex-direction: column;
}

.contact-main.agent-logint {
    justify-content: center !important;
}

.category-wrapper {
    overflow-x: hidden;
    height: 600px;
}

.tab-wrapper.categroy {
    overflow-x: hidden;
    position: sticky;
    top: 20px;
    left: 0;
}

.tab-wrapper.categroy .tabs {
    flex-direction: column;
}

.category-wrapper::-webkit-scrollbar {
    background-color: transparent;
    width: 15px;
}

.category-wrapper::-webkit-scrollbar-track {
    background-color: transparent;
}

.category-wrapper::-webkit-scrollbar-thumb {
    border-radius: 20px;
    border: 4px solid transparent;
    background-color: var(--theme-color);
    background-clip: content-box;
}

.bar-fixed{
    transition: all ease .5s;
}

.header.nav_fixed .bar-fixed{
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 111111;
}





@media screen and (max-width: 1399px) {
    .main-input {
        flex-direction: column;
    }


}

@media screen and (max-width: 1023px) {
    .contact-form {
        position: static;
        width: 100% !important;
    }

    .contact-main {
        flex-direction: column;
        row-gap: 30px;
        align-items: center !important;
    }

    #contact-form-main {
        background-size: cover;
    }

    .category-wrapper {
        overflow-x: hidden;
        height: auto;
    }


    .tab-wrapper.categroy {
        position: static;
    }

    .header.nav_fixed .bar-fixed{
        top: 71px;
        padding: 0;
        right: 0;
    }

}



@media screen and (max-width: 991px) {
    .category-wrapper {
        flex-direction: column;
    }

}

@media screen and (max-width: 768px) {
    .tab-wrapper .tabs {
        justify-content: start;
    }

    .footer_container .footer_menu {
        justify-content: space-between;
    }


    .contact-text {
        padding: 25px 0;
    }

    .main-aspire {
        padding: 40px 0;
    }
    .contact-form {
        padding:25px;
    }
    .contact-form h2{
        font-size:26px !important;
        font-weight:500;
    }

}

