@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap');
html{
    font-size: 62.5%;
}
body{
    font-family: 'Quicksand', sans-serif;
    padding: 0;
    margin: 0;
    font-size: 1.6rem;
    color: #000000;
    font-weight: 400;
    scroll-behavior: smooth;
}

::-webkit-scrollbar, ::-webkit-scrollbar-webkit-scrollbar {
	width: 4px;
	background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb {
	background-color: #d1d1d1;
} 

a {
    text-decoration: none;
}
.h1, .h2, .h4, .h5, .h6, h1, h2, h4, h5, h6 {
    font-weight: 700;
}
.mt-6 {
    margin-top: 6rem;
}
.sec-heading h2 {
    font-size: 4.8rem;
    margin-bottom: 3rem;
    color: #0D447A;
    font-weight: 500;
}
.text-darkblue {
    color: #0D447A;
}
.text-skyblue {
    color: #00B1FF;
}
.btn{
    padding: 14px 20px;
    border-radius: 8px;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 1.6rem;
    color: #fff;
    border:none;
    border-radius: 30px;
    min-width: 15rem;
}
.btn-check:focus+.btn, .btn:focus {
    color: #FFF;
    background-color: #0D447A;
    border-color: unset;
    outline: 0;
    box-shadow: unset;
}
.btn:hover{
    border:none;
    transition: all 0.3s ease-in-out;
    color: #fff;
}
.btn-red {
    background: #FF6363;
}
.btn-red:hover {
    background: #E95959;
}
.btn-yellow {
    background: #FFA439;
}
.btn-yellow:hover {
    background: #E8922D;
}

.btn-blue {
    background: #00B1FF;
}
.btn-blue:hover {
    background: #03A0E5;
}

.btn-green {
    background-color: #32CD8C;
}
.btn-green:hover {
    background-color: #2FB77E;
}

.btn-dark-blue {
    background-color: #0D447A;
    padding: 14px 32px;
}
.btn-dark-blue:hover {
    background-color: #0A3661;
}

.repeat-section {
    padding: 8rem 0;
}
.sec-heading h3 {
    font-size: 2.4rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

/* Header css */
.site-header {
    padding: 0;
    box-shadow: 0 3px 6px rgb(0 0 0 / 10%);
    z-index: 99;
    transition: .3s;
    background-color: #FFFFFF;
}
.site-header.sticky {
    position: fixed;
    left: 0;
    right: 0;
    /* top: 0; */
    top: -175px;
    transform: translateY(175px);
    transition: transform .9s;
    z-index: 999;
}
.navbar-brand {
    padding: 0;
    position: relative;
    margin-bottom: -3rem;
    margin-right: 5rem;
}
.top-header-bg {
    background-color: #EEF7FF;
    height: 65px;
    display: flex;
    align-items: center;
    border-top: solid 0.2rem #0d447a;
}
.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1640px;
    margin: 0 auto;
    padding: 0 1rem;
}
.top-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.top-menu ul {
    display: flex;
    align-content: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    list-style: none;
}
.top-menu ul li:not(:last-child) {
    margin-right: 2rem;
}
.top-menu ul .btn {
    padding: 6px 20px;
    min-width: unset;
}
.top-menu ul .link-text {
    color: #0D447A;
    font-size: 14px;
    font-weight: 500;
    transition: .3s;
}
.top-menu ul .link-text>img {
    margin-right: 5px;
}
.top-menu ul .link-text:hover {
    color: #00B1FF;
}
.main-header-bg {
    background-color: #FFFFFF;
    padding: 2.8rem 2rem;
}
.header-main {
    max-width: 1640px;
    width: 100%;
    margin: 0 auto;
}
.site-header .navbar-nav {
    align-items: center;
    flex-direction: row;
    justify-content: flex-end;
}
.site-header .navbar-nav li>a {
    position: relative;
}
.site-header .navbar-nav li a:not(.btn):before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background-color:#00b1ff;
    height: 1px;
    opacity: 0;
}
.site-header .navbar-nav li a:hover:before {
    opacity: 1;
}

.site-header .navbar-nav li:not(:last-child) {
    margin-right: 6rem;
}
.site-header .navbar-nav li:nth-last-child(2) {
    margin-right: 2rem;
}
.site-header .navbar-nav .nav-link {
    padding: 0;
    text-transform: uppercase;
    font-weight: 500;
    color: #0D447A;
    font-size: 1.6rem;
}
.site-header .navbar-nav .nav-link:hover, .site-header .navbar-nav .active .nav-link {
    color: #00b1ff;
}


/* Footer css */
.footer-section {
    background-color: #0D447A;
    padding: 17rem 0 3rem;
    color: #BAD2E8;
}
.logo-footer {
    margin-bottom: 3rem;
}
.footer-section p {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 3rem;
    color: #BAD2E8;
}
.about-details {
    list-style: none;
    padding: 0;
    margin: 0;
}
.about-details li:not(:last-child) {
    margin-bottom: 2rem;
}
.about-details li, .about-details li>a {
    font-size: 14px;
    color: #BAD2E8;
    transition: .3s;
}
.about-details li>a:hover {
    color: #FFFFFF;
}
.about-details li i {
    margin-right: 8px;
}
.footer-section h5 {
    font-size: 2rem;
    color: #FFFFFF;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgb(100 132 164 / 50%);
}
.quick-links {
    list-style: none;
    padding: 0;
    margin: 0;
    column-count: 2;
}
.quick-links.services-links {
    column-count: 3;
}
.quick-links li:not(:last-child) {
    margin-bottom: 15px;
}
.quick-links li>a {
    color: #BAD2E8;
    font-size: 14px;
    display: flex;
    transition: .3s;
}
.quick-links li>a:hover {
    color: #fff;
}
.copyright-section {
    background-color: #0D447A;
    border-top: 1px solid rgb(100 132 164 / 50%);
    padding: 2.2rem 0;
}
.copyright-section p {
    font-size: 14px;
    color: #BAD2E8;
    font-weight: 700;
    margin: 0;
}
.copyright-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.copyright-section ul>li:not(:last-child) {
    margin-right: 15px;
}
.copyright-section ul>li>a {
    width: 3.5rem;
    height: 3.5rem;
    background-color: #6484A4;
    transition: .3s;
    display: inline-grid;
    align-content: center;
    justify-content: center;
    border-radius: 100%;
}
.copyright-section ul>li>a>.fa {
    color: #FFFFFF;
    opacity: .5;
    transition: .3s;
}
.copyright-section ul>li>a:hover {
    background-color: #00B1FF;
}
.copyright-section ul>li>a:hover .fa {
    opacity: 1;
}

/*modal responsive css*/


@media (max-width: 1700px) {
    .header-top, .header-main {
        max-width: 1400px;
    }
}

@media (max-width: 1500px) {
    .header-top, .header-main {
        max-width: 1280px;
    }

    .site-header .navbar-nav li:not(:last-child) {
        margin-right: 3rem;
    }
    
}

@media (max-width: 1399px) {
    .header-top, .header-main {
        max-width: 1180px;
    }
    
}