@import url('https://fonts.googleapis.com/css2?family=Amiri:ital,wght@0,400;0,700;1,400;1,700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
i{
    font-size: 30px;
    color: white;
    padding: 5px;
}
a{
    text-decoration: none;
    color: white;
}
ul{
    list-style: none;
}


body{
  font-family: "Amiri", serif;
    background-color: #000000;
    color: white;
}
header{
  height: 20vh;
  background-color: rgb(0, 0, 0);
}

/* Start Header Section */
.header{
  background-color: rgb(0, 0, 0);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding:5px 20%;
  font-size: 19px; 
}
i.menu{
display: none;
}
.nav{
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;

}
.nav img{
  width: 80px;
}
.nav ul{
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 50%;
}
.nav ul li{
  display: inline-block;
}
.nav ul li a{
  color: white;
  font-size: 24px;
  font-weight: bold;
  margin: 0 10px;
  padding: 10px;
  transition: 0.5s;
}
.nav ul li a:hover{
  color: red;
  margin: 0 10px;
  border-radius: 5px;
}
.input-search{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.input-search input{
  max-width: 300px;
  padding: 10px;
  border-radius: 5px;
  border: none;
}
.input-search .button{
  padding: 3px;
  background-color:red;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}


/* End Header Section */





.contact-info{
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
  padding: 20px;
}

.contact-info-item a i{
  font-size: 80px;
  color: white;
  margin: 0 80px;
}
/* Start Contact Us */
.contact-form {
  background-color: #1b2631;
  color: white;
  padding: 20px;
  border-radius: 10px;
  max-width: 1000px;
  margin: 20px auto;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  text-align: right;
}

.contact-form h2 {
  text-align: center;
  font-size: 24px;
  color: white;
  margin-bottom: 15px;
}

.contact-form label {
  display: block;
  margin-bottom: 5px;
  font-size: 18px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: none;
  border-radius: 5px;
  background-color: #333;
  color: white;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border: 1px solid red;
}

.contact-form button {
  padding: 10px 20px;
  background-color: red;
  width: 100%;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 18px;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: rgba(255, 0, 0, 0.626);
}


/* End Contact Us */







/* Start Footer Section  */
footer{
  background-color:#1b2631;
  color: white;
  padding: 20px;
  text-align: center;
}
footer{
  display: flex;
  justify-content: space-around;
  align-items: center;
}
footer .about{
  max-width: 300px;
  font-size: 20px;
}
.number-vip{
  max-width: 300px;
}
.number-vip h4{
  font-size: 20px;
  margin-bottom: 10px;
}
.number-vip ul li{
  margin: 6px 0;
  padding: 5px;
}
.number-vip ul li:hover{
  background-color: red;
  color: white;
  border-radius: 5px;
}
footer .contact{
  max-width: 500px;
  font-size: 20px;
}
footer .contact ul li{
  margin: 6px 0;
  padding: 5px;
}
footer .contact ul li:hover{
  background-color: red;
  color: white;
  border-radius: 5px;
}
footer .social{
  max-width: 300px;
  font-size: 20px;
}
footer .social img{
  width: 100px;
  height: 100px;
  margin: 10px;
}

/* End Footer Section  */

















@media (max-width: 1080px) {
  .content {
    flex: 1 1 calc(50% - 20px); 
  }
  .nav img{
  width: 60px;
  }
  .nav ul li a{
    font-size: 16px;
  }
  .input-search input{
    max-width: 200px;
    padding: 6px;
    border-radius: 3px;
    border: none;
  }
  .input-search .button{
    padding: 1px;
    background-color:red;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

.input-search{
margin-left: 20px;
}
i{
  font-size: 20px;
  color: white;
  padding: 5px;
}
.header a{
  font-size: 16px;
}
.contact-info{
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
  padding: 10px;
}

.contact-info-item a i{
  font-size: 50px;
  color: white;
  margin: 0 50px;
}

}



@media (max-width: 750px) {
  .content {
    flex: 1 1 calc(100%);
  }
  .nav img{
  width: 50px;
  margin: 0 140px;
  }

  #menu {
    position: absolute;
    top: 100px;
    right: 0;
    background-color: rgb(0, 0, 0);
    width: 100%;
    display: none;
    flex-direction: column; 
  }

  #menu li {
    display: block;
    text-align: center;
  }

  #menu li a {
    display: block;
    padding: 15px;
    font-size: 20px;
  }
  
  #menu{
    display: none;
  }
  .nav{
    justify-content: center;
    align-items: center;
  }
  .input-search input{
    max-width: 160px;
    padding: 3px;
    border-radius: 3px;
    border: none;
  }
  .input-search .button{
    padding: 1px;
    background-color:red;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

.input-search{
margin-left: 15px;
}
i{
  font-size: 20px;
  color: white;
  padding: 5px;
}
.header a{
  font-size: 16px;
}
i.menu{
  margin-left: 90px;
  display: block;
  font-size: 28px;
  cursor: pointer;
}

footer{
  display:grid;
}
footer .about{
  text-align: center;
  max-width: 440px;
  font-size: 18px;
  margin-bottom: 15px;

}
.number-vip{
  max-width: 440px;
}
.number-vip h4{
  font-size: 18px;
  margin-bottom: 10px;
}
.social{
  max-width: 440px;
  text-align: center;
  margin: 0 auto;
}
.social-links a i{
  font-size: 30px;
  margin: 0 10px;
}
}








/* Responsive All Nav */

@media (max-width: 750px) {

  .nav img{
    width: 50px;
    margin: 0 100px;
    }
  
}

@media (max-width: 600px) {

  .nav img{
    width: 50px;
    margin: 0 30px;
    }
  
}
@media (max-width: 450px) {
  
  .nav{
    justify-content: center;
    align-items: center;
  }

  .links a i{
    font-size: 15px;
    }
    .header h3 a{
      font-size: 15px;
    }
  .nav img{
    width: 50px;
    margin: 0 0 0 20px;
    }
}


@media (max-width: 390px) {

  .nav{
    justify-content: center;
    align-items: center;
  }
  .links a i{
    font-size: 13px;
    }
    .header h3 a{
      font-size: 13px;
    }
  .nav img{
    width: 40px;
    margin: 0;
    }
}

@media (max-width: 345px) {

  .nav{
    justify-content: center;
    align-items: center;
  }
  .links a i{
    font-size: 11px;
    }
    .header h3 a{
      font-size: 11px;
    }
  .nav img{
    width: 40px;
    margin: 0;
    }
}

/*//// Responsive All Nav ////*/


































































































/* Responsive All Nav */
@media (max-width: 1050px) {



}

@media (max-width: 750px) {

  .nav img{
    width: 50px;
    margin: 0 100px;
    }
    .contact-info{
      display: flex;
      justify-content: space-around;
      align-items: center;
      max-width: 1440px;
      margin: 0 auto;
      padding: 8px;
    }
    
    .contact-info-item a i{
      font-size: 40px;
      color: white;
      margin: 0 40px;
    }
  
}

@media (max-width: 600px) {

  .nav img{
    width: 50px;
    margin: 0 30px;
    }
    .contact-info{
      display: flex;
      justify-content: space-around;
      align-items: center;
      max-width: 1440px;
      margin: 0 auto;
      padding: 6px;
    }
    
    .contact-info-item a i{
      font-size: 30px;
      color: white;
      margin: 0 30px;
    }
  
}
@media (max-width: 480px) {
  .content-text h2 {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
  }
  
  .content-text a {
    color: rgb(255, 255, 255);
    text-decoration: none;
  }
  .content-text a h2{
    padding: 10px;
    background-color: red;
  }
  .content-text #number{
    padding: 10px;
    background-color: red;
  }
  .contact-info{
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 1440px;
    margin: 0 auto;
    padding: 6px;
  }
  
  .contact-info-item a i{
    font-size: 25px;
    color: white;
    margin: 0 20px;
  }

}
@media (max-width: 450px) {
  
  .nav{
    justify-content: center;
    align-items: center;
  }

  .links a i{
    font-size: 15px;
    }
    .header h3 a{
      font-size: 15px;
    }
  .nav img{
    width: 50px;
    margin: 0 0 0 20px;
    }

    .content-text h2 {
      font-size: 30px;
      font-weight: bold;
      margin-bottom: 10px;
      text-align: center;
    }
    
    .content-text a {
      color: rgb(255, 255, 255);
      text-decoration: none;
    }
    .content-text a h2{
      padding: 10px;
      background-color: red;
    }
    .content-text #number{
      padding: 10px;
      background-color: red;
    }

    .contact-info{
      display: flex;
      justify-content: space-around;
      align-items: center;
      max-width: 1440px;
      margin: 0 auto;
      padding: 6px;
    }
    
    .contact-info-item a i{
      font-size: 20px;
      color: white;
      margin: 0 20px;
    }
    
}


@media (max-width: 390px) {

  .nav{
    justify-content: center;
    align-items: center;
  }
  .links a i{
    font-size: 13px;
    }
    .header h3 a{
      font-size: 13px;
    }
  .nav img{
    width: 40px;
    margin: 0;
    }
}

@media (max-width: 358px) {

  .nav{
    justify-content: center;
    align-items: center;
  }
  .links a i{
    font-size: 11px;
    }
    .header h3 a{
      font-size: 11px;
    }
  .nav img{
    width: 40px;
    margin: 0;
    }
    .contact-info{
      display: flex;
      justify-content: space-around;
      align-items: center;
      max-width: 1440px;
      margin: 0 auto;
      padding: 6px;
    }
    
    .contact-info-item a i{
      font-size: 15px;
      color: white;
      margin: 0 20px;
    }
}

/*//// Responsive All Nav ////*/
