body{
    background: rgba(216, 215, 215, 0.15);
}
header {
    background: url("/img/header/hero.png") bottom left;
    background-size: cover;
}

p{
    font-size: 18px;
}

p b {
    font-size: 20px;
}

.contact-section {
  padding: 80px 120px;
}
.contact-block {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.contact-block>div:first-child {
    width: 384px;
}
.contact-block>div:last-child {
    width: calc(100% - 420px);
}

.contact-img-block{
    width: 100px;
}

.contact-type-block {
  border: 1px solid black;
  border-radius: 5px;
  padding: 25px 50px;
  margin-bottom: 24px;
}

.contact-form{
    padding: 32px 50px;
    border: 1px solid black;
    border-radius: 5px;
}


@media (max-width: 1100px) {
    .contact-block {
        flex-direction: column-reverse;
    }
    .contact-block>div:first-child {
        width: 100%;
    }
    .contact-block>div:last-child {
        width: 100%;
        margin-bottom: 30px;
    }
}

@media (max-width: 800px) {
    .contact-section {
        padding: 40px 20px;
    }

    .contact-img-block {
        width: 50px;
    }

    .contact-img-block img {
        position: relative;
        width: 32px;
        top: 7px;
    }

    .contact-type-block * {
        font-size: 14px;
    }

    .contact-type-block {
        padding: 15px 40px;
    }
}
