@media url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');
@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;
  }

  section .services

  .background-container {

    position: absolute;
    width: 100%;
    height:95%;

  }

  .background-container img {

    position: absolute;
    width: 100%;
    height: 75%;
    object-fit: cover;
    z-index: -1;
  }

  .container {

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 20rem;
  }

  .container h1 {
     color: white;
     font-size: 8rem;

  }

  .container p {
    font-size: 3rem;
    color: white;
  }
  
 

    .container button  {
      margin-top: 3rem;
      padding: 10px;
      background-color:#16e0e7;
      border-radius:10px ;
      -webkit-border-radius:10px ;
      -moz-border-radius:10px ;
      -ms-border-radius:10px ;
      -o-border-radius:10px ;
  }


  .header h2 {

    margin-top: -10rem;
    font-size: 3rem;
   
  }

  .homepage-container
  {
    display: flex;
    align-items: start;
    justify-content: space-around;
    margin-bottom: 5rem;
  }

  .homepage-container h2 
  {
    font-size: 3rem;
    margin-top: 5rem;
    width: 360px;
    word-wrap: break-word;
    padding:35px;
  }

  .topic h3 {

    font-size: 2rem;
    margin-top: 5rem;
    padding-left: 35px;
    
  }

  .homepage .heading::after 
  
  {
    content: "";
    display: block;
    width: 450px; 
    height: 1px; 
    background-color: #33e0ff; 
  
  }

  .box-container {

    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;


  }

  .box h2 {

    font-size: 1rem;
   
  
  }
  .box h3 {

    font-size: 1.5rem;
    margin-bottom: 2rem;
    width:200px;
    word-wrap: break-word;
  }


  .box p {

    font-size: 1.2rem;
    width:200px;
    word-wrap: break-word;
  }

  .box .heading::after 
  
  {
    content: "";
    display: block;
    width: 200px;
    height: 1px;
    background-color: #33e0ff;
   margin-bottom:3rem ;
}


.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: 475px )   

{

   
      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;
        }
        .container {

          height: 50vh;
          margin-top: 15rem;
          margin-bottom: 35rem;
          font-size: 85%;
        }
        .container h1 {

          font-size: 5rem;
        }
       .container p{

       font-size: 3.5rem;
       font-style: oblique;
       text-transform: lowercase;
       }

       .container p::first-letter {

        text-transform: uppercase;
       }
       .container button {

        padding: 3rem 6rem;
        font-size: 3.5rem;
       }

section .homepage {

  overflow-y: scroll;
 
}

.header h2{

  font-size: 5rem;
}

.homepage-container {

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.topic h3 {

  font-size: 3.5rem;
}

.topic h2{

  font-size: 5rem;
  width: auto;
}

.homepage .heading::after {
  height: 5px;
}

.box-container {

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.box h2 {

  font-size: 3.5rem;
}

.box h3 {

  font-size: 5rem;
  width: 350px;
}

.box p {


  font-size: 2.5rem;
  width: 290px;
}


.box .heading::after {


height: 5px;
width: 350px;
}


.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;
     } 
  }