.section-contact-us{

    position: relative;
    /*margin-top: 100px;*/
    height: calc(100% - 100px);
    width: 100%;

}

.contact-us-container{
    height: 500px;
    width: 70%;
}


.contact-us-container, .mapouter, .contact-us-grid{
    position: absolute;
}

.contact-us-container, .mapouter, .contact-us-grid{
    transform: translate(-50%, -50%);
}

.contact-us-container, .mapouter, .contact-us-grid{
    top:50%;
}

.contact-us-container, .mapouter, .contact-us-grid{
    left:50%;
}

.contact-us-part{
    border-bottom: 1px solid var(--site-secondary)
}

.icons{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 1px solid var(--site-secondary);
}


.contact-us-grid{
    display: grid;
    width: 50%;
    gap: 10px;
    grid-template-columns: repeat(auto-fit, 300px);
    justify-content: space-evenly;
    align-items: center;
    /*border: ;*/
}

.contact-parts{
    position: absolute;
    /*background-color: var(--secondary-first-der);*/
    transform: translate(-50%, -50%);
    top:50%;
    transition: 250ms top, 250ms box-shadow;
    padding: 0;
    left: 50%;
    width: 100%;
    height: 250px;
    border: 2px solid var(--site-secondary);
    animation: 500ms start_animation;
}

.contact-parts:hover{
    top: 47% !important;
    box-shadow: var(--site-secondary) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}


.contacts-main-container{
    height: calc(100vh - 100px)
}

@keyframes start_animation {
    from{
        height: 200px;
        width: 80%;
    }to{
         height: 250px;
         width: 100%;

         }
}

@media screen and (min-width: 1600px) {
    .contacts-container{
        width: 700px !important;
        height: inherit !important
    }
}

@media screen and (min-width: 1250px) and (max-width: 1600px) {
    .contacts-container{
        width: 55% !important;
        height: inherit !important
    }
}

@media screen and (min-width: 780px) and (max-width: 1250px) {
    .section-contact-us{
        height: calc(180% - 100px);
    }

}
@media screen and (min-width: 0) and (max-width: 650px) {
    .contacts-main-container{
        height: 1200px !important
    }
    .contacts-container{
        height: inherit !important
    }
}

@media screen and (min-width: 0) and (max-width: 850px) {
    .section-contact-us{
        height: calc(200% - 100px);
    }
    .contact-us-grid {
        width: 100%;
        justify-content: center;
        height: 1200px;
    }
    .contact-us-grid > div{
        height: 200px;
    }


}