#contact-block {
    padding: 80px 0px;
}

#contact-block .wrapper {
    display: flex;
    justify-content: space-between;
    gap: 150px;
}

#contact-block .left-side {
    display: flex;
    flex-direction: column;
    width: 40%;
    max-width: 450px;
    gap: 15px;
}

#contact-block .block-title {
    text-align: left;
    font-weight: 600;
    font-size: 45px;
    line-height: 120%;
    text-transform: uppercase;
    margin-bottom: 25px;
}

#contact-block .info-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

#contact-block .info-icon {
    width: 25px;
    min-width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#contact-block .info-icon img,
#contact-block .info-icon svg {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

#contact-block .right-side {
    width: 57%;
    height: 100%;
    position: relative;
    z-index: 2;
}

/* #contact-block .right-side:before {
    content: "";
    width: 100px;
    height: 80%;
    top: 20px;
    left: -100px;
    background-image: url(images/cBefore.png);
    position: absolute;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right top;
}
#contact-block .right-side:after {
    content: "";
    width: 193px;
    height: 200px;
    bottom: -100px;
    right: -95px;
    background-image: url(images/cAfter.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
} */
#contact-block .map-holder {
    min-height: 350px !important;
}

#contact-block .reqs-holder {
    margin-top: 40px;
    border: 1px solid var(--bg-dark);
    padding: 35px 45px;
    display: flex;
    gap: 116px;
}

#contact-block .req-item {
    display: flex;
    flex-direction: column;
    width: max-content;
}

#contact-block .req-name {
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    color: var(--main-text);
}

#contact-block .req-value {
    font-weight: 500;
    font-size: 18px;
    line-height: 150%;
}

#contact-block .req-item.comp {
    display: flex;
    flex-direction: column;
    width: 31%;
}

#contact-block .comp-name {
    font-weight: 500;
    font-size: 18px;
    line-height: 150%;
}

#contact-block .license {
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    color: var(--main-text);
}

#contact-block .reqs-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 65%;
    justify-content: space-between;
    gap: 10px;
}

#contact-block .soc-holder {
    display: flex;
    gap: 10px;
    margin-top: 25px;
}

#contact-block .soc-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
}

#contact-block .soc-item:hover {
    opacity: 0.7;
}

#contact-block .soc-item img,
#contact-block .soc-item svg {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

@media (max-width: 1600px) {
    #contact-block .right-side:after {
        width: 20%;
        height: 25%;
        right: -15px;
        bottom: -15px;
    }
}

@media (max-width: 1200px) {
    #contact-block .reqs-holder {
        margin-top: 20px;
        padding: 15px;
    }

    #contact-block .reqs-holder {
        flex-direction: column;
        gap: 20px;
    }

    #contact-block .req-item.comp {
        width: 100%;
    }

    #contact-block .req-item {
        width: fit-content;
    }

    #contact-block .reqs-wrapper {
        width: 100%;
    }

    #contact-block .block-title {
        font-size: 32px;
    }

    #contact-block .wrapper {
        gap: 50px;
    }
}

@media (max-width: 996px) {
    #contact-block {
        padding: 30px 0px;
    }

    #contact-block .block-title {
        font-size: 28px;
        margin-bottom: 5px;
    }

    #contact-block .left-side {
        width: 50%;
    }

    #contact-block .right-side {
        width: 50%;
    }

    #contact-block .right-side:before {
        display: none;
    }

    #contact-block .wrapper {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    #contact-block .block-title {
        font-size: 22px;
    }

    #contact-block .wrapper {
        flex-direction: column;
    }

    #contact-block .left-side {
        width: 100%;
    }

    #contact-block .right-side {
        width: 100%;
    }

    #contact-block .reqs-wrapper {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 600px) {
    #contact-block .block-title {
        font-size: 18px;
    }

    #contact-block .map-holder {
        min-height: 250px !important;
    }

    #contact-block .soc-holder {
        margin-top: unset;
    }

    #contact-block .req-value {
        font-size: 14px;
    }
}