.contacts{
	display: flex;
	gap: 50px;
	padding-top: 100px;
}
.contacts .info-col{
	background-color: rgba(73, 73, 73, 0.016);
	padding: 32px 24px;
    border-radius: 16px;
    width: calc(430px);
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.contacts .contact-item > span{
    font-family: 'Montserrat';
    font-size: 15px;
    font-weight: 500;
    line-height: 37px;
    color: #818181;
    text-transform: uppercase;
    display: block;
}
.contacts .contact-item p,
.contacts .contact-item a{
    font-family: 'Montserrat';
    font-size: 21px;
    line-height: 37px;
    font-weight: 500;
    color: #000;
    display: block;
}

.contacts .contact-item a,
.contacts .contact-item a span{
    transition: all 0.25s ease;
}

.contacts .contact-item a:hover{
    color: #B9FE65;
}

.contacts .phone-item a{
    display: block;
    font-family: 'Inter';
    font-style: italic;
    font-size: 30px;
    font-weight: 800;
    letter-spacing: 0.01em;
    color: #A1A1A1;
}

.contacts .phone-item a > span{
    color: #000;
}

.contacts .contacts-social{
    display: flex;
    align-items: center;
}
.contacts .contacts-social a{
    margin-left: 34px;
    transition: all 0.25s ease;
}
.contacts .contacts-social a:hover{
    transform: scale(1.1);
}
.contacts .contacts-social a:active{
    transform: none;
}
.contacts .contacts-social a:first-child{
    margin-right: 34px;
    margin-left: 0;
}

.contacts .map-col{
	width: calc(100% - 480px);
}
.contacts .map-col iframe{
	width: 100%;
	height: 100%;
}
.contacts .map-col{
	display: flex;
}
.contacts .map-col > div{
	height: 100%;
	width: 100%;
}
.contacts .comment{
	max-width:210px;
}



@media (max-width: 1240px){

    .contacts .contact-item > span{
        line-height: 20px;
    }
    .contacts .contacts-youtube img{
        max-width: 150px;
    }
    .contacts .contacts-telegram img,
    .contacts .contacts-whatsapp img{
        max-width: 40px;
    }
    .contacts .contacts-social a{
        margin-left: 25px;
    }
    .contacts .contacts-social a:first-child{
        margin-right: 20px;
    }
    .contacts .contacts-social a {
        margin-left: 15px;
    }
}

@media (max-width: 992px){
	.contacts{
		flex-wrap: wrap;
		padding-top: 60px;
	}
	.contacts .info-col,
	.contacts .map-col{
		width: 100%;
	}
	.contacts .map-col{
		min-height: 500px;
	}
}

@media (max-width: 768px){


    .contacts .contacts-social a{
        margin-left: 15px;
    }
    .contacts .contacts-social a:first-child{
        margin-right: 0;
    }
    .contacts .contacts-telegram img, .contacts .contacts-whatsapp img{
        max-width: 30px;
    }
    .contacts .contacts-youtube img{
        max-width: 120px;
    }
    .contacts .contact-item > span{
        font-size: 13px;
    }
    .contacts .contact-item p, .contacts .contact-item a{
        font-size: 19px;
    }

}

@media (max-width: 576px){

    .contacts .phone-item a{
        font-size: 24px;
    }
	.contacts{
		gap: 30px;
	}
	.contacts .info-col{
		background-color: transparent;
		padding: 0;
	}
    .contacts .contact-item > span{
        font-size: 14px;
        text-align: center;
    }
    .contacts .contact-item p, .contacts .contact-item a{
        display: block;
        width: 100%;
        text-align: center;
    }
    .contacts .contacts-social{
        justify-content: center;
    }
    .contacts .contact-item.address-item, .contacts .contact-item.mail-item{
        width: 100%;
    }
    .contacts .comment{
    	margin: auto;
    }
    .contacts .map-col{
    	max-height: 600px;
    }

}