* {
	box-sizing: border-box;
	font-family: 'Play', Arial, Tahoma, sans-serif;
	color: #444444;
}
body {
	padding: 0;
	margin: 0;
	background-color: #FCFCFC;
}
p, span, div, h3, h4, h5, table, ul , li {
	font-weight: 400;
}
p , li{
	line-height: 1.6;
}
h1 , h2 {
	font-weight: 700;
}
img {
	max-width: 100%;
}
.container {
	max-width: 1200px;
	padding-left: 15px;
	padding-right: 15px;
	margin: 0 auto;
}
.btn {
	background-color: #d83f67;
	border: none;
	border-radius: 10px;
	padding: 10px;
	font-size: 20px; 
	color: #fff;
}
.btn:hover{
	background-color: #cc0035;
	cursor: pointer;
}

.header{
	padding: 30px 0;
	background-color: #fff;
}
.header .container {
	max-width: 1140px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
}
.logo-img {
	width: 430px;
}
.header__contatcs {
	text-align: right;
}
.header .phone {
	color: #d83f67;
	font-size: 30px;
	font-weight: 700;
	text-decoration: none;
}
.header .adress {
	color: #000;
	font-size: 25px;
	display: block;
	margin: 7px 0 10px;
}


.section-title {
	padding-top: 30px;
}
.section-text{
	margin: 30px 0;
}

.table-section .container {
	display: flex;
	padding-left: 5px;
	padding-right: 5px;
	flex-wrap: wrap;
	justify-content: space-between;
}

table{
	width:32%;
	min-width: 300px;
	margin-bottom:15px;
	border-collapse:collapse;
	border-spacing:0;
	-webkit-border-radius:5px;
	border-radius:5px;
	font-size: 15px;
	line-height: 23px;
}
table th,table td{
	padding:10px;
	text-align:center;
	border-width:1px;
	border-style:solid;
	vertical-align:middle;
	border-color: rgba(0,0,0,.08);
}
table th{
	font-weight:700;
	background:url(../img/bg_panel.png) repeat-x left top
}
table th.clear{
	border:0;background:none
}
table tr:first-child td{
	background:url(../img/box_shadow.png) repeat-x left top
}
table tr:nth-child(2n) td{
	background:rgba(0,0,0,0.04)
}



.advantages-section .section-subtitle{
	color: #000;
	font-weight: 700;
}
.advantages-section .wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
}
.advantages-section .wrap__text {
	width: 65%;
	padding-right: 15px;
	min-width: 400px;
}
.advantages-section .wrap__img {
	width: 35%;
	min-width: 300px;
}

.sotrudnichestvo-section .wrap__img{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.sotrudnichestvo-section .wrap__img img {
	width: 31%;
	min-width: 250px;
}

.map-title {
	text-align: center;
	padding: 35px 0;
	margin-bottom: 15px;
	font-size: 35px;
}
.footer {
	background-color: #2c1d2e;
	color: #fff;
	padding: 35px 0;
}
.footer-title {
	text-align: center;
	margin: 0;
	padding: 0;
	color: #fff;
}

.modal{
    position: fixed;
    left: 0;
    right: 0;
    z-index: 9999;
    display: none;
}

.modal-background{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 0.7;
    z-index: 9998;
    display: none;
}

.modal--show{
    display: block;
    animation: fadeInDown 1s;
}

.modal-background--show{
    display: block;
}

.modal-background:hover{
    cursor: pointer;
}

.modal__title{
    font-size: 22px;
    text-transform: uppercase;
    font-weight: 600;
    margin: 55px 0 10px;
}

.modal__description{
    font-size: 15px;
    font-weight: 300;
    margin-top: 0;
    margin-bottom: 35px;
}

.main-modal {
    width: 600px;
    top: 10%;
    margin: 0 auto;
    box-sizing: border-box;
    background-color: white;
    padding: 0 20px;
    border-radius: 5px;
    text-align: center;
}
.modal__input , .modal__button{
    width: 80%;
    height: 50px;
    display: block;
    margin: 15px auto;
    font-size: 14px;  
    border-radius: 10px;  
}

.modal__input{
    border: 1px solid #ddd;
    color: #444;
    -webkit-transition: all .2s linear;
    -webkit-transition-property: border,background,color,box-shadow,padding;
    transition: all .2s linear;
    transition-property: all;
    transition-property: border,background,color,box-shadow,padding;
    padding-left: 10px;
}
.modal__input:focus {
	border-color: #d83f67
}

.modal__footer-text{
    font-size: 11px;
    line-height: 14px;
    color: #b6b6b6;
}

.modal__close{
    position: absolute;
    right: 15px;
    top: 15px;
    width: 25px;
    height: 25px;
}

.modal__close::after, .modal__close::before {
    width: 23px;
    height: 2px;
    position: absolute;
    content: " ";
    background-color: #333;
    animation: all .7s ease-in-out;
    left: 0;
    right: 0;
}

.modal__close::before {
    border-radius: 3px;
    transform: rotate(-46deg);
    margin-top: 6px;
}

.modal__close::after {
    border-radius: 1px;
    transform: rotate(-135deg);
    margin-top: 6px;
}

.modal__close:hover{
    cursor: pointer;
}

.modal__separate-line{
    height: 1px;
    width: 100%;
    background-color: #b6b6b6;
    border: none;
    margin: 20px 0;
}

@media screen and (max-width: 920px) {
	.table-section .container {
		justify-content: space-around;
	}
	table {
		width: 45%;
	}
}
@media screen and (max-width: 887px) {
	.advantages-section .wrap__text {
		width: 100%;
		padding-right: 0;
		min-width: auto;
	}
	.advantages-section .wrap__img {
		width: 100%;
		max-width: 420px;
		min-width: auto;
		margin: 0 auto;
	}
}
@media screen and (max-width: 864px) {
	.header .container {
		justify-content: center;
	}
	.header__contatcs {
		text-align: center;
	}
	.logo-img {
		width: 100%;
		max-width: 430px;
	}
}
@media screen and (max-width: 785px) {
	.sotrudnichestvo-section .wrap__img {
		justify-content: center;
	}
	.sotrudnichestvo-section .wrap__img img {
		width: 100%;
		max-width: 400px;
		margin-bottom: 15px;
	}
}

@media screen and (max-width: 623px) {
	.table-section .container {
		justify-content: center;
	}
	table {
		width: 100%;
	}
    .main-modal {
        width: 95%;
        max-width: 600px;
    }
}
@media (max-height: 480px) {
    .main-modal{
        top: 10%;
    }
    .main-modal__title {
        margin-top: 25px;
    }
}
@media (max-height: 400px) {
    .main-modal{
        top: 5%;
        max-height: 95vh;
        padding-bottom: 0;
    }    
    .main-modal__title {
        margin-top: 25px;
    }
    .main-modal__description{
        margin-bottom: 15px;
    }
    .main-modal__separate-line{
        margin: 10px 0;
    }
}
