@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
 
*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Outfit", sans-serif;
    font-weight: 600;
    font-style: normal;
}

main{
    position: relative;
}

nav
{
    display: flex;
    height: 90px;
    position: relative;
    width: 100%;
    background: #ffffff;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-left: 2vw;
    padding-right: 2vw;
}

.logo
{
    display: flex;
	flex-direction: row;
	align-items: center;
}

.logo img
{
    height: 70px;
    width: auto;
}

.logo h1{
    color: #000000;
    font-size: 25px;
    font-weight: 600;       
    text-align: center;
    padding-left: 5px;
}

.logo a{
    text-decoration: none;
}

nav ul
{
    display: flex;
    flex-wrap: wrap;
    list-style: none;
}

nav ul li
{
    margin: 35px 5px;
}

nav ul li a
{
    color: #1b1b1b;
    text-decoration: none;
    font-size: 19px;
    padding: 15px;
    /* padding: 5px 8px; */
    border-radius: 5px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.dropdown-menu-1 {
    display: none;
}

.dropdown-menu-2 {
    display: none;
}

.menu-bar ul li:hover .dropdown-menu-1 {
    display: block;
    position: absolute;
    border-radius: 5px;
    margin: 0;
    padding: 2px;
    left: 68.5%;
    top: 80%;
    background-color: #ffffff;
}

.menu-bar ul li:hover .dropdown-menu-2 {
    display: block;
    position: absolute;
    border-radius: 3px;
    margin: 0;
    left: 78%;
    top: 80%;
    background-color: #ffffff;
}

.menu-bar ul li:hover .dropdown-menu-1 ul {
    display: block;
    margin: 0px;
    margin-top: 15px;
}

.menu-bar ul li:hover .dropdown-menu-1 ul li {
    width: 100%;
    margin: 0px;
    margin-bottom: 20px;
}

.menu-bar ul li:hover .dropdown-menu-2 ul {
    display: block;
    margin: 0px;
    margin-top: 25px;
}

.menu-bar ul li:hover .dropdown-menu-2 ul li {
    width: 100%;
    margin: 0px;
    margin-bottom: 25px;
}
  


nav ul li a.active
{
    color: #ee1d15;
}

nav ul li a:hover
{
    color: #fbc000;
}

nav .menu-btn i
{
    color: #000000;
    font-size: 22px;
    cursor: pointer;
    display: none;
}

input[type="checkbox"]
{
    display: none;
}

@media (max-width: 100px)
{
    nav{
        padding: 0 40px 0 50px;
    }


}

@media (max-width: 920px)
{

    nav{
        height: 70px;
        padding-left: 5px;
        padding-right: 10px;
    }
    nav .menu-btn i{
        display: block;
        margin-top: 23px;
        margin-left: 20px;
    }
    #click:checked ~ .menu-btn i:before{
        content: "\f00d";
    }
    .logo img{
        height: 50px;
        width: auto;
    }
    .logo h1
    {
        font-size: 5vw;
        font-weight: 600;       
        text-align: center;
        padding-left: 2px;
    }
    nav ul{
        position: fixed;
        top: 70px;
        left: -100%;
        background: #0f1657;
        height: 100vh;
        width: 100%;
        text-align: center;
        display: block;
        transition: all 0.3s ease;
    }
  #click:checked ~ ul{
        left: 0;
  }
  nav ul li{
        width: 100%;
        margin: 30px 0;
  }
  nav ul li a{
        width: 100%;
        margin-left: -100%;
        display: block;
        font-size: 20px;
        color: #ffffff80;
        transition: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  #click:checked ~ ul li a{
        margin-left: 0px;
  }
    nav ul li a.active{
        background: none;
        color: #0fabde;
  }

}

.title{
    text-align: center;
    background-color: #0f1657;
    padding: 20px;
}

.title h1{
    color: #ffffff;
    font-size: 40px;
}

.table-div{
    margin-top: 40px;
    margin-bottom: 40px;
    align-items: center;
}

.fees-table{
    margin-left: auto;
    margin-right: auto;
}


table, th, td {
    border: 1px solid black;
}











.footer{
    background: #0f1657;
	width: 100%;
	text-align: left;
	padding-top: 40px;
    padding-bottom: 40px;
}

  .footer-left,
  .footer-center,
  .footer-right{
	display: inline-block;
	vertical-align: top;
}

/* Footer left */

  .footer-left{
	width: 45%;
    padding-left: 25px;
}

/* The company logo */

    .footer img{
        height: 80px;
        width: auto;
}

    .footer h1{
      margin: 5px;
	  color: #ffffff;
      font-size: 25px;
      font-weight: 600;       
      text-align: center;
}

/* Footer links */

  .footer-links{
	color:  #ffffff;
	padding: 0;
}

  .footer-links a{
	display:inline-block;
	line-height: 1;
    padding: 0;
    font-size: 20px;
    font-weight:600;
	text-decoration: none;
	color:  inherit;
}


/* Footer Center */

  .footer-center{
	width: 28%;
}

  .footer-center i{
	background-color:  #ffffff;
	color: #0f1657;
	font-size: 25px;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	text-align: center;
	line-height: 42px;
	vertical-align: middle;
}

  .footer-center i.fa-envelope{
	font-size: 17px;
	line-height: 38px;
}

  .footer-center p{
	display: inline-block;
	color: #ffffff;
    font-size:18px;
    font-weight:400;
	vertical-align: middle;
	margin: 5px;;
}

  .footer-center p span{
	display:block;
	font-weight: normal;
	font-size:18px;
	line-height:2;
}

  .footer-center p a{
    font-size:18px;
	color:  #00ade6;
	text-decoration: none;;
}

  .footer-links .link-1:before {
  content: none;
}

/* Footer Right */

  .footer-right{
	width: 23%;
}

  .footer-company-about{
	line-height: 20px;
	color:  #cecece;
	font-size: 18px;
	font-weight: normal;
	margin: 0;
}

  .footer-company-about span{
	display: block;
	color:  #ffffff;
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 20px;
}

@media (max-width: 880px) {

    .footer{
        background: #0f1657;
        width: 100%;
        text-align: left;
        padding-top: 20px;
        padding-bottom: 20px;
        padding-left: 5vw;
        padding-right: 5vw;
    }
    
      .footer-left,
      .footer-center,
      .footer-right{
        display: inline-block;
        vertical-align: top;
    }
    
    /* Footer left */
    
      .footer-left{
        width: 45%;
        padding: 0;
    }
    
    /* The company logo */
    
        .footer img{
            height: 60px;
            width: auto;
    }
    
        .footer h1{
          margin: 5px;
          color: #ffffff;
          font-size: 25px;
          font-weight: 600;       
          text-align: center;
    }
    
    /* Footer links */
    
      .footer-links{
        color:  #ffffff;
        padding: 0;
    }
    
      .footer-links a{
        display:inline-block;
        line-height: 1;
        padding: 0;
        font-size: 20px;
        font-weight:600;
        text-decoration: none;
        color:  inherit;
    }
    
    
    /* Footer Center */
    
      .footer-center{
        width: 28%;
        padding-bottom: 10px;
        align-items: start;
    }

    .contact-box{
        width: 100%;
        align-items: start;
    }
    
      .footer-center i{
        background-color:  #ffffff;
        color: #0f1657;
        font-size: 25px;
        width: 38px;
        height: 38px;
        border-radius: 50%;
        text-align: center;
        line-height: 42px;
        vertical-align: left;
    }
    
      .footer-center i.fa-envelope{
        font-size: 17px;
        line-height: 38px;
    }
    
      .footer-center p{
        display: inline-block;
        color: #ffffff;
        font-size:18px;
        font-weight:400;
        vertical-align: middle;
        margin: 5px;
    }
    
      .footer-center p span{
        display:block;
        font-weight: normal;
        font-size:18px;
        line-height:1;
    }
    
      .footer-center p a{
        font-size:18px;
        color:  #00ade6;
        text-decoration: none;;
    }
    
      .footer-links .link-1:before {
      content: none;
    }
    
    /* Footer Right */
    
      .footer-right{
        width: 23%;
    }
    
      .footer-company-about{
        line-height: 20px;
        color:  #cecece;
        font-size: 18px;
        font-weight: normal;
        margin: 0;
    }
    
      .footer-company-about span{
        display: block;
        color:  #ffffff;
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 20px;
    }

	  .footer-left,
	  .footer-center,
	  .footer-right{
		display: block;
		width: 100%;
		margin-bottom: 20px;
	}

	  .footer-center i{
		margin-left: 0;
	}

}
