*, html{margin: 0; padding: 0; box-sizing: border-box; font-family: 'Alata', sans-serif;}
a{color: #1d1d1d; text-decoration: none;}
ul, ol{list-style: none;}
/* ************************************************ */
.menu-btn{
  position: absolute;
  top: 16px; right: 20px;
  display: none;
  z-index: 100;
}

.navbar{
  height: 30%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 50;
  padding: 16px;
  background: #fff;
}
.navbar ul{
  display: flex;
  align-items: center;
}
.navbar ul li a{
  font-size: 14px;
  margin: 0 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.navbar ul li a:hover{color: lightblue;}

.header-image{
  min-height: 900px;
  background: rgba(173,216,230,0.5);
  background-position: top;
}
.logo-image{text-align: center;}
.logo-image img{
  width: 80%;
  position: absolute;
  top: 55%; left: 50%;
  transform: translate(-50%, -50%);
}
/* *******************boxes-container******************** */
.boxes{max-width: 85%; margin: 0 auto;}

.boxes-container{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  justify-content: center;
  text-align: center;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 5px;
  margin-top: 100px;
}
.boxes-container img{
  width: 100%; height: 300px;
  object-fit: cover;
  text-align: center;
  margin-bottom: 15px;
}
.boxes-container img:hover{filter: grayscale(0.5);}
/* big */
.boxes-container-big{
  display: flex;
  justify-content: center;
  width: 100%; height: 100%;
  text-align: center;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 5px;
  margin-top: 100px;
}
.boxes-container-big img{width: 100%; margin-bottom: 15px;}
.boxes-container-big img:hover{filter: grayscale(0.5);}
/* small */
.boxes-container-small{
  display: grid;
  grid-template-columns: auto auto;
  gap: 20px;
  justify-content: center;
  text-align: center;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 5px;
  margin-top: 100px;
}
.boxes-container-small img{
  width: 100%; height: 300px;
  text-align: center;
  margin-bottom: 15px;
}
.boxes-container-small img:hover{filter: grayscale(0.5);}
/* *******************footer***************************** */
footer .footer-items{
  text-align: center;
  margin-top: 100px;
}
footer .footer-items i{font-size: 26px;}
footer .footer-items i:hover{color: lightblue;}
footer .footer-items img{width: 170px;}
footer .footer-items a{font-size: 16px;}
footer .footer-items h6{font-size: 14px;}
/* *******************반응형***************************** */
@media screen and (max-width: 1100px){
  .logo{width: 100px;}

  .navbar ul li a{font-size: 12px;}

  .header-image{min-height: 700px;}
  .logo-image img{
    width: 80%;
    position: absolute;
    top: 45%; left: 50%;
    transform: translate(-50%, -50%);
  }

  .boxes-container{
    font-size: 13px;
    margin-top: 70px;
  }
  .boxes-container img{width: 100%; height: 220px;}
  /* big */
  .boxes-container-big{
    font-size: 13px;
    margin-top: 70px;
  }
  .boxes-container-big img{width: 100%;}
  /* small */
  .boxes-container-small{
    font-size: 13px;
    margin-top: 70px;
  }
  .boxes-container-small img{width: 100%; height: 220px;}

  footer .footer-items i{font-size: 24px;}
  footer .footer-items img{width: 160px;}
  footer .footer-items a{font-size: 14px;}
  footer .footer-items h6{font-size: 12px;}
}

@media screen and (max-width: 740px){
  .logo{width: 80px;}

  .menu-btn{
    display: block;
    font-size: 12px;
    -webkit-text-stroke: 2.5px white;
  }

  .navbar{
    justify-content: flex-start;
  }
  .navbar ul{
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: #ffffff;
    width: 80%;
    height: 100%;
    padding: 30px 0 0 45px;
    transform: translateX(-670px);
    transition: transform 0.5s ease-in-out;
    z-index: 200;
  }
  .navbar ul.show{
    transform: translateX(-20px);
  }
  .navbar ul li a{
    text-transform: capitalize;
    line-height: 2;
    font-size: 18px;
  }
  .navbar ul .mobile-arrows:after{
    content: ' \00BB';
    font-family: sans-serif;
    color: rgba(0,0,0,.4);
  }

  .boxes{max-width: 80%;}
  .boxes-container{
    display: grid;
    grid-template-columns: 1fr ;
    text-align: center;
    justify-content: center;
    font-size: 12px;
    margin-top: 60px;
  }
  .boxes-container img{width: 100%; height: 220px;}
  /* big */
  .boxes-container-big{
    font-size: 12px;
    margin-top: 60px;
  }
  .boxes-container-big img{width: 100%; height: auto;}
  /* small */
  .boxes-container-small{
    display: grid;
    grid-template-columns: 1fr ;
    text-align: center;
    justify-content: center;
    font-size: 12px;
    margin-top: 60px;
  }
  .boxes-container-small img{width: 100%; height: auto;}

  footer .footer-items i{font-size: 20px;}
  footer .footer-items img{width: 140px;}
  footer .footer-items a{font-size: 12px;}
  footer .footer-items h6{font-size: 10px;}
}