 @import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
*{
    margin:0;
    font-family: "Inter", sans-serif;
    box-sizing: border-box;

    
}
html{
 scroll-behavior: smooth;
}
/*body{
    background-image: url(bg/bg2.jpg);
   background-attachment: fixed;
   background-size: cover;
}*/
header{
    height: 100vh;
}
.current_page a::after{
    color: white;
}
.textbox p{
    font-size: 40px; 
    font-weight: bold;
    text-shadow: 12px 1px 17px #111111; 
    padding: 8px
}

/*body{
   background: linear-gradient(to right, #f0f0f0, rgb(0,134,133), #f0f0f0);
    background-color:rgb(255, 254, 253);
    

}
/******************************* NAVIGATION PANE **************************************/
#motto{
    display: block;
    font-size: 15px;
    padding-bottom: 0;
    color:white;
    background:  rgb(0,134,133);
    margin-bottom: 0;
}
nav{
    padding-top: 0;
    margin-top: 0;
    display: flex;
    justify-content: space-evenly;
    background: white;
    /*height: 74px;*/
    border-bottom: solid;
    border-bottom-width: 3px;
    border-bottom-color: rgb(0,134,133);
    box-shadow: 0px 2px 5px 0px #00000036;
}

nav h1{
    display: grid;
    align-items: center;
    color: rgb(0,134,133);
}
.nav-links{
    width:fit-content;
       display: grid;
   
}
nav ul{
    list-style:none;
    padding: 0;
    margin: 0;
    width:fit-content;
    display: flex;
     align-items: center;
 
}
nav ul li{
    
    margin-right: 5px;
    
    /*width:fit-content;*
    border: solid red
   /* border-radius:15px*/
        
}
nav ul li a{
    text-decoration: none;
    display: block;
    height: 100%;
    width:100%;
    align-items: center;
    color: steelblue;
    font-weight: 450;
    margin:0px;
    padding: 10px;
    border-bottom: solid orangered;
     border-bottom-width: 0;
    /*border: solid blue*/
    
}
/*.nav-links ul li:hover{
    background:rgb(0,134,133) ;
    color:white;
    
    
}*/
nav ul li a:hover{
    color:orangered;
    font-weight: bold;
    position:relative;
    font-size: 25px;
    
    transition: 0.5s;
}
.current_page a{
    border-bottom: 2px solid orangered;
    width:fit-content;
    
}

#apply-menu a{
    color:#fff;
    background:dodgerblue;
    padding:10px 25px;
    border-radius: 5px;
    text-align: center;
    display: block;
}
.icons {
    
    display:none;
}
.icons img {
    
    width:30px;
    height:30px;
    color: white;
    /*display:none;*/
}
/*+++++++++++++++++++++++++++++++++++++++++++++++++++ Page Heading +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

.page_heading{
    padding: 10px;
    clear:left;
    height: 300px;
    background-position: center;
    background-size:cover;
    background-repeat: no-repeat;
    color:white;
    font-size:20px;
    text-align: center;
    text-justify:auto;
    box-shadow: 0px 2px 5px 0px #00000036;


}
/* ++++++++++++++++++++++++++++++++++++++++++++++++++ HOME PAGE+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.content{
    padding: 10px;
    clear:left;
   
    
    color:white;
    font-size:20px;
    text-align: center;
    text-justify:auto;
       /* box-shadow: 0px 2px 5px 0px #00000036;*/

    
}
.textbox{
    position:absolute;
    top:10%;
    left:50%;
    transform: translate(-50%,50%);
}
#hero-text{
    font-weight: 300;
    font-size: 16px;
}
#hero-buttons{
 display: flex;
    width:fit-content;
    gap: 20px;
 margin: 20px auto;
    
}
.content button{
        width:190px;
    height: 45px;
    background: rgb(0,134,133);
    border: solid;
    border-color: white;
    border-width: 1px;
    color:white;
    font-size: 20px;
    cursor:pointer;
    box-shadow: 0px 2px 5px 0px #00000036;
}
#view-btn{
    background: white;
    color:rgb(0,134,133);
    border: solid rgb(0,134,133);
}
.content button:hover{
    background: white;
    color:rgb(0,134,133);
    transition: 1s;
}
.content p{
    /*width:300px;*/
    text-align: center;
}
/* Footer */
footer {
    background-color: rgb(0,134,133);
    color: #fff;
    padding: 20px;
    text-align: center;
  }
  
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  
  .footer-links {
    flex-basis: 25%;
    margin: 20px;
  }
  
  .footer-links h3 {
    margin-bottom: 10px;
  }
  
  .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-links li {
    margin-bottom: 10px;
  }
  
  .footer-links a {
    color: #fff;
    text-decoration: none;
  }
  
  .footer-links a:hover {
    color: #ccc;
  }
  
  .copyright {
    margin-top: 20px;
    text-align: center;
    width: 100%;
  }

/************************Mobile display****************************/
@media(max-width:700px){
    nav{
        width:100vw
    }
    nav h1{
    color: rgb(0,134,133);
    font-size:20px;
}
    #text-box h1{
        font-size:16px;
    }
    nav ul li{
        display:block;
        color:white;
    }
    nav ul{
       display: block;
        position:fixed;
        
        background: whitesmoke;
        height:100vh;
        width:200px;
        top:0;
        right:-200px;
        text-align:left;
        z-index:2;
        transition:1s;
    }
    #apply-menu{
        display: block;
        margin-top: 15px;
    }
    .icons{
        display: grid;
        align-items: center;
        margin: auto;
        font-size: 40px;
        padding: 5px;
        background: #fff;
        color:#fff;
        border-radius: 5px;
        
    }
    #close{
        width:fit-content;
        position:absolute;
        right:10px;
        
    }
    
     ul{
        padding:20px;
    }
    .content{
        
        font-size:10px;
    }
    .textbox{
        top:25%;
        width:80vw;
    }
    #hero-buttons{
 display: block;
    }
    #view-btn{
        margin-top: 20px;
    }
}