html,
body {
    background: #fff;
    color: #fff;
    margin: 0;
    padding: 0px 0 0 0;
    font-family: 'Open Sans', sans-serif;
    width: 100%;
    max-width: 100%;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
    webkit-backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
    color: #fff;
}

html {
    overflow-y: scroll;
}

body * {
    font-family: 'Open Sans', sans-serif;
    /*	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	-webkit-tap-highlight-color: transparent;*/
}

*,
*:before,
*:after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.menu-toggle {
    width: 50px;
    height: 42px;
    position: absolute;
	overflow: hidden;
    top: 8px;
    left: 5%;
    cursor: pointer;
    z-index: 11;
    padding: 10px;
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.menu-toggle.on .one {
    -moz-transform: rotate(45deg) translate(5px, 5px);
    -ms-transform: rotate(45deg) translate(5px, 5px);
    -webkit-transform: rotate(45deg) translate(5px, 5px);
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.on .two {
    opacity: 0;
}

.menu-toggle.on .three {
    -moz-transform: rotate(-45deg)translate(5px, -5px);
    -ms-transform: rotate(-45deg) translate(5px, -5px);
    -webkit-transform: rotate(-45deg) translate(5px, -5px);
    transform: rotate(-45deg) translate(5px, -5px);
}

.menu-toggle .one,
.menu-toggle .two,
.menu-toggle .three {
    width: 28px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
    height: 3px;
    background: white;
    margin: 4px auto;
    backface-visibility: hidden;
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
}

nav ul {
    opacity: 1;
    margin: 0;
    padding: 0;
    list-style: none;
    margin: 5em auto;
    text-align: center;
    -webkit-transition-duration: 1s;
    transition-duration: 1s;
    pointer-events: all;
}

nav ul.hidden {
    /*	margin: -15.5em auto;*/
    margin: 14em auto;
	-webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    opacity: 0;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    pointer-events: none;
    height: 0;
}

nav ul a {
    -moz-transition-duration: 0.7s;
    -o-transition-duration: 0.7s;
    -webkit-transition-duration: 0.7s;
    transition-duration: 0.7s;
    text-decoration: none;
    color: white;
    font-size: 1.5em;
    line-height: 2.3;
    width: 100%;
    display: block;
}

nav ul a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.menu-section {
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    border-bottom: 1px solid rgba(255, 255, 255, 0);
    position: fixed;
    width: 100%;
    top: 0px;
    height: 40px;
    z-index: 1111111112;
}

.inner {
    height: 50px;
    background: rgba(0, 0, 0, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.inner .logo {
    margin-top: 6px;
}

.inner .menu-toggle {
    top: 0px;
}

.menu-section.on {
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    width: 100%;
    height: 100%;
    top: 0;
    background-color: rgba(0, 0, 0, 0.8);
}

.logo {
    cursor: pointer;
    position: fixed;
    top: 3px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    height: 30px;
    width: 300px;
    margin: 13px auto;
    background: url(../img/logo.svg) no-repeat center center;
    z-index: 9999999999;
    -webkit-background-size: contain;
    -moz-background-size: contain;
    -o-background-size: contain;
    background-size: contain;
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.welcome {
    box-sizing: content-box;
    display: block;
    width: 100%;
    max-width: 100%;
    height: 100%;
    max-height: auto;
    overflow: hidden;
}

.welcome .container {}

.welcome h1 {
    position: absolute;
    text-align: center;
    display: block;
    font-size: 35px;
    top: 18%;
    width: 80%;
    margin-left: 10%;
    font-weight: 200;
}

.welcome span {
    position: relative;
    text-align: center;
    display: block;
    font-size: 18px;
    text-transform: uppercase;
    margin-top: 10px;
    width: 100%;
    margin-left: 0%;
    font-weight: 400;
    line-height: 1.3;
}

.welcome .links {
    width: 100%;
    position: absolute;
    bottom: 1%;
    z-index: 1;
    text-align: center;
}

.welcome .links a, .location a.callbut {
    background: white;
    text-decoration: none;
    font-weight: 600;
    color: black;
    border-radius: 3px;
    padding: 20px;
    display: inline-block;
    min-width: 150px;
    margin: 5px;
    cursor: pointer;
}

.location .links{
    width: 100%;
    z-index: 1;
    text-align: center;
    }

.welcome .links a.callbut, .location a.callbut {
    background: #eeb35b;
    color: #000000;
}

.content {
    top: 0;
    position: absolute;
    height: 100%;
    width: 100%;
    max-width: 100%;
    background: url(../img/main_background.jpg) no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
	-ms-behavior: url(../js/backgroundsize.min.htc);
}

.row {
    padding: 5%;
    padding-top: 40px;
    padding-bottom: 30px;
}

.centered {
    text-align: center;
}

.form {
    width: 100%!important;
    height: 100%!important;
    display: block;
    position: fixed!important;
    top: 0px!important;
    z-index: 99999999999;
    background: rgba(0, 0, 0, 0.8);
    display: none;
}

.mapform {
    width: 100%!important;
    height: 100%!important;
    display: block;
    position: fixed!important;
    top: 0px!important;
    z-index: 99999999999;
    background: rgba(0, 0, 0, 0.8);
    display: none;
}

#map {
    width: 100%;
    position: absolute;
    display: block;
    height: 100%;
}

.poienter {
    position: absolute;
    left: -19px;
    top: -84px;
    width: 57px;
    height: 81px;
    background: url(../img/poienter.png) center center no-repeat;
    background-size: 100% auto;
}

.poiexit {
      position: absolute;
    left: -30px;
    top: -20px;
    width: 57px;
    height: 81px;
    background: url(../img/poiexit.png) center center no-repeat;
    background-size: 100% auto;
}

.ymaps-2-1-34-balloon__tail,
.ymaps-2-1-34-balloon__tail:after,
.ymaps-2-1-34-balloon__content,
.ymaps-2-1-34-balloon_to_top,
.ymaps-2-1-34-balloon__content ymaps,
.ymaps-2-1-34-balloon__close,
.ymaps-2-1-34-balloon__layout {
    background: #eeb35b!important;
    color: white!important;
    font-size: 17px!important;
    padding-right: 3px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5), 0 0 1px rgba(0, 0, 0, 0.5);
}

.ymaps-2-1-34-balloon {
    -ms-transform: translateY(50px)translateX(0px);
    -webkit-transform: translateY(50px)translateX(0px);
    -moz-transform: translateY(50px)translateX(0px);
    -o-transform: translateY(50px)translateX(0px);
    transform: translateY(50px)translateX(0px);
}

.form .row {
    padding-top: 10px;
}

.closebut {
    width: 40px;
    height: 30px;
    position: absolute;
    top: 20px;
    right: 5%;
    cursor: pointer;
    z-index: 11;
    padding: 10px;
    height: 37px;
    background: black;
    border-radius: 3px;
}

.closebut .one {
    -moz-transform: rotate(45deg) translate(0px, 5px);
    -ms-transform: rotate(45deg) translate(0px, 5px);
    -webkit-transform: rotate(45deg) translate(0px, 5px);
    transform: rotate(45deg) translate(0px, 5px);
}

.closebut .two {
    -moz-transform: rotate(-45deg)translate(0px, -5px);
    -ms-transform: rotate(-45deg) translate(0px, -5px);
    -webkit-transform: rotate(-45deg) translate(0px, -5px);
    transform: rotate(-45deg) translate(0px, -5px);
}

.closebut .one,
.closebut .two,
.closebut .three {
    width: 28px;
    ;
    height: 3px;
    background: white;
    margin: 4px auto;
    backface-visibility: hidden;
    -moz-transition-duration: 0.2s;
    -o-transition-duration: 0.2s;
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
}

.closebut:hover div {
    background-color: #eeb35b;
}

.butonsend {
    outline: none;
    border: none;
    cursor: pointer;
    text-decoration: none;
    font-weight: 600;
    color: white;
    border-radius: 3px;
    padding: 20px;
    background: #eeb35b;
    min-width: 150px;
    margin: 5px;
    font-size: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
    width: 60%;
    margin-left: 20%;
    min-width: 200px;
    margin-top: 15px;
}

.form .row {
    margin-top: 5%;
}

.form .formfield {
    padding-left: 10%;
    padding-right: 10%;
    margin-bottom: 30px;
    height: 70px;
}

.form .formfield input {
    width: 100%;
    margin-top: 10px;
    border-radius: 3px;
    min-height: 50px;
    outline: none;
    color: black;
    font-size: 18px;
    padding-left: 10px;
    padding-right: 10px;
    border: none;
}

.form .formfield select {
    width: 100%;
    margin-top: 10px;
    border-radius: 3px;
    min-height: 50px;
    outline: none;
    color: black;
    font-size: 18px;
    padding-left: 10px;
    padding-right: 30px;
    border: none;
    background: white;
    /* 13 */
    -webkit-appearance: none;
    /* 13 */
    -moz-appearance: none;
    /* 13 */
    appearance: none;
}

.form .formfield .select:before {
    position: absolute;
    display: block;
    content: '';
    pointer-events: none;
    right: 15%;
    margin-top: 42px;
    width: 30px;
    height: 30px;
    background: url(../img/downarr.png) left center no-repeat;
}

.form .formfield label {
    font-size: 19px;
}

.location {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    z-index: 100;
    background: white;
    color: black;
}

.location .row h2 {
    text-align: center;
    font-weight: 400;
    font-size: 36px;
    margin-bottom: 32px;
}

.location .row p {
    font-size: 23px;
    font-weight: 200;
    color: #383838;
    margin-bottom: 15px;
    padding-bottom: 0px;
    padding-top: 27px;
    line-height: 1.33;
}

.location .row p span {
    font-size: 23px;
    font-weight: 600;
    color: black;
    margin-right: 20px;
}

.location .map {
    cursor: pointer;
    position: relative;
    display: block;
    height: 180px;
    background: url(../img/mapprew.jpg) center center no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
	-ms-behavior: url(../js/backgroundsize.min.htc);
}

.location .map a {
    text-decoration: none;
    display: block;
    width: 100%;
    height: 100%;
    line-height: 180px;
    text-align: center;
    color: white;
    font-weight: 400;
    font-size: 36px;
}

.location .row h3 {
    text-align: center;
    font-weight: 600;
    font-size: 27px;
    margin-bottom: 0px;
}

.location .row .hint p {
    display: inline-block;
    font-weight: 600;
    font-size: 22px;
    color: black;
    padding-top: 5px;
    padding-bottom: 0px;
    margin-bottom: 0px;
}

.location .row .hint .break{
    
    
}

.location .row .hint p:nth-of-type(1) {
   
}

.location .row .hint p:nth-of-type(2) {
   
}

.location .row .car {
    padding-left: 59px;
    font-size: 22px;
    background: url(../img/Shape 8.svg) center left no-repeat;
}

.location .row .walk {
    padding-left: 29px;
    font-size: 29px;
    background: url(../img/Shape 7.svg) center left no-repeat;
}




.scheme {
    position: relative;
    display: block;
    width: 100%;
    z-index: 100;
    height: auto;
    background: #efefef;
    color: black;
}

.scheme .row h2 {
    text-align: center;
    font-weight: 400;
    font-size: 36px;
    margin-bottom: 36px;
}

.scheme .icons_wrapper{
    display: inline-block;
    margin: 0 auto;
}

.scheme .row p {
    width: 190px;
    height: 135px;
    font-size: 14px;
    font-weight: 400;
    color: #383838;
    line-height: 1.33;
    display: inline-block;
    padding: 77px 0 0 0;
    overflow: hidden;
    /*
	border: 1px solid black;
	*/
}

.icon1 {
    background: url(../img/thumbs28.svg) 55% 21px no-repeat;
    background-size: 40% auto;
}

.icon2 {
    background: url(../img/thumbs28.svg) center 23px no-repeat;
    background-size: 40% auto; 
}

.icon3 {
    background: url(../img/shape9.svg) center 6px no-repeat;
    background-size: 40% auto; 
}

.icon4 {
  background: url(../img/thumbs28.svg) center 6px no-repeat;
  background-size: 40% auto;
  padding-top: 60px; 
}

.scheme .row ul {
    margin-top: 20px;
    list-style: none;
    background: #eeb35b;
    border-radius: 6px;
    border: 2px solid #eeb35b;
    height: 65px;
    overflow: hidden;
    clear: both;
}

.scheme .row ul li {
    font-size: 23px;
    font-weight: 800;
    color: #383838;
    display: inline-block;
    margin: -2px;
    line-height: 65px;
    width: 33.333%;
    border-right: 2px solid #eeb35b;
    cursor: pointer;
    background: white;
    text-transform: uppercase;
}

.scheme .row ul li:nth-of-type(3) {
    border-right: none;
}

.scheme .row ul li.last {
    border-right: none;
}

.scheme .row ul .activeflor {
    background: #eeb35b;
    color: white;
    pointer-events: none;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    -ms-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.swiper-container {
    width: 100%;
    height: 400px;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
	display: block;
	float: left;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

#slide1 {
    background: url(../img/scheme1.jpg) center center no-repeat;
    -webkit-background-size: contain;
    -moz-background-size: contain;
    background-size: contain;
	-ms-behavior: url(../js/backgroundsize.min.htc);
}

#slide2 {
    background: url(../img/box1.jpg) center center no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
	-ms-behavior: url(../js/backgroundsize.min.htc);
}

#slide3 {
    background: url(../img/box2.jpg) center center no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
	-ms-behavior: url(../js/backgroundsize.min.htc);
}


#slide4 {
    background: url(../img/box3.jpg) center center no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
	-ms-behavior: url(../js/backgroundsize.min.htc);
}

#slide31 {
    background: url(../img/box3-1.jpg) center center no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
	-ms-behavior: url(../js/backgroundsize.min.htc);
}

#slide32 {
    background: url(../img/box3-2.jpg) center center no-repeat;
    -webkit-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
		-ms-behavior: url(../js/backgroundsize.min.htc);
}

#slide5 {
    background: url(../img/scheme2.jpg) center center no-repeat;
    -webkit-background-size: contain;
    background-size: contain;
	-ms-behavior: url(../js/backgroundsize.min.htc);
}

#slide6 {
    background: url(../img/box4.jpg) center center no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
	-ms-behavior: url(../js/backgroundsize.min.htc);
}

#slide7 {
    background: url(../img/box5.jpg) center center no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
	-ms-behavior: url(../js/backgroundsize.min.htc);
}

#slide8 {
    background: url(../img/box6.jpg) center center no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
	-ms-behavior: url(../js/backgroundsize.min.htc);
}

#slide28 {
    background: url(../img/auto2.jpg) center center no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
	-ms-behavior: url(../js/backgroundsize.min.htc);
}

#slide29 {
    background: url(../img/auto1.jpg) center center no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
	-ms-behavior: url(../js/backgroundsize.min.htc);
}



#slide9 {
    background: url(../img/scheme3.jpg) center center no-repeat;
    -webkit-background-size: contain;
    background-size: contain;
	-ms-behavior: url(../js/backgroundsize.min.htc);
}

#slide10 {
    background: url(../img/box7.jpg) center center no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
	-ms-behavior: url(../js/backgroundsize.min.htc);
}

#slide11 {
    background: url(../img/box8.jpg) center center no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
	-ms-behavior: url(../js/backgroundsize.min.htc);
}

#slide12 {
    background: url(../img/box9.jpg) center center no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
	-ms-behavior: url(../js/backgroundsize.min.htc);
}

#slide13 {
    background: url(../img/kp01.jpg) center center no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
	-ms-behavior: url(../js/backgroundsize.min.htc);
}

#slide14 {
    background: url(../img/kp02.jpg) center center no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
	-ms-behavior: url(../js/backgroundsize.min.htc);
}

#slide15 {
    background: url(../img/kp03.jpg) center center no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
	-ms-behavior: url(../js/backgroundsize.min.htc);
}



.services {
    position: relative;
    display: block;
    width: 100%;
    z-index: 100;
    height: auto;
    background: white;
    color: black;
}

.services .row h2 {
    text-align: center;
    font-weight: 400;
    font-size: 36px;
    margin-bottom: 36px;
}

.ac-container {
    border: 2px solid #eeb35b;
    border-radius: 6px;
}

.ac-container label {
    height: 60px !important;
    line-height: 25px !important;
    font-size: 20px !important;
    font-weight: 800;
    color: #383838;
    padding: 5px 20px;
    position: relative;
    z-index: 20;
    display: block;
    height: 30px;
    cursor: pointer;
    text-align: center;
    line-height: 33px;
    font-size: 19px;
    border-top: 2px solid #eeb35b;
    /*text-transform: uppercase;*/
    background: #F1E4D1;
}

.ac-container label span {
   font-weight: 400;
   display: block;
}

.ac-container div .top {
    border-top: none;
}

.ac-container {
    width: 100%;
    text-align: left;
}

.ac-container label:hover {
    background: #fff;
}

.ac-container input:checked + label,
.ac-container input:checked + label:hover {
    background: #eeb35b;
    color: white;
    height: 30px;
    line-height: 21px;
    font-size: 13px;
}

.ac-container label:hover:after,
.ac-container input:checked + label:hover:after {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    right: 13px;
    top: 7px;
}

.ac-container input:checked + label:hover:after {}

.ac-container input {
    display: none;
}

.ac-container article {
    background: rgba(255, 255, 255, 0.5);
    overflow: hidden;
    height: 0;
    position: relative;
    z-index: 10;
    -webkit-transition: height 0.3s ease-in-out;
    -moz-transition: height 0.3s ease-in-out;
    -o-transition: height 0.3s ease-in-out;
    -ms-transition: height 0.3s ease-in-out;
    transition: height 0.3s ease-in-out;
}

.ac-container article p {
    font-size: 23px;
    font-weight: 200;
    color: #383838;
    line-height: 1.33;
    padding: 20px;
    padding-top: 5px;
    padding-bottom: 0px;
    display: flex;
}

.ac-container article span {
    padding-left:10px;
}

.ac-container article p:nth-of-type(1) {
    margin-top: 10px;
}

.ac-container article p span {
    font-size: 21px;
    display: inline-block;
    width: 90%;
    padding-right: 20px;
}

.ac-container article .price {
        width: 320px;
}

.ac-container article p span:nth-of-type(2) {
    font-weight: 200;
    padding-right: 0px;
}

.ac-container article p {
    font-weight: 600;
}

.ac-container input:checked ~ article {
    -webkit-transition: height 0.5s ease-in-out;
    -moz-transition: height 0.5s ease-in-out;
    -o-transition: height 0.5s ease-in-out;
    -ms-transition: height 0.5s ease-in-out;
    transition: height 0.5s ease-in-out;
}

.ac-container input:checked ~ article.ac-small {
    height: 280px;
    padding-top: 15px;
    padding-bottom: 20px;
}

.ac-container input:checked ~ article.ac-medium {
    height: 390px;
}

.ac-container input:checked ~ article.ac-large {
    height: 330px;
}


.ac-container input:checked ~ article.ac-1st {
    height: 325px;
}

.ac-container input:checked ~ article.ac-2nd {
    height: 720px;
}

.ac-container input:checked ~ article.ac-2nd p:nth-of-type(1) {
    font-weight: 600;
    padding-bottom: 10px;
}

.ac-container input:checked ~ article.ac-2nd p {
    font-weight: 200;
    padding-bottom: 10px;
}

.ac-container input:checked ~ article.ac-3rd {
    height: 370px;
}

.ac-container input:checked ~ article.ac-4th {
    height: 215px;
}



.infrastructura {
    position: relative;
    display: block;
    width: 100%;
    z-index: 100;
    height: auto;
    background: white;
    color: black;
    display: table;
    max-width: 1024px;
}

.structure_wrapper{
  margin:0 auto;
  max-width: 1024px;
  width: 100%;
    
}

.infrastructura .row h2 {
    text-align: center;
    font-weight: 400;
    font-size: 36px;
    margin-bottom: 36px;
}

.infrastructura .row p {
    font-size: 23px;
    font-weight: 200;
    color: #383838;
    margin-bottom: 0;
    line-height: 1.33;
    display: inline-block;
}

.infrastructura .infr {
    position: relative;
    overflow: hidden!important;
    float: left;
    width: 33.333333%;
    height: 255px;
    display: inline-block;
    top: 0;
}

.infrastructura .infr1 {
    background: url(../img/infr1.jpg) center center no-repeat;
}

.infrastructura .infr2 {
    background: url(../img/infr2.jpg) center center no-repeat;
}

.infrastructura .infr3 {
    background: url(../img/infr7.jpg) center center no-repeat;
}

.infrastructura .infr4 {
    background: url(../img/infr4.jpg) center center no-repeat;
}

.infrastructura .infr5 {
    background: url(../img/infr5.jpg) center center no-repeat;
}

.infrastructura .infr6 {
    background: url(../img/infr6.jpg) center center no-repeat;
}



.infrastructura .infr-gr {
    background: url(../img/infr-gr.jpg) center center no-repeat;
}

.infrastructura .infr-saint {
    background: url(../img/infr-saint.jpg) center center no-repeat;
}

.infrastructura .infr-gr,
.infrastructura .infr-saint {
    width: 50%;
    position: relative;
}

.infrastructura .infr-gr:before,
.infrastructura .infr-saint:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
}



.infrastructura .infr a {
    color: white!important;
    position: absolute;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    -ms-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    width: 100%;
    text-align: center;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.6), 1px 1px 1px rgba(0, 0, 0, 0.6);
    text-decoration: none;
    cursor: pointer;
    font-size: 24px;
    padding-top:35%;
    height: 100%;
}

.infrastructura .infr a:hover {
    background: rgba(0, 0, 0, 0.6);
}

.infrastructura .infr a p {
 
}

.infrastructura .infr a p span {
    display: block;
    margin-top: 10px;
    font-size: 16px;
    opacity: 0;
    -webkit-transition: 0.8s;
    -moz-transition: 0.8s;
    -o-transition: 0.8s;
    -ms-transition: 0.8s;
    transition: 0.8s;
}

.infrastructura .infr a p span.underline {
    text-decoration: underline;
}

.infrastructura .infr a.active {
    background: rgba(0, 0, 0, 0.6);
    padding-top: 25%;
    padding-left: 5px;
    padding-right: 5px;
}

.infrastructura .infr a.active p span {
    opacity: 1;
    display: block;
    margin-bottom: 10px;
    margin-top: 10px;
}

.infrastructura .infr-gr a,
.infrastructura .infr-saint a {

    padding-top:24%;

}



.cityheader {
    height: 240px;
    height: auto;
}

#city1 {
    background: url(../img/place_background11.jpg) no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: bottom;
		-ms-behavior: url(../js/backgroundsize.min.htc);
}

#city2 {
    background: url(../img/place_background22.jpg) no-repeat;
   -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: bottom;
		-ms-behavior: url(../js/backgroundsize.min.htc);
}


#city3 {
    background: url(../img/place_background33.jpg) no-repeat;
   -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: bottom;
		-ms-behavior: url(../js/backgroundsize.min.htc);
}

.cityheader h2 {
    padding-top: 55px;
    padding-bottom: 55px;
    font-size: 32px;
    font-weight: 400;
    line-height: 100%;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.6), 1px 1px 10px rgba(0, 0, 0, 0.6);
}

.cityheader h3 {
    text-align: center;
    font-weight: 600;
    font-size: 27px;
    color: black;
    margin-bottom: 32px;
    display: block;
}

.cityheader a {
    display: block;
    text-align: center;
    text-decoration: none;
    color: black;
    font-size: 21px;
    font-weight: 600;
    width: 100%;
}

.cityheader .row:nth-of-type(2) {
    background: white;
}

.cityheader .row p {
    display: block;
    font-size: 20px;
    font-weight: 200;
    color: #383838;
    margin-bottom: 24px;
    line-height: 1.33;
}



.contact {
    background: #2c302a;
    
}

.contact h2, .contact p, .contact a{
    font-family: 'Open Sans', sans-serif;
}

.contact h2 {
    font-weight: 400;
    font-size: 36px;
    margin-bottom: 10px;
        
}

.contact p {
    font-weight: 600;
    font-size: 23px;
    margin-bottom: 10px;
}

.contact p:nth-of-type(2) {
    margin-bottom: 30px;
    margin-top: 40px;
}

.contact p:nth-of-type(3),
.contact p:nth-of-type(4),
.contact p:nth-of-type(6) {
    font-weight: 300;
    font-size: 21px;
    margin-bottom: 30px;
    margin-top: 20px;
}

.contact p:nth-of-type(3){
    margin-top: -20px;
}



.contact p:nth-of-type(5) {
    margin-bottom: 30px;
    margin-top: 50px;
}



.contact a {
    display: block;
    font-weight: 300;
    padding-bottom: 10px;
    font-weight: 200;
    font-size: 27px;
    margin-top: 20px;
    margin-bottom: 10px;
    z-index: 11;
    cursor: pointer;
    color: white;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    -ms-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    text-decoration: none;
}

.contact .links {
    position: relative;
	text-aling: center;
}

.contact .links a {
    font-weight: 600!important;
    font-size: 21px;
    margin-bottom: 0px;
    margin-top: 0px;
    min-width: 200px;
    max-width: 300px;
    padding: 18px;
    margin-top: -20px;
    border-radius: 3px;
    padding-right: 4%;
    padding-left: 4%;
    background: #eeb35b;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
	display: block;
	margin: 0 auto;
}

.contact .row:last-of-type p:last-of-type {
    font-size: 16px;
}



.getmeup{
position: absolute;
height: 40px;
width: 40px;
display: block;
right: 5%; 
    -webkit-transform: translateY(-30%)!important;
    -moz-transform: translateY(-30%)!important;
    -ms-transform: translateY(-30%)!important;
    -o-transform: translateY(-30%)!important;
    transform: translateY(-30%)!important;
    border-radius: 6px;
background: black;
    background-image: url(../img/uparr.png);
    background-position: center center;
    background-repeat: no-repeat;
   cursor: pointer;
}




@media only screen and (max-width: 480px) {
    
    
    
    
    .butonsend {
        outline: none;
        border: none;
        text-decoration: none;
        font-weight: 600;
        color: white;
        border-radius: 3px;
        padding: 20px;
        background: #eeb35b;
        min-width: 150px;
        margin: 5px;
        font-size: 18px;
        letter-spacing: 0px;
        text-transform: uppercase;
        width: 80%;
        margin-left: 10%;
        min-width: 200px;
    }
    .cityheader {
        height: auto;
        background-size: 166%!important;
        background-position: center top!important;
    }
    .cityheader h2 {
        padding-top: 8px;
        padding-bottom: 8px;
    }
    .ac-container article p span {
        font-size: 18px;
        display: inline-block;
        width: 98%;
        padding-right: 0px;
    }
    
    .ac-container article .price {
        width: 260px;
    }
    
    .welcome .links {
       bottom: 6%;
    }   
    
    
    .infrastructura .infr {
        width: 50%;
        height: 170px;
    }
   
      .infrastructura .infr p {
        font-size: 18px!important;
    }  
    .infrastructura .infr p span{
        font-size: 12px!important;
    }  
    
.infrastructura .infr a.active {
    background: rgba(0, 0, 0, 0.6);
    padding-top: 15%;
}

    
    .scheme .row p {
        //margin-right: 0px!important;
        //padding-left: 30px!important;
        width: 140px;
    }
    
    .scheme .row ul li {
    font-size: 14px;
    }
    
    .ac-container label {
    font-size: 14px !important;
        
    }
    nav ul {
        margin: 5.2em auto;
    }
    .logo {
        margin: 4px auto;
        width: 165px;
        -webkit-background-size: contain;
        -moz-background-size: contain;
        -o-background-size: contain;
        background-size: contain;
    }
    .menu-toggle {
        top: 0px;
        left: 0px;
    }
    .closebut {
        top: 10px;
        right: 10px;
    }
    .welcome h1 {
        width: 70%;
        margin-left: 15%;
        font-size: 38px;
        line-height: 32px;
        top: 28%;
    }
    .welcome span {
        margin-top: 60px;
        font-size: 17px;
        font-weight: 600;
    }
    /*	.welcome .links a {
		background: white;
		text-decoration: none;
		font-weight: 600;
		color: black;
		border-radius: 3px;
		padding: 20px;
		display: block;
		min-width: 150px;
		margin: 10px;
		margin-left: 10%;
		margin-right: 10%;
	}
	*/
    .welcome .links a {
        background: white;
        text-decoration: none;
        font-weight: 800;
        color: black;
        border-radius: 3px;
        padding: 20px;
        padding-top: 16px;
        padding-bottom: 16px;
        display: inline-block;
        min-width: 50px;
        margin: 5px;
        cursor: pointer;
    }
    
    .infrastructura .infr a {
        padding-top: 35%;
    }
    
    .ac-container input:checked ~ article.ac-1st {
    height: 320px;
    }
    
    .ac-container input:checked ~ article.ac-2nd {
        height: 190px;
    }
    
    .ac-container input:checked ~ article.ac-3rd {
        height: 420px;
    }
    
    .ac-container input:checked ~ article.ac-4th {
        height: 225px;
    }
    
}


@media only screen and (min-height: 600px) and (min-width: 700px) {
    
    .welcome h1 {
        font-size: 50px;
        top: 26%;
    }
    
    .welcome span {
        font-size: 25px;
        margin-top: 80px;
    } 
    
    .welcome .links {
        bottom: 21%;
    }
    
}

@media only screen and (max-height: 370px) {
    
   nav ul {
      margin: 6em auto;
    }  
    
    nav ul a {
      line-height: 1.6;
    }
    
}



@media only screen and (max-width: 421px) {
    .ac-container label span {
        display: inline;
    }   
    
}


@media only screen and (min-width: 480px) and (max-height: 320px) {
    .welcome h1 {
       
        font-size: 30px;
        line-height: 29px;
        top: 23%;
    }
    
    .welcome span {
        font-size: 14px;
        margin-top: 23px;
    }
    
}


@media only screen and (min-width: 750px) {

    .ac-container input:checked ~ article.ac-1st {
    height: 255px;
}

.ac-container input:checked ~ article.ac-2nd {
    height: 610px;
}

.ac-container input:checked ~ article.ac-3rd {
    height: 300px;
}

.ac-container input:checked ~ article.ac-4th {
    height: 140px;
}

    
}

@media only screen and (max-width: 600px) {
  .ac-container input:checked ~ article.ac-2nd {
    height: 1100px;
    }  
    
    .ac-container input:checked ~ article.ac-2nd p {
    font-weight: 200;
    padding-bottom: 5px;
    font-size: 20px;
    }
       
    
}

@media only screen and (max-width: 568px) {
  .ac-container input:checked ~ article.ac-2nd {
    height: 570px;
    }     
    
}


@media only screen and (max-width: 415px) {

    .ac-container input:checked ~ article.ac-1st {
    //height: 850px;
}

.ac-container input:checked ~ article.ac-2nd {
    height: 960px;
}

.ac-container input:checked ~ article.ac-3rd {
    height: 350px;
}

.ac-container input:checked ~ article.ac-4th {
    height: 210px;
}

    
}


@media only screen and (max-width: 320px) {

    .ac-container input:checked ~ article.ac-1st {
    height: 335px;
}

.ac-container input:checked ~ article.ac-2nd {
    height: 1080px;
}

.ac-container input:checked ~ article.ac-3rd {
    height: 400px;
}

.ac-container input:checked ~ article.ac-4th {
    height: 240px;
}

    
}






.slides {
	height: 400px;
	overflow: hidden;
	position: relative;
}

.slide {
	position: absolute;
	top: -400px;
	left: 0;
	width: 100%;
}

.slide_city {
    position: relative;
    left: 0;
    width: 100%;
}

.slide_active {
	top: 0;
}


.upcase {
    font-size: 16px;
    -webkit-align-self: flex-start;
    -ms-flex-item-align: flex-start;
    align-self: flex-start;
}
