@import url('https://fonts.googleapis.com/css?family=Montserrat:400,500,600,700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  background-color: #eaebec;
  width: 100vw;
  height: 100vh;
  overflow-x: hidden;
  font-size: 100%;
}
nav{
  background:transparent;
  padding: 10px 40px;
  transition: transform 350ms ease-out;
}
nav ul{
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: right;
  transition: transform 350ms ease-out;
  position: sticky;

}
nav ul li{
  padding: 10px 0px 10px 0px;
  cursor: pointer;
}
nav ul li.items{
  position: relative;
  width: fit-content;
  text-align: center;
  margin-left: 2.2rem;
  order: 3;
  font-family: montserrat, sans-serif;
  font-weight: 500;
  font-style: normal;
  transition: 0.6;
}
nav ul li a{
  color: black;
  font-size: 1rem;
  text-decoration: none;
  transition: .4s;
}
nav ul li:hover a{
    color:rgb(139, 139, 139);
}
nav ul li i{
  font-size: 25px;
}
nav ul li.btn{
  display: none;
}
nav ul li.btn.hide i:before{
  content: '\f00d';
}
@media all and (max-width: 1025px){
  nav{
    padding: 5px 30px;
  }
  nav ul li.items{
    width: 100%;
    display: none;
    margin-left: 0rem;
  }
  .logo{
    align-items: center;
    display: block;
  }
  nav ul li.items.show{
    display: block;
  }
  nav ul li.btn{
    display: block;
  }
  nav ul li:hover a{
    color:rgb(139, 139, 139);
  }
}

/*-----------------------Main•Head-----------------------*/

.main-head{
  background-image: url(images/cc2.jpg);
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-color: rgba(0,0,0,0.6);
  background-blend-mode: darken;
  background-repeat: no-repeat;
  position: relative;
  cursor:default;
}
  
.banner-text{
  display: grid;
  grid-template-rows: max-content;
  text-align: center;
  align-items: center;
  justify-content: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: relative;
  color: rgb(255, 255, 255);
  list-style: none;
}
  
.banner-text img{
  top: 40%;
  left: 50%;
  height: auto;
  width: 1200px;
  transform: translate(-50%, -40%);
  position: relative;
  padding-bottom: 2.2rem;
}

.banner-text h2{
  color: white;
  font-size: 4rem;
  font-family: montserrat, sans-serif;
  font-weight: 450;
  font-style: normal;
  top: 40%;
  left: 50%;
  transform: translate(-40%, -50%);
  letter-spacing: 1.5rem;
  text-align: center;
  justify-content: center;
  position: relative;
  margin-right: .5rem;
  margin-left: .5rem;
}
.banner-text h3{
  color: white;
  font-size: 4.5rem;
  font-family: montserrat, sans-serif;
  font-weight: 200;
  font-style: normal;
  margin-right: .5rem;
  justify-content: center;
  margin-left: .5rem;
}
.banner-text li{
  text-align: center;
  top: 50%;
  left: 48%;
  transform: translate(-50%, -48%);
  position: relative;
  color: white;
  list-style: none;
}
button{
  width: 13rem;
  height: 3rem;
  border-radius: 1.5rem;
  background: transparent;
  color: white;
  font-size: 1.3rem;
  font-family: montserrat, sans-serif;
  font-weight: 400;
  font-style: normal;
  border: 2px solid rgb(255, 255, 255);
  transition: 0.3s;
  cursor: pointer;
}
button:hover{
  background: rgb(0, 0, 0);
  transform: scale(1.1);
  border: 0px;
}
button:hover{filter:invert(100%);}

@media all and (max-width: 1025px){

  .banner-text img{
    width: 600px;
    padding-bottom: 1.4rem;
  }
  .banner-text h2{
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 1.2rem;
  }
  .banner-text h3{
    font-size: 2.25rem;
  }
  .banner-text button{
    width: 8rem;
    height: 2rem;
    font-size: .8rem;
  }
}

@media all and (max-width: 608px){
  
  .banner-text img{
    width: 330px;
    padding-bottom: 1rem;
  }
  .banner-text h2{
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: .75rem;
  }
  .banner-text h3{
    font-size: 1.5rem;
  }
  .banner-text button{
    width: 8rem;
    height: 2rem;
    font-size: .8rem;
  }
}

/*-----------------------Containers-----------------------*/

.containers{
  width: 100%;
  padding: 70px 8%;
  align-items: center;
  justify-content: center;
}

.columns{
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px, 1fr));
  grid-gap: 10rem;
}

.columns p{
  font-size: 2rem;
  padding: 2rem;
  background-color: none;
  color: black;
  font-family: montserrat, sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 3px;
  text-align: left;
  cursor: default;
}

/*-----------------------Events-----------------------*/

.events{
  width: 100%;
  padding: 70px 8%;
  align-items: center;
  justify-content: center;
}

.party{
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px, 1fr));
  grid-gap: 10rem;
}

.party img{
  width: 100%;
  border-top-left-radius: 1.2rem;
  border-top-right-radius: 1.2rem;
}

.party h1{
  font-size: 2rem;
  border-bottom-left-radius: 1.2rem;
  border-bottom-right-radius: 1.2rem;
  background-color: white;
  color: black;
  font-family: montserrat, sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 3px;
  text-align: center;
}
a:link{
  text-decoration: none;
}

/*-----------------------Reviews-----------------------*/

#testimonials{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width:100%;
}
.testimonial-heading{
  letter-spacing: 1px;
  margin: 30px 0px;
  padding: 10px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.testimonial-heading h1{
  font-size: 3.2rem;
  font-family: montserrat, sans-serif;
  font-weight: 600;
  font-style: normal;
  color: black;
  padding: 10px 20px;
}
.testimonial-heading span{
  font-size: 1.3rem;
  color: #252525;
  margin-bottom: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.testimonial-box-container{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width:100%;
  height: 100%;
}
.testimonial-box{
  width:500px;
  height: 270px;
  border-radius: 1.2rem;
  background-color: #ffffff;
  padding: 20px;
  margin: 15px;
  cursor: pointer;
}
.profile-img{
  width:50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 10px;
}
.profile-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.profile{
  display: flex;
  align-items: center;
}
.name-user{
  display: flex;
  flex-direction: column;
}
.name-user strong{
  color: #3d3d3d;
  font-size: 1.1rem;
  font-family: montserrat, sans-serif;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.5px;
}
.name-user span{
  color: #979797;
  font-size: 1rem;
  font-family: montserrat, sans-serif;
  font-weight: 400;
  font-style: normal;
}
.reviews{
  color: #f9d71c;
}
.box-top{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.client-comment p{
  font-size: 0.9rem;
  color: #4b4b4b;
  font-family: montserrat, sans-serif;
  font-weight: 450;
  font-style: normal;
}

@media(max-width:1060px){
  .testimonial-box{
      width:45%;
      padding: 10px;
  }
}
@media(max-width:790px){
  .testimonial-box{
      width:100%;
  }
  .testimonial-heading h1{
      font-size: 3rem;
  }
}
@media(max-width:340px){
  .box-top{
      flex-wrap: wrap;
      margin-bottom: 10px;
  }
  .reviews{
      margin-top: 10px;
  }
}
::selection{
  color: #ffffff;
  background-color: #252525;
}

/*-----------------------Footer-----------------------*/

footer{
  margin-top: auto;
}

.footer-content {
  background-color: #eaebec;
  display: flex;
  min-width: 100%;
  position: sticky;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  text-align: center;
  letter-spacing: .3rem;
}

.socials {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.82rem 0 1.75rem 0;
}

.socials li {
  margin: 0 1.3rem;
}

.socials a{
  text-decoration: none;
  color: black;
}

.socials a i{
  font-size: 1.5rem;
  transition: 0.3s;
}

.socials a:hover i{
  color:rgb(139, 139, 139);
}