body{
    background-color: var(--primary-color);
}
.bg-img{
    display: none;
}
.contact-content{
    margin-top: 2rem;
}

section{
    display: flex;
    gap: 0;
    flex-direction: column;
    align-items: center;
}
section.hero h2{
    font-size: 2.5rem;
    white-space: nowrap;
    background-color: white;
    color: var(--accent-color);
    width: fit-content;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .2);
    padding: .7rem;
}
section.hero h2.last{
    color: white;
    background-color: var(--accent-color);
    rotate: -2deg;
    translate: 0 -.5rem;
    margin-bottom: 2rem;
}
section img{
    min-width: 400px;
    width: 20vw;
}

section.contacts{
    flex-direction: row;
    align-items: center;
    gap: 5rem;
    margin-bottom: 0;
}
section.contacts *:not(button){
    color: white;
}

section.contacts .right{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3rem;
    height: 100%;
    font-size: 1.5rem;
}
section.contacts h2{
    padding: 0;
    white-space: nowrap;
}
section.contacts .right .wrapper{
    display: grid;
    gap: 1rem;
}

section.contacts .right i{
    font-size: 1.7rem;
    color: var(--accent-color);
    text-decoration: none;
}

section.contacts .right a{
    text-decoration: none;
    transition: all .2s ease;
}
section.contacts .right a:hover p{
    text-decoration: underline;
}

section.contacts a:has(button){
    width: fit-content;
    margin-top: 1rem;
    font-size: 1rem;
}

@media screen and (max-width: 1000px) {
    section{
        padding: 1rem;
    }
    section.hero h2,
    section.contacts h2{
        font-size: 7vw;
    }
    section.contacts{
        flex-direction: column-reverse;
        padding-bottom: 0;
    }  
    section.contacts h2,
    section.contacts p{
        text-align: center;
    }
    .contacts img{
        min-width: 100%;
    }
    .contacts a,
    .contacts button{
        width: 100% !important;
    }
}
