section.hero {
    position: relative;
    z-index: 1;
    
    width: 100%;
    height: 100dvh;

    overflow: hidden;

}   section.hero h1 {
    font-size: 50px;
    margin-top: 50px;

}   section.hero img {
    position: relative;
    width: 100%;
    height: auto;


}   section.hero .container {
    display: flex;
    flex-direction: column;

    width: 100%;
}

section.contact {
    width: 100%;
    height: auto;

    display: flex;
    flex-direction: row;

    justify-content: center;
    align-items: center;

    gap: 30px;

}   section.contact form {
    width: 500px;
    height: auto;

    background: #111111;
    border-radius: 5px;

    padding: 25px;

    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;

    user-select: none;
    flex-shrink: none;

}   section.contact form h3 {
    font-size: 30px;
    width: 100%;

    margin-bottom: 20px;

}   section.contact form label {
    width: 100%;
    height: auto;

    font-size: 18px;
    margin-top: 20px;

}   section.contact form input,
    section.contact form textarea {
        width: 100%;
        height: auto;

        padding: 5px;
        background: transparent;

        border: none;
        outline: none;

        border-bottom: 1px solid #fff;

        font-size: 15px;

}   section.contact form textarea {
    resize: vertical;

}   section.contact form button {
    cursor: pointer;

    width: 100%;
    height: auto;

    margin: 15px;
    padding: 10px;

    background: #0088cc;
    border-radius: 5px;

    border: none;
    outline: none;

    text-transform: uppercase;
    font-size: 18px;
}


section.contact .slr {
    display: flex;
    flex-direction: column;

    padding: 30px;

    width: max-content;
    height: auto;

    gap: 20px;

}   section.contact .slr .block {
    width: max-content;
    height: auto;

    background: #222222;
    padding: 15px;

    border-radius: 5px;

}   section.contact .slr .block h3 {
    font-size: 30px;

}   section.contact .slr .block a {
    font-size: 40px;
    color: #0088cc;

}   section.contact .slr .block.sm a {
    width: 100%;
    height: auto;

    display: flex;
    flex-direction: row;

    justify-content: flex-start;
    align-items: center;

    gap: 5px;
    font-size: 20px;

    transition: .3s ease-out;

}   section.contact .slr .block.sm a:hover {
    opacity: .4;
}

@media (min-width: 1000px) {
    section.hero img {
        position: absolute;
        top: 0;
        right: 0;

        width: 50%;
    }
}


@media (max-width: 970px) {
    section.contact .slr .block a {
        font-size: 25px;
    }
}

@media (max-width: 760px) {
    section.contact {
        flex-direction: column;
        gap: 20px;

    }   section.contact form {
        width: 100%;
    
    }   section.contact .slr {
        padding: 0;
    
    }   section.contact .slr .block {
        width: 100%;
    }
}