@import url(https://fonts.googleapis.com/css2?family=Sen:wght@400;700;800&display=swap);

body {
    font-family: Sen, sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #5e678c;
    overflow-x: hidden
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

.btn.focus,
.btn:focus,
.btn:not(:disabled):not(.disabled).active,
.btn:not(:disabled):not(.disabled):active,
a:focus,
button:focus,
input:focus,
textarea:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: none
}

a:hover {
    color: #105d9a
}

a {
    transition: all .3s ease-out 0s;
    text-decoration: none;
}

.navbar a {
    color: #2b2a2a !important;
    text-decoration: none;
}

a,
i,
span {
    display: inline-block
}

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    margin: 0;
    color: #1d2a5d
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: inherit
}

h1 {
    font-size: 40px
}

@media (max-width:767px) {
    h1 {
        font-size: 34px
    }
}

@media only screen and (min-width:480px) and (max-width:767px) {
    h1 {
        font-size: 36px
    }
}

h2 {
    font-size: 36px
}

h3 {
    font-size: 25px
}

h4 {
    font-size: 20px
}

h5 {
    font-size: 18px
}

h6 {
    font-size: 16px
}

ol,
ul {
    margin: 0;
    padding: 0;
    list-style-type: none
}

p {
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    margin: 0
}

.img-bg {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%
}

.error {
    color: #ff4500
}

.success {
    color: green
}

.main-btn {
    display: inline-block;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    padding: 14px 36px;
    font-size: 20px;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    z-index: 5;
    transition: all .4s ease-in-out;
    border: none;
    background: #105d9a;
    overflow: hidden
}

.main-btn:hover {
    color: #fff
}

.main-btn.border-btn {
    border: 2px solid #105d9a;
    background: 0 0;
    color: #1d2a5d
}

.btn-hover {
    position: relative;
    overflow: hidden
}

.btn-hover::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 0%;
    border-radius: 50%;
    background: rgba(0, 0, 0, .05);
    top: 50%;
    left: 50%;
    padding: 50%;
    z-index: -1;
    transition: all .3s ease-out 0s;
    transform: translate3d(-50%, -50%, 0) scale(0)
}

.btn-hover:hover::after {
    transform: translate3d(-50%, -50%, 0) scale(1.3)
}

.scroll-top {
    width: 45px;
    height: 45px;
    background: #105d9a;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: #fff;
    border-radius: 5px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9;
    cursor: pointer;
    transition: all .3s ease-out 0s
}

.scroll-top:hover {
    color: #fff;
    background: rgba(78, 110, 241, .8)
}

@keyframes animation1 {
    0% {
        transform: translateY(30px)
    }

    50% {
        transform: translateY(-30px)
    }

    100% {
        transform: translateY(30px)
    }
}

.navbar-area {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    transition: all .3s ease-out 0s;
    background: #fff
}

.sticky {
    position: fixed;
    z-index: 99;
    background-color: #fff;
    box-shadow: 0 20px 50px 0 rgba(0, 0, 0, .05);
    transition: all .3s ease-out 0s
}

.sticky .navbar {
    padding: 10px 0
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .sticky .navbar {
        padding: 10px 0
    }
}

@media (max-width:767px) {
    .sticky .navbar {
        padding: 10px 0
    }
}

.sticky .navbar .navbar-nav .nav-item a {
    color: #1d2a5d
}

.sticky .navbar .navbar-toggler .toggler-icon {
    background: #1d2a5d
}

.navbar {
    padding: 0;
    border-radius: 5px;
    position: relative;
    transition: all .3s ease-out 0s;
    padding: 10px 0
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .navbar {
        padding: 17px 0
    }
}

@media (max-width:767px) {
    .navbar {
        padding: 17px 0
    }
}

.navbar-brand {
    padding: 0
}

.navbar-toggler {
    padding: 0
}

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

.navbar-toggler .toggler-icon {
    width: 30px;
    height: 2px;
    background-color: #1d2a5d;
    display: block;
    margin: 5px 0;
    position: relative;
    transition: all .3s ease-out 0s
}

.navbar-toggler.active .toggler-icon:nth-of-type(1) {
    transform: rotate(45deg);
    top: 7px
}

.navbar-toggler.active .toggler-icon:nth-of-type(2) {
    opacity: 0
}

.navbar-toggler.active .toggler-icon:nth-of-type(3) {
    transform: rotate(135deg);
    top: -7px
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #fff;
        z-index: 9;
        box-shadow: 0 15px 20px 0 rgba(0, 0, 0, .1);
        padding: 5px 12px
    }
}

@media (max-width:767px) {
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #fff;
        z-index: 9;
        box-shadow: 0 15px 20px 0 rgba(29, 42, 93, .1);
        padding: 5px 12px
    }
}

.navbar-nav .nav-item {
    position: relative;
    margin-left: 35px
}

.navbar-nav .nav-item a {
    font-size: 18px;
    font-weight: 400;
    color: #5e678c;
    transition: all .3s ease-out 0s;
    padding: 10px 0;
    position: relative
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .navbar-nav .nav-item a {
        display: inline-block;
        padding: 6px 0;
        color: #5e678c
    }
}

@media (max-width:767px) {
    .navbar-nav .nav-item a {
        display: inline-block;
        padding: 6px 0;
        color: #5e678c
    }
}

.navbar-nav .nav-item a::after,
.navbar-nav .nav-item a::before {
    content: '';
    position: absolute;
    bottom: 0;
    height: 2px;
    background: #105d9a;
    z-index: -1;
    opacity: 0;
    border-radius: 10px;
    transition: all .3s ease-out 0s
}

.navbar-nav .nav-item a::before {
    width: 100%;
    left: 0
}

.navbar-nav .nav-item a.active,
.navbar-nav .nav-item a:hover {
    color: #105d9a
}

.navbar-nav .nav-item a.active::after,
.navbar-nav .nav-item a.active::before,
.navbar-nav .nav-item a:hover::after,
.navbar-nav .nav-item a:hover::before {
    opacity: 1
}

@media only screen and (min-width:768px) and (max-width:991px) {

    .navbar-nav .nav-item a.active::after,
    .navbar-nav .nav-item a.active::before,
    .navbar-nav .nav-item a:hover::after,
    .navbar-nav .nav-item a:hover::before {
        opacity: 1
    }
}

@media (max-width:767px) {

    .navbar-nav .nav-item a.active::after,
    .navbar-nav .nav-item a.active::before,
    .navbar-nav .nav-item a:hover::after,
    .navbar-nav .nav-item a:hover::before {
        opacity: 1
    }
}

.navbar-nav .nav-item:hover .sub-menu {
    top: 100%;
    opacity: 1;
    visibility: visible
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .navbar-nav .nav-item:hover .sub-menu {
        top: 0
    }
}

@media (max-width:767px) {
    .navbar-nav .nav-item:hover .sub-menu {
        top: 0
    }
}

.navbar-nav .nav-item .sub-menu {
    width: 200px;
    background-color: #fff;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, .1);
    position: absolute;
    top: 110%;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease-out 0s
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .navbar-nav .nav-item .sub-menu {
        position: relative;
        width: 100%;
        top: 0;
        display: none;
        opacity: 1;
        visibility: visible
    }
}

@media (max-width:767px) {
    .navbar-nav .nav-item .sub-menu {
        position: relative;
        width: 100%;
        top: 0;
        display: none;
        opacity: 1;
        visibility: visible
    }
}

.navbar-nav .nav-item .sub-menu li {
    display: block
}

.navbar-nav .nav-item .sub-menu li a {
    display: block;
    padding: 8px 20px;
    color: #222
}

.navbar-nav .nav-item .sub-menu li a.active,
.navbar-nav .nav-item .sub-menu li a:hover {
    padding-left: 25px;
    color: #105d9a
}

.navbar-nav .sub-nav-toggler {
    display: none
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .navbar-nav .sub-nav-toggler {
        display: block;
        position: absolute;
        right: 0;
        top: 0;
        background: 0 0;
        color: #222;
        font-size: 18px;
        border: 0;
        width: 30px;
        height: 30px
    }
}

@media (max-width:767px) {
    .navbar-nav .sub-nav-toggler {
        display: block;
        position: absolute;
        right: 0;
        top: 0;
        background: 0 0;
        color: #222;
        font-size: 18px;
        border: 0;
        width: 30px;
        height: 30px
    }
}

.navbar-nav .sub-nav-toggler span {
    width: 8px;
    height: 8px;
    border-left: 1px solid #222;
    border-bottom: 1px solid #222;
    transform: rotate(-45deg);
    position: relative;
    top: -5px
}

.section-top {
    position: relative;
    z-index: 1;
    padding: 20px 0 10px;
    background-color: #5c8cc1;
    margin-bottom: 30px;
}

.section-top h1,
.section-top p {
    color: #fff
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .section-top .section-content {
        margin-bottom: 50px
    }
}

@media (max-width:767px) {
    .section-top .section-content {
        margin-bottom: 50px
    }
}

.section-top .section-content h1 {
    font-size: 50px;
    margin-bottom: 30px
}

@media only screen and (min-width:1200px) and (max-width:1399px) {
    .section-top .section-content h1 {
        font-size: 50px
    }
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .section-top .section-content h1 {
        font-size: 46px
    }
}

@media (max-width:767px) {
    .section-top .section-content h1 {
        font-size: 36px
    }
}

@media only screen and (min-width:480px) and (max-width:767px) {
    .section-top .section-content h1 {
        font-size: 36px
    }
}

.section-top .section-content p {
    margin-bottom: 35px
}

@media only screen and (min-width:1400px) {
    .section-top .section-content p {
        padding-right: 100px
    }
}

.section-top .section-content .custom-btn .main-btn {
    padding: 14px 32px;
    border-radius: 10px;
    font-weight: 500;
    font-size: 20px;
    margin-right: 30px;
    margin-bottom: 30px;
    border: 2px solid transparent
}

.section-top .section-content .custom-btn .main-btn:hover {
    box-shadow: 0 3px 26px #105d9a
}

.section-top .section-content .custom-btn .main-btn.border-btn {
    margin-right: 0;
    color: #fff;
    border-color: #fff;
}

@media only screen and (min-width:1200px) and (max-width:1399px) {
    .section-top .top-img img {
        width: 100%
    }
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .section-top .top-img img {
        width: 100%
    }
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .section-top .top-img img {
        width: 100%
    }
}

@media (max-width:767px) {
    .section-top .top-img img {
        width: 100%
    }
}

.features-section .single-feature {
    text-align: center;
    padding: 10px
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .features-section .single-feature {
        padding: 30px 8px
    }
}

.features-section .single-feature .icon {
    width: 114px;
    height: 114px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 85px;
    color: #45484c;
    margin: auto;
    margin-bottom: 30px;
    border-radius: 18px;
    background-color: #f5f9fb;
}

.features-section .single-feature .content h3 {
    font-weight: 700;
    margin-bottom: 25px
}

.icon-style {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 18px;
    color: #fff
}

.icon-style.color-1 {
    background: linear-gradient(#b89cfe 0, #624ff3 100%);
    box-shadow: 0 7px 10px rgba(110, 90, 245, .27)
}

.icon-style.color-2 {
    background: linear-gradient(#ff92a5 0, #ff67a3 100%);
    box-shadow: 0 7px 10px rgba(255, 110, 163, .27)
}

.icon-style.color-3 {
    background: linear-gradient(#ffb37a 0, #ff884a 100%);
    box-shadow: 0 7px 10px rgba(255, 142, 81, .27)
}

.footer {
    position: relative;
    z-index: 1;
    background-color: #f7f7f7
}

.footer .footer-shape .shape {
    position: absolute;
    z-index: -1
}

.footer .footer-shape .shape.shape-1 {
    bottom: 0
}

@media only screen and (min-width:1400px) {
    .footer .footer-shape .shape.shape-1 {
        left: -100px
    }
}

@media only screen and (min-width:1200px) and (max-width:1399px) {
    .footer .footer-shape .shape.shape-1 {
        left: -350px
    }
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .footer .footer-shape .shape.shape-1 {
        display: none
    }
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .footer .footer-shape .shape.shape-1 {
        display: none
    }
}

@media only screen and (min-width:480px) and (max-width:767px) {
    .footer .footer-shape .shape.shape-1 {
        display: none
    }
}

.footer .widget-wrapper .footer-widget {
    margin-bottom: 25px
}

.footer .widget-wrapper .footer-widget .logo {
    margin-bottom: 20px;
    margin-top: 25px
}

@media only screen and (min-width:1400px) {
    .footer .widget-wrapper .footer-widget .logo .logo-1 {
        display: none
    }
}

@media only screen and (min-width:1200px) and (max-width:1399px) {
    .footer .widget-wrapper .footer-widget .logo .logo-1 {
        display: none
    }
}

.footer .widget-wrapper .footer-widget .logo .logo-2 {
    display: none
}

@media only screen and (min-width:1200px) and (max-width:1399px) {
    .footer .widget-wrapper .footer-widget .logo .logo-2 {
        display: block
    }
}

@media only screen and (min-width:1400px) {
    .footer .widget-wrapper .footer-widget .logo .logo-2 {
        display: block
    }
}

.footer .widget-wrapper .footer-widget h3 {
    margin-top: 20px;
    margin-bottom: 20px
}

.footer .widget-wrapper .footer-widget .socials {
    display: flex
}

.footer .widget-wrapper .footer-widget .socials li {
    margin-right: 20px
}

.footer .widget-wrapper .footer-widget .socials li:last-child {
    margin-right: 0
}

.footer .widget-wrapper .footer-widget .socials li a {
    width: 40px;
    height: 40px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #105d9a;
    color: #fff
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .footer .widget-wrapper .footer-widget .socials li a {
        background: rgba(78, 110, 241, .1);
        color: #105d9a
    }
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .footer .widget-wrapper .footer-widget .socials li a {
        background: rgba(78, 110, 241, .1);
        color: #105d9a
    }
}

@media (max-width:767px) {
    .footer .widget-wrapper .footer-widget .socials li a {
        background: rgba(78, 110, 241, .1);
        color: #105d9a
    }
}

.footer .widget-wrapper .footer-widget .socials li a:hover {
    background: #5742c3;
    color: #fff
}

.footer .widget-wrapper .footer-widget .links li a {
    color: #5e678c;
    line-height: 33px
}

.footer .widget-wrapper .footer-widget .links li a:hover {
    color: #105d9a
}

.footer .copy-right-wrapper {
    border-top: 1px solid rgba(29, 42, 93, .16);
    padding: 25px;
    text-align: center
}

.footer .copy-right-wrapper p {
    font-size: 16px
}

.footer .copy-right-wrapper p a {
    color: #5e678c
}

.footer .copy-right-wrapper p a:hover {
    color: #105d9a
}

.accordion-button:not(.collapsed) {
    color: #fff;
    background-color: #105d9a
}

.accordion-button:not(.collapsed) h3 {
    color: #fff
}


.form-control {
    font-size: 1.2em
}

.form-group {
    margin-bottom: 20px
}

.maparea {
    display: block;
    width: 100%;
    height: 400px;
    background: #105d9a;
    overflow: hidden
}

iframe {
    width: 100%;
    border: 0
}

a.anchor {
    display: block;
    position: relative;
    top: -80px;
    visibility: hidden;
}

.faq_title {
    font-size: 1em
}

.user-img img {
    height: 34px;
    width: 34px;
}

.dropdown-menu {
    margin-top: 0.8rem !important;
}