:root{
    --COLOR1: #d70000;
    --COLOR2: #a00000;
    --COLOR3: #f2f2f2;
    --COLOR4: #282828;
}
html,
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    /* fontos */
}

.contact-main .contact{
    height: calc(100vh - 200px);
    display: flex;
    flex-direction: column;
    width: 100%;
    color: #f2f2f2;
    border-top: 1px solid rgb(77, 77, 77);
    padding-top: 100px;
}
.contact-main .section_text_p1{
    text-align: center;
    cursor: default;
}
.contact-main .title{
    font-size: 3rem;
    text-align: center;
    cursor: default;
}
.contact-main .section-container{
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
}
.contact-main .row{
    display: flex;
    width: 70%;
}
.contact-main .left{
    width: 40%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.contact-main .right{
    width: 60%;
}
.contact-main .right form input, .right form textarea{
    width: 100%;
    border: 0;
    outline: none;
    background-color: #262626;
    padding: 15px;
    margin: 15px 0;
    color: var(--font);
    font-size: 18px;
    border-radius: 6px;
}
.contact-main .right form button{
    font-weight: 600;
    transition: all 300ms ease;
    padding: 1rem;
    width: 8rem;
    border-radius: 2rem;
    margin-top: 20px;
    cursor: pointer;
    border: none;
    color: #f2f2f2;
    background-color: #a00000;
}
.contact-main .right form button:hover{
    background-color:#d70000;
}
.contact-main .icons{
    display: flex;
    gap: 5px;
    margin-top: 20px;
    font-size: 25px;
}
.contact-main i{
    color: #a00000;
    cursor: pointer;
}
.contact-main i:hover{
    color:#d70000;
}
.contact-main .left .bottom p{
    color: #6b6b6b;
    cursor: default;
}
.contact-main .top h1, .bottom h1{
    cursor: default;
}
.contact-main .imgs .img{
    max-width: 40%;
    height: 150px;

    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
}
.contact-main .imgs img{ 
    width: 100%;
    transition: all 0.3s ease;
}
.contact-main .imgs img:hover{
    transform: scale(1.1);
    cursor: pointer;
}
.contact-main .imgs{
    display: flex;
    gap: 10px;
    margin-top: 30px;
    height: 300px;
}
@media screen and (max-width: 1200px) {
    .contact-main .contact{
    height: fit-content;
}
    .contact-main .row{
        width: 80%;
    }
}
@media screen and (max-width: 1100px) {
    .contact-main .row{
        width: 90%;
    }
}
@media screen and (max-width: 900px) {
    .contact-main .row{
        flex-direction: column;
    }
    .contact-main .left, .contact-main .right{
        width: 100%;
}
.contact-main .left{
    order: 2;
    justify-content: center;
    align-items: center;
}
.contact-main .left .bottom{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.contact-main .right{
    order: 1;
    margin-bottom: 2em;
}
.contact-main .imgs{
    display: flex;
    justify-content: center;
}
.contact-main .imgs .img{
    width: 400px;
    max-width: 20%;
    height: 75px;
    
}
.contact-main .imgs img{ 
    width: 100%;
    transition: all 0.3s ease;
}
}
@media screen and (max-width: 700px) {
    .contact-main .title {
        font-size: 1.5em;
    }
    .contact-main .row{
        width: 95%;
    }
    .contact-main .right form input, .right form textarea, .contact-main .right form button{
    font-size: 10px;
    
}
.contact-main .right form button{
    padding: 1em 0.5em;
    width: 10em;
}
.contact-main .left .bottom h1, .contact-main .left .top h1{
    font-size: 1em;
}
}