:root {
    --base-color: #51c5d7;
}

.header-top-bar h1 {
    line-height: 45px;
    margin: 0;
    padding: 0;
}

.navbar .navbar-nav .submenu-content,
.navbar .navbar-nav .submenu-content .mega-menu {
    width: 600px;
}

.navbar .navbar-nav .submenu-content {
    left: auto;
}

.navbar .navbar-nav .dropdown .dropdown-menu {
    padding: 30px 30px 35px;
}

.navbar .navbar-nav .dropdown .dropdown-menu:not(.submenu-content) {
    width: 485px;
}

.navbar .navbar-nav .submenu-content,
.navbar .navbar-nav .submenu-content .mega-menu {
    width: 750px;
}

.top-minus-70px {
    top: -69px;
}

header .navbar-brand {
    padding: 0;
}

header .navbar-brand img {
    max-height: 100px;
}

h2,
.h2 {
    font-size: 2rem;
    line-height: 2rem;
}

h3,
.h3 {
    font-size: 1.7rem;
    line-height: 1.7rem;
}

.as-h2 {
    font-size: 2rem;
    line-height: 2rem;
    margin-bottom: 2rem;
}

.as-description h2,
.as-description h3,
.as-description h4 {
    font-family: var(--alt-font);
    font-weight: 700;
    margin-bottom: 10px;
}

.as-description h3 {
    font-size: 1.60rem;
}

.as-description h4 {
    font-size: 1.40rem;
}

.as-description a {
    color: #3A55BD
}

.as-description a:hover {
    color: #0d142f
}

.as-description p,
.as-description2 p {
    line-height: 1.5rem;
}

.as-description2 * {
    color: #fff;
}

.as-description2 h2,
.as-description2 h3,
.as-description2 h4 {
    font-family: var(--alt-font);
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.as-description2 h3 {
    font-size: 1.60rem;
}

.as-description2 h4 {
    font-size: 1.40rem;
}

.as-description2 a {
    color: #3A55BD
}

.as-description2 a:hover {
    color: #0d142f
}

.as-btn {
    background-color: var(--base-color) !important;
}

.as-btn:active,
.as-btn:hover {
    border-color: var(--base-color) !important;
}

.as-gradient {
    background: #000000;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.80) 0%, rgba(0, 0, 0, 0) 40%);
}

@media (max-width: 1260px) {
    .navbar .navbar-nav .nav-link {
        padding: 10px 7px;
    }
    .navbar .navbar-nav .dropdown .dropdown-menu {
        left: 21%;
    }
}

@media (max-width: 991px) {
    .navbar .navbar-nav .dropdown .dropdown-menu {
        padding: 0 30px 35px;
    }
    .navbar .navbar-nav .dropdown .dropdown-menu .mega-menu {
        margin-left: 0 !important;
    }
    header .header-top-bar+.navbar {
        background-color: var( --base-color) !important;
    }
}

.check {
    cursor: pointer;
    position: relative;
    margin: auto;
    width: 18px;
    height: 18px;
    -webkit-tap-highlight-color: transparent;
    transform: translate3d(0, 0, 0);
    padding: 0 25px 0 0;
    float: left;
}

.check:before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(34, 50, 84, 0.03);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.check svg {
    position: relative;
    z-index: 1;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke: #c8ccd4;
    stroke-width: 1.5;
    transform: translate3d(0, 0, 0);
    transition: all 0.2s ease;
}

.check svg path {
    stroke-dasharray: 60;
    stroke-dashoffset: 0;
}

.check svg polyline {
    stroke-dasharray: 22;
    stroke-dashoffset: 66;
}

.check:hover:before {
    opacity: 1;
}

.check:hover svg {
    stroke: #91ee17;
}

#cbx:checked+.check svg {
    stroke: #91ee17;
}

#cbx:checked+.check svg path {
    stroke-dashoffset: 60;
    transition: all 0.3s linear;
}

#cbx:checked+.check svg polyline {
    stroke-dashoffset: 42;
    transition: all 0.2s linear;
    transition-delay: 0.15s;
}