@font-face {
    font-family: 'Roboto bold';
    src: url('fonts/Roboto-Bold.woff2') format('woff2'),
        url('fonts/Roboto-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto-Regular.woff2') format('woff2'),
        url('fonts/Roboto-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}


.flex {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
}
/* Всплывающее окно 
* при загрузке сайта            
*/
/* базовый контейнер, фон затемнения*/
#overlay {
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: 999;
    -webkit-animation: fade .6s;
    -moz-animation: fade .6s;
    animation: fade .6s;
    overflow: auto;
}
/* модальный блок */
.popup {
    top: 25%;
    left: 0;
    right: 0;       
    font-size: 14px;
    margin: auto;
    width: 85%;
    min-width: 320px;
    max-width: 600px;
    position: absolute;
    padding: 15px 20px;
    border: 1px solid #383838;
    background: #fefefe;
    z-index: 1000;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    border-radius: 4px;
    font: 14px/18px 'Tahoma', Arial, sans-serif;
    -webkit-box-shadow: 0 15px 20px rgba(0,0,0,.22),0 19px 60px rgba(0,0,0,.3);
    -moz-box-shadow: 0 15px 20px rgba(0,0,0,.22),0 19px 60px rgba(0,0,0,.3);
    -ms-box-shadow: 0 15px 20px rgba(0,0,0,.22),0 19px 60px rgba(0,0,0,.3);
    box-shadow: 0 15px 20px rgba(0,0,0,.22),0 19px 60px rgba(0,0,0,.3);
    -webkit-animation: fade .6s;
    -moz-animation: fade .6s;
    animation: fade .6s;
}


/* заголовки в модальном блоке */
.popup h2, .popup h3 {
    margin: 0 0 1rem 0;
    font-weight: 300;
    line-height: 1.3;
    color: #009032;
    text-shadow: 1px 2px 4px #ddd;
}
/* кнопка закрытия */
.close {
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    position: absolute;
    border: none;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    background-color: rgba(0, 131, 119, 0.9);
    -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    -moz-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    cursor: pointer;
    outline: none;
 
}
.close:before {
    color: rgba(255, 255, 255, 0.9);
    content: "X";
    font-family:  Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: normal;
    text-decoration: none;
    text-shadow: 0 -1px rgba(0, 0, 0, 0.9);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
/* кнопка закрытия при наведении */
.close:hover {
    background-color: rgba(252, 20, 0, 0.8);
}
/* изображения в модальном окне */
.popup img {
    width: 100%;
    height: auto;
    -webkit-box-shadow: 0 5px 11px 0 rgba(0,0,0,.18), 0 4px 15px 0 rgba(0,0,0,.15);
    box-shadow: 0 5px 11px 0 rgba(0,0,0,.18), 0 4px 15px 0 rgba(0,0,0,.15);
}
/* миниатюры изображений */
.pl-left,
.pl-right {
    width: 25%;
    height: auto;
}
/* миниатюры справа */
.pl-right {
    float: right;
    margin: 5px 0 5px 15px;
}
/* миниатюры слева */
.pl-left {
    float: left;
    margin: 5px 18px 5px 0;
}
/* анимация при появлении блоков с содержанием */
@-moz-keyframes fade {
    from { opacity: 0; }
    to { opacity: 1 }
}
@-webkit-keyframes fade {
    from { opacity: 0; }
    to { opacity: 1 } 
}
@keyframes fade {
    from { opacity: 0; }
    to { opacity: 1 }
}
.i-flex {
	display: -webkit-inline-flex;
	display: -moz-inline-flex;
	display: -ms-inline-flex;
	display: -o-inline-flex;
	display: inline-flex;
}

.f-wrap {
	-webkit-flex-wrap: wrap;
	    -ms-flex-wrap: wrap;
	        flex-wrap: wrap;
}

.sb {
	-webkit-justify-content: space-between;
	        justify-content: space-between;
}

.center {
	-webkit-justify-content: center;
	        justify-content: center;
}

.sa {
	-webkit-justify-content: space-around;
	        justify-content: space-around;
}

.ai-s {
	-webkit-align-items: flex-start;
	        align-items: flex-start;
}

.ai-c {
	-webkit-align-items: center;
	        align-items: center;
}

.ai-e {
	-webkit-align-items: flex-end;
	        align-items: flex-end;
}

.fd-col {
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
}


*{
	box-sizing: border-box;
}

html, body {
	 font-family: 'Roboto';
}

body {
	min-height: 100vh;
	background-image: url("img/main-bg.jpg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	color: #000;
}
.container {
	max-width: 1170px;
	margin: 0 auto;
	padding: 0 15px;
}
h1 {
	font-size: 45px;
	line-height: 1.3;
	font-weight: 700;
	text-align: center;
	margin: 30px 0 0 0;
	text-transform: uppercase;
}
h1 span {
	color: #253952;
	font-weight: 700;
}

h2 {
	color:#3886ab;
	font-weight: normal;
}

header {
	padding: 20px 0 0 0;
}
.header-logo-title {

}
.header-logo-title a {

}
.header-logo-title p {
	font-size: 17px;
	font-weight: 400;
	padding: 0 0 0 30px;
}
.header_contacts {
	text-align: left;
}
.header_contacts a {
	font-size: 28px;
	font-weight: bold;
	color: #000;
	background-image: url("img/svg/007-phone-symbol-of-an-auricular-inside-a-circle.svg");
	background-position: left center;
	background-repeat: no-repeat;
	background-size: 20px 20px;
	padding: 0 0 0 30px;
}
.header_contacts p {
	font-size: 14px;
	font-weight: 400;
	background-image: url("img/svg/006-facebook-placeholder-for-locate-places-on-maps.svg");
	background-position: left 3px center;
	background-repeat: no-repeat;
	background-size: 20px;
	padding: 5px 0 5px 30px;
}

.header_contacts t {
	font-size: 14px;
	font-weight: 400;
	background-image: url("img/svg/e8d78faa5adb41b851b7ca49df858218.png");
	background-position: left 3px center;
	background-repeat: no-repeat;
	background-size: 20px 23px;
	padding: 0px 0 5px 30px;
}


.why-us {
	max-width: 960px;
	margin: 60px auto 0;
}
.why-us .col-50 {
	width: 50%;
	text-align: center;
}
.why-us .col-50 .title {
	display: inline-block;
	font-size: 22px;
	line-height: 32px;
	color: #253952;
	font-weight: 900;
}

.why-us .col-50 .title.year:before {
	content: "";
	display: inline-block;
	width: 32px;
	height: 32px;
	background: url("img/svg/badge.svg") no-repeat center;
	-webkit-background-size: 100%;
	     -o-background-size: 100%;
	        background-size: 100%;
	margin: 0 8px -5px 0;
}

.why-us .col-50 .title.count:before {
	content: "";
	display: inline-block;
	width: 32px;
	height: 32px;
	background: url("img/svg/home.svg") no-repeat center;
	-webkit-background-size: 100%;
	     -o-background-size: 100%;
	        background-size: 100%;
	margin: 0 8px -5px 0;
}

.why-us .col-50 .title .text {
	font-weight: 400;
	font-size: 17px;
	line-height: 22px;
}

.main-btn {
	width: 100%;
	max-width: 610px;
	margin: 50px auto 50px;
	display: block;
	text-align: center;
	padding: 23px 15px;
	background: #FFDE00;
	border-radius: 4px;
	border-bottom: 3px solid #ffba00;
	position: relative;
}

main-btn {
overflow: hidden;
}
main-btn:after {
content: "";
margin-left: 60px;
width: 30px;
height: 300px;
background: #fff;
-webkit-animation-delay: 0.05s;
animation-delay: 0.05s;
position: absolute;
left: -40px;
top: -150px;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
-webkit-transition: all 0.1s;
transition: all 0.1s;
-webkit-animation-name: slideme;
animation-name: slideme;
-webkit-animation-duration: 3s;
animation-duration: 3s;
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
}
.main-btn:hover {
	background: #FFBA00;
}

.main-btn span {
	display: block;
	color: #000;
}
.main-btn .main-naim {
	display: inline-block;
	margin-bottom: 5px;
	font-weight: bold;
	text-transform: uppercase;
	font-size: 18px;
	/*line-height: 42px;*/
	background-image: url("img/svg/005-right-arrow.svg");
	background-position: right center;
	background-repeat: no-repeat;
	background-size: 12px;
	padding-right: 20px;
	position: relative;
}

.main-btn .main-naim:after {
	content: url("img/arrow.png");
	position: absolute;
	top: -135px;
    right: -140px;
}

.main-btn .sub-naim {
	font-weight: 400;

	font-size: 15px;
	/*line-height: 42px;*/
}

.our-works {
	padding: 20px 0 90px;
}

.our-works .title {
	text-align: center;
	overflow: hidden;
	margin-bottom: 30px;
}

.our-works .title span {
	display: inline-block;
	position: relative;
	font-size: 24px;
	font-weight: normal;
	padding: 0 25px;
	color:#000;
	font-family: 'Roboto bold';
	text-transform: uppercase;
}
.our-works p {
	font-size: 17px;
	padding: 0 0 0 30px;
	text-align: center;
}

.our-works .title span:before {
	left: 100%;
}

.our-works .title span:after {
	right: 100%;
}

.our-works .slider-container {
	padding: 0 65px;
}

.our-works .slick-slide {
	padding: 0 5px;
}

.our-works .slick-slide img {
	width: 100%;
	-webkit-transition: all 0.2s linear; -moz-transition: all 0.2s linear; -o-transition: all 0.2s linear; -ms-transition: all 0.2s linear; transition: all 0.2s linear;
}

.our-works .slick-slide img:hover {
	opacity: 0.9;
	-webkit-filter: brightness(110%); filter: brightness(110%);-webkit-transition: all 0.2s linear;-moz-transition: all 0.2s linear;-o-transition: all 0.2s linear;-ms-transition: all 0.2s linear;transition: all 0.2s linear;
}

.our-works .slick-arrow {
	display: block;
	width: 40px;
	height: 40px;
	background: none;
	border: 0;
	cursor: pointer;
	position: absolute;
	top: calc(50% - 20px);
	text-indent: -9999px;
}

.our-works .slick-prev {
	background: url("img/svg/002-back.svg") no-repeat center;
	-webkit-background-size: 100% 100%;
	     -o-background-size: 100% 100%;
	        background-size: 100% 100%;
	left: -65px;
}

.our-works .slick-next {
	background: url("img/svg/001-next.svg") no-repeat center;
	-webkit-background-size: 100% 100%;
	     -o-background-size: 100% 100%;
	        background-size: 100% 100%;
	right: -65px;
}

body.fixed {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.main-btn{
overflow: hidden;
position: relative;
}
.main-btn:after {
content: "";
margin-left: 60px;
width: 30px;
height: 300px;
background: #fff;
-webkit-animation-delay: 0.05s;
animation-delay: 0.05s;
position: absolute;
left: -40px;
top: -150px;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
-webkit-transition: all 0.1s;
transition: all 0.1s;
-webkit-animation-name: slideme;
animation-name: slideme;
-webkit-animation-duration: 3s;
animation-duration: 3s;
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
}
@-webkit-keyframes slideme { 0% { left: -30px; margin-left: 0px; }
  30% { left: 110%; margin-left: 80px; }
  100% { left: 110%; margin-left: 80px; } }

@keyframes slideme { 0% { left: -30px; margin-left: 0px; }
  30% { left: 110%; margin-left: 80px; }
  100% { left: 110%; margin-left: 80px; } }
.social a {
    display: flow-root;
    width: 46px;
    height: 46px;
    margin: 0 10px 10px 0;
    padding: 6px;
    text-align: center;
    background: #fff;
    color: #000;
    border: 1px solid #ccc;
    border-radius: 46px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15), inset 0 0 50px rgba(0,0,0,0.1);
}
.social__button {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.github a:hover{background:#191919;color:#fff;}
.youtube a:hover{background:#c4302b;color:#fff;}
.google-pluse a:hover{background:#DD4B39;color:#fff;}
.twitter a:hover{background:#00acee;color:#fff;}
.instagram a:hover{background:#3f729b;color:#fff;}
.facebook a:hover{background:#3b5998;color:#fff;}
.skype a:hover{background:#00aff0;color:#fff;}
.vk a:hover{background:#5d84ae;color:#fff;}
.odnoklassniki a:hover{background:#f93;color:#fff;}
.pinterest a:hover{background:#c8232c;color:#fff;}
.linkedin a:hover{background:#0e76a8;color:#fff;}
.telegram a:hover{background:#249bd7;color:#fff;}
.tumblr a:hover{background:#34526f;color:#fff;}
.windows a:hover{background:#125acd;color:#fff;}
.whatsapp a:hover{background:#50b154;color:#fff;}
.weibo a:hover{background:#d52b2b;color:#fff;}
.dropbox a:hover{background:#1087dd;color:#fff;}