/* BEGIN CONTACTS */
.container{
    width: 1200px;
    margin: 0 auto;   
}

.contacts{
    width: 100%;
    display: flex;
    flex-direction: column;
    background:url("../images/contacts-box-bg1.jpg") center no-repeat;
    background-size: cover;
}
.contacts__box{
   
    width: 100%;
}
.contacts__box{
    padding: 100px 0;
}
.contact__box-wrapper{
    /* width: 45%; */
}
.contacts__list{
    display: flex;
    margin-left: 20px;
  
}
.contacts__item{
    margin-bottom: 40px;
    width: 25%;
}
.contacts__link{
    display: flex;
    align-items: center;
    /* width: 80%; */
}
.contacts__wrapper{
    margin-left: 10px;
}
.contacts__title{
    font-size: 16px;
    font-family: "OpenSans";
    color: rgb(255, 255, 255);
    font-weight: bold;
    line-height: 2.333;
}
.contacts__text{
    font-size: 16px;
    font-family: "OpenSans";
    color: rgb(255, 255, 255);
    line-height: 1.556;
}
.contacts-map{
    width: 100%;
    height: 650px;
    display: flex;
}
.contacts-map iframe{
    width: 100%;
    height: 100%;
    border: none;
}
.contacts__social-networks{
    margin: 0;
    display: flex;
    margin: 30px 0 30px 20px;
}
.contacts-social-networks__item{
    margin: 5px;
}
.contacts-social-networks__link{
    border-radius: 50%;
    border: 2px solid #ffffff;
    height: 100%;
    padding: 8px;
}
.contacts-social-networks__link i{
    width: 25px;
    height: 35px;
    color: #ffffff;
    text-align: center;
}
.form__contacts{
    display: flex;
    flex-wrap: wrap;
    width: 80%;
	margin: 0 auto;
}
input[type="text"], input[type="email"], input[type="tel"] {
    width: 26.2%;
    height: 50px;
    color: #FFF;
    font-size: 14px;
    background-color: transparent;
    border: 2px solid #f2b532;
    padding: 10px;
    margin: 20px;
	border-radius: 10px;
}

input[placeholder="Your Name"] {
    font-size: 15px;
    color: #f2b532;
    line-height: 1.2;
    text-align: left;
}
input[type="message"]{
    width: 87%;
    height: 100px;
    color: #FFF;
    font-size: 14px;
    background-color: transparent;
    border: 2px solid #f2b532;
    padding: 10px;
    margin: 20px;
	border-radius: 10px;
}
input[type="text"]::-webkit-input-placeholder { 
    color: #f2b532; 
}
input[type="email"]::-webkit-input-placeholder { 
    color: #f2b532; 
}
input[type="tel"]::-webkit-input-placeholder { 
    color: #f2b532; 
}
input[type="message"]::-webkit-input-placeholder { 
    color: #f2b532; 
}
:active, :hover, :focus {
    outline: 0;
    outline-offset: 0;
}
input[type="submit"]{
    width: 151px;
    height: 47px;
    border-radius: 10px;
    background: #f4b835;
    cursor: pointer;
    transition: 0.3s;
    margin: 20px;
    border: #f4b835 1px solid;
}
input[type="submit"]:hover{
    background: #ffffff50;
    border: 2px solid #f2b532;
}
input[value="Отправить"]{
    font-size: 18px;
    font-family: "OpenSans";
    color: rgb(36, 36, 36);
    font-weight: bold;
    line-height: 2.333;
    transition: 0.3s;
}
:active, :hover, :focus {
    outline: 0;
    outline-offset: 0;
}
/* END CONTACTS */
@media screen and (max-width: 960px){
    .container{
        width: 90%;
    }
    .contacts__list{
      display: inline-block;
      
    }
    .contacts__item{

        width: 100%!important;
    }
    .contact__box-wrapper{
        width: 40%;
    }
    .form__contacts{
        width: 60%;
    }
}
@media screen and (max-width: 760px){
    .contacts__box {
        display: flex;
        flex-direction: column;
    }
    .contact__box-wrapper {
        width: 100%;
    }
    .form__contacts{
        width: 100%;
    }
    input[type="text"], input[type="email"], input[type="tel"]{
        width: 35%;
    }
    input[type="message"] {
        width: 84%;
    }
    input[type="submit"]{
        width: 120px;
        height: 47px;
    }
    input[value="Отправить"]{
        font-size: 15px;
    }
}
@media screen and (max-width: 320px){
    .contacts__list {
        margin-left: 10px;
    }
    .contacts__social-networks {
    
        margin: 10px 0 20px 10px;
    }
}
