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


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
    /* overflow: hidden !important;
    overflow-y: auto !important; */
}


body {
    overflow-x: hidden;
}

/* back to top */

.backTo-top {
    position: fixed;
    right: 50px;
    bottom: 60px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(114, 183, 240, 0.3);
    border: 2px solid rgb(20, 133, 200);
    z-index: 500;
    display: grid;
    place-items: center;
    text-decoration: none;
    /* transition: ease-in-out .4s; */
}

.backTo-top>img {
    display: block;
    width: 100%;
}

/* back to top end */

#header {
    background-color: #0047BB;
    background-image: url(../images/how-we-work.png);
}

.header-content {
    padding: 10px 4rem;
    display: grid;
    grid-template-columns: auto auto;
    justify-content: space-between;
    margin-bottom: 10px;
}

.header-left>a {
    text-decoration: none;
    margin-right: 10px;
    color: rgb(12, 12, 12);
    font-size: 12px;
}

.header-left>a>i {
    color: #0047BB;
    padding-right: 5px;
}

.header-right {
    display: flex;
}

.header-right>a {
    text-decoration: none;
    background-color: white;
    display: grid;
    place-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 15px;
}

.header-right>a:last-child {
    margin-right: 0;
}

.header-right>a>i {
    color: #0047BB;
    transition: all .3s;
}

.header-right>a:hover>i {
    color: rgb(20, 35, 247);
}

.navbar-main {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 30px;
    background-color: #0047BB;
    transition: all .4s ease;
}

.sticky_navbar {
    position: fixed;
    top: -100%;
    right: 0;
    left: 0;
    width: 100%;
    transition: all .4s ease;
    z-index: 800;
}

.navbar-logo {
    height: 70px;
    width: 150px;
    background-color: #0047BB;
    display: block;
    text-decoration: none;
    transition: all .8s ease-out;
}

.navbar-logo>img {
    display: block;
    width: 100%;
    height: 100%;
}

.navbar-links {
    display: flex;
    column-gap: 15px;
}

.navbar-li {
    list-style-type: none;
    position: relative;
}

.navbar-li>a {
    text-decoration: none;
    color: rgb(255, 255, 255);
    display: block;
    padding: 8px;
    font-size: 16px;
    font-weight: 500;
    transition: all .3s;
}

.navbar-li>a:hover {
    color: #ffffff;
}

.navbar-li>a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 0.10rem;
    border-radius: 3px;
    width: 0%;
    background-color: #ffffff;
    transition: all ease-out .3s;
    margin-top: 2px;
}

.navbar-li>a::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    height: 0.10rem;
    border-radius: 3px;
    width: 0%;
    background-color: #ffffff;
    transition: all ease-out .3s;
}

.navbar-li:hover>a::after {
    width: 100%;
}

.navbar-li:hover>a::before {
    width: 100%;
}

.navbar-active > a::before {
    width: 100%;
}

.navbar-active > a::after {
    width: 100%;
}

.navbar-active > a {
    color: #ffffff;
}

.mobile-trigger>button {
    border: none;
    outline: none;
    background-color: transparent;
    font-size: 25px;
}

.nav_expand {
    position: fixed !important;
    top: 0;
    width: 100% !important;
}

.offcanvas-mobile {
    position: relative;
}

.offcanvas-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: transparent;
    border: none;
    outline: none;
    font-size: 17px;
    padding: 6px;
}

.mobile_nav_links>li {
    list-style-type: none;
}

.mobile_nav_links>li>a {
    display: block;
    padding-bottom: 10px;
    text-decoration: none;
    color: black;
    margin-bottom: 10px;
    position: relative;
    padding-left: 10px;
}

.mobile_nav_links>li>a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    background-color: #eee;
    width: 100%;
}

.mobile-info>a {
    display: block;
    padding-bottom: 10px;
    margin-bottom: 10px;
    padding-left: 10px;
    text-decoration: none;
    color: black;
    position: relative;
}

.mobile-info>a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    background-color: #eee;
    width: 100%;
}

.mobile-info>a>i {
    padding-right: 8px;
}

.mobile-social {
    padding-top: 10px;
    display: flex;
    align-items: center;
}

.mobile-social>a {
    display: grid;
    text-decoration: none;
    color: rgb(255, 255, 255);
    margin-left: 10px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: rgb(1, 10, 141);
    place-content: center;
}

/* header and navbar */

/* page title */

.page-title {
    width: 100%;
    height: auto;
    background-color: rgba(0, 0, 0, 0.507);
}

.page-title>img {
    display: block;
    width: 100%;
    height: auto;
}


/* footer */

#footer {
    padding: 50px 0 30px 0;
    color: white !important;
    position: relative;
    background-color: #0048bbda;
}

#footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/ethics_bg.png);
    background-size: 100% 100%;
    z-index: -1;
    filter: blur(2px);
}

.footer-logo {
    display: block;
    text-decoration: none;
    font-size: 14px;
}

.footer-secound-logo > img {
    display: block;
    width: 100%;
}

.footer-logo>img {
    display: block;
    text-decoration: none;
    width: 200px;
}

.footer-left {
    padding-right: 20px;
    padding-bottom: 30px;
}

.FL-text {
    /* color: white; */
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    letter-spacing: 0.08rem;
}

.footer-subscribe {
    font-size: 25px;
    font-weight: 600;
    font-family: Arial, Helvetica, sans-serif;
}

.footer-ST {
    margin-top: 5px;
    margin-bottom: 35px;
    font-size: 15px;
}

.footer-heading {
    display: block;
    text-decoration: none;
    font-size: 18px;
    font-family: Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    margin-bottom: 5px;
    color: white !important;
    cursor: pointer;
}

.footer-links {
    padding: 0;
}

.footer-links>li {
    list-style-type: none;
    margin-bottom: 5px;
}

.footer-links>li>a {
    font-size: 14px;
    text-decoration: none;
    color: rgb(255, 255, 255);
    padding: 5px 0;
}

.FS-input {
    padding: 10px 10px !important;
    padding-left: 15px !important;
    border-top-left-radius: 15px !important;
    border-bottom-left-radius: 15px !important;
}

.FS-btn {
    padding-left: 15px !important;
    padding-right: 15px !important;
    border-top-right-radius: 15px !important;
    border-bottom-right-radius: 15px !important;
}


@media screen and (max-width:1200px) {
    .navbar-main {
        padding: 6px 15px;
    }

    .navbar-links {
        column-gap: 13px;
    }

    .navbar-li>a {
        font-size: 14px;
    }

    .navbar-logo {
        width: 110px;
        height: 50px;
    }
}

@media screen and (min-width:320px) {
    #mobile-navbar {
        width: 300px;
    }
    .page-links>h1 {
        font-size: 25px;
    }
}

@media screen and (min-width: 375px) {
    .page-links>h1 {
        font-size: 35px;
    }
}

@media screen and (min-width:768px) {
    #mobile-navbar {
        width: 400px;
    }
}

@media screen and (min-width:992px) {
    .footer-left {
        border-right: 1px solid rgb(168, 206, 255);
    }
}


@media screen and (max-width: 992px) {
    .navbar-main {
        width: 100%;
    }
}