@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');



body {
    padding-top: 100px;
    margin:0;
    padding:0;
}

p
{
    font-size: 16px;
    line-height: 30px;
    color: #555;
    margin: 0;
    font-weight: 400;
}
*{
    margin: 0;
    padding: 0;
}
h2,h3,h4,h5{
    color: #04004d;
}
a{
    text-decoration: none;
}
h1{
  font-size: 60px;
}
h2{
    font-size: 50px;
    line-height: 60px;
}
h3{
    font-size: 40px;
}
h4{
    font-size: 30px;
}
h5{
    font-size: 26px;
}
h6{
    font-size: 20px;
}
p{
    font-size: 18px;
    color: #444;
}
img{
    object-fit: cover;
}
.gap {
    padding: 120px 0;
}
.no-top{
    padding-top: 0;
}
.no-bottom{
    padding-bottom: 0;
}
ul{
    padding: 0;
    margin: 0;
}
li{
    display: block;
}
figure {
    overflow: hidden;
}
/* 2. header */
header {
    top: 0;
    left: 0;
    width: 100%;
    background-color: #999696;
    z-index: 111;
    padding: 20px;
}


.logo {
    display: flex;
    align-items: center;
}
.logo ul {
    display: flex;
}
.logo ul li a {
    color: #fff;
    font-weight: 600;
    text-transform: capitalize;
}
.logo ul li a i {
    padding-right: 10px;
    font-size: 18px;
}

.logo ul li {
    padding-right: 70px;
}

.logo ul li:hover a {
    text-decoration: underline;
    color: rgb(255, 5, 5);
}



.nav {
    justify-content: space-between;
}
.register i {
    width: 40px;
    height: 40px;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 48px;
    padding: 6px;
    margin-left: 20px;
}
.register a{
    color: white;
    font-weight: 700;
}
.register{
    align-items: center;
    display: flex;
}
.register:hover a{
    text-decoration: underline;
    color: rgb(255, 5, 5);
}



section{
    max-width: 900px;
    margin: 100px auto;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
section h2 {
      margin-top: 0;
      color: #222;
      border-bottom: 2px solid #ddd;
      padding-bottom: 10px;
    }

section h3{
    color:black;
    margin-top:10;
    font-size: larger;
}
section p {
      text-align: justify;
      margin-bottom: 15px;
      margin-top:10px;
    }

section ul {
  list-style: none;          
  padding-left: 0;
}

section li {
  position: relative;
  padding-left: 25px;        
  margin-bottom: 8px;
}

section li::before {
  content: "•";              
  position: absolute;
  left: 0;
  color: #000000;            
  font-size: 20px;           
  line-height: 1;
}


footer {
  text-align: center;
  background: #999696;
  color: white;
  padding: 40px 20px; 
  margin: 0;
}

footer p{
    text-align: center;
}

.line {
    display: block;
    width: 2px;
    background-color: #ffffff;
    height: 42px;
    margin-left: 40px;
    margin-right: 70px;
}

@media (max-width: 768px) {
  footer {
    padding: 30px 15px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  footer {
    padding: 20px 10px;
    font-size: 12px;
  }
}

@media (max-width: 600px) {
      section {
        margin: 20px;
        padding: 20px;
      }
    }

