h1,
h2,
h3,
h4,
h5,
h6,
p,a{
    font-family: 'Archivo', sans-serif;
}

main {
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
    background-color: rgb(248, 249, 250);
}


header {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding-block: 25px;
    border-bottom: 0px solid #000;
    z-index: 999;
    top: 0;
    position: fixed;
    background-color: rgba(248, 248, 248, 0);
    transition: background-color 0.5s ease-out;
    width: 100%;
}


.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 100%;
    max-width: 175px;
    height: auto;
}

.links {
    display: flex;
    gap: 1.25rem;
}

.links > * {
    text-decoration: none;
    color: white;
    font-family: 'Archivo', sans-serif;
    font-size: 17px;
    transition: transform 0.2s ease;
}

.links a:hover{
    transform: scale(1.1);
}

.hamburger{
    display: none;
    cursor: pointer;
}

.bar{
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    background-color: white;
}

@media(max-width:768px){
    .hamburger{
        display: block;
    }
    .hamburger.active .bar:nth-child(2){
        opacity: 0;
    }
    .hamburger.active .bar:nth-child(1){
        transform: translateY(8px) rotate(45deg);
    }
    .hamburger.active .bar:nth-child(3){
        transform: translateY(-8px) rotate(-45deg);
    }

    .links{
        position: fixed;
        left: -100%;
        top: 80px;
        gap: 0;
        flex-direction: column;
        background-color: rgba(248, 249, 250, 1);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        border-bottom: 2px solid #000;
        border-top: 2px solid #000;
    }

    .links a{
        margin: 16px 0;
        color: #000;
    }

    .links.active{
        left: 0;
    }
}

.section {
    width: 100%;
    height: 700px;
    position: relative;
    overflow: hidden;

}

.section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-contact-information-head {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 150px;
}

.article-contact-information-head h2 {
    text-align: center;
    font-size: 36px;
    border-bottom: 2px solid #333333;
}

.article-contact-information{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding-bottom: 50px;
}

.article-contact-information a{
    color: #000;
    text-decoration: none;
}

.article-contact-information-left {
    flex-basis: 1;
    padding: 40px;
}

.article-contact-information-right {
    flex-basis: 1;
    height: 350px;
    width: 350px;
    max-width: 400px;
}

@media (max-width: 768px) {
    .article-contact-information-right {
        flex-basis: 100%;
    }
}
.footer-container {
    background-color: #333333;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.footer-container {
    background-color: #333333;
    gap: 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding-inline: 2rem;
}

.footer-logo {
    max-width: 150px;
    margin-bottom: 10px;
    padding-top: 2.5rem;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-bottom: 2rem;
    margin: 0;
}

.footer-logo img {
    width: 100%;
    max-width: 175px;
    height: auto;
}

.contact-info {
    max-width: 300px;
    margin-bottom: 10px;
    color: #fff;
}

.contact-info a {
    background-color: #333333;
    color: #fff;
    text-decoration: none;
}

.navigation {
    text-align: center;
    max-width: 100px;
}

.navigation ul {
    list-style: none;
    text-align: center;
    margin: 0;
    padding: 0;
}

.navigation li {
    display: inline-block;
    margin-bottom: 10px;
}

.navigation a {
    display: block;
    background-color: #333333;
    color: #fff;
    text-decoration: none;
    padding: 10px;
    border-radius: 5px;
}

@media (min-width: 768px) {
    .footer-container {
        flex-wrap: nowrap;
        align-items: center;
    }

    .footer-logo {
        margin-bottom: 0;
    }

    .contact-info {
        margin-bottom: 0;
    }

    .navigation {
        text-align: right;
    }

    .navigation li {
        display: inline-block;
        margin-bottom: 0;
    }
}

@media (max-width: 768px){
    .footer-logo {
        padding-top: 2.5rem;
    }
}

.form{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    flex-direction: column;
}

.name-container{
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    width: 100%;
}

.mail-container{
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    width: 100%;
}

.info-container{
    max-width: 500px;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 3rem;
}

.submit{
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    width: 100%;
    max-width: 500px;
    gap: 1rem;
    margin-bottom: 2rem;
}

.submit-button{
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: flex-start;
}

textarea{
    min-height: 150px;
}

button{
    height: 35px;
    background: #043155;
    border-radius: 5px;
    color: white;
    max-width: 100px;
    border: none;
}

.text-form{
    display: flex;
    justify-content: flex-start;
    width: 100%;
    max-width: 500px;
}