* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


a {

    text-decoration: none !important;
    color: inherit;
}

body {
    overflow-x: hidden !important;
    font-family: "Poppins", sans-serif !important;
    scroll-behavior: smooth;
}

ul,
li {
    list-style: none;
    margin-bottom: 0;

}

.fc-o {

    color: var(--sec-color);
}

.text-pri {
    color: #093459 !important;
}

:root {
    --pri-color: #093459;
    --sec-color: #ee8d02;
    --pri-btn-color: #0c6a9d;
    --pri-title: #093459;
    --radius: 30px;
    --width: 98%;
    --gray: #ebedf3;
}

/* breadcrump */
.breadcrump {
    position: relative;
    min-height: 450px;
    background-image: linear-gradient(145deg,
            #0c345a 0%,
            #113e69 50%,
            #195288 100%);
    background-position: 100% 100%;
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
}

.breadcrump::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 50%;
    z-index: 2;
    background-image: url(../assets/patrn.png);
    filter: opacity(0.1);
    transform: rotate(-180deg);
    background-position: center center;
    background-size: 100% 100%;
    object-fit: cover;
}

.breadcrump::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 50%;
    background-image: url(../assets/patrn.png);
    filter: opacity(0.1);
    background-size: 100% 100%;
    object-fit: cover;
}

.breadcrump-overlay {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0);
}

.breadcrump-inner {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    height: 100%;
    text-align: center;
    color: white;
}

.breadcrump h1 {
    margin: 0 auto;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.3px;
    padding: 0 15px;
}

.breadcrump h6 {
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: "Gilda Display", serif;
    position: relative;
}

.breadcrump h6::before {
    content: "";
    position: absolute;
    left: -2em;
    top: 5px;
    width: 12px;
    height: 2px;
    background-color: #ffffff;
}

.breadcrump h6::after {
    content: "";
    position: absolute;
    right: -2em;
    top: 5px;
    width: 12px;
    height: 2px;
    background-color: #ffffff;
}

.breadcrump-inner {
    position: relative;
    z-index: 15;
}

.breadcrump .bnr-btn .btn-1:hover .btn-icon {
    color: var(--pri-color);
}

.titleDiv p {
    color: var(--pri-color);
    line-height: 1.5;
    font-weight: 400;
    opacity: .7;
    margin-bottom: 1rem;
}

.title {
    color: var(--pri-title);
}


.sub-title {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    /* color: var(--black); */
    color: var(--sec-color);
    font-size: .937rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin: 0;

}

@media (max-width:400px) {
    .sub-title {
        font-size: 12px;
    }
}


.sm-spacer {
    padding: 15px 0;
}

.md-spacer {
    padding: 30px 0;
}


.lg-spacer {
    padding: 60px 0;
}

#circle {
    position: relative;
    height: 28px;
    width: 28px;
    margin-right: 7px;
}


#circle .dot {
    position: absolute;
    height: 7px;
    width: 7px;
    border-radius: 50%;

}


#circle .dot:nth-child(1) {
    top: 2px;
    left: 60%;
    background-color: var(--sec-color);
}

#circle .dot:nth-child(2) {
    top: 3px;
    left: 3px;
    background-color: #4a2d89;
}


#circle .dot:nth-child(3) {
    top: 50%;
    right: 0;
    background-color: #e20414;
}

#circle .dot:nth-child(4) {

    bottom: 7px;
    background-color: #006ab5;
}

#circle .dot:nth-child(5) {
    left: 40%;
    bottom: 0;
    background-color: #0c3458;
}



/* buttons */
.btn-1 {
    background: var(--pri-btn-color);
    color: #FFF;
    cursor: pointer;
    padding: 0.75rem 0.75rem;
    border: 0;
    transition: all 0.5s;
    border-radius: 1.625rem;
    width: auto;
    position: relative;
    /* border: 2px solid #FFF; */
    min-width: 200px;
    white-space: nowrap;
}

@media screen and (max-width:600px){
    .btn-icon {
        opacity: 1 !important;
    
    }
    .btn-icon i {
        transform: translateX(0) !important;
    }
}


.btn-icon {
    margin-left: 6px;
    opacity: 0;

}

@media screen and (min-width:999px){
    /* .btn-icon i {
        transform: translateX(-50%);
    
    } */
}





.btn-1:hover {
    background: #0c3458;
    transition: all 0.5s;
    border-radius: 1.625rem;
    border: 2px solid var(--sec-color);
    box-shadow: 0px 6px 15px #1a5c9555;
    /* padding: 1.5rem 3rem 1.5rem 1.5rem; */
    color: #ffffff;
}

.btn-1:hover .btn-icon {
    opacity: 1;
    display: inline-flex;
    transition: all 0.5s;
    color: #ffffff;

}

.navbar.sticky .btn-1:hover .btn-icon {
    color: #FFF !important;
}

.btn-1:hover .btn-icon i {
    transition: all 0.5s;
    transform: translateX(0) !important;
}


/* second button */
.butn {
    position: relative;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    outline: none;
    border: 0;
    vertical-align: middle;
    text-decoration: none;
    background: transparent;
    padding: 0;
    font-size: inherit;
    font-family: inherit;
}

.butn.learn-more {
    width: 11rem;
    height: auto;
}

.butn.learn-more .circle {
    transition: all 0.45s cubic-bezier(0.65, 0, .076, 1);
    position: relative;
    display: block;
    margin: 0;
    width: 3rem;
    height: 3rem;
    background: transparent;
    border: 1px solid var(--sec-color);
    border-radius: 1.625rem;
}

.butn.learn-more .circle .icon {
    transition: all 0.45s cubic-bezier(0.65, 0, .076, 1);
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    background: #ffffff;
}

.butn.learn-more .circle .icon.arrow {
    transition: all 0.45s cubic-bezier(0.65, 0, .076, 1);
    left: 0.625rem;
    width: 1.125rem;
    height: 0.125rem;
    background: none;
}

.butn.learn-more .circle .icon.arrow::before {
    position: absolute;
    content: '';
    top: -0.25rem;
    right: 0.0625rem;
    width: 0.625rem;
    height: 0.625rem;
    border-top: 0.125rem solid var(--pri-color);
    border-right: 0.125rem solid var(--pri-color);
    transform: rotate(45deg);
}

.butn.learn-more .butn-text {
    transition: all 0.45s cubic-bezier(0.65, 0, .076, 1);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.75rem 0;
    margin: 0 0 0 1.85rem;
    color: var(--pri-color);
    font-weight: 500;
    line-height: 1.6;
    text-align: center;

}

.butn:hover .circle {
    background-color: var(--pri-color);
    width: 100%;
}

.butn:hover .circle .icon.arrow::before {
    border-top: 0.125rem solid var(--sec-color);
    border-right: 0.125rem solid var(--sec-color);
}

.butn:hover .circle .icon.arrow {
    background: var(--sec-color);
    transform: translate(1rem, 0);
}

.butn:hover .butn-text {
    color: #FFF;
}


/* third button */
.btn-2 {

    color: var(--pri-title);
    cursor: pointer;
    padding: 0.75rem 0.75rem;
    border: 2px solid var(--pri-color);
    border-radius: 1.625rem;
    transition: all 0.5s;
    width: auto;
    position: relative;
    background: transparent;
    min-width: 200px;
}



.btn-icon {
    margin-left: 6px;
    opacity: 0;

}


@media screen and (min-width:999px){

    .btn-icon i {
        transform: translateX(-50%) !important;
    
    }
}


.btn-2:hover {
    background: var(--pri-color);
    transition: all 0.5s;
    border-radius: 1.625rem;
    border: 2px solid var(--sec-color);
    box-shadow: 0px 6px 15px #0934595b;
    /* padding: 1.5rem 3rem 1.5rem 1.5rem; */
    color: #ffffff;
}

.btn-2:hover .btn-icon {
    opacity: 1;
    display: inline-flex;
    transition: all 0.5s;
    color: #ffffff;

}

.btn-2:hover .btn-icon i {
    transition: all 0.5s;
    transform: translateX(0) !important;
}



/* navbar */



@media (min-width:1200px) {
    .navbar {
        position: fixed !important;
        z-index: 1000;
        width: 100%;
        top: 0;
        z-index: 60;
        background-color: #ea585800 !important;

    }
}



.navbar-brand {
    position: relative;
    background-color: #FFF;
    display: flex;

}



@media (max-width:999px) {
    .navbar-brand img {
        width: 150px;
    }
}



@media (min-width:1200px) {


    .navbar-nav {

        flex-basis: 100%;

    }


    .navbar-brand {
        position: relative;
        background-color: #FFF;
        display: flex;
        padding-left: -100px;
    }


    .navbar-brand img {
        margin-right: 10px;
    }

    .logo-wrapper {
        padding-left: 150px;
        margin-left: -150px;
        background-color: #FFF;
        position: relative;
        z-index: 4;
    }

    .logo-wrapper::before {
        position: absolute;
        content: '';
        top: 0px;
        right: -50px;
        width: 90px;
        height: 100%;
        background-color: rgb(255, 255, 255);
        border-top-right-radius: 50%;
        border-bottom-right-radius: 50%;

        /* border-top: 47px solid transparent;
        border-bottom: 47px solid transparent;
        border-left: 80px solid #ffffff; */
    }

    .offcanvas-body {
        position: relative;
        background-color: #0c3558 !important;
        margin-left: -50px;
        margin-right: -200px;
        z-index: 3;
    }



    .navbar-nav .nav-item .nav-link {
        color: #FFF !important;
    }


}

.navbar-nav .nav-item .nav-link {
    color: var(--pri-title);
    font-weight: 400;
}

.navbar-nav .nav-item .nav-link:hover {
    color: var(--sec-color) !important;
}

.nav-item .bnr-btn {
    margin-left: 20px;
}

.nav-item .bnr-btn:hover {
    box-shadow: none;
}

.nav-item .bnr-btn .btn-icon {
    opacity: 1;
    transform: translateX(0);
}


.nav-item .bnr-btn .btn-1:hover {

    box-shadow: none !important;
}

.nav-item .bnr-btn .btn-1:hover .btn-icon {
    opacity: 1;
    display: inline-flex;
    transition: all 0.5s;
    color: #093459;

}

.btn-1:hover .btn-icon i {
    transition: all 0.5s;
    transform: translateX(0) !important;
}

.social-strip {
    position: absolute;
    right: 0;
    bottom: -38px;
    margin-right: -100px;
    padding-right: 100px;
    z-index: 1;
    background-color: #fff;
    width: 30%;
    transform: skew(40deg);
    transition: all 1s linear;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.strip-inner {
    transform: skew(-40deg);
    padding: 10px 0;
}

.strip-inner ul {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.strip-inner .scl-strip {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 7px;
}

.scl {
    background-color: #093459;
    color: #FFF;
    border-radius: 50%;

}

.scl-links {
    flex-wrap: nowrap;
    margin-left: 20px;
}

.scl-links>span {
    text-wrap: nowrap;
    white-space: nowrap;
}

.scl a {
    color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    width: 30px;
    border-radius: 50%;

}

.scl a:hover {
    color: var(--sec-color);
    border: 2px solid var(--sec-color);
}

.dropdown-menu {
    width: max-content;
    border-radius: 2px;
}

.dropdown-menu .dropdown-item {
    font-size: 15px;
    color: var(--pri-color);
    opacity: 0.9;
}

.dropdown-menu .dropdown-item:hover {
    color: var(--sec-color);
    opacity: 1;
}

@media (max-width:1200px) {
    .social-strip {
        display: none;
    }


}

.navbar .nav-link.active {
    position: relative;
}

.navbar .nav-link.active::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    border-radius: 100px;
    transform: translateX(-50%);
    width: 50%;
    height: 2px;
    background-color: var(--sec-color);
}



.navbar .nav-link.active {
    color: var(--sec-color) !important;
}

.navbar.sticky .nav-link.active {
    color: var(--sec-color) !important;
}

.navbar.sticky .navbar-nav .nav-item .nav-link.active {
    color: var(--sec-color) !important;
}


.navbar .navbar-nav .nav-item .nav-link:hover{
    color: var(--sec-color);
}

@media (min-width:1200px) and (max-width:1300px) {
    .navbar .navbar-nav .nav-item .nav-link{
        padding: 18px 12px;
    }
}




@media (max-width:1200px) {
    .navbar .nav-link.active::before {
        display: none;
    }



    .navbar-nav  {
        padding-left: 20px;
    }
}

@media (min-width:1400px) {
    .offcanvas-body {
        border-top-right-radius: 100px;
        border-bottom-right-radius: 100px;
    }

    .logo-wrapper {
        border-top-left-radius: 100px;
        border-bottom-left-radius: 100px;
    }
}

@media (max-width:1320px) {
    .social-strip {
        position: absolute;
        right: 0;
        bottom: -38px;
        margin-right: -50px;
        padding-right: 100px;
        z-index: 1;
        background-color: #fff;
        width: 30%;
        transform: skew(40deg);
        transition: all 1s linear;
    }


}



.navbar-toggler {
    background-color: var(--pri-color);
    color: #FFF;
}


@media(min-width:1200px) and (max-width:1250px) {
    .offcanvas-body {

        margin-left: -50px;
        margin-right: -100px;
        z-index: 3;
    }

    .logo-wrapper {
        padding-left: 100px;
        margin-left: -100px;
        position: relative;
        z-index: 4;
    }


    .logo-wrapper::before {

        right: -30px;
        width: 50px;

    }
}


/* sticky navbar */

.navbar.sticky {
    background-color: #FFF !important;
    z-index: 100;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}

.navbar.sticky .navbar-brand img{
    width: 180px;
}

.navbar.sticky .logo-wrapper::before {
    display: none;
}

.navbar.sticky .offcanvas-body {

    background-color: #ffffff !important;
    margin-left: 0;
    margin-right: 0;
}

.navbar.sticky .navbar-brand::before {
    display: none !important;
}

.navbar.sticky .navbar-nav .nav-item .nav-link {
    color: var(--pri-color) !important;
}


.navbar.sticky .logo-wrapper {
    padding-left: 0;
    margin-left: 0;

}

.navbar.sticky .nav-item .bnr-btn a {
    background-color: var(--pri-color) !important;
    color: #FFF !important;
}


.navbar.sticky .social-strip {
    width: 0;
    padding-right: 0;
}

.navbar.sticky .nav-item .bnr-btn .btn-1 {}


/* services */
.services {
    position: relative;
    background-color: #f4f4f4;
    border-radius: 20px;
    width: var(--width);
    margin: 0 auto;
    z-index: 2;

}


.services .item {
    height: 100%;
}

.services .item .serv-box {
    height: 100%;
    min-height: 380px;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(../assets/ptrn-1.png);
    height: 100%;
    width: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7199%) hue-rotate(264deg) brightness(79%) contrast(116%) opacity(0.6);
    z-index: -1;

}

.services.sec::before {
    display: none;
}

.services .content {
    background-color: #FFF !important;
    padding: 20px;
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    border-radius: var(--radius);
    height: 100%;

    border: 1px solid #FFF;
    border-bottom: 5px solid #FFF;
    transition: all 0.5s linear;
}


.services .content .cnt-body {
    position: relative;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    height: 100%;
}

.services .content .cnt-body::before {
    position: absolute;
    content: '';
    background-image: linear-gradient(145deg,
            #0c345a 0%,
            #113e69 50%,
            #195288 100%);
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;

    transition: all 0.2s ease-in;
    transform: translateY(100%);
}

.services .content .cnt-body .mr-service {
    position: absolute;

    top: 50%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
    transition: all 0.5s linear;
    opacity: 0;
    height: 100%;
    overflow-y: auto;
    color: #FFF;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-right: 20px;
}

.services .content .cnt-body .mr-service>ul>li {
    display: flex;
    gap: 5px;
}

.services .content .cnt-body .mr-service .mr-title {
    opacity: 0;
    transition: all 0.5s linear;

}

.services .content:hover .cnt-body::before {
    height: 100%;
    transform: translateY(0);
    transform: translateY(0);
}

.services .content:hover .mr-service .mr-title {
    opacity: 1;
}

.services .content:hover .mr-service {
    opacity: 1;
}


.services .content:hover .cnt-body .icon,
.services .content:hover .cnt-body p {
    opacity: 0;
}

.services .serv-card {
    display: flex;
    align-items: center;
    flex-direction: column;


}

.services .content .cardTitle {
    color: var(--pri-color);
    line-height: 1.1;
    margin-bottom: 18px;
    text-align: center;
}

.services .content p {
    line-height: 1.5;
    font-weight: 400;
    opacity: .7;
    margin-bottom: 1rem;
    color: var(--pri-color);
}


.services .content .btnDiv {
    width: 100%;
    justify-content: center;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--gray);
}

.services .content .icon {
    width: 70px;
    margin-bottom: 18px;
}

.services .content:hover {
    border: 1px solid var(--pri-color);
    border-bottom: 5px solid var(--pri-color);

}

.banner {
    position: relative;
    /* background-color: var(--pri-color); */
    background-image: linear-gradient(145deg,
            #0c345a 0%,
            #113e69 50%,
            #195288 100%);
}

.banner::before {
    content: '';
    height: 100%;
    width: 50%;
    -webkit-mask: radial-gradient(50% 50% at 50% 50%, #000000 0%, rgba(0, 0, 0, 0) 100%) add;
    background-color: #eaf1f85f;
    flex: none;
    inset: -100px 0;
    mask: radial-gradient(50% 50% at 50% 50%, #000000 0%, rgba(0, 0, 0, 0) 100%) add;
    overflow: visible;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    right: 0;
    bottom: 0;
    z-index: 1;
}

.banner>.wrapper {
    position: relative;
    z-index: 2;
}

.banner-img {
    display: flex;
    justify-content: center;
}

.bnr-img-inner {

    width: 50%;
    height: 400px;
}

.bnr-img-inner img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    object-position: top;
}


/* .banner-carousel .item {
    text-align: center;
} */





@media (max-width:768px) {

    .bnr-img-inner {

        width: 90%;
        height: 400px;
    }

    .bnr-img-inner img {

        object-fit: cover;
        object-position: top;
    }

    .banner::before {

        width: 100% !important;

    }
}


@media (max-width:999px) {
    .banner::before {

        width: 70%;

    }
}

/* footer */

.footer {
    position: relative;
    background-color: #ffffff;
    margin-top: -6px;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-image: url(../assets/ptrn-2.png);
    background-position: center center;
    background-size: cover;
    filter: brightness(0) saturate(100%) invert(100%) sepia(1%) saturate(1643%) hue-rotate(349deg) brightness(119%) contrast(88%) opacity(0.7);
    z-index: 1;
}

.footer-title {
    color: var(--pri-title);
    font-weight: 500;
    padding-bottom: 5px;

    position: relative;
    width: fit-content;
}

.footer>.wrapper {
    position: relative;
    z-index: 2;
}


/* .footer-title::before{
    content: '';
    position: absolute;
    bottom: 0;
    background-color: var(--pri-title);
    height: 2px;
    width: 40%;
    border-radius: 20px;
  } */


.underline {
    position: relative;
    height: 2px;
    width: 60px;
}

.underline .ud {
    position: absolute;
    height: 1px;
    width: 12px;

}

.underline .ud:nth-child(1) {
    left: 0;
    background-color: #0c345a;
}

.underline .ud:nth-child(2) {
    left: 12px;
    background-color: #0168b2;
}

.underline .ud:nth-child(3) {
    left: 24px;
    background-color: #4b2c88;
}

.underline .ud:nth-child(4) {
    left: 36px;
    background-color: #ee8d02;
}

.underline .ud:nth-child(5) {
    left: 48px;
    background-color: #e50010;
}

.links li {
    position: relative;
    margin: 8px 0;


}

.links li::before {
    content: '>';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--pri-color);
    opacity: 0.7;
    transition: all 0.3s linear;
}

.links>li>a {
    color: var(--pri-title);
    opacity: 0.7;
    transition: all 0.3s linear;

}

.links li a:hover {
    color: var(--sec-color);
    opacity: 1;
}

.links li:hover::before {
    color: var(--sec-color);
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid var(--gray);
}

.footer-bottom>.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width:999px) {
    .footer-bottom>.container {
        flex-direction: column;
    }
}

.footer-bottom span {
    color: #b7bbbb87;
    font-size: 14px;
}

.footer-bottom span a {
    color: var(--pri-color);
    filter: opacity(0.6);
}

.footer-widget .adrs {
    display: flex;
    gap: 16px;

}

.footer-widget .links {
    margin-top: 24px;
}

.footer-widget .adrs i {
    color: var(--pri-color);
}

.footer-widget .adrs-text {
    color: var(--pri-title);
    opacity: 0.8;
}

.footer-widget .adrs-text>a {
    color: var(--pri-color);
    opacity: 0.8;
}

.footer-widget p {
    color: var(--pri-title);
    font-size: 13px;
    opacity: 0.5;
}

.footer-socials {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

}

.footer-socials .icon {
    margin: 0 4px;
    background-color: var(--pri-color);
    border: 1px solid #fff;
    border-radius: 50%;
    border: 2px solid #FFF;
}

.footer-socials .icon a {
    color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
}



.footer-socials .icon:hover a {
    color: var(--sec-color);

}

.footer-socials .icon:hover {
    border: 2px solid var(--sec-color);
}

/* ABOUT US */

.abt {
    position: relative;
}

.abt::before {
    content: '';
    position: absolute;
    top: 0;
    left: 30%;
    transform: translateX(-50%);
    height: 100%;
    width: 50%;
    background-image: url(../assets/patrn-4.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    z-index: -1;
    
    filter: brightness(0) saturate(100%) invert(18%) sepia(74%) saturate(856%) hue-rotate(175deg) brightness(97%) contrast(96%) opacity(5%);
}

@media (max-width:999px){
    .abt::before {
       
        background-size: cover;
        width: 100%;
        
    }
    
}

.abt .gradient-top{
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 200px;
    width: 100%;
    background: linear-gradient(#ffffff, #ffffff00);
    z-index: 1;
}


.abt .gradient-bottom{
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    height: 200px;
    width: 100%;
    background: linear-gradient(#ffffff00, #ffffff);
    z-index: 1;
}


.abt-wrapper{
    position: relative;
    z-index: 15;
}

.abt .abt-cont-wrapper .abt-cont-inner p {
    color: #000;
    opacity: 0.7;
}

.abt-image-wrapper {
    position: relative;
    height: 100%;
    overflow: hidden !important;
}

/* .abt-image-wrapper .box-content .title {
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 14px;
    color: #fff;
    height: 100%;
    padding: 10px 20px;
    margin: 0;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
}
 */

.abt-image-wrapper .box-content {
    display: flex;
    align-items: center;
}


.abt-image-wrapper .box-content .box-icon {

    background-color: #FFF;
    margin-right: 5px;
}

.abt-image-wrapper .box-content .box-icon img {
    height: 50px;
    width: 50px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 50%;
    padding: 5px;
    object-fit: contain;
}

.abt-image-wrapper .box-content .title {

    font-size: 14px;
    color: #fff;
    width: 100%;
    padding: 10px 20px;
    margin: 0;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    background-image: linear-gradient(145deg,
            #0c345a 0%,
            #113e69 50%,
            #195288 100%);
    border-radius: 10px;

}

@media (max-width:600px) {
    .abt-image-wrapper .box-content .title {
        font-size: 11px;
    }

    /* .abt-image-wrapper {

        height: 280px;
    } */

    .abt-image-wrapper .box-content {

        border-radius: 10px 0 0 10px !important;
    }

}

@media (max-width:400px) {
    .abt-image-wrapper .box-content .title {
        font-size: 10px;
    }


}

.abt-image {
    border-radius: var(--radius);
    object-fit: cover;
}


@media (max-width:999px) {
    .abt-image-wrapper .box-content {


        bottom: 0 !important;
        left: 0 !important;
        width: 100%;

    }
}

/* .abt-image-wrapper .box-content {
    text-align: center;
    position: absolute;
    top: 60px;
    bottom: 60px;
    left: 0;
    width: 60px;
    background-image: linear-gradient(145deg,
            #0c345a 0%,
            #113e69 50%,
            #195288 100%);
    border-radius: 0 10px 10px 0;
} */


.abt-image-wrapper .box-content {
    text-align: center;
    position: absolute;
    bottom: 20px;
    left: 20px;
    height: fit-content;
    z-index: 20;

    border-radius: 10px;
    padding: 10px 0;
}

@media (max-width:999px) {
    .abt-image-wrapper .box-content {
        bottom: 0 !important;
    }

}


.abt-image-wrapper {
    position: relative;

    display: flex;
    justify-content: center;
    align-items: center;
}

.abt-image-wrapper .abt-image-inner {
    width: 80%;
    position: relative;
    background: transparent;
    z-index: 5;

}



@media (max-width:1400px) {
    .abt-image-wrapper .abt-image-inner {
        width: 85%;


    }


}

@media (max-width:1200px) {
    .abt-image-wrapper .abt-image-inner {
        width: 90% !important;


    }


}


@media (max-width:600px) {
    .abt-image-wrapper .abt-image-inner {
        width: 100% !important;


    }


}


/* .abt-image-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #e5f4ff;
    z-index: -1;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
} */

.ftr-box {
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 20px 35px 35px 35px;
    border-radius: 40px;
    overflow: hidden;
    background-color: #FFF;
    z-index: 10;
    height: 100%;
}


.ftr-box::before {
    position: absolute;
    content: '';
    bottom: 0;
    right: 0;
    background: #eff4ff;
    z-index: 1;
    height: 50%;
    width: 100%;
    border-radius: 100% 0% 100% 0% / 69% 99% 1% 31%;
    z-index: 1;
    transition: all 0.5s linear;
}

.ftr-box::after {
    position: absolute;
    content: '';
    bottom: 0;
    right: 0;
    background: #e5edff74;
    z-index: 1;
    height: 60%;
    width: 100%;
    border-radius: 0% 100% 100% 0% / 0% 100% 0% 100%;
    z-index: 2;
    transition: all 0.5s linear;
}

.ftr-box:hover::before {
    transform: scale(5);
    background-image: #2c5f8e
}

.ftr-box:hover::after {
    transform: scale(5);
    background-image: linear-gradient(145deg,
            #0c345a 0%,
            #113e69 50%,
            #195288 100%);

}

.ftr-box:hover .ftr-icon {
    background-color: #FFF;
}

.ftr-box:hover .ftr-title {
    color: #FFF;
}

.ftr-box:hover .ftr-text {
    color: #FFF;
    opacity: 0.7;
}

.ftr .ftr-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
    width: 70px;
    margin-bottom: 16px;
    border-radius: 50%;
}

.ftr .ftr-icon>img {
    padding: 10px;
}




.ftr .ftr-box-inner {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.ftr .ftr-text {
    opacity: 0.8;

}

/* @media (min-width:1200px){
    .ftr{
        margin-top: -100px;
    }
} */

/* why choose us */
.wch-ftr-box {
    display: flex;
    align-items: center;
}

.wch-ftr-icon {


    margin-right: 12px;
}

.wch-ftr-icon img {
    width: 50px;
    height: 50px;
}

.wch-ftr-title {
    display: inline-block;
    color: var(--pri-title);
    font-weight: 700;
    margin-bottom: 7px;
}

.wch-box {
    position: relative;
    background-image: linear-gradient(145deg,
            #0c345a 0%,
            #113e69 50%,
            #195288 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    border-radius: 10px;
    height: 100%;

}

.wch-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    background-color: #FFF;
    padding: 16px;
    border-radius: 50%;
    margin-top: -75px;
    margin-bottom: 20px;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;


}

.wch-icon img {
    height: 50px;
    width: 50px;
    object-fit: contain;
}

.wch-text {
    color: #FFF;
}

.wch-title {

    margin-bottom: 14px;
}

.wch-text p {
    color: #FFF;
    filter: opacity(0.8);
    font-weight: 300;
}

/* contact page */
.contact-body {
    height: 100%;

}

.contact-body-inner {
    position: relative;
    height: 100%;
    background-image: linear-gradient(145deg,
            #0c345a 0%,
            #113e69 50%,
            #195288 100%);
    border-radius: 10px;
    padding: 40px 30px 20px 30px;

    color: #FFF;
    transition: all 0.3s linear;

}

.cnt-head-desc {
    font-weight: 200;
    filter: opacity(0.9);
}

.cnt {
    display: flex;
    align-items: center;

}

.cnt-text {
    padding: 10px;
}

.cnt-icon {
    padding: 10px;
    margin-right: 10px;


}

.cnt-header {
    border-bottom: 1px solid #ffffff31;
}

.cnt-text {
    font-weight: 200;
    border-radius: 10px;
}

@media (max-width:999px) {
    .contact-body-inner {

        padding: 40px 20px 20px 20px;


    }
}

.cnt-text:hover {
    background-color: rgba(255, 255, 255, 0.153);
    font-weight: 300;
    color: var(--sec-color);
}