@font-face {
    font-family: 'Open Sans';
    src: url(../assets/fonts/Open_Sans/OpenSans-VariableFont_wdth\,wght.ttf);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans';
    word-wrap: break-word;
}

section {
    width: 100%;
}

.content {
    width: 90%;
    max-width: 1150px;
    margin: auto;
}

header {
    width: 100%;
    position: fixed;
    background: white;
    z-index: 1000;
    top: 0;
    left: 0;
    box-shadow: 0px 1px 2px 0px #7e7e7e;
}

li {
    list-style-type: none;
}

a {
    text-decoration: none;
}

.top-header {
    width: 100%;
    padding: 18px 0;
    background: black;
}

.top-header p {
    color: white;
    font-size: 14px;
}

.main-header {
    width: 100%;
    position: relative;
}

.main-header .content {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding: 20px 0;
    gap: 30px;
}

.main-header .content .logo {
    width: 200px;
    cursor: pointer;
}

.menu {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
}

.menu li {
    font-weight: 600;
    color: #8f8f8f;
    transition: 0.2s;
    cursor: pointer;
}

.menu li:hover {
    color: #0a3a79;
}

.main-header .content .whatsapp-icon {
    margin-left: auto;
}

.whatsapp-icon img {
    width: 38px;
    height: 38px;
    padding: 10px;
    background: #d8d8d8;
    border-radius: 50%;
    cursor: pointer;
}

footer {
    background: #242424;
    width: 100%;
}

footer * {
    color: white;
}

footer .content {
    padding: 50px 0 120px;
}

footer .columns {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

footer .content .column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

footer .content .column:first-of-type {
    width: 50%;
}

footer .content .column:nth-of-type(2) {
    width: 25%;
}

footer .content .column:nth-of-type(3) {
    width: 25%;
}

footer .content .column ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

footer .content h4 {
    font-size: 20px;
}

footer .content p, footer .content li {
    font-size: 14px;
    font-weight: 100;
}

footer .content li {
    cursor: pointer;
}

.contact-line {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.contact-line img {
    width: 12px;
    filter: brightness(0) invert(1);
}

.copyright {
    width: max-content;
    display: block;
    margin: 20px auto 0;
}

@media screen and (max-width: 960px) {
    .main-header .content {
        justify-content: space-between;
    }
    
    .menu {
        position: fixed;
        top: -150px;
        left: 0;
        width: 100%;
        padding: 15px 5%;
        gap: 10px;
        background: white;
        flex-direction: column !important;
        align-items: flex-start !important;
        box-shadow: 0px 1px 2px 0px #7e7e7e;
        transition: 0.2s;
        z-index: 100;
    }

    .menu.opened {
        top: 135.53px;
    }

    .menu-btn {
        width: 30px;
        height: 22px;
        position: relative;
        cursor: pointer;
    }

    .menu-btn span {
        width: 100%;
        height: 2px;
        background: #a5a5a5;
        position: absolute;
        left: 0;
    }
    
    .menu-btn span:nth-of-type(1) {
        top: 0;
        transition: 0.2s;
    }

    .menu-btn span:nth-of-type(2) {
        top: 10px;
    }

    .menu-btn span:nth-of-type(3) {
        top: 20px;
        transition: 0.2s;
    }

    .menu-btn.opened span:nth-of-type(1) {
        top: 10px;
        transform: rotate(45deg);
    }

    .menu-btn.opened span:nth-of-type(2) {
        display: none;
    }

    .menu-btn.opened span:nth-of-type(3) {
        top: 10px;
        transform: rotate(-45deg);
    }

    .top-header {
        padding: 15px 0;
    }

    .main-header .content .logo {
        width: 150px;
    }

    .menu .whatsapp-icon {
        margin-left: inherit;
    }

    footer .content {
        padding: 35px 0 50px;
    }

    footer .columns {
        flex-direction: column;
    }
    
    footer .content .column {
        width: 100% !important;   
    }
}