:root{
    --blue-clr: #1523ff;
    --naive-clr: #1d3673;
    --red-clr: #ff2a15;
    --gld-clr: #eac13b;
    --txt-clr: #ffffff;
    --txt-clr-: #ffffff;
    --bg-clr-: #212121;
    --bg-clr: #212121;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Lato", sans-serif;
}
body {
    background: var(--txt-clr);
    color: var(--bg-clr);
    transition: 1s;
}

nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 20px;
}

.nav-line{
    width: 100%;
    height: 1.5px;
    background: var(--gld-clr);
}

.nav-info{
    display: flex;
    justify-content: space-between;
    padding: 0px 40px;
    font-size: 16px;
    background: var(--naive-clr);
    color: var(--txt-clr-); 
}
.nav-info ul{
    list-style: none;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 9px 2px;
    
}
.nav-info ul::before{
    content: '';
    position: absolute;
    width: 1px;
    height: 100%;
    background: var(--txt-clr-);
    left: -22px;
}
.nav-info ul li i{
    font-size: 15px;
    padding-right: 4px;
}


.nav-info .social{
    display: flex;
    position: relative;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 9px 2px;
    padding-top: 11px;
}

.nav-info .social::before{
    content: '';
    position: absolute;
    width: 1px;
    height: 100%;
    background: var(--txt-clr-);
    left: -22px;
}
.nav-info .social::after{
    content: '';
    position: absolute;
    width: 1px;
    height: 100%;
    background: var(--txt-clr-);
    right: -12px;
}

.nav-info .social a{
    height: 33px;
	width: 33px;
    text-align: center;
	background-color: var(--gld-clr);
	margin:0 10px 10px 0;
	line-height: 33px;
	border-radius: 5px;
	color: #ffffff;
	transition: all 0.5s ease;
}
.nav-info .social a:hover{
    border-radius: 50%;
}

.nav-info .social i{
    font-size: 17px;
}

.nav-info ul a{
    text-decoration: none;
    color: var(--txt-clr-);
    padding-left: 3px;
}
.nav-info ul i{
    font-size: 12px;
}
.logo span{
    color: var(--blue-clr);
    padding-left: 5px;
}
nav a{
    text-decoration: none;
    color: var(--bg-clr);
}

.logo img{
    height: 30px;
    width: 30px;
    margin-right: 10px;
}
.logo{
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
}

.dark-light{
    height: 40px;
    width: 40px;
    margin-left: 15px;
    cursor: pointer;
}

.off-screen-menu{
    display: none;
  }

.navbar li{
    list-style: none;
}
.navbar {
    display: flex; 
    justify-content: center;
    align-items: center;
}

.navbar a{
    display: flex;
    margin: 0px 10px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    position: relative;
    padding: 5px 5px;
    transition: 0.4s;
}

.navbar a:hover{
    color: var(--txt-clr-);
}

.navbar a:after{
    content: "";
    position: absolute;
    background: var(--blue-clr);
    box-shadow: 0px 0px 10px var(--blue-clr);
    height: 4px;
    width: -1;
    left: 0;
    bottom: -1px;
    transition: 0.4s;
    z-index: -1;
}
.navbar a:hover:after{
    width: 100%;
    padding: 13px 0px;
}


.hero{
    width: 100%;
    height: 310px;
    background-image: url("img/fees.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero{
    text-align: center;
    align-items: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
    color: var(--txt-clr-);
}

.hero h1{
    font-size: 80px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
}

.structure h2{
    text-align: center;
    margin-top: 35px;
    font-size: 35px;
    
} 

.structure .line{
    width: 50%;
    margin-left: 25%;
    margin-top: 10px;
    height: 1.5px;
    background: var(--gld-clr);
    margin-bottom: 35px;
}

.amount{
    margin: 15px 35px;
}
.amount u{
    text-transform: uppercase;
}
.amount h3{
    font-size: 25px;
    margin-bottom: 80px;
}

.discount{
    margin: 25px 35px;
} 

.discount h3{
    font-size: 25px;
    margin-bottom: 15px;
}

.discount p{
    font-size: 20px;
    margin-bottom: 20px;
}

.discount h4{
    font-size: 25px;
}

.discount ul{
    list-style: none;
    font-size: 20px;
}

.payment h2{
    text-align: center;
    font-size: 35px;
}

.payment .line{
    width: 50%;
    margin-left: 25%;
    margin-top: 10px;
    height: 1.5px;
    background: var(--gld-clr);
    margin-bottom: 35px;
}

table{
    margin: 30px 40px;
    width: 90%;
    color: var(--bg-clr);
}

table ul{
    margin-left: 70px;
}
table ul li{
    padding: 2.5px 2px ;
}
table td{
    padding: 20px 15px;
    font-size: 18px;
}



table, th, td{
    border: 2px solid var(--bg-clr);
    border-collapse: collapse;
}


.payment p{
    margin: 15px 40px;
    margin-top: 35px;
    font-size: 21.5px;
}

.details {
    margin: 15px 35px;
}

.details p{
    font-size: 21.5px;
    margin-bottom: 15px;
}

.details h3{
    font-size: 25px;
    margin-bottom: 15px;
}
.details ul{
    margin-left: 40px;
    margin-bottom: 15px;
}
.details li{
    font-size: 21px;
    padding: 1.5px;
}

.F-line{
    width: 100%;
    height: 2.5px;
    background: var(--gld-clr);
}

@media(max-width: 1025px){
    .nav-info{
        font-size: 13px;
    }
}

@media(max-width: 980px){
    .nav-info{
        font-size: 11px;
    }
}

@media (max-width: 821px){
    .navbar{
       display: none;
   }

   .nav-info{
    display: none;
   }
   .hide{
       display: flex;
   }
   
   
     .hero h1{
         font-size: 55px;
     }
   .hero {
       height: 250px;
   }
   
   .txt .line{
       margin-left: 18%;
       width: 64%;
   }
   
}

@media(max-width: 769px){
   .txt .line{
       width: 50%;
       margin-left: 25%;
   }
   
   .structure h2{
       font-size: 30px;
   }
   .structure p{
       font-size: 20px;
   }
   .discount h3{
       font-size: 25px;
   }
   
   .discount h4{
       font-size: 23px;
   } 
   .discount li{
       font-size: 18px;
   }
   
   .payment h2{
       font-size: 30px;
   }
   
   .payment p{
       font-size: 20px;
       text-align: center;
   }
   
   .details .line{
       margin-bottom: 25px;
       height: 2.5px;
   }
   
  .details h2{
      font-size: 28px;
  }
}

@media(max-width: 638px){
    .hero h1{
        font-size: 45px;
    }
    
   back-bar p{
        font-size: 19px;
    }
   
  
    
    .structure{
        text-align: center;
    } 
    
    .structure .line{
        margin-left: 15%;
        width: 70%;
        margin-bottom: 20px;
    }
    
    .discount .line{
        margin-left: 25%;
        width: 50%;
    }
    
    .payment h2{
        font-size: 25px;
    }
    .payment .line{
        width: 40%;
       margin-left: 30%;
    }
    
    tr{
        font-size: 15px;
    }
    td{
        font-size: 20px;
    }
    
    .details h2{
        text-align: center;
        margin-bottom: 25px;
    }
    .details .line{
        display: none;
    }
}

@media(max-width: 438px){
    .hero h1{
       font-size: 34px;
   }
   
     .hero{
       height: 150px;
   }
   
   .logo{
       font-size: 15px;
   }
   
   .back-bar p{
        font-size: 16px;
    }
   
  
    .details p{
        font-size: 17px;
    }
   

   .structure h2{
       font-size: 25px;
   }
   
   .discount{
       margin: 20px 0px;
   }
   
   .discount h3{
       font-size: 19px;
   }
   .discount p{
       font-size: 17px;
       margin: 4px 10px;
       margin-bottom: 25px;
   }
   
   .amount h3{
       font-size: 19px;
   }
   .amount p{
       font-size: 17px;
   }
   
   .discount h4{
       font-size: 20px;
       letter-spacing: 2px;
   }
   .discount ul{
       margin-bottom: 34px;
   }
   
   .payment h2{
       font-size: 20px;
   }
   .payment .line{
       margin-left: 25%;
       width: 50%;
   }
   
   th{
       font-size: 17px;
   }
   td{
       font-size: 14px;
   }
   
   .payment p{
       font-size: 15px;
   }
   
   .details h2{
       font-size: 20px;
       margin-bottom: 17px;
   }
   .details h3{
       font-size: 18px;
   }
   
   .details li{
       font-size: 15px;
   }

   table{
    margin: 30px 10px;
    width: 90%;
    color: var(--bg-clr);
}

}
