@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: "Mulish", sans-serif;
    color: #536166;
    font-weight: 600;
}

::selection {
    background: var(--blue-color);
    color: #fff;
}

:root {
    --blue-color: #1b64a0;
    --blue-2-color: #1b64a0;
    --dark-color: #536166;
}

img {
    transition: all .3s ease-in-out;
}

.text-blue {
    color: var(--blue-color) !important;
}

.bg-light-wt {
    position: relative;
}

.bg-light-wt::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #f7f7f7 !important;
    z-index: -9;
}

.bg-green {
    position: relative;
}

.bg-green::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: var(--blue-color) !important;
    z-index: -9;
}

.text-light {
    color: #fff !important;
}

a {
    text-decoration: none;
}

.mt-40 {
    margin-top: 40px;
}

.mtb-40 {
    margin-top: 40px;
    margin-bottom: 40px;
}

.ptb-40 {
    padding-top: 40px;
    padding-bottom: 40px;
}

.web_logo {
    width: 180px;
}

header {
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 99999;
    /* box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; */
}

.navbar-toggler {
    border: none;
    color: var(--blue-color);
    font-size: 2rem;
    padding: 0;
}

.navbar-toggler:focus {
    border: none;
    box-shadow: none;
}

.navbar-nav {
    gap: 1rem;
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--dark-2-color);
    transition: all .3s ease-in-out;
    position: relative;
}

.nav-link:hover {
    color: var(--blue-color);
}

.nav-link::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 2px;
    width: 0%;
    background: var(--blue-color);
    transition: all .3s ease-in-out;
}

.nav-link:hover::before {
    width: 100%;
}

.btn {
    text-transform: uppercase;
    font-size: 1rem;
    padding: 8px 30px;
    border-radius: 0;
    transition: all .3s ease-in-out;
    position: relative;
    overflow: hidden;
}


.btn-blue {
    color: #fff;
    border: 2px solid var(--blue-color) !important;
    transition: all .3s ease-in-out;
}

.btn-dark {
    color: #fff;
    border: 2px solid var(--dark-color) !important;
    transition: all .3s ease-in-out;
    background: none !important;
}

.btn-dark:hover {
    color: var(--dark-color) !important;
}

.btn-dark::before,
.btn-blue::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: var(--blue-color);
    z-index: -1;
    transition: all .3s ease-in-out;
}

.btn-dark::before {
    background: var(--dark-color);
}

.btn-blue::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: #fff;
    z-index: -1;
    transition: all .5s ease-in-out;
}

.btn-dark:hover::before,
.btn-blue:hover::before {
    height: 0;
}

.btn-blue:hover::after {
    height: 100%;
}

.btn-blue:hover {
    color: var(--blue-color) !important;
}

.sub_title {
    font-size: 20px;
    font-weight: 600;
}


.title {
    font-size: 40px;
    color: var(--blue-color);
    font-weight: bold;
}


.light_bg_01 .title {
    font-size: 35px;
    margin: 2rem 0;
}

.light_bg_01 .sub_title {
    font-size: 30px;
}

.top_banner {
    height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
}

.top_banner::before {
    content: "";
    position: absolute;
    top: 54%;
    transform: translateY(-50%);
    right: 0;
    height: 440px;
    width: 50%;
    background: url(../img/banner_shape.png) no-repeat;
    background-size: contain;
    background-position: right;
    z-index: -1;
    border-radius: 500px 0 0 500px;
}

.top_banner h5 {
    font-size: 1.7rem;
}

.top_banner h1 {
    font-size: 3.1rem;
    color: var(--blue-color);
    font-weight: bold;
    margin: 1.2rem 0;
}

.icon_01 {
    height: 60px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon_01 img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.icon_box {
    /* border: 1px solid red; */
    padding: 1.5rem;
    position: relative;
}

.icon_box_title {
    margin: 0.8rem 0;
    font-size: 22px;
    color: var(--blue-color);
    font-weight: bold;
    font-style: italic;
}

.icon_boxes .col-md-6:nth-child(1) .icon_box::before,
.icon_boxes .col-md-6:nth-child(3) .icon_box::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    height: 80%;
    width: 1px;
    background: var(--dark-color);
    opacity: 0.3;
}

.bottom_line {
    position: absolute;
    bottom: 40px;
    height: 10px;
    width: 100%;
    background: var(--blue-color);
    z-index: -1;
}

.filter_center_img {
    margin: auto;
    display: flex;
    justify-content: center;
    position: relative;
}

.circle_01::before,
.circle_01::after,
.filter_center_img::after,
.filter_center_img::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 280px;
    width: 280px;
    border-radius: 100%;
    background: var(--blue-color);
    z-index: -1;
}



.filter_center_img::before {
    animation: scale_001 2s infinite linear 1s;
}

@keyframes scale_001 {
    0% {
        height: 100px;
        width: 100px;
    }

    100% {
        height: 280px;
        width: 280px;
        opacity: 0.1;
    }

    /* 100% {
        height: 350px;
        width: 350px;
    } */
}
.filter_center_img::after {
    height: 350px;
    width: 350px;
    animation: scale_01 2s infinite linear 1s;
}

@keyframes scale_01 {
    0% {
        height: 100px;
        width: 100px;
    }

    100% {
        height: 350px;
        width: 350px;
        opacity: 0.1;
    }

    /* 100% {
        height: 350px;
        width: 350px;
    } */
}

.circle_01::before {
    height: 420px;
    width: 420px;
    animation: scale_02 2s infinite linear 0.5s;
}

@keyframes scale_02 {
    0% {
        height: 100px;
        width: 100px;
    }

    100% {
        height: 420px;
        width: 420px;
        opacity: 0.1;
    }

    /* 100% {
        height: 420px;
        width: 420px;
    } */
}

.circle_01::after {
    height: 480px;
    width: 480px;
    animation: scale_03 2s infinite linear;
}

@keyframes scale_03 {
    0% {
        height: 100px;
        width: 100px;
    }

    100% {
        height: 480px;
        width: 480px;
        opacity: 0.1;
    }

    /* 100% {
        height: 480px;
        width: 480px;
    } */
}

.filter_center_img img {
    width: 400px;
}

.filter_box p:nth-child(1) {
    color: var(--blue-color);
    font-size: 20px;
    font-style: italic;
    margin-bottom: 0.6rem;
    font-weight: bold;
}

.right_filter_box,
.left_filter_box {
    position: relative;
}

.right_filter_box::before,
.left_filter_box::before {
    content: "";
    position: absolute;
    top: 70%;
    transform: translateY(-50%);
    right: -100%;
    height: 80px;
    width: 300px;
    z-index: 1;
    background: url(../img/right_line.png) no-repeat;
    background-size: contain;
    background-position: center;
}

.right_filter_box::before {
    left: -100%;
    background: url(../img/left_line.png) no-repeat;
    background-size: contain;
    background-position: center;
}

.border_box {
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease-in-out;
}

.border_box:hover{
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}

.border_box img {
    height: 80%;
    width: 80%;
    object-fit: contain;
}

.link {
    color: var(--dark-color);
    font-weight: 700;
    position: relative;
    padding-bottom: 0.4rem;
}

.link::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    width: 100%;
    background: var(--blue-color);
    transition: all .3s ease-in-out;
}

.link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    width: 0;
    background: var(--dark-color);
    transition: all .3s ease-in-out;
}

.link:hover::after {
    width: 100%;
}

.link:hover::before {
    width: 0%;
}

.link:hover {
    color: var(--blue-color);
}

.link span {
    color: var(--blue-color);
}

.light_bg_01 {
    padding: 100px 0;
}

.light_bg_01::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 50%;
    background: url(../img/home_img_contact.webp) no-repeat;
    background-size: cover;
    border-radius: 40px 0 0 40px;
}

.light_bg_01::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    background: var(--blue-color);
    height: 90%;
    width: 100%;
    z-index: -1;
    opacity: 0.05;
}

.accordion-button {
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 6px !important;
    font-weight: 600;
}

.accordion-button:focus {
    background: none !important;
    box-shadow: none !important;
    border-color: rgba(0, 0, 0, 0.2);
}

.accordion-button:not(.collapsed) {
    color: var(--dark-color);
    background-color: none;
}

footer {
    background: var(--blue-color);
    color: #fff;
    padding: 80px 0 40px 0;
    font-weight: 700;
    position: relative;
}

.footer_logo {
    width: 300px;
}

.footer_title {
    font-weight: bold;
    font-size: 20px;
    position: relative;
    padding-bottom: 0.6rem;
    margin-bottom: 1rem;
}

.footer_title::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 40px;
    background: #fff;
}

.footer_nav {
    padding: 0;
    list-style: none;
}

.footer_nav a {
    color: #fff;
    position: relative;
}

.footer_nav a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    width: 0;
    background: #fff;
    transition: all .3s ease-in-out;
}

.footer_nav a:hover::before {
    width: 100%;
}

.footer_nav span {
    font-style: italic;
    color: #0e2e44;
}

.footer_icon a::before {
    display: none;
}

.footer_icon img {
    width: 35px;
}

.copyright {
    background: #0e2e44;
    color: #fff;
    font-weight: bold;
    text-align: center;
    padding: 1rem 0;
}

.footer_up {
    position: absolute;
    width: 160px;
    top: 0;
    left: 40px;
}

.footer_down {
    position: absolute;
    width: 160px;
    bottom: -40px;
    right: 330px;
}