
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@200..1000&display=swap');

.nunito-sans-custom {
  font-family: "Nunito Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400; /* Choose from 200 to 1000 */
  font-style: normal;
  font-variation-settings:
    "wdth" 100,
    "YTLC" 500;
}




:root{
    --red:#E50914;
    --black:#181818;
    --light-color:#000000;
    --border-shadow:0 .5rem 1.5rem rgba(0,0,0,.1);

}



*{
    font-family: 'nunito', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    outline:none;
    border:none;
    text-transform:capitalize; 
    transition: all .2s linear;
}

html {

   overflow-x: hidden;
    font-size: 62.5%;
    width: 100vw;
    font-family: 'Roboto', sans-serif;
    background-color: white;
    
}

section {

   width: 100%;
   overflow-y: scroll;
}

header
{
    position:relative;
    width: 100%;
    top: 0px;
    left: 0px;
    right: 0;
    background: linear-gradient(to bottom,grey , rgba(0, 0, 0, 0.7), transparent);;
    padding: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: space-around;
    z-index: 1000;
    box-shadow: var(--box-shadow);
    font-size: large;
    text-decoration-color: aliceblue;
    -moz-text-decoration-color: aliceblue;
   
}


#menu-icon {
   color: aliceblue;
   font-size: 1.9rem;
   display: none;
}


.navibar a{
     
   margin-right: 1px;
   color: white;
   text-decoration: none;
   padding: 14px;
   font-size: 15px;
   
 
}


header .content-media a{

    color: #16e0e7;
    margin: 1rem;
 }
 
 .navibar a:hover{ 
     color: #16e0e7;
     
 }
  .navibar a:visited:hover{
     color: #16e0e7;
  }
 
  .discover-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
  }

  h1 {

    font-size: 2rem;
    color: #181818;
    width: auto;
  }

  p{
    font-size: 1.5rem;
    font-style: normal;
    padding: 2px;
    margin-top: 2rem;
    margin-bottom: 2rem;
    width: auto;
    word-wrap: break-word;
    width: 450px;
    text-transform: lowercase;
  }

  p::first-letter {

    text-transform: uppercase;
  }

.why-container{

  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
}

.heading {

  display: flex;
 flex-direction: column;
 align-items: center;
 justify-content: center;
 text-align: center;
 margin-top: 5rem;
}



.box-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}


.box {
  width: 200px; 
  height: 200px;/* Adjust size as needed */
  border-radius: 10px;
  overflow: hidden; /* Ensures clean edges */
  border: 2px solid #ccc; /* Optional border */
  margin: 2rem;
 
}

.box-header {
  background-color: #16e0e7;
  color: white;
  text-align: center;
  padding: 10px;
}

.box-body {
  background-color: white;
  color: black;
  padding: 15px;
  text-align: center;
}


.contact {
  background-color: #000000;
  color: #ccc;

padding:50px
}

.contact-container{

  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  
}

.contact h1 {
  
  font-size: 42px;
  color: #fff8f8;
  position: relative;
  display: inline-block;
  padding-bottom: 2px; /* Space for the underline */
  word-wrap: break-word;
  width: 450px;
 
}

.contact a {
  padding: 1.5rem;
  background-color: #16e0e7;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.contact .heading::after {
  content: "";
  display: block;
  width: 100%; /* Adjust line width */
  height: 1px; /* Adjust thickness */
  background-color: #ff5733; /* Adjust line color */
  margin: 8px auto 0;
}
.contact p{

  max-width: 450px;
  width: 100%;
}

.footer-container {

  display:flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  padding: 3rem;
  background-color: #666;

}

.footer-section {
  position: relative;

  margin: 10px;
  padding: 2rem;
 
}

.footer-section h1
{
  font-size: 1.5rem;
  
}

.footer-section h2{
  margin-bottom: 1rem;
}

.footer-section p{
  word-wrap: break-word;
  width: 250px;
  margin-bottom: 1rem;

}

.icons-2 i{
  margin: 10px;
  font-size: 1.4rem;
  background-color: #08cfe9;
  color: black;
  padding: 5px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}



@media  (max-device-width: 481px )   

{

   
      html {
          font-size: 85%;
          
      }
   
      body{

         overflow-x: hidden;
      }

      header {
         display: block;
          flex-direction: column;
          align-items: center;
          text-align: center;
      }

      header .logo img {
        width: 280px;  /* or whatever size you want */
       height: auto;
        margin: 0 auto;
        justify-content: end;
    }

.navibar{
   position: absolute;
   top: 100%;
   left:0;
   width:100%;
   padding: 1rem 3%;
   border-top: .1rem solid #ec8105;
   display: none;
   justify-content: space-between;
   background: linear-gradient(to bottom, grey, black);
  } 

        
#menu-icon {
   display: flex;
   align-items: center;
   justify-content: start;
   font-size: 4rem;
   cursor: pointer;
}

      .navibar a {

         display:block;
         padding: 25px;
         font-size: 3.5rem;
         

      }
      .navibar.active{

         display: block;
        }

        header .content-media i{

          font-size: 5rem;
        }

        h1 {

          font-size: 4.5rem;
        }

        p {
          text-transform: lowercase;
          font-size: 2rem;
          width: auto;
        }

        p::first-letter {
          text-transform: uppercase;
        }
        .box {

          width: 350px;
          height:auto;
        }
        
.contact p {

  font-size: 2.5rem;
}

.contact a {

  padding: 2rem 5rem;
  font-size: 2.5rem;
}
.footer-container {


  display: flex;
  flex-direction: column;
  justify-content: center;
}


.footer-section p {


  font-size: 2.5rem;
  width:350px;
}
  
      }

  @media  (max-device-width: 940px) {


     .discover-container{

      display: flex;
      flex-direction: column;
     }

     .why-container{
      display: flex;
      flex-direction: column;

     }

     .box-container{
      display: flex;
      flex-direction: column;
     } 
  }