@import url('https://fonts.googleapis.com/css?family=Titillium+Web:400,600');
@import url('https://cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick.css');
@import url('https://cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick-theme.css');

body{
  font-family: 'Titillium Web', sans-serif;
}

.pageHero{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 400px;
}
.pageHero__title{
  font-size: 60px;
  text-align: center;
  color: #FFFFFF;
  font-weight: 600;
  text-shadow: 0 0 15px rgba(0,0,0,0.44);
}
.pageContent{
  padding: 150px 0;
}
.pageContent__heading{
  font-size: 30px;
  color: #585858;
}
.pageContent__content{
  font-size: 16px;
  color: #7F7F7F;
}

.infoItem{
  display: flex;
  flex-direction: row;
  margin-bottom: 20px;
}
.infoItem__image img{
  width: 47px;
}
.infoItem__info{
  padding: 0 20px;
}
.infoItem__title{
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 5px;
}
.infoItem__details{
  font-size: 16px;
  color: #000000;
}
.infoItem__details a{
  font-size: 16px;
  color: #000000;
  text-decoration: none;
}
@media (max-width: 720px) {
  .offer{
    padding: 0px 20px 20px 20px;
    margin-bottom: 20px;
  }
  .offer__image{
    display: none;
  }
  .offer__subtitle{
    display: none;
  }
  .offerSection{
    left: 1vw;
  }
}


.slick-slide{
  /* width: 100%; */
  /* min-height: calc(100vh - 86px) !important; */
}

.homeSlider{

  min-height: calc(100vh - 86px) !important;
  width: 100%;
  z-index: -9999;
  animation: mymove 7s infinite;
}

.offerSection{
  padding-top: 150px;
  z-index: 9999;
}
@keyframes mymove {
    0%   {background: gray url('/assets/img/home-slider/1.png') center no-repeat;}
    50%  {background: gray url('/assets/img/home-slider/2.png') center no-repeat;}
    100%   {background: gray url('/assets/img/home-slider/1.png') center no-repeat;}
}


.offer{
  background: #FFFFFF;
  box-shadow: 0 5px 31px 0 rgba(0,0,0,0.20);
  border-radius: 15px;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.offer__title{
  font-size: 20px;
  color: #585858;
  text-align: center;
  margin: 30px 0;
}
.offer__subtitle{
  font-size: 16px;
  color: #7F7F7F;
  text-align: center;
}
.offer__more{
  font-size: 16px;
  color: #50BBFF;
  text-decoration: none;
  text-align: center;
}

#pageMap{
  height: 400px;
  width: 100%;
}
.btn{
  border-radius: 9px;
}
.btn-blue{
  background: #50BBFF;
  border: 1px solid #CEECFF;
  font-size: 16px;
  color: #FFFFFF;
}
.btn-blue:hover{
  color: #fff;
  background: #3E9AD5;
}
.btn-green{
  background: #A5BC08;
  border: 1px solid #E9FA79;
  font-size: 16px;
  color: #FFFFFF;
}
.btn-green:hover{
  color: #fff;
  background: #81920B;
}
.btn-orange{
  background: #E36A02;
  border: 1px solid #F9B775;
  font-size: 16px;
  color: #FFFFFF;
}
.btn-orange:hover{
  color: #fff;
  background: #B75807;
}


footer{
  position: relative;
  background: #585858;
  padding: 150px 0;
  color: #fff;
}
