.close{
	position: absolute;
  top: 1%;
  right: .5%;
  width: calc(1.5vw + 1.5vh);
  height: calc(1.5vw + 1.5vh);
  font-size: calc(2.3vw + 2.3vh);
  font-weight: 100;
  color: #013C70;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  display: none;
}

.wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;

  display: flex;
}

.left, .right{
  width: 50%;
  height: 100%;
}

.left{
  position: relative;
  background: url(../img/cover.jpg);
  background-origin: border-box;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;

  cursor: pointer;
}

.left:after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;

  width: 35%;
  height: 25%;

  display: block;

  background: url(../img/logo_down.jpg);
  background-origin: border-box;
  background-position: center right;
  background-repeat: no-repeat;
  background-size: 80%;
}

.right{
  padding: 0 calc(3vw + 3vh);
}

.header{
  width: 100%;
  height: 15%;

  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.logo{
  width: 100%;
  height: 30%;
  display: flex;

  background: url(../img/logo_vinci.png);
  background-origin: border-box;
  background-position: center right;
  background-repeat: no-repeat;
  background-size: contain;
}

.content{
  width: 100%;
  height: 65%;

  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: space-between;
}

.items{
  width: 47%;
  height: 28.33333%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border-radius: 10px;
  padding: calc(1.5vw + 1.5vh);
  cursor: pointer;
  transition: transform .3s ease-in;

  -webkit-box-shadow: 0px 3px 10px 3px rgba(0,0,0,0.3);
  -moz-box-shadow: 0px 3px 10px 3px rgba(0,0,0,0.3);
  box-shadow: 0px 3px 10px 3px rgba(0,0,0,0.3);
}

.items:hover{
  transform: scale(1.075);
}

.items:nth-child(1){
  background: url(../img/item1.jpg);
  background-origin: border-box;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.items:nth-child(2){
  background: url(../img/item2.jpg);
  background-origin: border-box;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.items:nth-child(3){
  background: url(../img/item3.jpg);
  background-origin: border-box;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.items:nth-child(4){
  background: url(../img/item4.jpg);
  background-origin: border-box;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.items:nth-child(5){
  background: url(../img/item5.jpg);
  background-origin: border-box;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.items:nth-child(6){
  background: url(../img/item6.jpg);
  background-origin: border-box;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

h1{
  color: #fff;
}

.footer{
  width: 100%;
  height: 20%;

  display: flex;
  align-items: center;
}

.footer_wrapper{
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.footer_left, .footer_right{
  width: 47%;
  height: 100%;

  display: flex;
  flex-direction: column;
}

.title{
  position: relative;
  margin-bottom: calc(.5vw + .5vh);
  height: calc(1.2vw + 1.2vh);
  display: flex;
  align-items: center;
}

.footer_left .title:after{
  content: "";
  position: absolute;
  top: -3px;
  left: 0;

  background: url(../img/ico_location.png);
  background-origin: border-box;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;

  width: calc(1.2vw + 1.2vh);
  height: calc(1.2vw + 1.2vh);
}

.footer_right .title:after{
  content: "";
  position: absolute;
  top: -3px;
  left: 0;

  background: url(../img/ico_phone.png);
  background-origin: border-box;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;

  width: calc(1.2vw + 1.2vh);
  height: calc(1.2vw + 1.2vh);
}

.footer_left span, .footer_right span{
  padding-left: calc(1.5vw + 1.5vh);
  color: #0d486d;
}

@media only screen and (orientation: portrait){
  .wrapper{
    flex-direction: column;
  }

  .left, .right{
    width: 100%;
  }

  .left{
    background-position: center bottom;
    height: 40%;
  }

  .right{
    height: 60%;
  }

  .left:after {
    height: 40%;
  }

  .title {
    font-size: calc(1vw + 1vh);
    height: calc(1.5vw + 1.5vh);
  }

  .title:after {
    width: calc(1.4vw + 1.4vh);
    height: calc(1.4vw + 1.4vh);
  }

  .details {
    font-size: calc(.9vw + .9vh);
  }

  .footer_left span, .footer_right span {
    padding-left: calc(2vw + 2vh);
  }
}