::-webkit-scrollbar { display:none }


.last{
    background-color: #2d2a30;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

.contact-container{
    height: 70vh;
    max-width: 1200px;
    margin: auto;
    margin-top: 20vh;
    width: 100%; 
    display: grid;
    grid-template-columns: repeat(2,1fr);
    border-radius: 20px;
    overflow: hidden;
}

.map iframe{
    width: 100%;
    height: 100%;
}

.contacts{
    background-color: #363953;
    box-sizing: border-box;
    width: 100%;
    text-align: left;
    font: bold 20px;
    padding: 50px 50px 60px 50px;
}


.contacts h3 {
    color: #ffffff;
    font: normal 46px 'Pacifico', cursive;
    margin: 0;
}
.contacts h3 span {
    color: var(--main);
}


.contacts i.fa-envelope {
    font-size: 20px;
    line-height: 38px;
}

.contacts p {
    display: inline-block;
    color: #ffffff;
    vertical-align: middle;
    margin: 0;
    font-size: 25px;
}

.contacts p span {
    display: block;
    font-weight: 200;
    font-size: 14px;
    line-height: 2;
}

.contacts p a {
    color: var(--main);
    text-decoration: none;
    font-size: 24px;
}


.contacts .footer-company-about {
    line-height: 30px;
    color: #92999f;
    font-size: 22px;
    font-weight: normal;
    margin: 0;
}

.contacts .footer-company-about span {
    display: block;
    color: #ffffff;
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 15px;
}

.contacts .footer-icons{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    gap:30px;
    

}

.contacts .footer-icons a {
    display: inline-block;
    width: 40px;
    height: 36px;
    cursor: pointer;
    background-color: #33383b;
    border-radius: 5px;
    font-size: 30px;
    color: #ffffff;
    text-align: center;
    line-height: 35px;

}

.contacts .footer-icons a:hover {
    background-color: var(--main);
}

@media screen and (max-width: 1044px) {
    .contacts{
        font: bold 16px;
        padding: 20px 30px 30px 30px;
    }
}
@media screen and (max-height: 750px) {
    .contact-container{
        margin-top: 12vh;
        height: 88vh;
    }
}

@media screen and (max-width:880px) {
    .contacts{
        height: 70%;
    }
    .contact-container{
        display: flex;
        flex-direction: column;
        margin-top: 12vh;
        height: 88vh;
        border-radius: 0px;
    }
    .map{
        width: 100%;
        height: 30%;
    }
}

@media screen and (max-width: 550px) {
    .contacts{
        padding: 20px;
    }

    .contacts h3 {
        font: normal 36px 'Pacifico', cursive;
    }

    .contacts i.fa-envelope {
        font-size: 16px;
        line-height: 12px;
    }

    .contacts p span {
        line-height: 0.5;
    }

    .contacts .footer-company-about {
        line-height: 25px;
        font-size: 23px;
    }

    .contacts .footer-company-about span {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .contacts .footer-icons{
        margin-top: 15px;
        gap:20px;
    }

    .contacts .footer-icons a {
        width: 35px;
        height: 32px;
        border-radius: 5px;
        font-size: 30px;
        line-height: 25px;
    }
}

@media screen and (max-width: 550px) {
    .contacts{
        padding: 5px;
    }
}

@media screen and (max-width: 335px) {
    .last{
        height: 150vh;
    }
    .contact-container{
        height: 150vh;
    }

    .contacts{
        padding: 0;
    }

    .contacts{
        height: 60%;
    }
    .map{
        height: 40%;
    }
}

@media screen and (max-width: 255px) {
    
    .contacts{
        height: 75%;
    }
    .map{
        height: 25%;
    }
}



