@import 'animate.css';

@font-face {
  font-family: 'Circe';
  font-weight: normal;
  src: url('../fonts/Circe-Regular.eot');
  src: url('../fonts/Circe-Regular.eot?#iefix') format('embedded-opentype'),
          url('../fonts/Circe-Regular.woff') format('woff'),
          url('../fonts/Circe-Regular.ttf')  format('truetype'),
          url('../fonts/Circe-Regular.svg#Circe-Regular') format('svg');
}

@font-face {
  font-family: 'Circe';
  font-weight: 300;
  src: url('../fonts/Circe-Light.eot');
  src: url('../fonts/Circe-Light.eot?#iefix') format('embedded-opentype'),
          url('../fonts/Circe-Light.woff') format('woff'),
          url('../fonts/Circe-Light.ttf')  format('truetype'),
          url('../fonts/Circe-Light.svg#Circe-Light') format('svg');
}

@font-face {
  font-family: 'Circe';
  font-weight: 600;
  src: url('../fonts/Circe-Bold.eot');
  src: url('../fonts/Circe-Bold.eot?#iefix') format('embedded-opentype'),
          url('../fonts/Circe-Bold.woff') format('woff'),
          url('../fonts/Circe-Bold.ttf')  format('truetype'),
          url('../fonts/Circe-Bold.svg#Circe-Bold') format('svg');
}

@font-face {
  font-family: 'Circe';
  font-weight: 800;
  src: url('../fonts/Circe-ExtraBold.eot');
  src: url('../fonts/Circe-ExtraBold.eot?#iefix') format('embedded-opentype'),
          url('../fonts/Circe-ExtraBold.woff') format('woff'),
          url('../fonts/Circe-ExtraBold.ttf')  format('truetype'),
          url('../fonts/Circe-ExtraBold.svg#Circe-ExtraBold') format('svg');
}

html {
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
    color: #000;
    font-size: 1em;
    line-height: 1.4;
}
::-moz-selection {
    background: #8abbef;
    text-shadow: none;
}
::selection {
    background: #8abbef;
    text-shadow: none;
}
:focus {
  outline-color: transparent;
  outline-style: none;
}
hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}
audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}
fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}
textarea {
    resize: vertical;
}

body {
    box-sizing: border-box;
    padding: 0;
    margin: 0;    
    font-family: 'Circe', sans-serif;
    font-size: 16px;
    font-weight: normal;
    line-height: 1.4rem;
    position: relative;
}

img {
  max-width: 100%;
}

h1 {

}
h2 {

}
h3 {
	
}
h4 {

}

.layout {
  display: flex;
  position: relative;
  min-height: 100vh;
  flex-direction: column;
}
.container {
    width: 90%;
    margin: 0 5%;
}

.fluid .row {
	margin-left: 0;
	margin-right: 0;
}
.fluid .row [class*="col-"] {
	padding: 0;
}



.btn {
	padding: 15px 50px;
	border-radius: 5px;
	text-decoration: none;
	outline: none;
	text-align: center;
	font-size: 18px;
	font-weight: 600;

    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}
.btn.btn-red {
	background: #aa0000;
	color: #fff;
}
.btn.btn-red:hover {
	background: #000;
}


.owl-dots {
    position: absolute;
    bottom: 40px;
    width: 100%;
    text-align: center;
}
.owl-dots .owl-dot {
	display: inline-block;
	vertical-align: middle;
	margin: 0 10px;
}
.owl-dots .owl-dot span {
	display: block;
	width: 12px;
	height: 12px;
	border-radius: 100%;
	background: #aa0000;
	border: 4px solid transparent;
}
.owl-dots .owl-dot.active {
	
}
.owl-dots .owl-dot.active span {
	padding: 5px;
	background: #fff;
	border-color: #aa0000;
}


/* PAGE STYLES */

header {
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 10;
	background: rgba(0,0,0,0.8);
	-webkit-box-shadow: 0px 2px 15px 0px rgba(0,0,0,0.15);
	-moz-box-shadow: 0px 2px 15px 0px rgba(0,0,0,0.15);
	box-shadow: 0px 2px 15px 0px rgba(0,0,0,0.15s);
}
header.fix .h_logo {
	padding: 5px 0;
}
header.fix .h_logo img {
	max-width: 50%;
}

header .h_logo {
	display: block;
	padding: 10px 0;
	max-width: 150px;
	background: #aa0000;
	text-align: center;

    -webkit-transition: all 0.2s ease-out 0s;
    -moz-transition: all 0.2s ease-out 0s;
    -o-transition: all 0.2s ease-out 0s;
    transition: all 0.2s ease-out 0s;
}
header .h_logo img {
    display: block;
    margin: 0 auto;
    position: relative;
    left: -1px;
	-webkit-transition: all 0.15s ease-out 0s;
    -moz-transition: all 0.15s ease-out 0s;
    -o-transition: all 0.15s ease-out 0s;
    transition: all 0.15s ease-out 0s;
}
header nav {
    display: block;
    position: relative;
    height: 100%;
    padding-left: 40px;
}
header nav ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
}
header nav ul > li {
	display: inline-block;
	vertical-align: middle;
	margin: 0 20px;
}
header nav ul > li:first-child {
	margin-left: 0;
}
header nav ul > li:last-child {
	margin-right: 0;
}
header nav ul > li > a {
    display: block;
    padding: 20px 0;
	text-transform: uppercase;
	text-decoration: none;
	font-weight: 600;
	color: #fff;
    -webkit-transition: all 0.2s ease-out 0s;
    -moz-transition: all 0.2s ease-out 0s;
    -o-transition: all 0.2s ease-out 0s;
    transition: all 0.2s ease-out 0s;
}
header nav ul > li.active > a,
header nav ul > li:hover > a {
	color: #e03737;
}
header .mid {
	position: relative;
	height: 100%;
}
header .centering-xy {
	width: 100%;
}
header .h_phone {
	display: block;
	font-size: 20px;
	line-height: 1.2;
	font-weight: 600;
	color: #fff;
	text-transform: uppercase;
	text-decoration: none;
}
header .h_callme {
	display: block;
	color: #e03737;
}
header .h_social {
	list-style-type: none;
	padding: 0;
	margin: 0;
}
header .h_social > li {
	display: inline-block;
	vertical-align: middle;
	margin: 0 10px;
	opacity: .75;
}
header .h_social > li:hover {
	opacity: 1;
}
header .h_social > li:first-child {
	margin-left: 0;
}
header .h_social > li:last-child {
	margin-right: 0;
}
header .h_social > li > a {
	display: block;
	width: 40px;
	height: 40px;
	border: 1px solid #b53636;
	border-radius: 100%;
}
header .h_social > li > a > img {
	display: block;
	margin: 0 auto;
	padding: 8px 0;
}

main {
	display: block;
	    margin-top: 109px;
}

#main-slider .main-caro {
	
}
#main-slider .main-caro .item {
	background: #f2f2f2;
	height: 600px;
    background-size: cover !important;
    background-position: center bottom !important;
}
#main-slider .main-caro .item .block {
	display: table;
	border: 1px solid #aa0000;
	background: #fff;
	border-radius: 5px;
	padding: 30px 40px;
    min-height: 244px;
}
#main-slider .main-caro .item .block.block1 {
	max-width: 465px;
}
#main-slider .main-caro .item .block.block2 {
    max-width: 372px;
}
#main-slider .main-caro .item .block.block3 {
    max-width: 335px;
}
#main-slider .main-caro .item .block div {
	display: table-cell;
	vertical-align: middle;
}
#main-slider .main-caro .item.slide1 {
	background: url('../images/bg1.jpg') no-repeat;
}
#main-slider .main-caro .item.slide2 {
	background: url('../images/bg2.jpg') no-repeat;
}
#main-slider .main-caro .item.slide3 {
	background: url('../images/bg3.jpg') no-repeat;
}
#main-slider .main-caro .item h2 {
    font-size: 27px;
    line-height: 34px;
	font-weight: 800;
	margin-top: 0;
	margin-bottom: 20px;
	text-transform: uppercase;
}
#main-slider .main-caro .item p {
	font-size: 20px;
	line-height: 24px;
}
#main-slider .main-caro .item .btn {
	display: inline-block;
	margin-top: 10px;
}


#main-slider .main-caro .item .slide-img-wrap {
	position: relative;
	height: 600px;
}
#main-slider .main-caro .item img.slide-img {
	position: absolute;
	width: auto;
	left: 70px;
	bottom: 0;
}

#main-slider .main-caro .call-btn {
    display: block;
    position: absolute;
    border-radius: 100%;
    background: #000;
    max-width: 180px;
    width: 180px;
    height: 180px;
    bottom: 145px;
    left: calc(50% - 90px);
    margin: 0 auto;
    text-align: center;

    -webkit-transition: all 0.2s ease-out 0s;
    -moz-transition: all 0.2s ease-out 0s;
    -o-transition: all 0.2s ease-out 0s;
    transition: all 0.2s ease-out 0s;

	-webkit-box-shadow: 0px 0px 45px 0px rgba(255,255,255,0.5);
	-moz-box-shadow: 0px 0px 45px 0px rgba(255,255,255,0.5);
	box-shadow: 0px 0px 45px 0px rgba(255,255,255,0.5);
}
#main-slider .main-caro .call-btn:hover {
	-webkit-box-shadow: 0px 0px 45px 0px rgba(255,255,255,0.85);
	-moz-box-shadow: 0px 0px 45px 0px rgba(255,255,255,0.85);
	box-shadow: 0px 0px 45px 0px rgba(255,255,255,0.8c5);
}
#main-slider .main-caro .call-btn img {
    display: block;
    position: relative;
    top: 20px;
    max-width: 140px;
    margin: 0 auto;
}

#about {

}
#about .about-text {
	padding: 60px 10px;
	max-width: 900px;
	margin: 0 auto;
}
#about .about-text p {
	font-size: 20px;
	line-height: 26px;
	margin: 0;
}
#about .about-text p:not(:last-child) {
	margin-bottom: 40px;
}
#about .about-text p > strong {
	color: #aa0000;
	font-weight: 600;
}
#about .about-text p > a {
	color: #aa0000;
}
#about .about-text p.contacts-text {
	line-height: 40px;
}
#about .about-text p.contacts-text > strong {
	display: inline-block;
	padding-right: 10px;
	padding-bottom: 5px;
	min-width: 250px;
}
#about .about-text p.contacts-text img {
    margin-right: 10px;
}


.infografic {
	background: #b33536;
	color: #fff;
	text-align: center;
	padding: 10px 0;
}
.infografic img {
	display: inline-block;
	margin-bottom: 20px;
}
.infografic p {
	margin: 0;
}



#uslugi {
	background: #f2f2f2;
	padding: 55px 0 15px;
}
#uslugi h2 {
	display: block;
	text-align: center;
	text-transform: uppercase;
	font-size: 27px;
	font-weight: 800;
	margin-top: 0;
}
#uslugi .uslugi-wrap {
	margin-top: 20px;
}
#uslugi .item {
	border: 1px solid #aa0000;
	border-radius: 5px;
	background: #fff;
    padding: 15px 10px 5px 10px;
    height: 350px;
	text-align: center;
	margin-bottom: 30px;

	-webkit-box-shadow: 0px 0px 23px 0px rgba(0,0,0,0.1);
	-moz-box-shadow: 0px 0px 23px 0px rgba(0,0,0,0.1);
	box-shadow: 0px 0px 23px 0px rgba(0,0,0,0.1);

    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}
#uslugi .item:hover {
	-webkit-box-shadow: 0px 0px 43px 0px rgba(0,0,0,0.2);
	-moz-box-shadow: 0px 0px 43px 0px rgba(0,0,0,0.2);
	box-shadow: 0px 0px 43px 0px rgba(0,0,0,0.2);	
}
#uslugi .item img {
	display: block;
	margin: 0 auto 30px;
	max-width: 100px;
}
#uslugi .item h3 {
	display: block;
	font-size: 26px;
	line-height: 30px;
	font-weight: 600;
	margin: 0 0 10px;
	min-height: 60px;
}
#uslugi .item ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}
#uslugi .item ul > li {
	display: block;
	margin: 5px 0;
}
#uslugi .item ul > li > a {
	color: #aa0000;
	font-size: 17px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}
#uslugi .item ul > li > a:hover {
	color: #000;
}



#info {
	padding: 55px 0;
}
#info .text-box {
	border: 1px solid #aa0000; 
	border-radius: 5px;
	padding: 40px;
}
#info .text-box h3 {
	font-size: 27px;
	line-height: 32px;
	font-weight: 800;
	margin-top: 0;
	margin-bottom: 25px;
	text-transform: uppercase;
}
#info .text-box p {
	margin-top: 0;
	margin-bottom: 15px;
	font-size: 20px;
	line-height: 26px;
	font-weight: 300;
}
#info .text-box p:last-child {
	margin-bottom: 0;
}
#info .text-box p > strong {
	color: #aa0000;
}
#info .p-wrap {
	position: relative;
	height: 100%;
}
#info .p-wrap img {
    position: relative;
    max-height: 482px;
}


#preim {
	padding: 55px 0;
	background: #f2f2f2;
}
#preim h2 {
	display: block;
	text-align: center;
	text-transform: uppercase;
	font-size: 27px;
	line-height: 40px;
	font-weight: 800;
	margin-top: 0;	
}
#preim .preim-wrap {
	margin-top: 40px;
}
#preim .preim-wrap .item {
	height: 280px;
	overflow: hidden;
	padding: 15px 40px;
	margin-bottom: 30px;
	border-radius: 5px;
	border: 1px solid #000;
    -webkit-transition: all 0.2s ease-out 0s;
    -moz-transition: all 0.2s ease-out 0s;
    -o-transition: all 0.2s ease-out 0s;
    transition: all 0.2s ease-out 0s;
}
#preim .preim-wrap .item .img {
	display: block;
	margin: 0 auto 40px;
	background: #aa0000;
	width: 100px;
	height: 100px;
	border-radius: 100%;
	text-align: center;	
}
#preim .preim-wrap .item .img img {
    position: relative;
    top: 19px;
}
#preim .preim-wrap .item h4 {
	display: block;
	text-align: center;
	font-size: 22px;
	line-height: 30px;
	font-weight: 600;
	margin-top: 15px;
	margin-bottom: 20px;
	height: 60px;
}
#preim .preim-wrap .item .back {
	display: none;
	text-align: center;
}
#preim .preim-wrap .item .back p {
	font-size: 20px;
	line-height: 25px;
	font-weight: 300;
}

#preim .preim-wrap .item:hover {
	background: #fff;
	border-color: #aa0000;
}
#preim .preim-wrap .item:hover .img {
	display: none;
}
#preim .preim-wrap .item:hover .back {
	display: block;
}
#preim .btn {
	display: inline-block;
	margin: 0 auto;
}


#workscheme {
	padding: 55px 0 10px;
}
#workscheme h2 {
	display: block;
	text-align: center;
	text-transform: uppercase;
	font-size: 27px;
	font-weight: 800;
	margin-top: 0;	
}
#workscheme .workscheme-wrap {
	margin-top: 40px;
}
#workscheme .workscheme-wrap .item {
	position: relative;
	border: 1px solid #aa0000;
	border-radius: 5px;
	padding: 40px 20px;
	text-align: center;
	height: 350px;
	margin: 0 10px 60px;

    -webkit-transition: all 0.2s ease-out 0s;
    -moz-transition: all 0.2s ease-out 0s;
    -o-transition: all 0.2s ease-out 0s;
    transition: all 0.2s ease-out 0s;
}
#workscheme .workscheme-wrap .col-md-3:not(:last-child) .item:after {
	display: block;
	content: '';
	position: absolute;
    right: -60px;
    top: 150px;
	width: 64px;
	height: 64px;
	background-image: url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTkuMS4wLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iQ2FwYV8xIiB4PSIwcHgiIHk9IjBweCIgdmlld0JveD0iMCAwIDQ3Ny4xNzUgNDc3LjE3NSIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgNDc3LjE3NSA0NzcuMTc1OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgd2lkdGg9IjY0cHgiIGhlaWdodD0iNjRweCI+CjxnPgoJPHBhdGggZD0iTTM2MC43MzEsMjI5LjA3NWwtMjI1LjEtMjI1LjFjLTUuMy01LjMtMTMuOC01LjMtMTkuMSwwcy01LjMsMTMuOCwwLDE5LjFsMjE1LjUsMjE1LjVsLTIxNS41LDIxNS41ICAgYy01LjMsNS4zLTUuMywxMy44LDAsMTkuMWMyLjYsMi42LDYuMSw0LDkuNSw0YzMuNCwwLDYuOS0xLjMsOS41LTRsMjI1LjEtMjI1LjFDMzY1LjkzMSwyNDIuODc1LDM2NS45MzEsMjM0LjI3NSwzNjAuNzMxLDIyOS4wNzV6ICAgIiBmaWxsPSIjYWEwMDAwIi8+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPC9zdmc+Cg==);
	background-repeat: no-repeat;
	background-position: center;
}
#workscheme .workscheme-wrap .item img {
	width: 69px;
	height: 69px;
	margin-bottom: 30px;
}
#workscheme .workscheme-wrap .item span {
	font-size: 120px;
	line-height: 1;
	font-weight: 800;
	opacity: .1;
	z-index: 1;
    position: absolute;
    left: 20px;
    top: -60px;
}

#workscheme .workscheme-wrap .item p {
	position: relative;
	font-size: 20px;
	line-height: 25px;
	font-weight: 300;
	margin: 0;
	z-index: 2;
}
#workscheme .workscheme-wrap .item:hover {
	background: #fffbfb;
	-webkit-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.2);
	-moz-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.2);
	box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.2);
}


.formA {
	color: #fff;
	padding: 60px 0;
	background-image: url('../images/bg0.jpg');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}
.formA h2 {
	display: block;
	font-size: 28px;
	font-weight: 800;
	line-height: 34px;
	margin: 0 0 40px;
	text-transform: uppercase;
}
.formA p {
	display: block;
	font-size: 20px;
	line-height: 25px;
	margin-bottom: 40px;
}
.formA p:last-child {
	margin-bottom: 0;
}
.formA a.fphone {
	display: inline-block;
	font-size: 30px;
	font-weight: 800;
	margin-top: 15px;
	color: #fff;
	text-decoration: none;
}
.formA form {
	padding-left: 70px;
}
.formA .form-group {
	margin-bottom: 25px;
}
.formA .form-group:last-child {
	margin-bottom: 0;
}
.formA .form-group input {
	display: block;
	font-size: 20px;
	color: #000;
	width: calc(100% - 40px);
	box-shadow: none;
	border: none;
	padding: 15px 20px;
	border-radius: 5px;
}
.formA .form-group button {
	display: block;
	border: 2px solid #fff;
	font-size: 28px;
	font-weight: 600;
	padding: 20px;
	width: 100%;
	text-align: center;
	background: transparent;

    -webkit-transition: all 0.2s ease-out 0s;
    -moz-transition: all 0.2s ease-out 0s;
    -o-transition: all 0.2s ease-out 0s;
    transition: all 0.2s ease-out 0s;
}
.formA .form-group button:hover {
	background: #fff;
	color: #aa0000;
}


#seo {
	padding: 55px 0;
}
#seo ul > li {
    font-size: 18px;
    line-height: 24px;
}
#seo ul > li:not(:last-child) {
    margin-bottom: 5px;
}
#seo h2 {
	display: block;
	text-align: center;
	font-size: 27px;
	font-weight: 800;
	line-height: 34px;
	margin: 0 0 30px;
	text-transform: uppercase;
}
#seo p {
	display: block;
	font-size: 20px;
	line-height: 26px;
}
#seo p:not(:last-child) {
    margin-bottom: 0px;
    margin-top: 8px;
}
#seo .show-more {
	display: block;
	text-align: center;
	font-weight: 600;
	color: #aa0000;
	font-size: 18px;
	margin-top: 30px;
}
#seo .more {
	display: none;
	margin-top: 10px;
}
#seo .more p {
	margin: 0;
}
.clients-caro {
	margin: 15px 0 30px;
	text-align: center;
}
.clients-caro .owl-dots {
	display: block;
	position: relative;
	bottom: inherit;
	margin-top: 20px;
}
.clients-caro .item {
	text-align: center;
}
.clients-caro .item img {
	display: block;
	margin: 0 auto;
	max-width: 80%;
	filter: grayscale(100%);
	opacity: .8;
    -webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
}
.clients-caro .item:hover img {
	filter: grayscale(0%);
	opacity: 1;
}


#titler {
	background: url('../images/bg_info.jpg');
	height: 500px;
	background-repeat: no-repeat;
    background-size: cover !important;
    background-position: center bottom !important;
}
#titler h1 {
	font-size: 27px;
	line-height: 34px;
	font-weight: 800;
	text-transform: uppercase;
	margin: 0 0 25px;
}
#titler p {
	margin-bottom: 0;
    font-size: 20px;
    line-height: 26px;
}
#titler .mid {
	position: relative;
	min-height: 500px;
}
#titler .mid .block {
    border: 1px solid #aa0000;
    background: #fff;
    border-radius: 5px;
    padding: 30px 40px;
}

.projects {
	padding-top: 10px;
	padding-bottom: 30px;
}
.projects h2 {
	font-size: 30px;
	margin-top: 0;
	margin-bottom: 15px;
}
.mixitup-control-active {
	font-weight: 600;
	color: #aa0000;
}

.projects .filter .line {
	content: " ";
    display: block;
    background-color: #000;
    width: 35px;
    height: 2px; 
    margin-bottom: 10px;  
    transform: scaleX(1);
    transition: transform .5s cubic-bezier(.19,1,.22,1);
    transform-origin: left;
}
.projects .filter .line:hover {
	transform: scaleX(12)
}

.projects .filter {
	padding: 40px 15px;
	position: relative;	
}
.projects .filter ul {
	position: absolute;
	bottom: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}
.projects .filter li:first-child {
	padding-left: 0;
}
.projects .filter li {
	float: left;
	padding: 10px;
	cursor: pointer;
} 
.project-cat {
	margin-left: -10px;

}
.mix,
.gap {
    display: inline-block;
    vertical-align: top;
}

.mix {
    position: relative;
    margin-bottom: 30px;
}

.projects .mix .thumb-container {
	position: relative;
	width: 100%;
	overflow: hidden;
	height: 215px;
}

.projects .thumb-container > img {
	position: absolute;
	width: 100%;
	transform: scale(1.2, 1.2)
}

.projects .thumb-text {
	position: absolute;
	z-index: 1;
	width: 100%;
	height: 100%;
	transform: translateY(100%);
}

.projects .thumb-text .content {
	z-index: 3;
	position: absolute;
	margin: auto;
	text-align: center;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	height: 80px;
}
.projects .thumb-text .content h4 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 0;
    font-weight: 400;
}
.projects .thumb-text .content span {
	color: #fff;
	font-size: 12px;
}
.projects .thumb-text .overlay {
	background-color: #000;
	width: 100%;
	height: 100%;
	opacity: 0.8;
	position: absolute;
}
.projects .home-3 .thumb-container {
	height: 400px;
}
.projects .home-3 .thumb-container img {
	transform: scale(1.1)
}
.projects .home-3 .thumb-container img:hover {
	transform: scale(1.3)
}
.projects .home-3 .thumb-container .thumb-text {
	transform: translateY(0%) !important;
}
.projects .home-3 .thumb-container .thumb-text .content{
	height: 100%;
	text-align: left;
	padding:20px;
}
.projects .home-3 .thumb-container .thumb-text .content p {
	color: #f5f5f5;
	font-size: 12px;
	width: 320px
}

.projects .home-3 .line {
	margin-top: 10px;
	content: " ";
    display: block;
    background-color: #d41017;
    width: 35px;
    height: 2px; 
    margin-bottom: 10px;  
    transform: scaleX(1);
    transition: transform .5s cubic-bezier(.19,1,.22,1);
    transform-origin: left;
}

.mix,
.gap {
    width: calc(100%/2 - (((2 - 1) * 1rem) / 2));
}


#price {
	padding: 55px 0 0;
}
#price h2 {
	display: block;
	text-align: center;
	font-size: 28px;
	font-weight: 800;
	line-height: 34px;
	margin: 0 0 30px;
	text-transform: uppercase;
}
#price p {
	display: block;
	line-height: 1.3;
}


.mytable {
    width: 100%;
    border: 1px solid #e2e2e2;
    font-size: 20px;
    line-height: 26px;    
}
.mytable small {
    font-size: 100%;
    font-weight: 300;
}
.mytable thead {
    background: #b33536;
}
.mytable thead th {
    text-align: left;
    padding: 10px;
    color: #fff;
}
.mytable tbody {
        
}
.mytable tbody tr {
    border-bottom: 1px solid #e2e2e2;
}
.mytable tbody tr:hover {
    background : #f5f5f5;
}
.mytable tbody tr > td:first-child {
    text-align: left;
}
.mytable tbody tr > td {
    padding: 8px;
}


footer {
	background: #333333;
	padding: 40px 0;
}
footer ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}
footer ul > li {
	display: block;
	position: relative;
	margin-bottom: 10px;
}
footer ul#footer-nav > li:hover:after {
	display: block;
	position: absolute;
	content: '';
	width: 200px;
	height: 30px;
	top: -5px;
	left: -10px;
	background: #aa0000;
	border-radius: 5px;
	z-index: 1;
}
footer ul > li:last-child {
	margin-bottom: 0;
}
footer ul > li > a {
	display: block;
	position: relative;
	color: #fff;
	font-size: 18px;
	font-weight: 600;
	text-decoration: none;
	z-index: 2;
}
footer .foot-social p {
	color: #707070;
	margin: 0;
}
footer .foot-social ul {
	list-style-type: none;
	margin: 15px 0 10px;
	padding: 0;
}
footer .foot-social ul > li {
	display: inline-block;
	margin: 0 10px;
	padding: 10px;
	border: 1px solid #666666;
	border-radius: 5px;

    -webkit-transition: all 0.2s ease-out 0s;
    -moz-transition: all 0.2s ease-out 0s;
    -o-transition: all 0.2s ease-out 0s;
    transition: all 0.2s ease-out 0s;
}
footer .foot-social ul > li:first-child {
	margin-left: 0;
}
footer .foot-social ul > li:last-child {
	margin-right: 0;
}
footer .foot-social ul > li > a {
	display: block;
}
footer .foot-social ul > li:hover {
	border-color: #fff;
}
footer .foot-social ul > li img {
	opacity: .4;
    -webkit-transition: all 0.2s ease-out 0s;
    -moz-transition: all 0.2s ease-out 0s;
    -o-transition: all 0.2s ease-out 0s;
    transition: all 0.2s ease-out 0s;
}
footer .foot-social ul > li:hover img {
	opacity: 1;
}
footer .sitemap {
	display: inline-block;
	color: #fff;
	font-weight: 600;
	margin: 30px 0 0;
	padding: 10px 25px;
	background: #717171;
	text-align: center;
}
footer .sitemap:hover {
	text-decoration: none;
}
footer p {
	color: #989898;
	
}
footer p > a {
	font-weight: 600;
	color: #989898;
}

a.toggle-btn {
    display: block;
    height: 100%;
    background: #aa0000;
    text-align: center;
}
a.toggle-btn img {
	width: 40%;
	 padding: 0 17px;
	 filter: invert(100%);
}

#content {
    margin: 30px 0;
}



/* modal box */
.modal_div {
    max-width: 600px;
    height: 430px;
    border-radius: 5px;
    background: #fff;
    border: 3px solid #aa0000;
    position: fixed;
    top: 45%;
    left: 50%;
	margin-top: -250px;
    margin-left: -370px;
    display: none;
    opacity: 0;
    z-index: 1000;
    padding: 15px 140px 0 160px;
}
.modal_div .modal_close {
  cursor: pointer;
  width: 21px;
  height: 21px;
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
  display: block;
}
.modal_div h2 {
    display: block;
    text-align: center;
    /* text-transform: uppercase; */
    width: 100%;
    font-weight: 500;
    color: #333;
    font-size: 32px;
    line-height: 1.1;
    margin-top: 30px;
    margin-bottom: 15px;
}
.modal_div h3 {
  font-weight: 300;
  margin-top: 0;
  text-align: center;
}
.modal_div input {
    display: block;
    font-size: 20px;
    color: #000;
    width: 100%;
    box-shadow: none;
    border: none;
    padding: 15px 20px;
    border-radius: 5px;
    border: 1px solid #aa0000;
}
.modal_div input:focus {
    border-color: #8ef3c1;
    -webkit-box-shadow: 0px 3px 16px 0px rgba(0,0,0,0.1);
    -moz-box-shadow: 0px 3px 16px 0px rgba(0,0,0,0.1);
    box-shadow: 0px 3px 16px 0px rgba(0,0,0,0.1);
}
.modal_div form .inline {
  width: calc(100% - 40px);
  margin-bottom: 10px;
}
.modal_div form {
  padding-bottom: 10px;
}
.modal_div button {
    display: block;
    border: 2px solid #aa0000;
    font-size: 28px;
    font-weight: 600;
    padding: 20px;
    width: 100%;
    color: #fff;
    text-align: center;
    background: #aa0000;
    -webkit-transition: all 0.2s ease-out 0s;
    -moz-transition: all 0.2s ease-out 0s;
    -o-transition: all 0.2s ease-out 0s;
    transition: all 0.2s ease-out 0s;
}
.modal_div button:hover {
    background: #fff;
    color: #aa0000;
}
#overlay {
  z-index:900;
  position:fixed;
  background-color:#000;
  opacity:0.8;
  -moz-opacity:0.8; 
  filter:alpha(opacity=80);
  width:100%; 
  height:100%;
  top:0;
  left:0;
  cursor:pointer;
  display:none;
}
/* end of modal box */


/* OWL for main slider */


/* mobile portait */
@media only screen and (max-width: 479px) {


}

@media only screen and (min-width: 768px) {
	.m-only {display: none !important;}
}	

/* mobile landscape */
@media only screen and (max-width: 767px) {
	header .h_social > li {
	    margin: 0 5px;
	}
	header .h_social > li > a {
	    width: 30px;
	    height: 30px;
	}
	header .h_social > li > a > img {
	    max-width: 50%;
    	padding: 7px 0;
	}
	header .h_phone {
	    font-size: 12px !important;
	}
	header .h_callme {
	    font-size: 10px;
	    line-height: 14px;
	}
	header.fix .h_social > li > a {
	    width: 25px;
	    height: 25px;
	}
	header.fix .mid {
	    right: 50px;
	}
	header .h_logo img {
		max-width: 60%;
	}
	main {
	    margin-top: 50px;
	}
	#main-slider .main-caro .item h2 {
	    font-size: 25px;
	    line-height: 25px;
	    margin-bottom: 20px;
	}
	#main-slider .main-caro .item {
	    height: 500px;
	}
	#main-slider .main-caro .item p {
	    font-size: 14px;
	    line-height: 24px;
	}
	#main-slider .main-caro .item .btn {
	    display: inline-block;
	    margin-top: 10px;
	}
	.owl-dots {
	    bottom: 25px;
	}
	#main-slider .main-caro .item .centering-y {
	    background: rgba(255, 255, 255, 0.85);
	}
	#about .about-text p {
	    font-size: 16px;
	    line-height: 25px;
	}
	#about .about-text {
	    padding: 50px 10px;
	    max-width: 100%;
	}
	#uslugi .item {
	    width: 85% !important;
	}
	#uslugi {
	    padding: 65px 0 45px;
	}
	#info .text-box h3 {
	    font-size: 24px;
	    line-height: 26px;
	}
	#info .text-box {
	    padding: 20px;
	}
	#info .text-box p {
	    font-size: 16px;
	        word-wrap: break-word;
	}
	#preim {
	    padding: 45px 0;
	}
	#workscheme .workscheme-wrap .item {
	    margin: 0 10px 80px;
	    height: auto;
	}
	#seo p {
	    line-height: 26px;
	}
	ul#footer-nav {
	    margin-bottom: 40px;
	}
	.foot-social {
	    margin-bottom: 40px;
	}
	footer ul#footer-nav > li:hover:after {
	    width: 100%;
	}
	header:not(.fix) .main-menu.open {
	    top: 50px !important;
	}
	header.fix .main-menu.open {
	    top: 32px !important;
	}
	header nav ul > li > a {
	    font-size: 18px;
	    padding: 15px 0;
	}
	header .h_social {
	    margin-left: 0 !important;
	}
	#workscheme .workscheme-wrap .col-md-3 .item:after {
		display: none !important;
	}
	#preim .preim-wrap .item h4 {
	    height: auto !important;
	}
	#main-slider .main-caro .call-btn {
	    display: none;
	}
	.modal_div {
	    max-width: 310px !important;
	    margin-left: -160px !important;
	    padding: 15px !important;
	}
	#titler h1 {
        line-height: 25px;
        font-size: 18px;
        margin-bottom: 10px;
	}
	#titler p {
	    margin-top: 5px;
	}
	#titler p.dop {
	    font-size: 12px;
        line-height: 18px;
	}
	#about .about-text p.contacts-text > strong {
	    min-width: inherit;
	    display: block;
	}
	.projects .filter ul {
	    position: relative;
	    bottom: 0;
	}
	.projects .filter li {
	    float: none;
	    padding: 5px 0;
	}
	.projects .mix .thumb-container {
	    height: 125px;
	}
	.mix {
	    margin-bottom: 10px;
	}
	.info-block {
		margin-bottom: 30px;
	}
	.xcase img {
	    width: auto !important;
	    height: auto !important;
	    max-width: 100% !important;
	}
    .projects .thumb-text .content h4 {
        font-size: 14px;
        margin-top: 0;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {

}

@media only screen and (min-width: 767px) and (max-width:1100px) {
	header nav ul > li {
	    margin: 0 15px;
	}
	header nav ul > li > a {
	    font-size: 13px;
	    display: block;
	}
	.formA form {
	    padding-left: 0;
	}
	.formA .form-group input {
	    width: calc(100% - 80px);
	}
	.formA .form-group button {
	    width: auto;
	}
	#preim .preim-wrap .item {
	    padding: 15px 20px;
	}
	#preim .preim-wrap .item h4 {
	    height: auto;
	}
}

/* tablets portrait */
@media only screen and (max-width:1004px) {
	.main-menu {
		display: none;
	}
	#main-slider .main-caro .item {
		background-size: cover !important;	
	}
	header .mid .centering-y {
		width: 100%;
	}
	header .h_phone {
	    font-size: 24px;
	}
	header.fix .h_phone {
	    font-size: 20px;
	}
	#uslugi .item {
	    height: auto;
	    width: 70%;
	    margin: 0 auto 40px;
	}
	#info .p-wrap img {
		position: relative !important;
		top: 0 !important;
		left: 0 !important;
		width: 100% !important;
		margin: 20px 0 !important;
    	max-height: none !important;
	}

	#info {
	    padding: 85px 0 65px;
	}
	#preim .preim-wrap .item .img, #preim .preim-wrap .item .back {
		/*display: block;*/
	}
	#preim .preim-wrap .item {
	    height: auto;
	    background: #fff;
	    border-color: #aa0000;
	    max-width: 70%;
	    margin: 0 auto 30px;
	}
	.formA form {
	    padding-left: 0;
	}
	.formA p {
	    margin-bottom: 20px;
	}
	#form-zayavka {
	    text-align: center;
	}
	.formA a.fphone {
	    display: block;
	    margin-bottom: 40px;
	}
	footer {
	    text-align: center;
	}
	.foot-social {
	    margin-bottom: 50px;
	}

	header .main-menu.open {
	    display: inline-block;
	    position: absolute;
	    top: 90px;
	    left: 0;
	    background: rgba(0,0,0,.8);
	    width: 100%;
	    -webkit-box-shadow: 0px 0px 43px 0px rgba(0,0,0,0.4);
	    -moz-box-shadow: 0px 0px 43px 0px rgba(0,0,0,0.4);
	    box-shadow: 0px 0px 43px 0px rgba(0,0,0,0.4);
	    z-index: 0;
	}
	header.fix .main-menu {
		top: 53px;
	}
	header .main-menu .centering-y {
		position: relative;
		text-align: center;
		top: auto;
		-webkit-transform: -webkit-translateY(0%);
	    -webkit-transform: translateY(0%);
	    -moz-transform: translateY(0%);
	    -ms-transform: translateY(0%);
	    -o-transform: translateY(0%);
	    transform: translateY(0%);
	}
	header nav ul > li {
	    display: block;
	    margin: 10px 0;
	}
	header [class*="col-"]:not(.main-menu) { 
		position: relative;
		background: rgba(0,0,0,0.8);
		z-index: 5
	}
	header nav ul > li > a {
	    font-size: 20px;
	}
	#workscheme .workscheme-wrap .col-md-3:nth-child(2) .item:after {
		display: none;
	}
	#main-slider .main-caro .call-btn {
	    bottom: 100px;
	    left: 450px;
	}
#uslugi .item h3 {
    min-height: inherit;
}

.projects .filter ul {
    position: relative;
    margin-top: 15px;
    display: inline-block;
    width: 100%;
    left: -10px;
}
.projects .filter {
    padding: 30px 15px 20px;
    position: relative;
}
.projects .filter li, .projects .filter li:first-child {
    padding-left: 10px;
}

.info-block {
    margin: 15px 0;
}


}

@media screen and (max-width: 1200px) {
	.container {
	    margin: 0 auto;
	}
	header nav {
	    padding-left: 0;
	}
	header nav, header .mid {
		position: static;
	}
	header .h_social {
	    margin-left: 30px;
	}
	#info .p-wrap img {
	    top: 25px;
	}
}

/* tablets landscape and small screens */
@media only screen and (min-width: 1600px) {
	.fluid {
    	width: 71rem;
    	margin: 0 auto;
    	background: rgba(0,0,0,.8);
    	-webkit-box-shadow: 0px 2px 15px 0px rgba(0,0,0,0.15);
	    -moz-box-shadow: 0px 2px 15px 0px rgba(0,0,0,0.15);
	    box-shadow: 0px 2px 15px 0px rgba(0,0,0,0.15);
	}
	.fluid .row {
	    margin-right: -1rem;
	    margin-left: 0;
	}
	header {
	    background: transparent;
	    box-shadow: none;
	}
	header nav {
	    padding-left: 40px;
	}
	main {
	    margin-top: 0;
	}
	#main-slider .main-caro .item {
	    height: 700px;
	}
	header.fix .h_logo {
		padding: 10px 0;
	}
	header.fix .h_logo img {
		max-width: 100%;
	}
	header .h_social {
	    padding-left: 40px;
	}
}

/* all screens > 1200 */
@media only screen and (min-width: 1200px) {
    .container {
        width: 1080px; /* 1200px - 10% for margins */
        margin: 0 auto;
    }
    .xcontainer {
        margin: 0 40px;
    }    
}

/* ==========================================================================
   Helper classes
   ========================================================================== */

/*body::after {
    content:
        url('../images/bg_s1_1.jpg')
        url('../images/bg_s1_2.jpg')
        url('../images/bg_s1_3.jpg')
        url('../images/bg_s1_4.jpg');
    display: none;
  }*/

.centering-y {
    position:absolute;
    display: block;
    top:50%;
    -webkit-transform: translateY(-50%);
       -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
         -o-transform: translateY(-50%);
            transform: translateY(-50%);
}
.centering-x {
    position:absolute;
    display: block;
    left:50%;
    -webkit-transform: translateX(-50%);
       -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
         -o-transform: translateX(-50%);
            transform: translateX(-50%);
}
.centering-xy {
    position:absolute;
    display: block;
    left:50%;
    top:50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
       -moz-transform: translateX(-50%) translateY(-50%);
        -ms-transform: translateX(-50%) translateY(-50%);
         -o-transform: translateX(-50%) translateY(-50%);
            transform: translateX(-50%) translateY(-50%);
}
.text-left {text-align: left}
.text-center {text-align: center;}
.text-right {text-align: right;}
.hidden {
    display: none !important;
    visibility: hidden;
}

.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}

.clearfix:after {
    clear: both;
}

.clearfix {
    *zoom: 1;
}

/* ==========================================================================
   Grid styles
   ========================================================================== */

.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-right: 2rem;
  padding-left: 2rem;
}

.row {
  box-sizing: border-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex: 0 1 auto;
  -webkit-box-flex: 0;
  flex: 0 1 auto;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -1rem;
  margin-left: -1rem;
}

.row.reverse {
  -ms-flex-direction: row-reverse;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  flex-direction: row-reverse;
}

.col.reverse {
  -ms-flex-direction: column-reverse;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  flex-direction: column-reverse;
}

.col-xs,
.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12 {
  box-sizing: border-box;
  -ms-flex: 0 0 auto;
  -webkit-box-flex: 0;
  flex: 0 0 auto;
  padding-right: 1rem;
  padding-left: 1rem;
}

.col-xs {
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  -webkit-box-flex: 1;
  flex-grow: 1;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  max-width: 100%;
}

.col-xs-1 {
  -ms-flex-preferred-size: 8.333%;
  flex-basis: 8.333%;
  max-width: 8.333%;
}

.col-xs-2 {
  -ms-flex-preferred-size: 16.667%;
  flex-basis: 16.667%;
  max-width: 16.667%;
}

.col-xs-3 {
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
  max-width: 25%;
}

.col-xs-4 {
  -ms-flex-preferred-size: 33.333%;
  flex-basis: 33.333%;
  max-width: 33.333%;
}

.col-xs-5 {
  -ms-flex-preferred-size: 41.667%;
  flex-basis: 41.667%;
  max-width: 41.667%;
}

.col-xs-6 {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  max-width: 50%;
}

.col-xs-7 {
  -ms-flex-preferred-size: 58.333%;
  flex-basis: 58.333%;
  max-width: 58.333%;
}

.col-xs-8 {
  -ms-flex-preferred-size: 66.667%;
  flex-basis: 66.667%;
  max-width: 66.667%;
}

.col-xs-9 {
  -ms-flex-preferred-size: 75%;
  flex-basis: 75%;
  max-width: 75%;
}

.col-xs-10 {
  -ms-flex-preferred-size: 83.333%;
  flex-basis: 83.333%;
  max-width: 83.333%;
}

.col-xs-11 {
  -ms-flex-preferred-size: 91.667%;
  flex-basis: 91.667%;
  max-width: 91.667%;
}

.col-xs-12 {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
}

.col-xs-offset-1 {
  margin-left: 8.333%;
}

.col-xs-offset-2 {
  margin-left: 16.667%;
}

.col-xs-offset-3 {
  margin-left: 25%;
}

.col-xs-offset-4 {
  margin-left: 33.333%;
}

.col-xs-offset-5 {
  margin-left: 41.667%;
}

.col-xs-offset-6 {
  margin-left: 50%;
}

.col-xs-offset-7 {
  margin-left: 58.333%;
}

.col-xs-offset-8 {
  margin-left: 66.667%;
}

.col-xs-offset-9 {
  margin-left: 75%;
}

.col-xs-offset-10 {
  margin-left: 83.333%;
}

.col-xs-offset-11 {
  margin-left: 91.667%;
}

.start-xs {
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  justify-content: flex-start;
  text-align: start;
}

.center-xs {
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
  text-align: center;
}

.end-xs {
  -ms-flex-pack: end;
  -webkit-box-pack: end;
  justify-content: flex-end;
  text-align: end;
}

.top-xs {
  -ms-flex-align: start;
  -webkit-box-align: start;
  align-items: flex-start;
}

.middle-xs {
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
}

.bottom-xs {
  -ms-flex-align: end;
  -webkit-box-align: end;
  align-items: flex-end;
}

.around-xs {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.between-xs {
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
  justify-content: space-between;
}

.first-xs {
  -ms-flex-order: -1;
  -webkit-box-ordinal-group: 0;
  order: -1;
}

.last-xs {
  -ms-flex-order: 1;
  -webkit-box-ordinal-group: 2;
  order: 1;
}

@media only screen and (max-width: 48em) {
	.hidden-xs {
		display: none;
	}
}

@media only screen and (min-width: 48em) {

  .col-sm,
  .col-sm-1,
  .col-sm-2,
  .col-sm-3,
  .col-sm-4,
  .col-sm-5,
  .col-sm-6,
  .col-sm-7,
  .col-sm-8,
  .col-sm-9,
  .col-sm-10,
  .col-sm-11,
  .col-sm-12 {
    box-sizing: border-box;
    -ms-flex: 0 0 auto;
    -webkit-box-flex: 0;
    flex: 0 0 auto;
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .col-sm {
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  .col-sm-1 {
    -ms-flex-preferred-size: 8.333%;
    flex-basis: 8.333%;
    max-width: 8.333%;
  }

  .col-sm-2 {
    -ms-flex-preferred-size: 16.667%;
    flex-basis: 16.667%;
    max-width: 16.667%;
  }

  .col-sm-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-sm-4 {
    -ms-flex-preferred-size: 33.333%;
    flex-basis: 33.333%;
    max-width: 33.333%;
  }

  .col-sm-5 {
    -ms-flex-preferred-size: 41.667%;
    flex-basis: 41.667%;
    max-width: 41.667%;
  }

  .col-sm-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-sm-7 {
    -ms-flex-preferred-size: 58.333%;
    flex-basis: 58.333%;
    max-width: 58.333%;
  }

  .col-sm-8 {
    -ms-flex-preferred-size: 66.667%;
    flex-basis: 66.667%;
    max-width: 66.667%;
  }

  .col-sm-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-sm-10 {
    -ms-flex-preferred-size: 83.333%;
    flex-basis: 83.333%;
    max-width: 83.333%;
  }

  .col-sm-11 {
    -ms-flex-preferred-size: 91.667%;
    flex-basis: 91.667%;
    max-width: 91.667%;
  }

  .col-sm-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }

  .col-sm-offset-1 {
    margin-left: 8.333%;
  }

  .col-sm-offset-2 {
    margin-left: 16.667%;
  }

  .col-sm-offset-3 {
    margin-left: 25%;
  }

  .col-sm-offset-4 {
    margin-left: 33.333%;
  }

  .col-sm-offset-5 {
    margin-left: 41.667%;
  }

  .col-sm-offset-6 {
    margin-left: 50%;
  }

  .col-sm-offset-7 {
    margin-left: 58.333%;
  }

  .col-sm-offset-8 {
    margin-left: 66.667%;
  }

  .col-sm-offset-9 {
    margin-left: 75%;
  }

  .col-sm-offset-10 {
    margin-left: 83.333%;
  }

  .col-sm-offset-11 {
    margin-left: 91.667%;
  }

  .start-sm {
    -ms-flex-pack: start;
    -webkit-box-pack: start;
    justify-content: flex-start;
    text-align: start;
  }

  .center-sm {
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center;
  }

  .end-sm {
    -ms-flex-pack: end;
    -webkit-box-pack: end;
    justify-content: flex-end;
    text-align: end;
  }

  .top-sm {
    -ms-flex-align: start;
    -webkit-box-align: start;
    align-items: flex-start;
  }

  .middle-sm {
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
  }

  .bottom-sm {
    -ms-flex-align: end;
    -webkit-box-align: end;
    align-items: flex-end;
  }

  .around-sm {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

  .between-sm {
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }

  .first-sm {
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
    order: -1;
  }

  .last-sm {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
    order: 1;
  }

  .hidden-sm {
  	display: none;
  }
}

@media only screen and (min-width: 62em) {
  .container {
    width: 61rem;
  }

  .col-md,
  .col-md-1,
  .col-md-2,
  .col-md-3,
  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-7,
  .col-md-8,
  .col-md-9,
  .col-md-10,
  .col-md-11,
  .col-md-12 {
    box-sizing: border-box;
    -ms-flex: 0 0 auto;
    -webkit-box-flex: 0;
    flex: 0 0 auto;
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .col-md {
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  .col-md-1 {
    -ms-flex-preferred-size: 8.333%;
    flex-basis: 8.333%;
    max-width: 8.333%;
  }

  .col-md-2 {
    -ms-flex-preferred-size: 16.667%;
    flex-basis: 16.667%;
    max-width: 16.667%;
  }

  .col-md-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-md-4 {
    -ms-flex-preferred-size: 33.333%;
    flex-basis: 33.333%;
    max-width: 33.333%;
  }

  .col-md-5 {
    -ms-flex-preferred-size: 41.667%;
    flex-basis: 41.667%;
    max-width: 41.667%;
  }

  .col-md-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-md-7 {
    -ms-flex-preferred-size: 58.333%;
    flex-basis: 58.333%;
    max-width: 58.333%;
  }

  .col-md-8 {
    -ms-flex-preferred-size: 66.667%;
    flex-basis: 66.667%;
    max-width: 66.667%;
  }

  .col-md-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-md-10 {
    -ms-flex-preferred-size: 83.333%;
    flex-basis: 83.333%;
    max-width: 83.333%;
  }

  .col-md-11 {
    -ms-flex-preferred-size: 91.667%;
    flex-basis: 91.667%;
    max-width: 91.667%;
  }

  .col-md-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }

  .col-md-offset-1 {
    margin-left: 8.333%;
  }

  .col-md-offset-2 {
    margin-left: 16.667%;
  }

  .col-md-offset-3 {
    margin-left: 25%;
  }

  .col-md-offset-4 {
    margin-left: 33.333%;
  }

  .col-md-offset-5 {
    margin-left: 41.667%;
  }

  .col-md-offset-6 {
    margin-left: 50%;
  }

  .col-md-offset-7 {
    margin-left: 58.333%;
  }

  .col-md-offset-8 {
    margin-left: 66.667%;
  }

  .col-md-offset-9 {
    margin-left: 75%;
  }

  .col-md-offset-10 {
    margin-left: 83.333%;
  }

  .col-md-offset-11 {
    margin-left: 91.667%;
  }

  .start-md {
    -ms-flex-pack: start;
    -webkit-box-pack: start;
    justify-content: flex-start;
    text-align: start;
  }

  .center-md {
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center;
  }

  .end-md {
    -ms-flex-pack: end;
    -webkit-box-pack: end;
    justify-content: flex-end;
    text-align: end;
  }

  .top-md {
    -ms-flex-align: start;
    -webkit-box-align: start;
    align-items: flex-start;
  }

  .middle-md {
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
  }

  .bottom-md {
    -ms-flex-align: end;
    -webkit-box-align: end;
    align-items: flex-end;
  }

  .around-md {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

  .between-md {
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }

  .first-md {
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
    order: -1;
  }

  .last-md {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
    order: 1;
  }

  .hidden-md {
  	display: none;
  }
}

@media only screen and (min-width: 75em) {
  .container {
    width: 71rem;
  }

  .col-lg,
  .col-lg-1,
  .col-lg-2,
  .col-lg-3,
  .col-lg-4,
  .col-lg-5,
  .col-lg-6,
  .col-lg-7,
  .col-lg-8,
  .col-lg-9,
  .col-lg-10,
  .col-lg-11,
  .col-lg-12 {
    box-sizing: border-box;
    -ms-flex: 0 0 auto;
    -webkit-box-flex: 0;
    flex: 0 0 auto;
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .col-lg {
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  .col-lg-1 {
    -ms-flex-preferred-size: 8.333%;
    flex-basis: 8.333%;
    max-width: 8.333%;
  }

  .col-lg-2 {
    -ms-flex-preferred-size: 16.667%;
    flex-basis: 16.667%;
    max-width: 16.667%;
  }

  .col-lg-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-lg-4 {
    -ms-flex-preferred-size: 33.333%;
    flex-basis: 33.333%;
    max-width: 33.333%;
  }

  .col-lg-5 {
    -ms-flex-preferred-size: 41.667%;
    flex-basis: 41.667%;
    max-width: 41.667%;
  }

  .col-lg-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-lg-7 {
    -ms-flex-preferred-size: 58.333%;
    flex-basis: 58.333%;
    max-width: 58.333%;
  }

  .col-lg-8 {
    -ms-flex-preferred-size: 66.667%;
    flex-basis: 66.667%;
    max-width: 66.667%;
  }

  .col-lg-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-lg-10 {
    -ms-flex-preferred-size: 83.333%;
    flex-basis: 83.333%;
    max-width: 83.333%;
  }

  .col-lg-11 {
    -ms-flex-preferred-size: 91.667%;
    flex-basis: 91.667%;
    max-width: 91.667%;
  }

  .col-lg-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }

  .col-lg-offset-1 {
    margin-left: 8.333%;
  }

  .col-lg-offset-2 {
    margin-left: 16.667%;
  }

  .col-lg-offset-3 {
    margin-left: 25%;
  }

  .col-lg-offset-4 {
    margin-left: 33.333%;
  }

  .col-lg-offset-5 {
    margin-left: 41.667%;
  }

  .col-lg-offset-6 {
    margin-left: 50%;
  }

  .col-lg-offset-7 {
    margin-left: 58.333%;
  }

  .col-lg-offset-8 {
    margin-left: 66.667%;
  }

  .col-lg-offset-9 {
    margin-left: 75%;
  }

  .col-lg-offset-10 {
    margin-left: 83.333%;
  }

  .col-lg-offset-11 {
    margin-left: 91.667%;
  }

  .start-lg {
    -ms-flex-pack: start;
    -webkit-box-pack: start;
    justify-content: flex-start;
    text-align: start;
  }

  .center-lg {
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center;
  }

  .end-lg {
    -ms-flex-pack: end;
    -webkit-box-pack: end;
    justify-content: flex-end;
    text-align: end;
  }

  .top-lg {
    -ms-flex-align: start;
    -webkit-box-align: start;
    align-items: flex-start;
  }

  .middle-lg {
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
  }

  .bottom-lg {
    -ms-flex-align: end;
    -webkit-box-align: end;
    align-items: flex-end;
  }

  .around-lg {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

  .between-lg {
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }

  .first-lg {
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
    order: -1;
  }

  .last-lg {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
    order: 1;
  }

  .hidden-lg {
  	display: none;
  }
}



#sms_gallery {
    width: calc(100% - 60px);
    padding: 30px;
	-webkit-box-shadow: 0px -1px 20px 0px rgba(200, 100, 120, 0.2);
	-moz-box-shadow: 0px -1px 20px 0px rgba(200, 100, 120, 0.2);
	box-shadow: 0px -1px 20px 0px rgba(200, 100, 120, 0.2);
}
@media screen and (max-width: 700px) {
    #sms_gallery {
         padding: 0 !important;
         width: 100% !important;
    }
}
#sms_gallery .item {
    /* margin: 3px 10px; */
    overflow: hidden;
    max-height: 180px;
}
#sms_gallery .item img {
    display: block;
    width: 100%;
    /*max-width: 80%;*/
    height: auto;
    min-height: 180px;
    /*max-height: 177px;*/
    margin: 0 auto;
    /*border: 5px solid rgb(200, 100, 120);*/
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
}
#sms_gallery .item:hover img {
    -webkit-box-shadow: 0px 0px 22px 0px rgba(0,0,0,0.1);
    -moz-box-shadow: 0px 0px 22px 0px rgba(0,0,0,0.1);
    box-shadow: 0px 0px 22px 0px rgba(0,0,0,0.1);
    -moz-transform: scale(0.9);
    -webkit-transform: scale(0.9);
    -o-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
}


@media screen and (min-width: 1550px) {
    #titler {
        height: 550px;
    }
    #titler .mid {
        min-height: 550px;
    }
    #titler .mid .block {
        top: calc(50% + 55px);
    }
}