.contacts {
    height: calc(100vh - 121px - 10px);
    background-image: url("../images/pages/contacts.jpg");
    background-size: cover;
}

.contacts__title {
    color: #ffffff;
    text-align: center;
    padding: 70px 0 130px 0;
    text-shadow: 
		-0   -1px 0   #000000,
		 0   -1px 0   #000000,
		-0    1px 0   #000000,
		 0    1px 0   #000000,
		-1px -0   0   #000000,
		 1px -0   0   #000000,
		-1px  0   0   #000000,
		 1px  0   0   #000000,
		-1px -1px 0   #000000,
		 1px -1px 0   #000000,
		-1px  1px 0   #000000,
		 1px  1px 0   #000000,
		-1px -1px 0   #000000,
		 1px -1px 0   #000000,
		-1px  1px 0   #000000,
		 1px  1px 0   #000000;
}

.info__items {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 40px;
}

.info__item {
    max-width: 553px;
    width: calc(50% - 45px - 20px);
    border-radius: 5px;
    background-color: rgb(255, 255, 255 , 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 3px 58.32px 22.68px rgb(0 0 0 / 35%);
    backdrop-filter: blur(10px);
    background-position: 100% 1%;
    background-repeat: no-repeat;
    background-size: 23%;
}

.info__item_map {
    background-image: url('../images/icons/location-pin.png');
}

.info__item_phones {
    background-image: url('../images/icons/phone-call.png');
}

.info__content {
    padding: 55px 80px 55px 50px;
}

.info__title {
    font-family: 'GothamPro-Light' , sans-serif;
    font-weight: 100;
    font-size: 18px;
    margin: 10px 0;
}

.info__value {
    font-size: 24px;
    font-weight: bold;
    line-height: 1.25;
    margin: unset;
    display: block;
    color: rgb(0, 0, 0);
}

.info__value span{
    font-weight: 100;
    font-size: 18px;
}

.info__value p {
    line-height: inherit;
    margin: 0;
}

.contacts__social-media {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.contacts__social-media svg {
    width: 53px;
    height: auto;
}

.contacts__social-media svg path {
    fill: #ffffff;
}

.contacts__social-media svg:hover path {
    fill: var(--main-color);
}


.google-map {
    display: flex;
    align-items: center;
    width: 100%;
    height: 39.68vw;
    min-height: 300px;
    position: relative;
}

.google-map iframe{
    width: 100%;
    height: 100%;
}

.google-map img{
    position: absolute;
    left: 0;
    bottom: 0;
    max-height: 50%;
}

.instagram{
    margin: 80px 0;
}

.instagram__title{
    text-align: center;
    color: #000000;
}

.instagram__qr-code{
    text-align: center;
    max-height: 357px;
}

.instagram__qr-code img{
    max-height: 100%;
}


@media(max-width: 1700px) {
    .contacts{
        min-height: calc(100vh - 121px - 10px);
        padding-bottom: 70px;
    }

    .contacts__title {
        padding: 70px 0;
    }
}


@media(max-width: 1440px) {
    .info__value {
        font-size: 22px;
    }

    .contacts__social-media svg {
        width: 45px;
    }
}

@media(max-width: 1200px) {
    .info__content {
        padding: 45px 120px 45px 45px;
    }

    .info__value {
        font-size: 18px;
    }

    .info__title {
        font-size: 16px;
    }
}

@media(max-width: 990px) {
    .info__content {
        padding: 45px;
    }

    .contacts {
        height: calc(100vh - 119px - 10px);
    }
}

@media(max-width: 820px) {

    .info__items {
        justify-content: center;
    }

    .info__item {
        max-width: 440px;
        width: 100%;
        order: 1;
        justify-content: flex-start;
        background-size: 120px;
        margin-bottom: 20px;
    }

   

    .contacts__title {
        padding: 50px 0;
    }

    .contacts__social-media {
        flex-direction: row;
        width: 100%;
        max-width: 400px;
        order: 2;
        margin-top: 20px;
    }
}

@media(max-width: 580px) {

    .contacts {
        height: auto;
    }

    .contacts__title {
        padding: 30px 0 20px 0;
    }

    .contacts__social-media {
        margin: 10px 0 20px 0;
    }
}


@media(max-width: 360px) {

    .contacts__title {
        padding: 30px 0 20px 0;
    }

    .info__content {
        padding: 20px 30px;
    }

    .info__item {
        background-size: 100px;
    }

    .info__value {
        font-size: 16px;
    }

    .contacts__social-media svg {
        width: 35px;
    }
}
