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

body{
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

@media (min-width:1279px){
  body{
    font-size: 18px;
  }
}

p{
  margin-bottom: 30px;
}

p:last-child{
  margin-bottom: 0;
}

a{
  text-decoration: none;
  color:inherit;
  position: relative;
  display: inline-block;
}

a::before {
  content: '';
  position: absolute;
  bottom: 6px;
  right: 0;
  height: 1px;
  width: 0;
  background: rgba(0,0,0,1);
  -webkit-transition: width 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
  transition: width 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
}

a:hover:before {
  left: 0;
  right: initial;
  width: 100%;
}

.container{
  display: flex;
  flex-wrap: wrap;
  height: auto;
  min-height: 600px;
}

@media (min-width:767px){
  .container{
    height: 100vh;
  }
}

.col{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.col-1{
  width: 22%;
  padding-left: 100px;
  display: none;
}

@media (min-width:1279px){
  .col-1{
    display: flex;
  }
}

.col-2{
  width: 100%;
  padding: 30px;
  align-items: flex-start;
}

@media (min-width:767px){
  .col-2{
    width: 50%;
    align-items: center;
    padding: 0 40px;
  }
}

@media (min-width:1279px){
  .col-2{
    width: 42%;
    padding-right: 135px;
    padding-left: 0;
  }
}

.col-3{
  width: 100%;
  height: 100%;
  position: relative;
  padding-top: 125%;
}

@media (min-width:767px){
  .col-3{
    width: 50%;
    height: 100%;
    padding-top: 0;
  }
}

@media (min-width:1279px){
  .col-3{
    width: 36%;
  }
}

.content img{
  display: block;
  margin-bottom: 40px;
  max-width: 280px;
}

@media (min-width:1279px){
  .content img{
    display: none;
  }
}

.content .none{
  display: none;
}

@media (min-width:992px){
  .content .none{
    display: block;
  }
}

h1{
  margin-top: 0;
  font-size: 40px;
  line-height: 1.25;
  margin-bottom: 40px;
}

@media (min-width:1279px){
  h1{
    font-size: 60px;
    margin-bottom: 70px;
  }
}

 /* slider */

.swiper-container,
.swiper-wrapper,
.swiper-slide,
.swiper-slide figure,
.swiper-slide img{
   height: 100%;
   width: 100%;
 }

.swiper-slide img{
 	position: absolute;
 	left:50%;
 	right: 50%;
 	transform: translateX(-50%);
 	top:0;
  object-fit: cover;
  object-position: center;
}

.swiper-container {
  transition:opacity .6s ease, transform .3s ease;
  position: absolute;
  left:0;
  top:0;
}

@media (min-width:767px){
  .swiper-container {
    position: relative;
  }
}


.swiper-slide{
 	position: relative;
  overflow: hidden;
}

.slide-bgimg{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background-position:center;
  background-size:cover;
}
