* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

html, body {
    /* height: 100%; */
    /* width: 100%; */
    /* position: relative; */
}

body {
    /* display: flex; */
    /* width: 100%; */
    /* flex-direction: column; */
    /* border: 5px solid red; */
}

img {
    user-select: none;
}

.burgerMenu {
    position: fixed;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 3;
    transform: translateX(0%);
    transition: transform 0.5s ease-in-out;
    @media (min-width:1024px) {
        background-color: transparent;
        position: fixed;
        right: -150px;
        /* top: 40vh; */
        transition: none;
        transform: rotate(90deg);
        height: auto;
        width: auto;
        flex-direction: row;
    }
}

.burgerMenu__hidden {
    display: none;
    height: 100%;
    transform: translateX(-100%);
    @media (min-width:1024px) {
        display: flex;
        transform: rotate(90deg)
    }
}

.menuItem {
    font-size: 20px;
}

.menuItem_link {
    color: black;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.2s;
}

.menuItem_link:hover {
    opacity: 0.5;
}

.language{
    cursor: pointer;
    transition: opacity 0.2s;
}

.language:hover {
    opacity: 0.5;
}

.language__selected {
    font-weight: 700;
}

.language__selected:hover {
    cursor: default;
    opacity: 1;
}

.close {
    position: absolute;
    top: 20px;
    right: 100px;
    font-size: 35px;
    cursor: pointer;
    transition: opacity 0.2s;
    @media (min-width:1024px) {
        display: none;
    }
}

.close:hover {
    opacity: 0.5;
}

.header {
    position: relative;
    width: 100%;
    padding: 12px 40px 0;
    z-index: 2;
    max-width: 1000px;
    @media (min-width:672px) {
        padding: 50px 100px 0;
    }
    @media (min-width:1024px) {
        margin: 0 auto;
    }
}

.header_info {

}

.burger {
    position: relative;
    z-index: 2;
    cursor: pointer;
    transition: opacity 0.2s;
    height: 40px;
    margin-left: 3px;
    @media (min-width:672px) {
        height: 84px;
        margin-left: 0;
    }
    @media (min-width:1024px) {
        display: none;
    }
}

.burger:hover {
    opacity: 0.5;
}

.burger img {
    height: 100%;
}

.logoFull {
    position: relative;
    height: 100px;
    overflow: hidden;
    width: 122px;
}

.logoFull_image {
    position: absolute;
    z-index: 1;
    top: -36px;
    left: -87px;
    width: 295px;
    height: 196px;
    @media (min-width:672px) {
        /* padding-block: 0 100px; */
    }
}

.motto {
    position: relative;
    z-index: 2;
    font-size: 15px;
    @media (min-width:1024px) {
        font-size: 20px;
    }
}

.header_logo {
    position: absolute;
    z-index: 0;
    width: 220px;
    height: 172px;
    top: -30px;
    right: -10px;
    @media (min-width:672px) {
        width: 440px;
        height: 345px;
        right: 0;
    }
}

.content {
    overflow-x:hidden;
    width: 100%;
    position: relative;
    z-index: 1;
    margin-top: 45px;
    padding: 0 40px;
    max-width: 1000px;
    @media (min-width:672px) {
        margin-top: 100px;
        padding-inline: 100px;
    }
    @media (min-width:1024px) {
        margin: 0 auto;
    }
}

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

.section_title {
    font-size: 14px;
    font-weight: 800;
    @media (min-width:672px) {
        font-size: 20px;
    }
}

.titleBullet {
    display: inline-block;
    width: 35px;
    height: 39px;
    position: relative;
    @media (min-width:672px) {
        height: 66px;
    }
    @media (min-width:1024px) {
        width: 0px;
    }
}

.titleBullet_icon {
    position: absolute;
    width: 51px;
    height: 39px;
    top: 13px;
    left: -20px;
    @media (min-width:672px) {
        width: 88px;
        height: 66px;
        top: 18px;
        left: -50px;
    }
    @media (min-width:1024px) {
        left: -88px;
    }
}

.section_text {
    font-size: 12px;
    margin-top: 20px;
    @media (min-width:672px) {
        margin-top: 30px;
        font-size: 15px;
    }
}

.divider {
    height: 100px;
    position: relative;
    width: calc(100% + 40px);
    left: -20px;
    max-width: 1000px;
    margin: 0 auto;
}

.divider_image {
    position: absolute;
    z-index: 0;
    width: 100%;
    top: 45%;
    transform: translateY(-60%);
}

.articles {
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
    gap: 30px;
}

.article {
    width: calc(50% - 15px);
}

.article_title {
    font-size: 12px;
    font-weight: 700;
    @media (min-width:672px) {
        font-size: 15px;
    }
}

.article_text {
    /* text-align: justify; */
    font-size: 12px;
    margin-top: 10px;
    @media (min-width:672px) {
        font-size: 15px;
        margin-top: 16px;
    }
}

.socialLinks {

}

.socialLink {
    display: block;
    text-decoration: none;
    margin-top: 10px;
    transition: opacity 0.2s;
    font-size: 14px;
    @media (min-width:672px) {
        font-size: 16px;
        margin-top: 16px;
    }
}

.socialLink:hover {
    opacity: 0.5;
}

.socialLink_icon {
    display: inline;
    position: relative;
    margin-right: 10px;
    @media (min-width:672px) {
        margin-right: 15px;
    }
}

.socialLink_icon__mail {
    width: 28px;
    height: 28px;
    top: 9px;
    margin-left: -4px;
    @media (min-width:672px) {
        width: 31px;
        height: 31px;
    }
}

.socialLink_icon__linkedIn {
    top: 5px;
    width: 20px;
    height: 20px;
    margin-right: 14px;
    @media (min-width:672px) {
        width: 23px;
        height: 23px;
        margin-right: 19px;
    }
}

.socialLink_text {
    color: black;
}

.footer {
    height: 100px;
    width: 100%;
    @media (min-width:672px) {
        height: 200px;
    }
}

.footer_image {
    display: block;
    margin: 70px auto 0;
    width: 64px;
    height: 64px;
    @media (min-width:672px) {
        margin: 75px auto 0;
        width: 128px;
        height: 128px;
    }
}