/* =================  GLOBALS ====================== */
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style-type: none;
  text-decoration: none;
  box-sizing: border-box;
  outline: none;
}
@font-face{
  font-family: product-sans;
  src: url(../fonts/Product-Sans-Regular.ttf);
}
html{
  font-family: product-sans, Arial, sans-serif;
}
body{
  background-color: var(--white-color);
}

:root{
  --main-color: #203b75;
  --main-color-light: #3a62b9;
  --white-color: #ffffff;
  --black-color: #000000;
  --light-grey-color: #f5f5f5;
}
.clearfix{
  clear: both;
}
/* =================  GLOBALS ====================== */
.header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #00000021;
  padding: 10px;
  margin-bottom: 25px;
}
.header h1{
  text-transform: uppercase;
  font-size: 30px;
  color: var(--main-color-light);
}
.header .map{
  position: relative;
  width: 130px;
  height: 70px;
}
.header .map img{
  width: 100%;
  height: 100%;
  opacity: .5;
  border-radius: 5px;
}
.header .map button{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  border: 1px solid #0d6efd;
  font-weight: 600;
}

.resort{
  display: flex;
  margin-bottom: 30px;
}
.resort .img{
  width: 30%;
  margin-right: 10px;
  position: relative;
}
.resort .img img{
  width: 295px;
  height: 195px;
  object-fit: cover;
  border: 1px solid #00000021;
  background-color: var(--light-grey-color);
  padding: 4px;
  border-radius: 5px;
  opacity: .8;
}
.resort .img .opinion{
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  padding: 5px;
}
.resort .img .opinion svg{
  margin: 0 10px;
  font-size: 20px;
  cursor: pointer;
  transition: .3s;
  opacity: .8;
}
.resort .img .opinion svg:hover{
  font-size: 30px;
  opacity: 1;
}

.resort .resort-text h3{
  padding: 10px 0;
}
.resort .resort-text .location{
  color: var(--main-color-light);
}
.resort .resort-text .location span{
  text-decoration: underline;
  cursor: pointer;
  user-select: none;
  font-weight: 600;
}
.resort .resort-text .location span:hover{
  color: #3b79ff;
}

.overlay{
  width: 100vw;
  height: 100vh;
  background-color: #000000f6;
  position: fixed;
  z-index: 12;
  top: 0;
  left: 0;
  display: grid;
  place-items: center;
}
.overlay iframe{
  width: 500px;
  height: 450px;
  border-radius: 10px;
  box-shadow: 3px 3px 10px rgba(255, 255, 255, .15);
}
.overlay .close{
  position: absolute;
  top: 100px;
  left: 80px;
  color: #d3d1d1;
  cursor: pointer;
  font-size: 22px;
  font-weight: 600;
  cursor: pointer;
  opacity: .6;
  user-select: none;
}
.overlay .close:hover{
  opacity: 1;
}


@media screen and (max-width: 1174px){
  .resort-text{
    margin-left: 2rem;
  }
}

@media screen and (max-width: 991px){
  .resort-text{
    margin-left: 6rem;
  }
  .resort .img .opinion {
    position: absolute;
    bottom: 67px;
    left: 35%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    padding: 5px;
  }
}
@media screen and (max-width: 425px){
  .header{
    flex-direction: column;
  }
  .header h1{
    font-size: 20px;
    margin-bottom: 20px;
  }
  .resort{
    width: 100%;
    flex-direction: column;
    /* align-items: center; */
    justify-content: center;
  }
  .resort .img{
    width: 100%;
  }
  .resort .img img{
    width: 100%;
  }
  .resort .img .opinion{
    bottom: 8px;
    left: 50%;
  }
  .resort-text {
    margin-left: 2rem;
}
}

@media screen and (max-width: 320px){
  .header h1{
    font-size: 17px;
    margin-bottom: 20px;
  }
}













