*{
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style-type: none;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal; 
}

/* Navigation bar */
header{
    position: sticky;
    top: 0;
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 24px;
    background-color: #fff;
    z-index: 100;

}

nav img {
    width: 120px;
}

.nav-items {
    @media (max-width: 768px) {
        display: none;

    }
}
.nav-items ul {
    display: flex;
    gap: 16px; 
}
.nav-items ul li a {
    color: #000;
    font-size: 20px;
    transition: 0.4s;
}

.nav-items ul li a:hover {
    color: rgb(0, 123, 255);
}
.nav-items.show {
  display: flex !important;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #063970;
  color: #fff;
  text-align: right;
  width: 100%;
  padding: 18px 10px;
}
.nav-items.show ul{
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.nav-items.show ul li a {
  color: #fff !important;
}

.ham-icon {
    display: none;

    @media (max-width:768px) {
        display: flex;

    }
}

.ham-icon img {
    @media (max-width:768px) {
        max-width: 50px;
        max-height: 40px;

    }
}
.close-icon {
  display: flex;
  justify-content: flex-end;
  /* font-size: 2rem; */
  font-size: 32px;
  /* color: #fff; */
  color: red;
  cursor: pointer;
  padding: 5px 20px 20px 0;
}




/* Footer  */

.footer {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #063970;
    max-height: 300px;
    padding: 60px 0;
    gap: 90px;
    transition: 0.5s;

    @media (max-width:768px) {
        flex-direction: column;
        gap: 30px;
        padding: 30px 0;
    }
}
.footer li a{
    color: #fff;
    font-size: 18px;
}
.footer li a:hover{
    text-decoration: underline;
}
.footer ul{
    line-height: 2.0;
    @media(max-width:768px){
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 60px;
    }
    
}
.ft-icon{
    font-size: 25px;
    color: #fff;
}
.footer-icons{
    background-color: #063970;
}
.footer-icons ul{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
}
.footer-bottom {
    width: 100%;
    text-align: center;
    background: #063970;
    color: #fff;
    padding: 10px 0;
    line-height: 1.5;
}
.footer-bottom a {
    color: #fff;
    text-decoration: underline;
}