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

body {
    font-family: 'Rubik', sans-serif;
    --primaryColor: #ffc107;
    --lightColor: #EEF0F2;
    --gradientBlue1: #2F5474;
    --gradientBlue2: #11314D;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
}

.site-header {
    box-sizing: border-box;
    height: 60px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1000;
}

.site-navigation {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-end;
}

.site-navigation > li {
    display: block;
    position: relative;
}

.site-navigation > li a {
    color: #ffffff;
    display: block;
    padding: .5rem 1rem;
    font-size: 14px;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all .3s;
}

.site-navigation li a:hover,
.site-navigation li.active a {
    color: var(--primaryColor);
    border-bottom: 2px solid var(--primaryColor);
}

.site-navigation li ul li a:hover {
    border-left: 0px solid var(--primaryColor);
    border-bottom: 2px solid transparent;
}

ul li ul {
    visibility: hidden;
    opacity: 0;
    display: none;
    position: absolute;
    transition: all 0.5s ease;
    margin-top: 1rem;
    left: 0;
    background: rgba(255,255,255,.2);
    border-radius: 6px;
    list-style: none;
    margin: 0;
    padding: 0;
    width: max-content; 
}

ul li:hover > ul,
ul li ul:hover {
    visibility: visible;
    opacity: 1;
    display: block;
}

ul li ul li {
    clear: both;
    width: 100%;
}

.hamb {
    cursor: pointer;
    float: right;
    padding: 40px 20px;
}

.hamb-line {
    background: #ffffff;
    display: block;
    height: 2px;
    position: relative;
    width: 24px;

}

.hamb-line::before,
.hamb-line::after {
    background: #ffffff;
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    transition: all .2s ease-out;
    width: 100%;
}

.hamb-line::before {
    top: 5px;
}

.hamb-line::after {
    top: -5px;
}

.side-menu {
    display: none;
}

.side-menu:checked~nav {
    max-height: 100%;
}

.side-menu:checked~.hamb .hamb-line {
    background: transparent;
}

.side-menu:checked~.hamb .hamb-line::before {
    transform: rotate(-45deg);
    top: 0;
}

.side-menu:checked~.hamb .hamb-line::after {
    transform: rotate(45deg);
    top: 0;
}

.cover {
    background: radial-gradient(at center center, var(--gradientBlue1) 0%, var(--gradientBlue2) 100%);
    color: #ffffff;
    min-height: 500px;
    display: flex;
    align-items: center;
    margin-top: -60px;
    padding-top: 60px;
    position: relative;
    z-index: 1;
}

.cover-image {
    width: 700px;
    max-width: 700px;
    margin-bottom: -10rem;
    position: relative;
    z-index: 2;
}

.container {
    position: relative;
    z-index: 1;
}

.cover h1 {
    font-size: 50px;
}

.cover h1 span {
    color: var(--primaryColor);
}

.cover-intro {
    font-size: 30px;
    line-height: 1.2;
}

.cover-intro span {
    color: var(--primaryColor);
}

.shape-bottom {
    position: absolute;
    left: 0;
    bottom: -1px;
    overflow: hidden;
    z-index: 0;
}

.shape-bottom svg {
    width: calc(150% + 1.3px);
    height: 200px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    fill: #ffffff;
}

.shape-top {
    position: absolute;
    left: 0;
    top: -1px;
    overflow: hidden;
    z-index: 0;
    transform: rotate(180deg);
}

.shape-top svg {
    width: calc(150% + 1.3px);
    height: 200px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    fill: var(--lightColor);
}

.shape-light svg {
    fill: var(--lightColor);
}

.site-section {
    padding: 6rem 0;
    text-align: center;
    position: relative;
}

.site-section img {
    max-width: 100%;
}

.site-section h2 {
    margin-bottom: 2rem;
    font-size: 30px;
}

.section-heading-line:after {
    content: "";
    display: block;
    width: 40px;
    height: 6px;
    background: var(--primaryColor);
    border-radius: 10px;
    margin: 1rem 0 2rem;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}


.subheading {
    font-weight: 300;
    font-family: 'Rubik', sans-serif;
    font-size: 18px;
    margin-top: -1rem;
    margin-bottom: 3rem;
}

.dark {
    background: radial-gradient(at center center, var(--gradientBlue1) 0%, var(--gradientBlue2) 100%);
    color: #ffffff;
}

.light {
    background: var(--lightColor);
}

.site-footer {
    padding-top: 1rem;
    margin-bottom: 1rem;
    font-size: 14px;
    border-top: 1px solid #E9ECEF;
}

.main-heading {
    text-align: center;
    font-size: 40px;
    font-weight: 200;
    font-family: 'Montserrat', sans-serif;
}

.main-heading::after {
    content: "";
    display: block;
    width: 50px;
    height: 6px;
    background: var(--primaryColor);
    border-radius: 10px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin: 1rem 0 1rem;
}

.main-subheading {
    text-align: center;
    font-size: 18px;
    font-weight: 100;
}

.cover-subpage {
    height: auto;
    min-height: auto;
    padding-top: 8rem;
    padding-bottom: 6rem;
    position: relative;
}

.cover-subpage-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: url('../assets/img/cover-bg-shapes.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    opacity: .2;
}

.col-content h2 {
    margin-bottom: 0rem;
}

.col-content h2::after {
    content: "";
    display: block;
    width: 40px;
    height: 6px;
    background: var(--primaryColor);
    border-radius: 10px;
    margin: 1rem 0 2rem;
}

.col-content-left {
    text-align: left;
}

.col-content-map iframe {
    height: 300px;
    max-width: 100%;
    width: 100%;
}

.other-features-wrap {
    max-width: 900px;
    margin: 0 auto;
}

.other-features {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.other-features li {
    border: 1px solid #dcdcdc;
    border-radius: 6px;
    padding: 1rem 1.5rem;
    width: 250px;
}

.other-features li img {
    height: 50px;
    width: auto;
    margin-bottom: 1rem;
}

.other-features li h3 {
    font-size: 15px;
    margin-bottom: 1rem;
}

.other-features li p {
    margin: 0;
    padding: 0;
}

.core-values-wrap {
    margin-top: 4rem;
}

.core-values {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.core-values li {
    width: 30%;
}

.core-values .circle {
    display: inline-block;
    height: 1rem;
    width: 1rem;
    border-radius: 50%;
    background: var(--primaryColor);
    margin-bottom: .5rem;
}

.core-values h3 {
    font-size: 15px;
    margin-bottom: 1rem;
}

.form-wrap {
    max-width: 800px;
    margin: 0rem auto 0;
}

.form {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    text-align: left;
    margin-left: -10px;
    margin-right: -10px;
}

.form-group {
    width: 100%;
    padding: 0 10px;
    margin-bottom: 20px;
}

.w-30 {
    width: 30%;
}

.w-50 {
    width: 50%;
}

.w-70 {
    width: 70%;
}

.form-group label {
    display: block;
    font-size: 14px;
}

.form-group input, .form-group textarea {
    width: 100%;
    box-sizing: border-box;
    display: block;
    padding: 10px 16px;
    border: 0;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgb(0 0 0 / 10%);
}

.btn-submit {
    padding-left: 30px !important;
    padding-right: 30px !important;
    border-radius: 40px !important;
}

.about-featured {
    padding: 0 2rem;
}

.about-featured img {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
}

.about-featured h3 {
    margin-bottom: 1rem;
    font-size: 24px;
}

.footer-navigation {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-end;
}

.footer-navigation li a {
    display: block;
    color: var(--primaryColor);
    text-decoration: none;
    padding: .5rem 1rem;
}


@media (min-width: 768px) {
    .navigation{
        max-height: none;
        top: 0;
        position: relative;
        float: right;
        width: fit-content;
    }
    .menu li{
        float: left;
    }
    .menu a:hover{
        background-color: transparent;
        color: var(--gray);

    }

    .hamb{
        display: none;
    }
}


@media screen and (max-width: 767px) {
    .logo {
        width: 100%;
        max-width: 100%;
    }

    .navigation {
        width: 100%;
        height: 100%;
        left: 0;
        top: 60px;
        position: fixed;
        background-color: var(--gradientBlue2);
        overflow: hidden;
    }
    
    .navigation {
        max-height: 0;
        transition: max-height .5s ease-out;
    }

    .site-navigation {
        flex-direction: column;
    }

    .site-navigation li {
        width: 100%;
    }

    .site-navigation li a {
        padding: 1rem;
        font-size: 18px;
    }

    ul li ul {
        visibility: visible;
        opacity: 1;
        display: block;
        position: relative;
        margin-top: 0rem;
        left: 0px;
        background: none;
        width: 100%;
    }

    ul li ul li a {
        padding-left: 2rem !important;
    }

    .cover-image {
        width: 100%;
        max-width: 100%;
    }

    .cover {
        text-align: center;
        padding-left: 1rem;
        padding-right: 1rem;
        padding-top: 2rem;
    }

    .cover-subpage {
        padding-top: 7rem;
    }

    .cover h1 {
        font-size: 34px;
    }

    .cover-intro {
        margin-bottom: 2rem;
    }

    .site-section {
        padding: 3rem .5rem;
    }

    .about-featured {
        margin: 2rem 0;
        padding: 0 1rem;
    }

    .col-content {
        margin-bottom: 2rem;
    }

    .core-values li {
        width: 100%;
    }

    .site-footer {
        text-align: center;
    }

    .footer-navigation {
        width: 100%;
        justify-content: center;
        margin-bottom: 1rem;
    }
}