/***************************************General***************************************/
html {
    scroll-behavior: smooth;
    font-family: "calibri", sans-serif;
    font-weight: 400;
    font-style: normal;
}

body {
    font-family: "calibri", sans-serif;
    font-weight: 400;
    font-style: normal;
}

h1 {
    font-size: 48px;
    position: relative;
    font-family: klavika-web, sans-serif;
    font-weight: 600;
    font-style: normal;
}

h1 strong {
    font-weight: 800;
    font-family: klavika-web, sans-serif;
    font-style: normal;
}

h2 {
    font-family: klavika-web, sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 32px;
    position: relative;
}

h1 strong {
    font-weight: 800;
}

h3 {
    font-family: klavika-web, sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 22px;
    position: relative;
}

h4 {
    font-family: klavika-web, sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 22px;
}

p, li, a {
    font-family: "calibri", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
}

a {
    color: #005da1;
    font-weight: 600;
    text-decoration: none;
}

.color-gray {
    color: #F0F0F0
}

.bgc-gray {
    background-color: #F0F0F0
}

.color-blue {
    color: #005da1;
}

.bgc-blue {
    background-color: #005da1;
}
.bgc-blue p{
    color:white;
}
.bgc-blue a{
    color:white;
}
.bgc-blue a:hover{
    color:#F0F0F0;
}

.site {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}

.site-content {
    flex: 1;
}

.header-logo {
    width: 160px;
}

.dropdown-toggle {
    -webkit-appearance: none;
}

/***************************************header***************************************/
#header.sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1039;
    background-color: white;
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.1);

}

.offcanvas-body a {
    font-size: 20px;
    font-weight: 500;
}

.offcanvas-body .dropbtn.custom-hover {
    font-weight: 500;
    font-size: 20px;
}

.offcanvas-body .custom-button {
    color: white;
}

.offcanvas-body .custom-button:hover {
    color: white;
}

.offcanvas-body .dropdown-item:hover {
    background-color: transparent;
}

.offcanvas-body .dropdown-menu.show {
    position: relative !important;
    transform: none !important;
    border: none;
    background: transparent;
}

.offcanvas-body .dropdown-menu.show a {
    font-size: 16px;
    font-weight: 400;
}


/***************************************button***************************************/


.btn-blue {
    background-color: #005da1;
    padding: 10px 20px;
    border-radius: 50px;
    color: white;
    font-weight: 500;
    transition: 0.3s ease all;
    display: inline-block;
}

.btn-blue:hover {
    padding: 10px 20px;
    border-radius: 50px;
    color: white;
    background-color: #6f6e6e;
}

.btn-blue-alt {
    background-color: #6f6e6e;
    padding: 10px 20px;
    border-radius: 50px;
    color: white;
    font-weight: 500;
    transition: 0.3s ease all;
    display: inline-block;
}

.btn-blue-alt:hover {
    padding: 10px 20px;
    border-radius: 50px;
    color: white;
    background-color: #005da1;
}

.custom-hover {
    display: inline-block;
    position: relative;
    padding: 0;
}

.custom-hover i {
    color: #005da1;
    display: inline-block;
}

.custom-hover:hover {
    text-decoration: none;
    color: #005da1;
    cursor: pointer;
}

.custom-hover:hover:after {
    visibility: visible;
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
}

.custom-hover:after {
    content: '';
    position: absolute;
    height: 2px;
    width: 100%;
    left: 0;
    bottom: 0;
    visibility: hidden;
    background-color: #005da1;
    -webkit-transition: all .1s ease;
    transition: all .3s ease;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
}

.login-box {
    background-color: white;
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.header-section-bg:after {
    background-color: #005da1;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 35%;
    content: '';
    z-index: -1;
    border-radius: 0 0 200px 200px;
}

.usp-zone {
    border-radius: 50px;
}

.usp-item i {
    font-size: 42px;
    margin-bottom: 15px;
    color: #005da1;
}
.br-10{
    border-radius: 10px;
    overflow: hidden;
}
.br-white {
    border-right: 2px solid white;
}

.img-bc-after-left:after {
    background-color: #005da1;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 35%;
    content: '';
    z-index: -1;
    border-radius: 0 200px 200px 0;
}

.img-bc-after-right:after {
    background-color: #005da1;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 35%;
    content: '';
    z-index: -1;
    border-radius: 200px 0 0 200px;
}

.slick-homepage-slider .slick-slide, .slick-homepage-slider2 .slick-slide {
    border-radius: 10px;
    overflow: hidden;
}
.contact-icon{
    font-size: 26px;

}
.color-black{
    color:black;
}
.form-control:focus, .form-select:focus{
    outline: none;
    border-color:#005da1;
    box-shadow: none;
}
.form-control:active, .form-select:active{
    outline: none;
    border-color:#005da1;
    box-shadow: none;
}
@media screen and (max-width: 900px) {
    h1 {
        font-size: 38px;
    }

}

@media screen and (max-width: 600px) {
    h1 {
        font-size: 32px;
    }
    .no-br-white-mob{
        border-right: none;
    }
    .bb-mob{
        border-bottom: 2px solid white;
    }

    .last-usp {
        padding-top: 10px;
    }
    .header-section-bg:after{
        display: none;
    }
    .mob-login-background:after {
        background-color: #005da1;
        position: absolute;
        left:-15px;
        top: 0;
        width: 80%;
        bottom: 0;
        content: '';
        z-index: -1;
        border-radius:0 200px 200px 0;
    }
    .mob-login-background{
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .img-bc-after-left:after{
        display: none;
    }
    .img-bc-after-right:after{
        display: none;
    }
    .img-bc-after-left-mob:after{
        background-color: #005da1;
        position: absolute;
        left: -15px;
        top: 0;
        bottom: 0;
        width: 80%;
        content: '';
        z-index: -1;
        border-radius: 0 200px 200px 0;
    }
    .img-bc-after-right-mob:after{
        background-color: #005da1;
        position: absolute;
        right: -15px;
        top: 0;
        bottom: 0;
        width: 80%;
        content: '';
        z-index: -1;
        border-radius: 200px 0 0 200px;
    }
    .img-bc-after-right-mob, .img-bc-after-left-mob{
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .usp-zone{
        border-radius: 0;
    }


}

/***************************************mobile***************************************/
