@import url("reset.css");
/*
theme_color : #2d74e6;
hover_color: #2967cc;
*/
*{
  box-sizing: border-box;
}
b, strong{
  font-weight: 600;
}
::-webkit-scrollbar {
  width:1em;
  width:10px;
  height:10px
}
::-webkit-scrollbar-track {
  background:#000;
  -webkit-box-shadow:inset 0 0 6px rgba(200,200,200,0.5);
  width:5px
}
::-webkit-scrollbar-thumb {
  background-color:#2d74e6;
  outline:1px solid #000;
  width:5px
}

body{
  position: relative;
  font-size: 14px;
  line-height: 22px;
  color: #131313;
	overflow-x: hidden;
}
.container{
	width: 100%;
	max-width: 1366px;
	padding: 0 15px;
  margin: 0 auto;
	position: relative;
}
.section{
	width: 100%;
	float: left;
	clear: both;
	position: relative;
}
.container:after,
.section:after{
	content: '';
	clear: both;
	display: block;
	width: 100%;
	height: 0px;
}
.line{
  display: block;
  margin: 0 auto;
  border: none;
  height: 2px;
  width: 48px;
  background: #000;
  float: left;
}
.section_title{
  color: #342e27;
  font-size: 28px;
  line-height: 34px;
  font-weight: 500;
  text-transform: uppercase;
}
.theme_color{
  color: #2d74e6;
}
.white_color{
  color: #fff;
}
.theme_background{
  background: #2d74e6;
}
.white_background{
  background: #fff;
}
.section_title a{
  display: block;
  float: right;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
  font-size: 14px;
  margin-top: -5px;
  background: #2d74e6;
  text-transform: none;
  padding: 5px 50px 5px 50px;
  text-transform: uppercase;
  -webkit-transition: .3s ease-in-out;
  -moz-transition: .3s ease-in-out;
  -o-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  transition-property: background;
}
.section_title a:hover{
  background: #2d74e6;
}
.info .alert-message-content{
	background: url(../img/cookie.png) left 20px center /auto 32px no-repeat, #2d74e6;
}


#globalAlert{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 5px 15px;
  background: #00c300;
  color: #fff;
  font-weight: 500;
  text-align: center;
  z-index: 999999;
}

/****************************************
 *******       FiXED HEADER      ********
 ****************************************/
#header-fixed{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 101;
  padding: 10px 0;
  margin-top: -90px;
  background: rgba(0,0,0,0.8);
  -webkit-transition: .4s ease-in-out;
  -moz-transition: .4s ease-in-out;
  -o-transition: .4s ease-in-out;
  transition: .4s ease-in-out;
  transition-property: margin-top;
}
#header-fixed.shadow{
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  margin-top: 0px;
}
#header-fixed-logo{
  display: block;
  float: left;
}
#header-fixed #header-fixed-logo:not(.is_dropdown) img{
  max-width: 100%;
  width: auto;
  height: 50px;
  object-fit: scale-down;
  float: left;
}

#header-fixed-navbar{
  display: block;
  float: right;
}
#header-fixed ul{
  text-align: right;
}
#header-fixed li{
  display: inline-block;
  position: relative;
  height: 50px;
  font-weight: 500;
  font-size: 15px;
  vertical-align: middle;
}
#header-fixed li > a{
  display: block;
  padding: 15px 25px;
  color: #fff;
  font-weight: 500;
  -webkit-transition: .4s ease-in-out;
  -moz-transition: .4s ease-in-out;
  -o-transition: .4s ease-in-out;
  transition: .4s ease-in-out;
  transition-property: color, padding;
}
#header-fixed li:hover > a{
  padding: 18px 25px 12px 25px;
}
#header-fixed li:before{
  position: absolute;
  right: 0;
  top: 0;
  bottom: -2px;
  margin: auto;
  width: 1px;
  height: 12px;
  content: '';
  background: #fff;
  opacity: 0.2;
}
#header-fixed li:last-child:before{
  content: none;
  display: none;
}
#header-fixed li:after{
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  margin: auto;
  width: 0px;
  height: 1px;
  content: '';
  opacity: 0.8;
  background: #2d74e6;
  -webkit-transition: .4s ease-in-out;
  -moz-transition: .4s ease-in-out;
  -o-transition: .4s ease-in-out;
  transition: .4s ease-in-out;
  transition-property: width;
}
#header-fixed li:hover:after{
  width: 32px;
}
#header-fixed li:hover > a{
  color: #2d74e6;
}

#mobile-menu,
#mobile-lang{
	display: none;
  display: none;
}


/****************************************
 ***********      HEADER      ***********
 ****************************************/
#header{
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  background: rgba(0,0,0,0.8);
}
#header-logo{
  float: left;
  position: relative;
}
#header-logo img{
  width: 100%;
  max-width: 100%;
  height: 100px;
  float: left;
  object-fit: scale-down;
  object-position: left;
}
#header-menu{
  float: right;
}
#top{
  text-align: right;
}
#top span,
#top > ol > li > a{
  display: inline-block;
  vertical-align: top;
  padding: 10px 14px;
  font-size: 13px;
  color: #bbbbbb;
  -webkit-transition: .3s ease-in-out;
  -moz-transition: .3s ease-in-out;
  -o-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  transition-property: color;
}
#top li{
  display: inline-block;
  vertical-align: top;
}
#top > ol > li > a:hover{
  color: #2967cc;
}
#top a.social{
  background: #2d74e6;
  padding: 0;
  width: 26px;
  height: 26px;
  line-height: 26px;
  text-align: center;
  margin-top: 6px;
}
#top a.social.facebook{
  background: #236bc5;
}
#top a.social img{
  margin: -2px 0 0 0;
}
#top span{
  font-weight: 600;
}
#top a img{
  display: inline-block;
  vertical-align: middle;
  height: 14px;
  margin: -3px 8px 0 0;
}
#top li em{
	cursor: pointer;
	background: #2d74e6;
    color: #fff;
    margin-top: 6px;
    margin-left: 5px;
    display: block;
    padding: 3px 15px 1px 15px;
}
#top span:first-of-type{
  color: #2d74e6;
}
#top span:last-of-type{
  color: #2d74e6;
}
#navbar{
  margin: 0;
}
#navbar ul{
  text-align: right;
}
#navbar ul li{
  position: relative;
  display: inline-block;
  vertical-align: middle;
  text-transform: uppercase;
}
#navbar ul li > a{
  display: inline-block;
  font-size: 15px;
  opacity: 0.8;
  color: #fff;
  font-weight: 500;
  padding: 17px 22px 15px 20px;
  -webkit-transition: .3s ease-in-out;
  -moz-transition: .3s ease-in-out;
  -o-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  transition-property: color, padding, opacity;
}
#navbar ul li:not(:last-child):after{
  position: absolute;
  display: block;
  top: 3px;
  bottom: 0;
  right: 0px;
  width: 1px;
  height: 10px;
  background: #fff;
  opacity: 0.2;
  content: '';
  margin: auto;
}
#navbar ul li:before{
  position: absolute;
  display: block;
  bottom: 5px;
  right: 0;
  left: 0;
  width: 0px;
  height: 1px;
  background: #2d74e6;
  content: '';
  margin: auto;
  -webkit-transition: .3s ease-in-out;
  -moz-transition: .3s ease-in-out;
  -o-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  transition-property: color, width;
}
#navbar ul li:hover:before{
  width: 20%;
}
#navbar ul li a:hover{
  padding: 20px 22px 12px 20px;
  color: #2d74e6;
  opacity: 1;
}
.item-active{
  color: #2d74e6;
  font-weight: 600;
}


.drop-it{
  position: relative;
}
.drop-it em{
  cursor: pointer;
  -webkit-transition: .3s ease-in-out;
  -moz-transition: .3s ease-in-out;
  -o-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  transition-property: background;
}
#top li em:hover{
  background: #2967cc;
}
.drop-it ol{
    position: absolute;
    top: 100%;
    left: 5px;
    right: 0;
    z-index: 999;
    text-align: center;
    background: #3b85fd;
    color: #fff;
    height: 0;
    overflow: hidden;
}
.drop-it.open ol{
  height: auto;
}
.drop-it em img{
  vertical-align: middle;
  height: 16px;
  margin-top: -3px;
}
.drop-it em img:first-of-type{
  margin-right: 6px;
  margin-left: -4px;
}
.drop-it em img:last-of-type{
  height: 8px;
  opacity: 0.8;
  margin-left: 10px;
  margin-right: -5px;
}
#top li ol li{
  height: 33px;
  width: 100%;
  line-height: 33px;
  cursor: pointer;
  border-bottom: 1px solid rgb(255 255 255 / 12%);
  font-size: 13px;
  opacity: 0.9;
  -webkit-transition: .3s ease-in-out;
  -moz-transition: .3s ease-in-out;
  -o-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  transition-property: background;
}
#top li ol li:last-child{
	border: none;
}
#top li ol li:hover{
	background: #468dff;
}

/****************************************
 **********      DROPDOWN      **********
 ****************************************/
.menu-dropdown{
  display: block;
  position: absolute;
  top: 69px;
  left: 50%;
  height: 0px;
  overflow: hidden;
  transform: translateX(-50%);
}
.menu-dropdown.open{
  background: #ffffff;
  z-index: 100000;
  background: #2d74e6;
  text-transform: none;
  text-align: center;
}
.is_dropdown{
  cursor: pointer;
}
.is_dropdown img{
  display: inline-block;
  vertical-align: middle;
  margin: -2px 0 0 9px;
  height: 10px;
}
.menu-dropdown a{
  color: #fff!important;
}
.menu-dropdown.open a{
  display: block!important;
  white-space: nowrap;
  padding: 6px 25px!important;
  font-size: 14px!important;
  border-bottom: 1px solid rgb(255 255 255 / 0.08);
  -webkit-transition: .3s ease-in-out;
  -moz-transition: .3s ease-in-out;
  -o-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  transition-property: color, background;
}
.menu-dropdown.open a:hover{
  color: #fff!important;
  background: #2967cc!important;
}
#header-fixed .menu-dropdown.open a{
  text-align: center;
  line-height: 26px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
#header-fixed .menu-dropdown.open a:hover{
  background: #2967cc;
}
#header-fixed .menu-dropdown{
  top: 60px;
  box-shadow: 5px 5px 5px rgb(0 0 0 / 0.1);
}


/****************************************
 ***********      SLIDER      ***********
 ****************************************/
#slider{
  position: relative;
  z-index: 1;
  background: #000;
}
.slider-element > img{
  float: left;
  width: 100%;
  object-fit: cover;
  transform: scale(1.05);
  -webkit-transition: .6s ease-in-out;
  -moz-transition: .6s ease-in-out;
  -o-transition: .6s ease-in-out;
  transition: .6s ease-in-out;
  transition-property: transform;
}
#slider,
.slider-element > img,
#slider .slick-slide{
  height: 100vh;
  min-height: 500px;
}
.slider-element.slick-active > img {
  transform: scale(1);
}
.slider-element{
  position: relative;
}
.slider-element:after{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  opacity: 0.7;
  background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 25%, rgba(0,0,0,0) 40%, rgba(0,0,0,1) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 25%,rgba(0,0,0,0) 40%,rgba(0,0,0,1) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 25%,rgba(0,0,0,0) 40%,rgba(0,0,0,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#354362',GradientType=0 ); /* IE6-9 */
}
.slider-element .container{
  position: absolute;
	bottom: 30%;
	left: 0;
	right: 0;
	z-index: 3;
}
.slider-element .container > div{
  text-align: center;
  color: #fff;
}
.slider-element h2{
  font-size: 58px;
  font-weight: 500;
  line-height: 60px;
  margin: 5px 0;
  text-shadow: 0 0 15px rgba(0,0,0,.75);
}
.slider-element h4{
  line-height: 26px;
  font-size: 28px;
  font-weight: 300;
  text-shadow: 0 0 15px rgba(0,0,0,.75);
}
.slider-element p{
  line-height: 30px;
  font-size: 28px;
  font-weight: 400;
  text-shadow: 0 0 15px rgba(0,0,0,.75);
}
.slider-element a{
  position: relative;
  display: inline-block;
  width: auto;
  text-align: center;
  color: rgba(255, 255, 255, 1);
  font-weight: 400;
  font-size: 16px;
  background: #3cb244;
  padding: 10px 35px 10px 35px;
  -webkit-transition: .3s ease-in-out;
  -moz-transition: .3s ease-in-out;
  -o-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  transition-property: background;
}
.slider-element a:hover{
	background: #34993b;
}


#slider form{
  max-width: 630px;
  background: #fff;
  padding-left: 10px;
  margin: 0 auto;
}
#slider form .pdd-left{
  padding-left: 30px;
  padding-right: 15px;
  position: relative;
}
#slider form .pdd-left:after{
  position: absolute;
  top: 0;
  right: 6px;
  content: '';
  background: #000;
  opacity: 0.12;
  width: 1px;
  height: 15px;
  top: 50%;
  transform: translateY(-50%);
}
#slider form .pdd-left.level:after,
#slider form .pdd-left.price_to:after{
  content: none;
}
#slider .area{
  background: url(../img/ico1.png) center left 6px no-repeat;
}
#slider .room{
  background: url(../img/ico2.png) center left 6px no-repeat;
}
#slider .level{
  background: url(../img/ico3.png) center left 6px no-repeat;
}
#slider .price_from,
#slider .price_to{
  background: url(../img/ico4.png) center left 6px no-repeat;
}
#slider .location{
  background: url(../img/ico5.png) center left 6px no-repeat;
}
#slider .type{
  background: url(../img/ico6.png) center left 6px no-repeat;
}
#slider form select{
  width: 100%;
  border: none;
  height: 45px;
  font-size: 16px;
  color: #5e5e5e;
  cursor: pointer;
  background: #fff;
}
#slider form input{
  width: 100%;
  border: none;
  height: 45px;
  font-size: 16px;
  color: #5e5e5e;
  background: #fff;
}
#slider form button{
  color: #fff;
  float: left;
  width: 100%;
  height: 45px;
  line-height: 45px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  background: #2d74e6;
  -webkit-transition: .3s ease-in-out;
  -moz-transition: .3s ease-in-out;
  -o-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  transition-property: background;
}
#slider form button:hover{
  background: #2967cc;
}
#slider form .clr{
	border-top: 1px solid #e1e1e1;
}


/****************************************
 ********      MAIN CONTENT      ********
 ****************************************/
#main-content{
  position: relative;
  background: #fff;
  z-index: 3;
}
#main-content:before{
  position: absolute;
  bottom: 8%;
  left:0;
  height: 55%;
  width: 25%;
  width: calc(calc(100vw - 1100px) / 2);
  content: '';
  background: #2c2b2a;
}
#main-content h3 b{
  font-weight: 600;
}
#main-content h2,
#main-content h3,
#our-offer h2{
  color: #342e27;
  font-size: 28px;
  line-height: 34px;
  font-weight: 500;
  text-transform: uppercase;
}
#main-content h4{
  font-size: 20px;
  line-height: 16px;
  font-weight: 200;
  padding: 5px 0;
}
#main-content h5,
#our-offer h5{
  font-size: 15px;
  line-height: 24px;
  font-weight: 400;
  opacity: 0.9;
}
#main-content h6{
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
}
#main-content ul,
#main-content ol{
  margin-left: 25px;
}
#main-content ul{
  list-style: circle;
}
#main-content ol{
  list-style: decimal;
}
#main-content p{
  font-size: 14px;
  line-height: 24px;
  font-weight: 300;
  padding: 10px 0px;
  box-sizing: border-box;
  display: block;
  clear: both;
  opacity: 0.8;
}
#main-content hr{
  display: block;
  width: 64px;
  border: 0;
  height: 1px;
  background: #2d74e6;
  float: left;
  margin: 15px 0 25px 0;
}

#main-content-features{
  padding: 50px 0;
}
#main-content-features-2{
  padding-left: 150px;
}
#main-content-features > div > img,
#main-content-features-2 > div > img{
  display: block;
  float: left;
  width: 25%;
  height: 90px;
  object-fit: scale-down;
  object-position: center left;
}
#main-content-features > div > span,
#main-content-features-2 > div > span{
  display: block;
  float: left;
  width: 75%;
  text-align: left;
  font-size: 16px;
  line-height: 22px;
  color: #6e6e6e;
  padding: 25px 30px 5px 0;
}
#main-content-features > div > span b,
#main-content-features-2 > div > span b{
  display: block;
  color: #342e27;
}
#main-content #main-content-in-details *{
  color: #fff!important;
}

#main-content #main-content-info p{
  font-weight: 400;
}

#main-content-in-details{
  background: #2c2b2a;
  padding: 50px 0 50px 70px;
  position: relative;
}
#main-content-in-details:after{
  position: absolute;
  top: 0;
  left: 100%;
  content: '';
  height: 100%;
  width: 300%;
  width: calc(50vw - 673px);
  background: #2c2b2a;
}
#main-content button{
  display: inline-block;
  margin-right: 15px;
  border: none;
  background: #2d74e6;
  height: 42px;
  line-height: 42px;
  padding: 0 30px;
  text-transform: uppercase;
  color: #fff;
  cursor: pointer;
  -webkit-transition: .3s ease-in-out;
  -moz-transition: .3s ease-in-out;
  -o-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  transition-property: background;
}
#main-content button.brown{
  background: #b68956;
}
#main-content button:not(.slick-arrow):hover{
  background: #2967cc;
}
#main-content button.brown:hover{
  background: #9c7549;
}

#main-content-slider{
  margin-top: 65px;
}
#main-content-carousel{
  width: 120%;
  margin-left: -30%;
  background: #fff;
}
#main-content-carousel img{
  height: 450px;
  width: 100%;
  object-fit: cover;
}
#main-content-carousel .slick-arrow{
  position: absolute;
  top: -80px;
  right: 0;
  display: block;
  width: 20px;
  height: 60px;
  padding: 0;
  background: url(../img/next.svg) center no-repeat;
  border: none;
  cursor: pointer;
  opacity: 0.9;
  -webkit-transition: .3s ease-in-out;
  -moz-transition: .3s ease-in-out;
  -o-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  transition-property: opacity;
}
#main-content-carousel .slick-arrow:hover{
  opacity: 1;
}
#main-content-carousel .slick-arrow.slick-prev{
  right: 30px;
  transform: scaleX(-1);
}
#main-content-image img{
  float: left;
  width: 100%;
  max-height: 500px;
  object-fit: scale-down;
}


/****************************************
 ********        OUR OFFER       ********
 ****************************************/
#our-offer{
	padding: 60px 0;
}
.offer-box{
  padding: 0 5px;
}
.offer-box a{
  position: relative;
  display: block;
  width: 100%;
  height: 400px;
  overflow: hidden;
}
.offer-box a > img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  position: relative;
  -webkit-transition: .3s ease-in-out;
  -moz-transition: .3s ease-in-out;
  -o-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  transition-property: transform;
}
.offer-box a:hover > img{
	transform: scale(1.08);
}
.offer-box a div{
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px 10px;
  text-align: center;
  z-index: 2;
  background: #2d74e6; 
  -webkit-transition: .3s ease-in-out;
  -moz-transition: .3s ease-in-out;
  -o-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  transition-property: background;
}
.offer-box a:hover div{
  background: #2967cc;
}
.offer-box h3{
  color: #fff!important;
  font-weight: 500!important;
  text-transform: uppercase!important;
  font-size: 22px!important;
  line-height: 26px!important;
}
.offer-box h6{
  color: #fff;
  font-size: 14px;
  line-height: 20px;
  font-weight: 300;
  padding: 10px 15px;
}
.offer-box button{
  border: none;
  outline: none;
  cursor: pointer;
  background: #2d74e6;
  color: #fff;
  width: 165px;
  padding: 10px 30px;
  position: absolute;
  bottom: 25px;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transition: .3s ease-in-out;
  -moz-transition: .3s ease-in-out;
  -o-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  transition-property: background;
}
.offer-box button:hover{
  background: #2967cc;
}
#our-offer{
  position: relative;
}
#our-offer .slick-arrow{
  position: absolute;
  top: 70%;
  width: 50px;
  height: 50px;
  cursor: pointer;
  background: url(../img/arrow.svg) center /auto 32px no-repeat, #fff;
  border: 1px solid #e2e2e2;
  -webkit-transition: .3s ease-in-out;
  -moz-transition: .3s ease-in-out;
  -o-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  transition-property: border-color;
}
#our-offer .slick-arrow.slick-next{
  right: -70px;
  transform: scaleX(-1);
}
#our-offer .slick-arrow.slick-prev{
  left: -70px;
}



/****************************************
 ********         GALLERY        ********
 ****************************************/
#gallery{
  background: #fff;
  position: relative;
}


/****************************************
 ********           MAP          ********
 ****************************************/
#map{
  background: #fff;
  position: relative;
}
#map iframe{
  width: 100%;
  float: left;
  height: 420px;
}


/****************************************
 ********       CUSTOM FORM      ********
 ****************************************/
.input-holder{
 padding: 5px;
 box-sizing: border-box;
}
.input-holder input,
.input-holder select,
.input-holder textarea{
 width: 100%;
 height: 50px;
 border: 1px solid #eaeaea;
 background: #fff;
 padding: 5px 15px;
 box-sizing: border-box;
 font: 500 14px "Exo";
}
.input-holder button{
 width: 100%;
 height: 42px;
 background: none;
 border: 1px solid #fff;
 font-weight: 500;
 font-size: 14px;
 color: #fff;
 font: 500 14px "Exo";
 cursor: pointer;
 outline: none;
 -webkit-transition: .3s ease-in-out;
 -moz-transition: .3s ease-in-out;
 -o-transition: .3s ease-in-out;
 transition: .3s ease-in-out;
 transition-property: background, color;
}
.input-holder button:hover{
 background: #ffffff;
 color: #2d74e6;
}
.input-holder label{
 display: block;
 width: 100%;
 padding-left: 15px;
 box-sizing: border-box;
 font-size: 15px;
 line-height: 22px;
 font-weight: 200;
 text-align: justify;
 cursor: pointer;
}
.input-holder label b{
 font-weight: 400;
}
.input-holder input[type="checkbox"]{
 display: inline-block;
 float: left;
 width: 16px;
 height: 16px;
 padding: 0;
 margin: 0 10px 25px 0;
}


#form-contact .input-holder{
  padding: 5px;
}
#form-contact .label{
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
  font-size: 14px;
  border: none;
  background: #2d74e6;
  height: 50px;
  text-align: center;
  padding: 14px 0px 14px 0px;
}
#form-contact .input-holder button{
  border: 1px solid #2d74e6;
}
#form-contact .input-holder.w40 input{
  text-align: center;
  letter-spacing: 3px;
}

#custom-form h5{
  font-size: 18px;
  color: #2e2e2e;
  padding-top: 5px;
}
#custom-form{
  position: relative;
  background: #f4f4f4;
  margin-top: 50px;
}
#form-contact{
  position: relative;
  margin: 50px auto;
  text-align: center;
}
#form-contact h2{
  text-transform: none;
}
#custom-form p{
  font-size: 20px;
  font-weight: 300;
  line-height: 26px;
}
#custom-form input,
#custom-form select,
#custom-form textarea{
  -webkit-transition: .3s ease-in-out;
  -moz-transition: .3s ease-in-out;
  -o-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  transition-property: border-color;
}
#custom-form textarea{
  resize: none;
  padding-top: 15px;
  padding-bottom: 15px;
  height: 110px;
  line-height: 26px;
}
#custom-form input:hover,
#custom-form select:hover,
#custom-form textarea:hover{
  border-color: #2d74e6;
  background: #fff;
}
#custom-form label{
  font-weight: 400;
  color: #7b7b7b;
  padding-left: 0;
  font-size: 14px;
  line-height: 17px;
  display: block;
  float: left;
  margin: 3px 0 0 15px;
  max-width: 660px;
}
#custom-form label b{
  font-weight: 600;
}
#custom-form input[type="file"]{
  position: relative;
  width: 320px;
}
#custom-form input[type="file"]:before{
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  content: attr(placeholder);
  width: 100%;
  height: 100%;
  line-height: 60px;
  padding: 0 15px 0 40px;
  box-sizing: border-box;
  cursor: pointer;
  background: url(../img/attachment.svg) center left 10px /auto 22px no-repeat, #f7f7f7;
}
#custom-form button[type="submit"]{
  background: #2d74e6;
  display: inline-block;
  width: auto;
  float: right;
  padding: 10px 30px;
}
#custom-form button[type="submit"]:hover{
  color: #fff;
  background: #2967cc;
}
.fileName{
  display: inline-block;
  color: #2d74e6;
  line-height: 60px;
  vertical-align: top;
  padding: 0 15px;
}



#bottom{
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 600px;
  margin-left: 83px;
  font-weight: 300;
  z-index: 10;
  background: #b68956;
  padding: 40px 80px;
  color: #fff;
}
#bottom h4 {
  color: #fff;
  font-size: 20px;
  line-height: 16px;
  font-weight: 200;
  padding: 5px 0;
}
#bottom h2{
  color: #fff;
}
#bottom hr{
  display: block;
  width: 64px;
  border: 0;
  height: 1px;
  background: #ffffff;
  float: left;
}
#bottom a{
  font-weight: 500;
  font-size: 16px;
  padding: 0 10px;
}
#bottom a:hover{
  color: #2c2b2a;
}

/****************************************
 ********          FOOTER        ********
 ****************************************/
#footer-menu{
  background: #fff;
  border-bottom: 1px solid #eaeaea;
}
#footer-menu ul{
  text-align: left;
  margin-top: 3px;
}
#footer-menu ul li{
  position: relative;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
}
#footer-menu ul li:not(:last-child):after{
  position: absolute;
  top: 35px;
  bottom: 36px;
  right: -1px;
  width: 1px;
  content: '';
  background: #000;
  opacity: 0.1;
}
#footer-menu ul li a{
  display: block;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  color: #424242;
  padding: 30px 15px;
}
#footer-menu ul li a:hover{
  color: #2d74e6;
}
#footer-menu ul li:first-child a{
  padding-left: 0;
}
#footer-menu ul li:last-child a{
  padding-right: 0;
}

#footer{
  position: relative;
  padding: 30px 0;
  background: #000;
  color: #fff;
}
#footer p{
  font-weight: 400;
  font-size: 14px;
  line-height: 15px;
  display: block;
  float: left;
  padding-top: 20px;
  opacity: 0.8;
}
#footer span{
  display: block;
  float: right;
  margin-right: 25px;
  margin-top: 10px;
}
#footer p a{
  opacity: 0.6;
  line-height: 40px;
  font-weight: 300;
  padding-right: 25px;
}
#footer p a:hover{
  color: #fff;
  opacity: 1;
}
#footer p em{
  padding: 0 25px;
}
#footer .w30 img{
  float: right;
  height: 84px;
}



.expand-content{
  display: block;
  color: #fff;
  box-sizing: border-box;
  text-align: left;
  margin-bottom: 15px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .05);
}
.expand-content.act {
  background: #ffffff;
}
.expand-content h6{
  font-size: 19px;
  font-weight: 600;
  line-height: 26px;
  text-transform: uppercase;
  cursor: pointer;
  background: #131b29;
  padding: 15px 25px 15px 25px;
  -webkit-transition: .3s ease-in-out;
  -moz-transition: .3s ease-in-out;
  -o-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  transition-property: background;
}
.expand-content:hover h6, .act h6 {
  background: #2d74e6;
}
.expand-content h6 em{
  display: inline-block;
  float: right;
  border-radius: 50%;
  width: 27px;
  padding-top: 1px;
  height: 27px;
  line-height: 21px;
  text-align: center;
  font-size: 15px;
  color: #d4d4d4;
  font-family: monospace;
  border: 2px solid #d4d4d4;
  transform: rotate(90deg);
  -webkit-transition: .3s ease-in-out;
  -moz-transition: .3s ease-in-out;
  -o-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  transition-property: color, border-color;
}
.expand-content:hover em, .act h6 em {
  color: #fff;
  border-color: #fff;
}
.act h6 em {
  transform: rotate(270deg);
  padding-top: 0;
}
.expand-content > div{
  background: none;
  position: relative;
  display: block;
  height: 0;
  width: 100%;
  overflow: hidden;
  color: initial;
  padding: 0 30px;
  outline: 1px solid #c51c2e!important;
  outline-offset: -1px!important;
}
.expand-content > div:before,
.expand-content > div:after {
  display: block;
  height: 20px;
  content: '';
}
.expand-content img{
  max-height: 360px;
  max-width: 100%;
  margin: 5px 15px;
}
.expand-content table{
  border: 1px solid #f2f1f0;
}
.expand-content table th{
  padding: 15px 20px;
  color: #2d74e6;
  background: #f2f1f0;
}
.expand-content table td{
  padding: 10px 20px;;
}
#subpage-content .expand-content > div ul,
#subpage-content .expand-content > div ol{
  margin-top: -20px;
}
#subpage-content .expand-content > div ul > li,
#subpage-content .expand-content > div ol > li{
  padding: 2px 0;
}
#subpage-content .expand-content > div ul{
  list-style: none;
}
#subpage-content .expand-content > div ul li{
  padding-left: 25px;
  background: url(../img/arrow.png) top 6px left no-repeat;
}
img.subpage-foto{
  width: 100%;
  height: 400px;
  object-fit: cover;
}

#subpage-content p.path{
    padding: 0;
    font-size: 15px;
    color: #898989;
}
p.path em{
	padding: 0 6px;
	opacity: 0.6;
}

/***************************************************************************
 *****************************     SUBPAGES    *****************************
 ***************************************************************************/

/* *********   BANNER    ********* */
#subpage-banner{
  position: relative;
  height: 360px;
}
#subpage-banner:after{
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  opacity: 0.7;
  background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 25%, rgba(0,0,0,0) 40%, rgba(0,0,0,1) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 25%,rgba(0,0,0,0) 40%,rgba(0,0,0,1) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 25%,rgba(0,0,0,0) 40%,rgba(0,0,0,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#354362',GradientType=0 ); /* IE6-9 */
}
#subpage-banner .container{
  position: absolute;
  bottom: 50px;
  left: 0;
  right: 0;
  z-index: 3;
}
#subpage-banner h1{
  font-size: 46px;
  font-weight: 500;
  line-height: 56px;
  color: #fff;
  text-shadow: 0 0 20px #000;
}



/* *********   SUBPAGE CONTENT    ********* */
#subpage-content{
  background: #fff;
  padding: 50px 0;
}
#subpage-content h2,
#subpage-content h3,
#subpage-flats h2,
#subpage-flats h3{
  color: #342e27;
  font-size: 28px;
  line-height: 34px;
  font-weight: 500;
  text-transform: uppercase;
}
#subpage-content h4,
#subpage-flats h4{
  font-size: 20px;
  line-height: 24px;
  font-weight: 200;
  padding: 5px 0;
}
#subpage-content h5,
#subpage-flats h5{
  font-size: 15px;
  line-height: 24px;
  font-weight: 400;
  opacity: 0.9;
}
#subpage-content h6,
#subpage-flats h6{
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
}
#subpage-content p,
#subpage-flats p{
  color: #191919;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  padding-top: 20px;
}
#subpage-content ol{
  list-style: decimal;
  margin-left: 15px;
  margin-bottom: 20px;
  margin-top: 10px;
}
#subpage-content ul{
  margin-bottom: 20px;
  margin-left: 5px;
}
#subpage-content ul li{
  position: relative;
  color: #191919;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
}
#subpage-content ul li:before{
  display: inline-block;
  width: 6px;
  height: 6px;
  content: '';
  margin: 2px 10px 2px 0px;
  background: #2d74e6;
}
#subpage-content ol > li{
  font-size: 16px;
  line-height: 34px;
  padding: 3px 0;
}
#subpage-content p a:hover{
  color: #2d74e6;
}

#subpage-gallery{
  background: #fff;
}


#our-offer.subpage .offer-box{
  float: left;
}


#subpage-flats{
  background: #fff;
}
#subpage-flats .w40 img{
  width: 100%;
  min-height: 300px;
  object-fit: cover;
}
#subpage-flats table{
  width: 90%;
  margin: 0 5%;
}
#subpage-flats table th,
#subpage-flats table td{
  font-size: 15px;
  text-align: center;
  height: 50px;
  vertical-align: middle;
}
#subpage-flats table td:first-child{
  border-left: 1px solid #f1f1f1;
  font-weight: 600;
  opacity: 0.85;
}
#subpage-flats table td:last-child{
  border-right: 1px solid #f1f1f1;
}
#subpage-flats table th:first-child,
#subpage-flats table td:first-child{
  padding-left: 25px;
  text-align: left;
}
#subpage-flats table tr th{
  background: #2d74e6;
  font-weight: 600;
  color: #fff;
  border-right: 1px solid rgba(255,255,255,.1);
}

#subpage-flats table tr:not(:first-child):hover td {
    background: #f5f5f5;
}
#subpage-flats table td {
   font-size: 14px;
   font-weight: 400;
    border-bottom: 1px solid #f1f1f1;
    -webkit-transition: .4s ease-in-out;
    -moz-transition: .4s ease-in-out;
    -o-transition: .4s ease-in-out;
    transition: .4s ease-in-out;
    transition-property: background;
}
#subpage-flats table td a:hover{
  color: #2d74e6;
}
.a-btn{
  cursor: pointer;
  display: block;
  width: 95%;
  text-align: center;
  float: left;
  position: relative;
  color: rgba(255, 255, 255, 1);
  font-weight: 500;
  font-size: 14px;
  background: #354362;
  padding:5px;
  -webkit-transition: .3s ease-in-out;
  -moz-transition: .3s ease-in-out;
  -o-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  transition-property: background;
}
.a-btn:hover{
  background: #273147;
}
.a-btn-left{
  margin-right: 2%;
}
.a-btn-right{
  margin-left: 2%;
  background: #3cb244;
}
.a-btn.a-btn-right:hover{
  background: #34993b;
}
.a-btn.status-r{
  background: #f58b20;
}
.a-btn.status-r:hover{
  background: #db7c1d;
}
.a-btn.status-s{
  background: #ce0101;
}
.a-btn.status-s:hover{
  background: #b50202;
}

.a-btn.status-d.of{
  background: #e62dad;
}
.a-btn.status-d.of:hover{
  background: #cd299a;
}





#about-company{
  background: #fff;
  padding: 30px 0;
  position: relative;
}
#about-company:before{
  z-index: 1;
  position: absolute;
  top: 150px;
  left: 0;
  width: 100%;
  height: 50%;
  content: '';
  background: url(../img/img1.jpg) center left 40vw /60vw auto no-repeat, #2d74e6;
}
#about-company:after{
  z-index: 2;
  position: absolute;
  top: 150px;
  left: 40vw;
  width: 60vw;
  height: 50%;
  background: #000;
  content: '';
  opacity: 0.7;
}
#about-company .container{
  z-index: 3;
}
#about-company .w30 div{
  position: relative;
  min-height: 300px;
}
#about-company .w30.first div:after{
  position: absolute;
  top: 120px;
  left: 0;
  width: 100%;
  height: 180px;
  background: #2d74e6;
  content: '';
}
#about-company img{
  width: 100%;
  object-fit: cover;
  float: left;
}
#about-company a{
  display: inline-block;
  border: 1px solid rgb(255 255 255 / 55%);
  padding: 15px 0px;
  color: #fff;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 400;
  width: 100%;
  text-align: center;
  margin-top: 300px;
  -webkit-transition: .4s ease-in-out;
  -moz-transition: .4s ease-in-out;
  -o-transition: .4s ease-in-out;
  transition: .4s ease-in-out;
  transition-property: background, color;
}
#about-company a:hover{
  background: #fff;
  color: #131313;
}

#about-company-1{
  background: #fff;
  margin-top: -91px;
}
#about-company-1 blockquote{
  margin-bottom: 30px;
  color: #191919;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  position: relative;
  padding-left: 65px;
}
#about-company-1 blockquote p b{
  font-size: 22px;
  text-transform: uppercase;
  color: #2d74e6;
}
#about-company-1 blockquote > span{
  position: absolute;
  display: block;
  width: 40px;
  text-align: center;
  font-size: 80px;
  left: 0;
  top: 19px;
  opacity: 0.2;
}

#about-company-2{
  margin-top: -250px;
  position: relative;
}
#about-company-2:before{
  position: absolute;
  top: -15%;
  left: 0;
  width: 40%;
  height: 80%;
  content: '';
  background: #f5f5f5;
}
#about-company-2 .in-numbers{
  display: inline-block;
  vertical-align: top;
  width: 300px;
}
#about-company-2 .w40 h3{
  font-size: 30px;
  line-height: 34px;
  color: #2d74e6;
  text-transform: uppercase;
  max-width: 300px;
}
#about-company-2 .w40 a{
  display: inline-block;
  padding: 15px 25px;
  color: #fff;
  background: #131313;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 400;
  -webkit-transition: .4s ease-in-out;
  -moz-transition: .4s ease-in-out;
  -o-transition: .4s ease-in-out;
  transition: .4s ease-in-out;
  transition-property: background, color;
}
#about-company-2 .w40 a:hover {
  background: #2d74e6;
  color: #ffffff;
}
#about-company-2 .in-numbers img{
  display: block;
  margin: 30px auto;
  float: none;
  height: 100px;
  max-width: 100%;
}
#about-company-2 .in-numbers h3{
  padding: 0;
  text-align: center;
  font-size: 24px;
  line-height: 40px;
  font-weight: 300;
  text-transform: uppercase;
}
#about-company-2 .in-numbers p{
  padding: 0;
  text-align: center;
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
  padding: 10px 0px;
  box-sizing: border-box;
}

.contact-page{
  padding-top: 40px;
}
.contact-page img{
  max-height: 100px;
  max-width: 100%;
}
.contact-page h3{
  font-size: 30px;
  line-height: 34px;
  color: #2d74e6;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 20px;
}
.contact-page h4{
  font-size: 22px;
  line-height: 48px;
}
#subpage-content .contact-page p{
  padding: 10px 0;
  font-size: 18px;
  line-height: 28px;
}
#subpage-content .contact-page a{
  font-weight: 600;
  padding: 0 5px;
}


#our-offer.subpage{
  background: #fff;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
}
#our-offer.subpage .offer-box{
  margin-top: 0;
  margin-bottom: 30px;
}


#subpage-gallery-menu{
  background: #fff;
}

.gallery-menu-box{
  display: block;
  float: left;
  margin: 0;
  width: 49%;
  border: 2px solid #ebebeb;
  margin: 8px 0.5%;
  box-shadow: 0 0 10px rgb(0 0 0 / 5%);
  -webkit-transition: .3s ease-in-out;
  -moz-transition: .3s ease-in-out;
  -o-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  transition-property: box-shadow;
}
.gallery-menu-box:hover{
  box-shadow: 0 0 10px rgb(0 0 0 / 10%);
}
.gallery-menu-box a{
  display: block;
  position: relative;
  overflow: hidden;
}
.gallery-menu-box-image{
  overflow: hidden;
  height: 500px;
  position: relative;
}
.gallery-menu-box-image:after{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  opacity: 0;
  background: url(../img/camera.svg) center /auto 64px no-repeat, rgba(0,0,0,.6);
  -webkit-transition: .3s ease-in-out;
  -moz-transition: .3s ease-in-out;
  -o-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  transition-property: opacity;
}
.gallery-menu-box-image:hover:after{
  opacity: 1;
}
.gallery-menu-box .gallery-menu-box-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  float: left;
  transform: scale(1.08);
  -webkit-transition: .3s ease-in-out;
  -moz-transition: .3s ease-in-out;
  -o-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  transition-property: transform, filter;
}
.gallery-menu-box:hover .gallery-menu-box-image img{
  filter: grayscale(100%);
  transform: scale(1);
}
.gallery-menu-box span{
  position: absolute;
  bottom: 0;
  left: 0;
  background: #fff;
  display: block;
  width: 100%;
  padding: 15px 20px;
  color: #342e27;
  font-size: 28px;
  line-height: 30px;
  font-weight: 500;
  -webkit-transition: .3s ease-in-out;
  -moz-transition: .3s ease-in-out;
  -o-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  transition-property: left;
}
.gallery-menu-box span small{
  display: block;
  font-size: 17px;
  font-weight: 400;
  line-height: 24px;
}
.gallery-menu-box span img{
  display: inline-block;
  vertical-align: middle;
  margin: -3px 7px 0 0;
  height: 16px;
}
.gallery-menu-box:hover span{
  left: 100%;
}
.gallery-menu-box em{
  display: block;
  padding: 0 15px 10px 15px;
  color: #929292;
}
.gallery-menu-box em b{
  color: #2d74e6;
}





/* *********   SUBPAGE PAGINATION    ********* */
#pagination{
  width: 100%;
  margin-top: 0px;
  padding: 10px 10px;
  border-top: 1px solid #d0d0d0;
  font-size: 14px;
  color: #757575;
}
#pagination span{
  display: inline-block;
  float: left;
  padding: 5px 0;
}
#pagination ol{
  display: inline-block;
  float: right;
}
#pagination ol li{
  margin: 0 3px;
  display: inline-block;
}
#pagination ol li em{
  padding: 5px 0;
  width: 34px;
  display: block;
  text-align: center;
  border: 1px solid #d0d0d0;
  color: #ccc;
  cursor: no-drop;
}
#pagination ol li.active em{
  color: #fff;
  background: #2d74e6;
  border-color: #2967cc;
}
#pagination ol li a{
  padding: 5px 0;
  width: 34px;
  display: block;
  text-align: center;
  border: 1px solid #d0d0d0;
  -webkit-transition: .3s ease-in-out;
  -moz-transition: .3s ease-in-out;
  -o-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  transition-property: border-color, color;
}
#pagination ol li a:hover{
  color: #2d74e6;
  border-color: #2d74e6;
}


.prod-box{
  width: 25%;
  float: left;
  padding: 5px 5px;
  text-align: center;
}
.prod-box a{
  display: block;
  width: 100%;
  height: 100%;
  min-height: 356px;
  padding: 20px;
  border: 1px solid #e8e8e8;
  -webkit-transition: .3s ease-in-out;
  -moz-transition: .3s ease-in-out;
  -o-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  transition-property: border-color;
}
.prod-box a:hover{
  border-color: #2d74e6;
}
.prod-box a > img{
  width: 100%;
  height: 200px;
  object-fit: scale-down;
}

#category h3{
  display: block;
  clear: both;
  font-size: 34px;
  font-weight: 600;
  line-height: 40px;
  color: #2d74e6;
  padding: 0 5px;
  margin-bottom: 20px;
}
#category h3 span{
  color: #5a5a5a;
  font-size: 29px;
  font-weight: 500;
}
#category h5{
  font-size: 21px;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 12px;
}
#category h4{
  font-size: 17px;
  line-height: 22px;
  padding: 10px 0;
  color: #545454;
}
#form-contact.subpage {
    margin-top: 20px;
}
#form-contact.subpage .input-holder{
	padding: 5px;
}

#subpage-content.product h4{
	font-size: 26px;
    font-weight: 600;
    margin-top: 40px;
}
#subpage-content.product .file{
	height: 40px;
}
#subpage-content.product table{
	width: 100%;
	margin-top: 15px;
	text-align: center;
	border: 1px solid #ececec;
}

#subpage-content.product table tr th{
    background: #fafafa;
    font-weight: 600;
    border-bottom: 1px solid #ececec;
	border-right: 1px solid #ececec;
    padding: 10px;
    text-transform: uppercase;
}
#subpage-content.product table tr td{
	padding: 10px;
	border-bottom: 1px solid #ececec;
	vertical-align: middle;
	border-right: 1px solid #ececec;
	font-size: 14px;
    font-weight: 500;
    color: #727272;
}
#subpage-content.product table tr th:last-child,
#subpage-content.product table tr td:last-child{
	border-right: none;
}
#subpage-content.product table td:last-child b{
	font-size: 16px;
}
#subpage-content.product table tr:nth-child(2) td:last-child b{
    color: #2d74e6;
	font-size: 19px;
}
#subpage-content.product table tr:nth-child(2) td{
    color: #2d74e6;
}

.product-fotos img{
	display: block;
	float: left;
	width: 18%;
	height: 240px;
	margin: 15px 1%;
	object-fit: scale-down;
}
#subpage-content.product ul{
	margin-top: 15px;
}

#prod_det div b em{
  font-size: 14px;
  font-weight: 400;
  line-height: initial;
  color: initial;
}
#prod_det > div{
  display: inline-block;
  padding: 10px 30px;
  background: #f7f7f7;
  font-size: 15px;
  font-weight: 500;
  margin-right: 6px;
  margin-top: 2px;
  margin-bottom: 2px;
  border: 1px solid #e9e9e9;
}
#prod_det > div b{
  color: #2d74e6;
  display: block;
  width: 100%;
  font-size: 22px;
  line-height: 26px;
}

#prod_det > div:last-of-type{
  color: #fff;
  cursor: pointer;
  background: #2d74e6;
  border: 1px solid #2d74e6;
}
#prod_det > div:last-of-type b{
  color: #fff;
}


#subpage-content.product .file a{
	display: inline-block;
	font-size: 16px;
	font-weight: 500;
	font-weight: 500;
    color: #6e6e6e;
}
#subpage-content.product .file a:hover{
	color: #e2574c;
}
#subpage-content.product .file img{
	vertical-align: middle;
	display: inline-block;
	height: 27px;
	margin: -3px 7px 0 0;
}

#tag{
	text-align: center;
	margin-bottom: 10px;
}
#tag a{
	position: relative;
	color: #6b6b6b;
	padding: 0 5px;
}
#tag a:not(:last-child):after{
	content: ',';
}

.img-inline {
  display: inline-block;
  vertical-align: middle;
  margin: -3px 6px 0 0;
}

.news-element {
  display: block;
  width: 31.333%;
  margin: 5px 1% 35px 1%;
  float: left;
}
.news-element > a > div {
  position: relative;
  overflow: hidden;
  height: 280px;
}
.news-element > a > div:before {
  z-index: 2;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  background: -moz-linear-gradient(top, rgba(0,0,0,0) 20%, rgba(0,0,0,0.75) 100%);
  background: -webkit-linear-gradient(top, rgba(0,0,0,0) 20%,rgba(0,0,0,0.75) 100%);
  background: linear-gradient(to bottom, rgba(0,0,0,0) 20%,rgba(0,0,0,0.75) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#bf000000',GradientType=0 );
}
.news-element img {
  width: 100%;
  height: 100%;
  float: left;
  object-fit: cover;
  transform: scale(1.08);
  -webkit-transition: .3s ease-in-out;
  -moz-transition: .3s ease-in-out;
  -o-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  transition-property: transform;
}
.news-element span {
  position: absolute;
  bottom: 15px;
  z-index: 10;
  left: 0;
}
.news-element mark {
  color: #fff;
  background: #188e98;
  padding: 7px 20px;
  font-weight: 400;
  font-size: 15px;
}
.news-element h3 {
  display: block;
  float: left;
  width: 100%;
  margin: 15px 0 0 0;
  padding: 0 20px;
  box-sizing: border-box;
  color: #fff;
  font-size: 19px;
  font-weight: 500;
  line-height: 23px;
  height: 46px;
  overflow: hidden;
}
#news .news-element p {
  text-align: left;
  margin: 10px 0;
  font-size: 14px;
  line-height: 22px;
  height: 88px;
  color: dimgrey;
  overflow: hidden;
}
.news-element button {
  float: right;
  border: none;
  outline: none;
  margin-top: 20px;
  background: #2d74e6;
  color: #fff;
  padding: 10px 30px;
  cursor: pointer;
  -webkit-transition: .3s ease-in-out;
  -moz-transition: .3s ease-in-out;
  -o-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  transition-property: opacity;
}
.news-element:hover img {
  transform: scale(1);
}
.news-element button:hover {
  background: #2967cc;
}

#video-area {
  margin-bottom: 50px;
  background: #fff;
}
#gallery2 {
  max-width: 100%!important;
  height: 500px!important;
}

.price-table{
  width: 100%;
  margin-bottom: 5px;
  border: 1px solid #f5f5f5;
}
.price-table th{
  padding: 16px 15px;
  color: #fff;
  font-size: 17px;
  background: #178d97;
  text-transform: uppercase;
}
.price-table th b{
  font-weight: 500;
}
.price-table td{
  text-align: center;
  padding: 12px 15px;
  font-weight: 500;
  color: #3e3e3e;
  line-height: 18px;
  vertical-align: middle;
}
.price-table td b{
  font-size: 16px;
}
.price-table th:first-child,
.price-table td:first-child{
  text-align: left;
}
.price-table td:last-child{
  text-align: center;
  width: 20%;
  vertical-align: middle;
  font-weight: 600;
  color: #2d74e6;
  font-size: 18px;
}
.price-table tr:nth-child(even) {
    background: #fafafa;
}

#category-faq {
  background: #f6f6f6;
  padding: 50px 0;
}
#category-faq blockquote {
  display: block;
  background: #f9f9f9;
  border: 1px solid #e8ecf5;
  border-radius: 12px;
  padding: 13px 25px 13px 25px;
  box-sizing: border-box;
  text-align: left;
  margin-bottom: 15px;
  box-shadow: 0 1px 3px rgb(0 0 0 / 5%);
  -webkit-transition: .3s ease-in-out;
  -moz-transition: .3s ease-in-out;
  -o-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  transition-property: background;
}
#category-faq h4{
  font-size: 16px;
  padding-top: 5px;
}
#category-faq blockquote p {
  position: relative;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  padding: 10px 0;
  cursor: pointer;
  -webkit-transition: .3s ease-in-out;
  -moz-transition: .3s ease-in-out;
  -o-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  transition-property: color;
}
#category-faq blockquote p:after {
  position: absolute;
  content: '>';
  display: block;
  right: 0;
  font-family: monospace;
  top: 10px;
  border-radius: 50%;
  width: 21px;
  padding-top: 1px;
  height: 21px;
  line-height: 20px;
  text-align: center;
  font-size: 15px;
  color: #d4d4d4;
  border: 1px solid #d4d4d4;
  transform: rotate(90deg);
  -webkit-transition: .3s ease-in-out;
  -moz-transition: .3s ease-in-out;
  -o-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  transition-property: color, border-color;
}
#category-faq blockquote code {
  background: none;
  position: relative;
  display: block;
  height: 0;
  width: 100%;
  overflow: hidden;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #757575;
}
#category-faq blockquote code:before,
#category-faq blockquote code:after {
  display: block;
  height: 10px;
  content: '';
}

#category-faq blockquote p:hover,
#category-faq blockquote.act p {
  color: #178d97;
}

#category-info{
  padding-bottom: 30px;
}
#category-info .w40,
#category-info .w60{
  position: relative;
  height: 320px;
}
#category-info .w40 img{
  width: 90%;
  height: 100%;
  object-fit: scale-down;
}
#category-info .w60 > div{
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
#category-info ul li {
  position: relative;
  color: #191919;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
}
#category-info ul li:before {
  display: inline-block;
  width: 6px;
  height: 6px;
  content: '';
  margin: 2px 10px 2px 0px;
  background: #2d74e6;
}
#category-info ul {
  margin-left: 5px;
}
#category-info h5{
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 10px;
}

#popup-modal.visible.login-box-modal{
  max-width: 500px;
  min-height: 300px;
  height: auto;
  top: 75px;
  bottom: auto;
}
#popup-modal.visible.login-box-modal .modal-content{
  padding: 35px 40px 10px 40px;
}
.login-box-modal h2{
  text-align: center;
  font-size: 38px;
  line-height: 48px;
  margin-bottom: 30px;
  font-weight: 500;
  color: #2d74e6;
}
.login-box-modal label{
  display: block;
  font-weight: 600;
  font-size: 15px;
  color: #707070;
}
.login-box-modal label u{
  font-weight: 500;
  font-size: 11px;
  padding-left: 10px;
  text-decoration: none;
  color: #afafaf;
}
.login-box-modal div{
  margin: 5px 0;
}
.login-box-modal input,
.login-box-modal select{
  width: 100%;
  height: 40px;
  line-height: 40px;
  padding: 0 10px;
  font-size: 16px;
  border-radius: 0;
  border: 1px solid #ddd;
  -webkit-transition: .3s ease-in-out;
  -moz-transition: .3s ease-in-out;
  -o-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  transition-property: border;
}
.login-box-modal input[type="checkbox"]{
  width: 18px;
  height: 18px;
  vertical-align: middle;
  margin: -3px 6px 0 0;
}
.login-box-modal input:hover,
.login-box-modal input:active,
.login-box-modal input:focus,
.login-box-modal select:hover,
.login-box-modal select:active,
.login-box-modal select:focus{
  border: 1px solid #adccff;
}
.login-box-modal .actions{
  text-align: right;
  color: #c3c3c3;
  margin-top: 8px;
}
.login-box-modal span{
  font-size: 14px;
  font-weight: 500;
  padding: 10px;
  cursor: pointer;
  color: #7e7e7e;
  -webkit-transition: .3s ease-in-out;
  -moz-transition: .3s ease-in-out;
  -o-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  transition-property: color;
}
.login-box-modal span:hover{
  color: #2d74e6;
}
.login-box-modal span:last-of-type{
  padding-right: 0;
}
.login-box-modal button,
.login-box-modal .bb span{
  display: block;
  background: #2d74e6;
  color: #fff;
  border: none;
  height: 40px;
  font-size: 16px;
  font-weight: 400;
  width: 100%;
  padding: 0;
  margin-top: 10px;
  cursor: pointer;
  font: 400 16px 'Exo';
  line-height: 40px;
  -webkit-transition: .3s ease-in-out;
  -moz-transition: .3s ease-in-out;
  -o-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  transition-property: background;
}
.login-box-modal .ln{
	display: block;
	position: relative;
}
.login-box-modal .ln:before{
	position: absolute;
	top: 50%;
	right: 57%;
	width: 30%;
	height: 1px;
	background: #ccc;
	content: '';
}
.login-box-modal .ln:after{
	position: absolute;
    top: 50%;
    left: 57%;
    width: 30%;
    height: 1px;
    background: #ddd;
    content: '';
}
.login-box-modal .bb span{
	text-align: center;
	margin-top: 0!important;
}
.login-box-modal button:hover,
.login-box-modal .bb span:hover{
  background: #2967cc;
}
.login-box-modal strong,
.login-box-modal em{
  text-align: center;
  color: white;
  background: red;
  position: absolute;
  left: 0;
  top: 0;
  left: 0;
  right: 10px;
  font-weight: 600;
  padding: 10px 20px;
  font-size: 12px;
  line-height: 12px;
}
.login-box-modal em{
  background: #00c300;
}
#log-form div img{
    height: 60px;
    width: 100%;
    object-fit: scale-down;
    margin-top: 3px;
    margin-bottom: 2px;
    border: 1px solid #e9e9e9;
}
#log-form div input[type="file"]{
	margin-bottom: 12px;
}
#log-form div.no-logo input[type="file"],
#log-form div.no-logo img{
	display: none;
}


/***************************************************************************
 *****************************      MEDIA      *****************************
 ***************************************************************************/


 @media all and (max-width: 1400px){
  .container{
 	max-width: 100%;
    padding: 0 15px;
  }
  .slider-element .container{
    max-width: 100%;
  }
  #main-content-in-details:after{
	width: 15px;
  }
}

@media all and (max-width: 1200px){
  #mobile-menu {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    float: right;
    width: 100%;
    cursor: pointer;
    padding: 15px 15px 15px 15px;
    margin: 0;
    cursor: pointer;
    box-sizing: border-box;
    z-index: 999999;
    background: #000;
    color: #fff;
    font-size: 17px;
    line-height: 10px;
  }
  #mobile-menu em {
    margin-top: 2px;
    display: none;
    font-weight: 500;
    color: #e2e2e2;
    font-size: 16px;
  }
  #mobile-menu span {
    display: block;
    width: 18px;
    height: 12px;
    float: right;
    margin-right: 3px;
    position: relative;
    border-top: 2px solid #d0d0d0;
    border-bottom: 2px solid #d0d0d0;
  }
  #mobile-menu span:after {
    position: absolute;
    content: '';
    top: 3px;
    left: 0;
    width: 100%;
    height: 7px;
    border-top: 2px solid #d0d0d0;
  }
  #mobile-menu.open {
    transform: rotate(45deg);
    margin: -1px -2px 0 0px;
    width: 50px;
    float: right;
    background: transparent;
  }
  #mobile-menu.open em,
  #map-label{
    display: none;
  }
  #mobile-menu.open span{
    border-top: 0;
  }
  #mobile-menu.open span:after{
    transform: rotate(90deg);
    top: 9px;
    left: -1px;
    height: 2px;
  }
  #header-fixed li:hover > a{
	padding: 0;
  }
  #header-fixed{
    margin-top: 0;
    margin-left: -300px;
    padding: 0;
    width: 300px;
    height: 100vh;
	z-index: 10000;
  }
  #header-fixed #header-fixed-logo,
  #header-fixed #header-fixed-navbar{
    width: 100%;
    text-align: center;
  }
  #header-fixed a#header-fixed-logo:not(.is_dropdown) img{
    float: none;
    margin: 30px 0 20px 0;
  }

  #header-fixed li {
    display: block;
    text-align: center;
	height: auto;
    padding: 8px 0;
    font-weight: 600;
    line-height: 32px;
    border-bottom: 1px dashed rgba(113, 113, 113, 0.08);
  }
  #header-fixed li > a {
    padding:0;
    display: block;
  }
  #header-fixed li:before,
  #header-fixed li:after{
    display:  none;
    content: none;
  }
  #header-fixed .menu-dropdown{
    background: #fff;
    position: relative;
    box-shadow: none;
    left: 0;
    top: 3px;
    transform: translateX(0);
  }
  #header-fixed .menu-dropdown.open a:last-of-type,
  #header-fixed li:last-of-type{
    border: none;
  }
  #header-fixed .menu-dropdown.open a {
    border-bottom: 1px dotted rgba(0, 0, 0, 0.05);
    color: dimgrey!important;
    font-weight: 500;
    font-size: 15px!important;
  }
  #header-fixed .menu-dropdown.open a:hover {
	background: #fff!important;
    color: #2967cc!important;
  }
  
  
  #header{
	top: 42px;
  }
  #top{
	display: none;
  }  
  #header .container{
	display: flex;
	flex-direction: column;
  }
  #header #header-logo,
  #header #header-menu{
	width: 100%;
  }
  #header #header-logo{
	order: 2;
  }
  #header #header-menu{
	order: 1;
  }
  #header #header-logo img{
	object-position: center;
    height: 70px;
	max-width: 100%;
    margin: 10px 0;
  }
  #navbar{
	display: none;
  }


  #slider,
  #subpage-banner{
    margin-top: 42px;
  }
  #subpage-banner{
	height: 120px;
  }
  #popup-modal.visible .close-modal{
    right: 3px;
  }

  
  #slider,
  #slider .slick-slide,
  #slider .slider-element > img{
    height: 500px;
  }
  .slider-element .container > div {
    text-align: center;
    max-width: 100%;
  }

  .slider-element .container{
	bottom: 80px;
  }
  .slider-element h2 {
    font-size: 36px;
    line-height: 40px;
  }
  .slider-element h4 {
    line-height: 24px;
    font-size: 23px;
  }
  .slider-element p {
    line-height: 24px;
    font-size: 20px;
  }
  .slider-element .c40{
	 height: 25px;
  }
  
  #main-content:before,
  #main-content-in-details:after{
	display: none;
	content: none;
  }
  #main-content .container{
	padding: 0;
  }
  #main-content .w40,
  #main-content .w60,
  #main-content-info,
  #main-content-features-2{
	width: 100%;
	text-align: center;
	padding-left:15px;
	padding-right: 15px;
  }
  #main-content .w40 > .c10,
  #main-content .w40 > .c25,
  #main-content-features-2 > .c10,
  #main-content-features-2 > .c25{
	display: none;
  }
  #main-content .w40 > div,
  #main-content-features-2 > div{
	display: inline-block;
	vertical-align: top;
	max-width: 275px;
    width: 24%;
	text-align: center;
	margin: 20px 0;
	padding: 0 8px;
  }
  #main-content-features-2 > div.c30{
    display: block;
    height: 10px;
    width: 100%;
    max-width: 100%;
  }
  #main-content button{
	margin: 5px 8px;
  }
  
  #main-content-features > div > img, 
  #main-content-features-2 > div > img{
	width: 100%;
	float: none;
	object-position: center;	
	margin-bottom: 15px;
  }
  #main-content-features > div > span, 
  #main-content-features-2 > div > span{
	width: 100%;
	float: none;		 
	text-align: center;
	padding: 0;	
  }
  #main-content-in-details + .c20{
	height: 0px;
  }
  #main-content-in-details{
	margin: 0;
  }
  #main-content-slider{
	margin: 0 0 30px 0;
	width: 100%;
  }
  #main-content-carousel {
    width: 100%;
    margin: 0;
  }
  #main-content-carousel .slick-arrow{
    top: 40%;
    z-index: 10;
    filter: invert(1);
  }
  #main-content-carousel .slick-arrow.slick-prev{
	left: 15px;
	right: auto;
  }
  #main-content hr,
  #bottom hr{
	float: none;
    margin: 15px auto 25px auto;  
  }
  #bottom hr{
	margin: 0 auto;
  }
  
  #main-content-image{
	width: 100%;
  }
  #main-content-image img{	
    max-height: 400px;
    margin-top: 15px;
  }
  #bottom{
	position: relative;
    left: auto;
    bottom: auto;
    float: left;
    width: 100%;
    text-align: center;
    margin: 0;
    padding: 40px 15px;
  }
  
  #footer-menu ul,
  #footer .w55,
  #footer p{
	width: 100%;
	text-align: center;
  }
  #footer p a{
	padding: 0 15px;
  }
  #footer span {
    width: 100%;
    margin: 15px 0 0 0;
  }  


  /* SUBPAGES ---------------------------------------- */
  #subpage-banner {
    height: 220px;
  }
  #subpage-banner .container{
	bottom: 30px;
  }
  #subpage-banner h1{
	text-align: center;
	font-size: 36px;
    line-height: 40px;
  }
  #subpage-content{
	text-align: center;
  }
  .line{
	float: none;
  }
  #subpage-content h2, 
  #subpage-content h3, 
  #subpage-flats h2, 
  #subpage-flats h3 {
    font-size: 20px;
    line-height: 24px;
	text-align: center!important;
 }
 #subpage-flats .container{
	padding: 0;
 }
 #subpage-flats.category .container{
	padding: 0 15px;
 }
 .flat-element{
	display: flex;
	flex-direction: column;
 }
 .flat-element .w60{
   width: 100%;
   order: 2;
 }
 .flat-element .w40{
   width: 100%;
   order: 1;
 }
 #subpage-flats .w40 img{
   height: 300px!important;
 }
 #subpage-flats table {
   width: 98%;
   margin: 0 1%;
 }
  
  
 #subpage-content.contact .w40,
 #subpage-content.contact .w30{
	width: 100%;
 }

 #subpage-content ol > li,
 #subpage-content ul > li{
	text-align: left;
 }
 
 #logout{
	left: 0;
    right: auto;
	z-index: 1000000;
 }





}

@media all and (max-width: 1100px){
	#form-contact .input-holder,
	#custom-form button[type="submit"]{
		width: 100%;
	}
	#custom-form label{
		width: 100%;
		max-width: 100%;
		margin: 10px 0 0 0;
	}
	
}
@media all and (max-width: 980px){
	#main-content .w40 > div, 
	#main-content-features-2 > div,
	#subpage-content.category .w25{
		width: 49%;
		max-width: 100%;
	}
	#subpage-content.category .w25{
		margin-bottom: 20px;
	}
	#subpage-content.category .w25 p{
		padding: 0;
	}
	
	#subpage-content.product table{
		max-width: 600px;
		margin: 15px auto 0 auto;
	}	
	#subpage-content.product table tr:first-child{
		display: none;
	}
	#subpage-content.product table tr{
		display: block;
		width: 100%;
		border: 3px solid #f0f0f0;
	}
	#subpage-content.product table td{
		position: relative;
		display: block;
		width: 100%;
		padding-left: 30%!important;
		border-right: none;
	}
	#subpage-content.product table td:before{
		position: absolute;
		top: 0;
		left: 0;
		width: 25%;
		height: 100%;
		content: attr(title);
		background: #fafafa;
		font-weight: 600;
		color: initial;
		padding-top: 10px;
		box-sizing: border-box;
		text-transform: uppercase;
	}
	.gallery-menu-box{
		width: 100%;
		margin: 10px 0;
	}
	.gallery-menu-box-image{
		height: 400px;
	}
	
}
@media all and (max-width: 768px){
	#footer-menu ul li{
		display: block;
		border-bottom: 1px dashed #e3e3e3;
	}
	#footer-menu ul li:last-child{
		border-bottom: none;
	}
	#footer-menu ul li a{
		padding: 15px 0;
	}
	#footer p a{
		display: block;
		line-height: 35px;
	}
	#footer p a:first-of-type{
		margin-top: 10px;
	}
	
	#subpage-flats .w40 img{
		height: 200px!important;
		min-height: 200px;
	}
	#subpage-flats table th, 
	#subpage-flats table td{
		height: 42px;
	}
	#subpage-flats td .a-btn-right{
		padding: 2px 5px;
		width: 96%;
		margin: 0 2%;
	}
	
	#prod_det > div{
	    width: 33.333%;
		margin: 0;
		float: left;
	}
	
	
}
@media all and (max-width: 640px){
	.slider-element .container{
		padding: 0;
		bottom: 0;
	}
	#slider form{
		padding: 0;
		margin-top: 50px;
	}
	#slider form,
	#slider form > div{
		width: 100%;
	}
	#slider form .clr{
		height: 0;
		border: none;
	}
	#slider form .pdd-left:after{
		right: auto;
		left: auto;
		top: auto;
		bottom: 0;
		width: 100%;
		height: 1px;
		transform: translateY(0);
		content: none;
		display: none;
	}
	#slider, #slider .slick-slide, #slider .slider-element > img{
		height: 700px;
		padding-bottom: 200px;
	}
	
	#prod_det > div{
		display: block;
		margin: 4px 0;
		width: 100%;
	}
	.gallery-menu-box-image{
		height: 320px;
	}
	.gallery-menu-box span{
		font-size: 20px;
		line-height: 24px;
		padding: 10px 15px;
	}
	.gallery-menu-box span small {
		font-size: 15px;
		line-height: 20px;
	}
	.gallery-menu-box span img {
		margin: -3px 4px 0 0;
		height: 13px;
	}
	#subpage-flats table th:first-child, 
	#subpage-flats table td:first-child {
		padding-left: 10px;
	}
	
	#mobile-menu{
		right: 0;
		width: 40%;
	}
	#mobile-menu.open{		
		right: 9px;
	}
	#header #header-logo img{
		height: 32px;
		margin: 5px 0;
		object-position: left;
	}
	#header{
		position: fixed;
		top: 0;
		background: #000;
	}
}
@media all and (max-width: 500px){
	#header-fixed{
		width: 100%;
		margin-left: -100%;
		background: #000;
	}
	#mobile-menu.open span{
		border-bottom: 2px solid #fff;
	}
	#mobile-menu.open span:after{
		border-top: 2px solid #fff;
	}
	#main-content-carousel img{
		height: 300px;
	}
	.slider-element h2,
	#subpage-banner h1	{
		font-size: 28px;
		line-height: 32px;
	}
	.slider-element h4 {
		line-height: 20px;
		font-size: 18px;
	}
	#main-content-features > div > img, 
	#main-content-features-2 > div > img,
	#subpage-content.category .w25 img{
		height: 65px;
	}
	#main-content-features > div > span, 
	#main-content-features-2 > div > span,
	#subpage-content.category .w25 p{
		font-size: 13px;
		line-height: 18px;
	}
	.section_title,
	#main-content h2, 
	#main-content h3 {
		font-size: 22px;
		line-height: 26px;
	}
	#custom-form h5 {
		font-size: 15px;
	}
	
	
	
	
	#subpage-flats table tr th:nth-child(3),
	#subpage-flats table tr th:nth-child(4),
	#subpage-flats table tr td:nth-child(3),
	#subpage-flats table tr td:nth-child(4){
		display: none;
	}
	
	#subpage-content.product table tr td{
		font-size: 13px;
		padding: 10px 5px;
	}
	#subpage-content.product table td:before {
		width: 90px;
		text-align: left;
		padding-left: 6px;
	}
	#subpage-content.product table td {
		padding-left: 105px!important;
	}
	
	
	.gallery-menu-box-image{
		height: 260px;
	}
	
	
}


