/*
Theme Name: Nateo
*/

* { margin: 0; padding: 0; }
html, body { margin: 0  auto; }
a, a:hover, a:active, a:visited, a:focus { text-decoration: none; }
body { font-family: 'Montserrat', sans-serif; }
input, textarea{ outline: none; overflow: inherit;}
.clear { clear: both; }
.ani{ text-decoration: none; -webkit-transition: all ease 0.25s; transition: all ease 0.25s; }
img { border: none; vertical-align: top; }
ul { padding: 0; margin: 0; }
button  { font-family: 'Montserrat', sans-serif; border: none; overflow: hidden; outline: none; cursor: pointer; }
p,ul {margin-top: 15px;margin-bottom: 15px;}
	
/*Цвет выделения на сайте*/
*::selection {
  background: #f9f6c1; /* WebKit/Blink Browsers */
}
*::-moz-selection {
  background: #f9f6c1; /* Gecko Browsers */
}

/*Header*/

/*Стрелка наверх*/
.scrollup-bttn{
	width: 40px;
	height: 40px;
	background: #f41110;
	text-align: center;
	position: fixed;
	bottom: 50px;
	left: 50px;
	cursor: pointer;
	opacity: 0;
	z-index: -1;
}
.scrollup-bttn i{
	font-size: 40px;
	color: #eee;
}
.scrollup-bttn.active{
	z-index: 6000;
	opacity: 1;
}
.scrollup-bttn:hover{
	/*background: #f9f6c1;*/
	background: #eee;
}
.scrollup-bttn:hover i{
	color: #2a2a2a;
}
/*-^-*/

.header{
	z-index: 99999;
	/*background-color: #212121;*/
	background-color: #272727;
	position: fixed;
	width: 100%;
	/*padding: 15px 0;*/
	border-bottom: 1px solid #fff;
}
.header .logo{
	float: left;
	margin-right: 45px;
}
.header .logo img{
	/*height: 55px;*/
	padding-top: 1vh;
	height: 9vh;
}
.header .icons{
	float: left;
}
.header .icons i{
	padding: 0 5px;
	font-size: 17px;
	/*line-height: 55px;*/
	line-height: 10vh;
	color: #eee;
	transition: all ease 0.25s;
}
.header .icons i:hover{
	color: #fdf58c;
}

/*Icons hover*/
	.fa-facebook:hover{
		color: #3b579d !important;
	}
	.fa-twitter:hover{
		color: #28aae1 !important;
	}
	.fa-pinterest-p:hover{
		color: #cd0000 !important;
	}
	.fa-youtube:hover{
		color: #f00 !important;
	}
	.fa-instagram:hover{
		color: #8d3dbb !important;
	}
	
/* -^- */
.header .nav{
	float: right;
}
.header .nav ul li{
	position: relative;
	display: inline-block;
	list-style-type: none;
}
.header .nav ul li a{
	display: inline-block;
	text-decoration: none;
	color: #eee;
	/*line-height: 55px;*/
	line-height: 10vh;
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 0 10px;
	border-left: 1px dotted #2d2d2d;
	transition: all ease 0.25s;
}
.header .nav ul li a:hover{
	/*color: #fdf58c;*/
	color: #f41110;
}
.header .nav ul li .sub-menu{
	display: none;
	position: absolute;
	padding: 10px 15px;
	top: calc(100%);
	left: 0px;
	min-width: 200px;
	background-color: #212121;

	animation-duration: 0.2s;
	animation-fill-mode: both;
	animation-name: fadeInUp;
}
.header .nav  ul li .sub-menu li{
	display: block;
	margin: 5px 0;
}
.header .nav  ul li .sub-menu li a{
	line-height: 20px;
	text-transform: none;
	display: block;
	border: none;
	font-size: 14px;
	padding: 0px;
	color: #979797;
	letter-spacing: 0;
}
.header .nav  ul li .sub-menu li a:hover{
	/*color: #fdf58c;*/
	color: #f41110;
}
.header .nav ul li:hover .sub-menu{
	display: block;
}

.header .nav .mobile-menu{
	position: absolute;
	/*top: 15px;*/
	top: 3vh;
	right: 0px;
	display: none;
}
.header .nav .mobile-menu .line{
	width: 30px;
	height: 3px;
	background: #eee;
	margin-bottom: 8px;
	transition: 0.25s all ease;
	border-radius: 10px;
}
.header .nav .mobile-menu.active{
	top: 25px;
}
.header .nav .mobile-menu.active .line:nth-child(1){
	transform: rotate(45deg);
	margin-bottom: -3px;
}
.header .nav .mobile-menu.active .line:nth-child(2){
	display: none;
}
.header .nav .mobile-menu.active .line:nth-child(3){
	transform: rotate(-45deg);
}

.header .nav ul li.menu-item-has-children .plus{
	display: none;
}


/*Home Page Style (Main Page)-----------------------------------------------------------*/
.main-slider{
	padding-top: 10vh;
	position: relative;
}
.main-slider .main-slider-carousel .main-slider-item{
	min-height: 550px;
	height: 90vh;
	padding-top: 15vh;
	width: 100%;
	-webkit-background-size: cover;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.main-slider .main-slider-carousel .main-slider-item p.h3{
	font-size: 42px;
	line-height: 55px;
	font-weight: bold;
	margin: 35px 0;
	color: #eee;
	margin-bottom: 3vh;
	width: 50%;
}
.main-slider .main-slider-carousel .main-slider-item p{
	color: #eee;
	font-size: 18px;
	line-height: 24px;
	width: 60%;
}
.main-slider .main-slider-carousel .main-slider-item button{
	background: #d11818;
	color: #eee;
	font-size: 18px;
	font-weight: bold;
	padding: 15px 35px;
	border: 1px solid #f41110;
	transition: all ease 0.2s;
	text-transform: uppercase;
	margin-top: 5vh;
	margin-bottom: 3vh;
}
.main-slider .main-slider-carousel .main-slider-item button:hover{
	border: 1px solid #f41110;
	color: #272727;
	background: #eee;
}
/*.main-slider .main-slider-content{
	z-index: 10;
	position: absolute;
	width: 100%;
	top: 160px;
	left: 0px;
}*/
.main-slider .main-slider-content p.h1{
	color: #eee;
	font-size: 52px;
	line-height: 55px;
	font-family: 'Yeseva One', cursive;
	font-weight: bold;
	padding-bottom: 15px;

}
.main-slider .main-slider-content p{
	color: #eee;	
	font-size: 34px;
}
.main-slider .main-slider-content .switch-address{
	margin-top: 25px;
}
.main-slider .main-slider-content .switch-address p{
	color: #eee;
	font-size: 16px;
	margin-bottom: 10px;
}

.main-slider .main-slider-content .switch-address select{
	background: transparent;
	border: none;
	font-size: 18px;
	color: #eee;
	outline: none;
	display: inline-block;
	vertical-align: top;
	margin-right: 10px;
}
.main-slider .main-slider-content .switch-address select option{
	background: #000;
	font-size: 16px;
	line-height: 25px;
}
.main-slider .main-slider-content .switch-address .switch-phones{
	display: inline-block;
	vertical-align: top;
}
.main-slider .main-slider-content .switch-address .switch-phones .itm{
	display: none;
}
.main-slider .main-slider-content .switch-address .switch-phones .itm:first-of-type{
	display: block;
}
.main-slider .main-slider-content .switch-address .switch-phones .itm i{
	color: #f41110;
	font-size: 16px;
	display: inline-block;
	margin-right: 5px;
}
.main-slider .main-slider-content .switch-address .switch-phones .itm p.phonee{
	display: inline-block;
	transition: all ease 0.2s;
	width: auto;
}
.main-slider .main-slider-content .switch-address .switch-phones .itm p:hover{
	color: #f41110;
}

/*About-----*/
.about{
	padding: 80px 0;
}
.about .txt{
	text-align: center;
	margin-top: 20px;
}
.about .txt p.h2{
	font-family: 'Yeseva One', cursive;
	font-size: 40px;
	color: #272727;
	font-weight: bold;
	/*color: #2e2e2e;*/
	margin-bottom: 15px;
}
.about .txt .txt1 p{
	/*color: #2e2e2e;*/
	color: #272727;
	font-size: 21px;
	line-height: 32px;
	/*margin-bottom: 25px;*/
}
.about .txt .txt2{
	margin-bottom: 30px;
}
.about .txt .txt2 p{
	font-size: 21px;
	line-height: 32px;
	/*color: #4f4f4f;*/
	color: #272727;
}
.about .txt button{
	font-weight: bold;
    font-style: normal;
    margin: 10px 10px 0 10px;
    padding: 10px 40px;
    border: 2px solid #343434;
    background-color: #fff;
    color: #343434;
    text-transform: uppercase;
    transition: all ease 0.25s;
}
.about .txt button:hover{
	background-color: #343434;
	color: #eee;
}
.about .txt button.btn2{
	background-color: #343434;
	color: #eee;
}
.about .txt button.btn2:hover{
	background-color: #fff;
	color: #343434;
}
.about .img{
	position: relative;
	margin-top: 10%;
}
.about .img img{
	max-width: 90%;
}
.about .img:after{
	content: '';
	z-index: -1;
	position: absolute;
	top: 30px;
	right: 0px;
	height: 100%;
	width: 80%;
	border: 2px solid #000;
}

/*Services-----*/
.services .title{
	background: #272727;
	padding: 30px 0;
	text-align: center;
}
.services .title p.h2{
	color: #eee;
	font-family: 'Yeseva One', cursive;
	font-size: 42px;
	font-weight: bold;
}
.services .secvices-cont .container-fluid{
	padding: 0;
}
.services .secvices-cont a{

}
.services .secvices-cont .secvices-cont-item{
	float: left;
	width: 25%;
	height: 300px;
	-webkit-background-size: cover;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

/*subscribe-----*/
.subscribe{
	padding: 50px 0 35px;
}
.subscribe .subscribe-txt{
	text-align: center;
	margin-bottom: 30px;
	}
.subscribe .subscribe-txt p{
	/*text-transform: uppercase;*/
	font-family: 'Yeseva One';
	text-align: center;
	font-size: 42px;
	font-weight: bold;
	margin: 0;
	color: #272727;
}

.subscribe .subscribe-form{
	width: 60%;
	display: block;
	margin: 0 auto;
}

.subscribe .subscribe-form p{
	display: inline;
}
.subscribe .subscribe-form p br{
	display: none;
}
.subscribe .subscribe-form p label{
	width: 100%;
}
.subscribe .subscribe-form p label span{
	width: 100%;
}
.subscribe .subscribe-form p label input{
	width: 100%;
	display: inline-block;
	padding: 0 15px;
	height: 30px;
	font-size: 14px;
	color: #000;
	margin-bottom: 10px;
}
.subscribe .subscribe-form p label input::placeholder{
	text-align: center;
}
.subscribe .subscribe-form p input[type='submit']{
	/*background: #343434;*/
	background: #272727;
	color: #eee;
	height: auto;
	border: 2px solid transparent;
	padding: 10px 20px;
	width: 100%;
	transition: ease all 0.2s;
}
.subscribe .subscribe-form p input[type='submit']:hover{
	background: #fff;
	color: #272727;
	border: 2px solid #272727;
}
.subscribe .subscribe-form p label input.wpcf7-not-valid{
	border: 1px solid red;
}
.subscribe .success-7{
	margin: 5px 0 0 0;
	text-align: left;
}

/*Gallery-----*/
.gallery{
	background: #fff;
	padding: 30px 0 50px;
}
.gallery p.h2{
	text-align: center;
	font-size: 42px;
	/*color: #141414;*/
	color: #272727;
	font-family: 'Yeseva One', cursive;
	font-weight: bold;
}
.gallery .gallery-items{
	position: relative;
	margin-top: 50px;
	min-height: 600px;
}
.gallery .gallery-items img{
	position: absolute;
	transition: all ease 0.25s;
}
.gallery .gallery-items img:nth-child(1){
	top: 73px;
	left: 115px;
	opacity: 0.33;
}
.gallery .gallery-items img:nth-child(1):hover{
	-webkit-transform: translate(10px, 10px);
	transform: translate(10px, 10px);
	opacity: 1;
	z-index: 3;
}
.gallery .gallery-items img:nth-child(2){
	z-index: 2;
	top: 18px;
	left: 407px;
}
.gallery .gallery-items img:nth-child(2):hover{
	-webkit-transform: translate(-10px, -10px);
	transform: translate(-10px, -10px);
	opacity: 1;
	z-index: 3;
}
.gallery .gallery-items img:nth-child(3){
	top: 20px;
	right: 180px
}
.gallery .gallery-items img:nth-child(3):hover{
	-webkit-transform: translate(10px, 10px);
	transform: translate(10px, 10px);
	opacity: 1;
	z-index: 3;
}
.gallery .gallery-items img:nth-child(4){
	bottom: -72px;
	left: 84px;
}
.gallery .gallery-items img:nth-child(4):hover{
	-webkit-transform: translate(-10px, 15px);
	transform: translate(-10px, 15px);
	opacity: 1;
	z-index: 3;
}
.gallery .gallery-items img:nth-child(5){
	bottom: -75px;
	right: 115px;
	opacity: 0.33;
}
.gallery .gallery-items img:nth-child(5):hover{
	-webkit-transform: translate(-15px, -15px);
	transform: translate(-15px, -15px);
	opacity: 1;
	z-index: 3;
}

/*Team-----*/
.team{
	background: #fff;
	padding: 80px 0;
}
.team p.h2{
	font-size: 42px;
	/*color: #141414;*/
	color: #272727;
	font-family: 'Yeseva One', cursive;
	text-align: center;
	margin-bottom: 50px;
	font-weight: bold;
}
.team .team-slider{
	padding: 0 150px;
}
.team .owl-theme .owl-nav{
	display: block !important;
}
.team .team-slider .team-slider-item{
	text-align: center;
}
.team .team-slider .team-slider-item .team-slider-item-img{
	position: relative;
	text-align: center;
}
.team .team-slider .team-slider-item .team-slider-item-img img{
	-webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    transform: scale(0.8);
    transition: all ease 0.4s;
}
.team .team-slider .middle .team-slider-item .team-slider-item-img img{
	-webkit-filter: grayscale(0%);
    filter: grayscale(0%);
    transform: scale(1);
}
.team .team-slider .team-slider-item .team-slider-item-info{
	position: absolute;
	top: 0px;
	left: 0px;
	background: rgba(255, 255, 255, 0.9);
	width: 100%;
	height: 100%;
	padding: 20px 15px;
	display: none;

	animation-duration: 0.25s;
 	animation-fill-mode: both;
 	animation-name: slideInDown;
}
.team .team-slider .team-slider-item .team-slider-item-info .title{
	/*font-style: italic;*/
	font-size: 18px;
	/*color: #d11818;*/
	color: #272727;
	font-weight: bold;
	margin: 25px 0;
}
.team .team-slider .team-slider-item .team-slider-item-info .txt p{
	margin-bottom: 10px;
	color: #000;
}
.team .team-slider .team-slider-item .team-slider-item-txt{
	margin-top: 25px;
	display: none;
}
.team .team-slider .middle .team-slider-item .team-slider-item-txt{
	display: block;
}
.team .team-slider .team-slider-item .team-slider-item-txt .name{
	/*color: #d11818;*/
	color: #272727;
	font-size: 18px;
	/*font-style: italic;*/
	font-weight: bold;
}
.team .team-slider .team-slider-item .team-slider-item-txt .txt{
	margin-top: 10px;
	/*color: #141414;*/
	color: #272727;
	font-size: 16px;
}
.team .team-slider .middle .team-slider-item:hover .team-slider-item-info{
	display: block;
}

/*Reviews-----*/
.reviews{
	background: #272727;
	padding: 90px 0;
}
.reviews span.h2>p{
	text-align: center;
	font-size: 42px;
	line-height: 55px;
	color: #eee;
	margin-bottom: 50px;
	font-family: 'Yeseva One', cursive;
	font-weight: bold;
}
.reviews .reviews-slider .reviews-slider-item{
	text-align: center;
	padding: 0 100px;
}
.reviews .reviews-slider .reviews-slider-item p.name{
	font-weight: 700;
	font-size: 18px;
	/*font-style: italic;*/
	/*color: #d11818;*/
	color: #eee;
	margin-bottom: 25px;
	outline: none;
}
.reviews .reviews-slider .reviews-slider-item .txt p{
	outline: none;
	font-size: 16px;
	font-weight: 300;
	color: #eee;
}
.home-carousel .owl-nav i{
	font-size: 30px;
	line-height: 37px;
	text-align: center;
	color: #7f7f7f;
	width: 40px;
	height: 40px;
	color: #eee;
	border-radius: 50%;
	background: #d11818;
	border: 1px solid transparent;

	transition: all ease .25s;
    -webkit-transition: all ease .25s;
}
.home-carousel .owl-nav i:hover{
	background: #fff;
	color: #2a2a2a;
	border: 1px solid #d11818;
}
.home-carousel .owl-prev {
    position: absolute;
    top: 45%;
    left: 0px;
    display: block;
    border: 0px solid black;
    background: transparent !important;
}
.home-carousel .owl-next {
    position: absolute;
    top: 45%;
    right: 0px;
    display: block;
    border: 0px solid black;
    background: transparent !important;
}

.home-carousel .owl-prev i{
    padding-right: 2px;
}

.home-carousel .owl-next i{
    padding-left: 4px;
}

/*Instagram-----*/
.instagram{
	padding: 50px 0;
}
.instagram .logo-insta{
	margin-bottom: 20px;
}
.instagram .logo-insta img{
	display: block;
	margin: 0 auto;
}

.instagram .instagram-pics li{
	display: inline-block;
	list-style-type: none;
	width: 20%;
}
.instagram .instagram-pics li img{
	width: 93%;
	margin: 0 auto 10px;
	display: block;
	border: 2px solid #d2a77a;
	transition: all ease .25s;
}
.instagram .instagram-pics li img:hover{
	transform: scale(0.9);
	opacity: 0.8;
}

/*Footer*/
.footer{
	background: #272727;
	padding: 40px 0;
}

.footer .footer-contact{
	text-align: center;
	color: #eee;
	font-size: 14px;
}
.footer .footer-contact p.h4{
	/*color: #d6ca95;*/
	font-family: 'Yeseva One';
	color: #eee;
	font-size: 25px;
	font-weight: 400;
	/*font-family: 'Yeseva One', cursive;*/
}
.footer .footer-contact .address{
	/*text-transform: uppercase;*/
	margin-top: 10px;
}
.footer .footer-contact .phone{
	color: #eee;
}
.footer .footer-contact .phone:hover{
	/*text-decoration: underline;*/
	/*color: #d6ca95;*/
	color: #f41110;
}

.footer .footer-form .col{
	float: left;
	width: 48%;
}
.footer .footer-form .col:nth-child(3){
	float: right;
}
.footer .footer-form .col input{
	margin-bottom: 10px; 
	width: 100%;
	height: 40px;
	color: #eee;
	background: transparent;
	border: none;
	border-bottom: 1px solid #363636;
}
.footer .footer-form textarea{
	margin-bottom: 10px; 
	padding-top: 5px;
	width: 100%;
	height: 40px;
	color: #eee;
	background: transparent;
	border: none;
	border-bottom: 1px solid #363636;
}
.footer .footer-form input[type='submit']{
	background: #f41110;
	text-transform: uppercase;
	font-weight: bold;
	color: #eee;
	font-size: 14px;
	border: 1px solid transparent;
	padding: 10px 50px;
	transition: all ease 0.2s;
}
.footer .footer-form .col input::placeholder{
	color: #eee;
}
.footer .footer-form textarea::placeholder{
	color: #eee;
}
.footer .footer-form input[type='submit']:hover,
.footer .footer-form input[type='submit']:active{
	border: 1px solid #f41110;
	background: transparent;
	color: #eee;
}

.footer .footer-form .col input.wpcf7-not-valid{
	border-bottom: 1px solid red;
}
.footer .footer-form .success-8{
	color: #eee;
	margin-top: 10px;
}

/*copyright-----*/
.copyright{
	background: #272727;
	padding: 15px 0;
	border-top: 1px solid #363636;
}
.copyright .copyright-txt{
	float: left;
	display: inline-block;
}
.copyright .copyright-txt p{
	color: #eee;
	font-size: 13px;
	line-height: 20px;
}
.copyright .icons{
	float: right;
}
.copyright .icons i{
	padding: 0 5px;
	font-size: 17px;
	line-height: 20px;
	color: #eee;
	transition: all ease 0.25s;
}
.copyright .icons i:hover{
	color: #fdf58c;
}

/*Simple Page*/
.simple-page{
	padding: 100px 0 50px;
}
.simple-page .simple-page-cont{
	padding: 60px 0;
}
.simple-page .editor{
	/*margin-top: 40px;*/
}

/*Editor styles*/
.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}

.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.simple-page p.h1, h1{
	font-size: 42px;
	margin-bottom: 50px;
	/*font-family: 'Yeseva One', cursive;*/
	font-weight: bold;
}

.editor p{
	margin: 5px 0 10px;
	font-size: 16px;
}
.editor blockquote {
	color: #666;
	font-size: 18px;
	font-size: 1.125rem;
	font-style: italic;
	line-height: 1.7;
	margin: 0;
	margin-bottom: 15px;
	overflow: hidden;
	padding: 0;
	padding-left: 15px;
	position: relative;
}

.editor blockquote cite {
	display: block;
	font-style: normal;
	font-weight: 600;
	margin-top: 0.5em;
}

.editor blockquote {
	quotes: "" "";
}

.editor q {
	quotes: "“" "”" "‘" "’";
}

.editor blockquote:after {
	content: "";
}
.editor blockquote:before{
	content: "";
	position: absolute;
	width: 5px;
	height: 100%;
	top: 0;
	left: 0;
	background: #ccc;
}

.editor ul:not([class]),
.editor ol:not([class]){
	padding-left: 30px;
	margin-bottom: 10px;
}

.editor ul:not([class]) li{
	list-style-type: none;
	position: relative;
	font-weight: 300;
	font-size: 16px;
}

.editor ol:not([class]) li{
	position: relative;
	font-weight: 300;
	font-size: 16px;
}

.editor ul:not([class]) li:after{
	content: '';
	position: absolute;
	top: 8px;
	left: -15px;
	width: 5px;
	height: 5px;
	background: #ff1520;
}

.editor .gallery-item img, .gallery-item img {
	height: auto;
	max-width: 100%;
}



.editor a{
	color: #ff1520;
	text-decoration: underline;
}

/*404*/
.simple-page.pg404{
	text-align: center;
	background: #272727;
	border-bottom: 1px solid #eee;
	padding: 130px 0 80px;
}
.simple-page.pg404 .simple-page-cont .title{
	color: #eee;
	font-size: 45px;
	line-height: 45px;
	font-weight: bold;
}
.simple-page.pg404 .simple-page-cont .line{
	width: 100px;
	height: 2px;
	background: #f41110;
	margin: 10px auto;
	display: block;
}
.simple-page.pg404 .simple-page-cont p{
	font-size: 20px;
	color: #eee;
}

.iconworks_cell {
	display: inline-block;
	text-align: center;
	width: 19%;
	padding: 5% 0;
	}
	
	.iconworks_cell:hover {
		border-bottom: 2px solid #000;
	}

.iconworks_cell a {
	color: #000;
	transform: uppercase;
}

.iconworks_cell a  p {
	padding-top: 10px;
}

.iconworks_cell a :hover {
	color: red;
	text-decoration: underline;
}


.iconworks_cell img {
	width: 50px;
	height: auto;
}

.typeworks {
    margin-bottom: -160px;
}

.descript_video {
	/*height: 80vh;*/
	margin-top: 15vh;
    line-height: 40px;
    padding-left: 10%;
    margin: 20vh 0;
}

.descript_video p {
	font-size: 24px;
}

.the_block_video {
	margin-top: 15vh;
}

.paralax_video{
	position: relative;
    min-height: 100%;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
	color: #fff;
}

.pricing_item {
	background: rgb(249, 249, 249);
	/*width: 80%;*/
	box-shadow: 0 0 3px #000;
	margin: 20px auto;
	text-align: center;
	line-height: 1.5;
	font-size: 16px;
	padding: 25px 20px;
}    

.cmsmasters_price_wrap {
    border-bottom: 1px solid;
    padding-bottom: 15px;
    border-top: 1px solid;
	padding-top: 15px;}

.pricing_item h3 {
	font-size: 24px;
	font-weight: 600;
	line-height: 30px;
    padding-bottom: 20px;
	
}
.cmsmasters_price {
	font-size: 64px;
	line-height: 50px;
	font-weight: 600;
}
.cmsmasters_currency {
	font-size: 25px;
	line-height: 34px;
	font-weight: 600;
}

.feature_list {
    font-size: 15px;
    line-height: 45px;
    padding-top: 15px;
    padding-bottom: 15px;
}

.cmsmasters_button {
    display: inline-block;
    padding: 9px 30px;
    cursor: pointer;
    position: relative;
	background: #ff1520;
	border-radius: 0 !important;
}

a.cmsmasters_button {
	color: #fff;
}

h3.name_video {
	font-size: 45px;
}

iframe {max-width: 100%;
    text-align: center;
    margin: 0 auto 10vh;
    display: block;}

@media (max-width: 767px) and (min-width: 320px) {
	
}

@media (max-width: 639px) and (min-width: 320px) {
	.pricing_item  {width: 100%;}
	.iconworks_cell {
		width: 80%;
		margin: 0 auto;
		display: block;}
	.descript_video {
		padding-left: 10vh;
		margin: 10vh auto; 
		display: block;
	}	
	.simple-page p.h1, h1 {
		font-size: 24px;
		margin-bottom: 0;
	}
	.wp-image-853, .wp-image-854 {
		width: 90%;
		text-align: center;
	}
	h3.name_video {
		font-size: 34px;
	}
}

.row {
	margin-right: 0;
}

.page-list-ext.bloglist  .page-list-ext-item {
	max-width: 30%;
	display: inline-block;
	margin: 1.5%;
	clear: none !important;
	
}

.bloglist .page-list-ext-image {
	width: 100%;
	float: none;
	
}

.bloglist .page-list-ext-image img{
		/*width: 90%;*/
	float: none;
	height: auto;
	display: block;
	margin: 0 auto;
	}
	
.bloglist .page-list-ext-item-content {
	text-align: justify;
}

#price_img img {
	width: 100% !important;
	height: auto !important;
}

#wpcf7-f207-o2 p.h4 {font-family: 'Yeseva One';
    color: #eee;
    font-size: 25px;
	font-weight: 400;
	text-align: center;
}

/*DOP KOD*/

.paralax_video button.btn2 {    background: #d11818;
    color: #eee;
    font-size: 18px;
    font-weight: bold;
    padding: 15px 35px;
    border: 1px solid #f41110;
    transition: all ease 0.2s;
    text-transform: uppercase;
    margin-top: 5vh;
    margin-bottom: 3vh;
	border-radius: 0;
	
}

.salesdriveforms_action_btn.order_button {
	border: 1px solid #fff;
	border-radius: 0px;
	padding: 0 10px;
	line-height: 30px;
	color: #fff;
	font-size: 16px/*18px*/;
	text-transform: lowercase;
}
.salesdriveforms_action_btn.btn {
	position: relative;
	height: 60px;
	background: #d11818;
	color: #fff;
	font-family: "ProximaNova-Bold", sans-serif;
	font-size: 13px;
	border-radius: 30px;
	text-transform: uppercase;
	text-align: center;
	-webkit-backface-visibility: hidden;
	-moz-osx-font-smoothing: grayscale;
	-webkit-transition: background-color 0.3s, color .3s;
	transition: background-color 0.3s, color .3s;
	max-width: 336px;
	width: 100%;
}
.salesdriveforms_action_btn.red{
	background-color: rgb(198, 31, 31) !important;
	font-size: 24px;
    font-family: Tahoma;
}

#sd-form-body input, #sd-form-body textarea {
	font-size: 24px;
	margin:20px 0px;
}
.salesdriveforms_action_btn.cmsmasters_button{
	font-size: 16px;
	font-family: 'Montserrat', sans-serif;
    padding: 9px 30px;
}
/*Price*/

.name-price .big-column1,
.name-price .small-column2, 
.name-price .small-column3, 
.name-price .small-column4 {
	font-weight: 600;
	/*padding: 10px 0;*/
	/*text-align: center;*/
	overflow: hidden;
}

.small-column2, 
.small-column3, 
.small-column4 {
	text-align: center;
}

.one_price_block {
	border: 1px solid #ccc;
}

@media (max-width: 508px) and (min-width: 320px) {
	.name-price .small-column2, 
.name-price .small-column3, 
.name-price .small-column4 {
	font-weight: 600;
	font-size:10px;
	overflow: hidden;
}

.gallery-item img {
max-width: 170px;
height: auto;
}

table {
    
    max-width: 330px;
    display: block;
    margin: 0 auto;
}

.tablepress {
	max-width: 330px;
    overflow: scroll;}
}

   .procedure>.owl-naw{
            display: flex !important;
            justify-content: center;

        }
 .procedure .owl-prew{
            padding-right: 20px !important;
        }
@media(max-width: 768px){ 
	.nomobile {
	display: none;
	}       
	.mtp {margin-top:-60px;}
	.cleaning-tp .cleaning_block1 {
		margin: 0 auto;

	}
}


.content-img {
	max-width: 100%;
	height: auto;

}

.wp-block-image img {
	max-width: 100%;
	height: auto;
}

.otziv {
	    display: flex;
    align-items: center;
}

.otziv p {padding: 0 20px ;}