*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    font-family: 'Open Sans', sans-serif;
}
body{
    background-color: #3A3A3A;
}
/* Header navigation */
.header-container{
    display: flex;
    overflow: hidden;
    justify-content: space-between;
    align-items: center;
    margin: 2vh 6.24vh 2vh 6.24vh;
}
.header-nav{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 90px;
}
.header-menu{
    color: white;
    text-decoration: none;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 21px;
}
.header-menu:hover{
    cursor: pointer;
    color: #FF7E7E;
    transition: 1s;
}
.header-menu-active{
    color: #FF7E7E;
    font-size: 18px;
    line-height: 21px;
    text-decoration: none;
    font-style: normal;
    font-weight: 500;
}
.header-menu-active:hover{
    cursor: pointer;
}
.language, .content{
    text-decoration: none;
    color: white;
}
.language:hover, .content:hover{
    color: #FF7E7E;
    transition: 1s;
}
.header-dropdown-1, .header-dropdown-2{
    position: absolute;
    display: none;
}
.header-menu:hover .header-dropdown-1{
    display: flex;
    flex-direction: column;
    gap: 1vh;
    background-color: #3A3A3A;
    padding: 2vh;
    box-shadow: 1px 10px 25px #0000006b;
    z-index: 100;
}
.header-menu:hover .header-dropdown-2{
    display: block;
    background-color: #3A3A3A;
    padding-top: 1vh;
    padding-right: 1vh;
    padding-left: 1vh;
    padding-bottom: 1vh;
    box-shadow: 1px 10px 25px #0000006b;
    z-index: 100;
}
/* Contact */
.contact-container{
    display: flex;
    flex-direction: column;
    position: relative;
}
.contact-container-1{
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 48.34vh;
}
.contact-container-1::after{
    content: "";
    background: url("image1.svg");
    opacity: 0.25;
    position: absolute;
    height: 48.34vh;
    width: 100%;
    z-index: -1;   
}
.title{
    color: white;
    font-size: 48px;
    font-weight: bold;
}
.contact-container-2{
    display: flex;
    position: relative;
    background-color: #3E3E3E;
    justify-content: center;
    width: 100%;
    height: 25vh;
}
.start-conversation{
    font-size: 30px;
    color: white;
    font-weight: 500;
    padding-top: 7vh;
}
.contact-container-3{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #3E3E3E;
    padding-bottom: 15vh;
}
.contact-box{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    background-color: #3E3E3E;
    height: 240px;
    width: 538px;
    border-style: solid;
    border-width: 1px;
    border-color: #FF7E7E;
    box-shadow: 1px 10px 25px #0000003d;
}
.gmail, .number{
    color: #FF7E7E;
    font-size: 23px;
}
.gmail{
    margin-top: 4vh;
}
.number{
    margin-bottom: 4vh;
}
.line-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 240px;
}
.line{
    background-color: #FF7E7E;
    height: 1px;
    width: 100%;
}
/* Footer */
.footer{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 3vh 8vh 3vh 8vh;
}
.footer-logos{
    display: flex;
    gap: 5.53vh;
}
.footer-text{
    color: white;
    font-size: 18px;
    font-weight: 600;
}
@media only screen and (max-device-width: 480px) and (max-device-height: 900px){
    .header-container{
        flex-wrap: nowrap;
        justify-content: space-between;
        padding-left: 3vh;
        align-items: center;
        height: 20vh;
        gap: 5vh;
    }
    .header-nav{
        gap: 2vh;
    }
    .title{
       text-align: center;
    }
    .contact-container{
        width: 62vh;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .contact-container-3{
        width: 62vh;
    }
    .contact-container-1{
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .footer{
        gap: 35vh;
        height: 10vh;
    }
}