* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    text-decoration: none;
    list-style: none;
}

body {
    background: #370617;
    font-family: "Roboto", sans-serif; 
  letter-spacing: 1px;
}

/*  */
header {
    background-color: #370617;
    height: 70px;
    align-content: center;

}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1{
    margin-left: 30px;
    color: white;
    font-family: "Kalam", cursive;
    font-weight: 900;
    font-style: normal;
  }

.nav-menu {
    display: flex;
    align-items: center;
    text-decoration: none;
    list-style: none;
}

.nav-links {
    margin: 0 20px;
    color: #faa307;
    transition: 0.7s ease;
    border: 2px solid transparent;
}

.nav-links:hover {
    color: whitesmoke;
    border-bottom-color: whitesmoke;
}
.nav-form{
    background: #FAA307;
    padding: 8px 15px;
    border-radius: 15px;
    margin-right: 20px;
  }
  header a.nav-form{
    color: black;
    letter-spacing: 1px;
  }

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    background-color: #faa307;
    height: 2px;
    width: 30px;
    margin: 5px;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;

}

@media only screen and (max-width:846px) {
    .hamburger {
        display: block;
        align-content: center;
        margin: 0 20px;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg)
    }

    .logo {
        margin: 0 20px
    }

    .nav-menu {
        display: block;
        position: absolute;
        top: 70px;
        left: -100%;
        background: #370617;
        text-align: center;
        width: 100%;
        transition: 0.3s;
        z-index: 999;
    }

    .nav-items {
        margin: 30px;
    }

    .nav-menu.active {
        left: 0;
    }
}

/*  */
.div-para {
    width: 90%;
    margin: auto;
    font-size: 20px;
    color: white;
}

span {
    font-weight: bold;
    text-transform: uppercase;
}

.container {
    width: 90%;
    position: absolute;
    transform: translateX(-50%);
    left: 50%;
    top: 120px;
    background-color: #ffffff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.tabs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

h3 {
    background-color: #FAA307;
    text-align: center;
    padding: 15px 0;
    cursor: pointer;
    font-weight: 600;
}

.tab-content {
    background-color: #ffffff;
    padding: 50px 40px;
}

.tab-content h4 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #000224;
    font-weight: 600;
}

.tab-content p {
    text-align: justify;
    line-height: 1.9;
    letter-spacing: 0.4px;
    color: #202238;
}

.tab-content div {
    display: none;
}

.tab-content .active {
    display: block;
}

.tabs .active {
    background-color: #ffffff;
    color: #FAA307;
}


/*  */
footer{
        background: url(../images/wave-haikei.png);
          background-repeat: no-repeat;
          background-size: cover;
          position: absolute;
    top: 101%;
    width: 100%;
        }

.footer-main {
    display: flex;
    color: white;
    justify-content: space-around;
    padding: 50px
}

.footer-main .footer-list .social {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    list-style: none;
}

.footer-list .contact {
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 20px 0;
    text-decoration: none;
    list-style: none;
}

.footer-main .footer-list h4 {
    font-size: 25px;
    text-transform: capitalize;
    margin: 25px 0;
}

.footer-main .footer-list a {
    text-transform: capitalize;
    color: white;
    font-size: 18px;
    text-decoration: none;
    list-style: none;
}

.footer-main .footer-list .footer-links {
    margin: 5px 0;
    text-decoration: none;
    list-style: none;
}
footer .location{
    list-style: none;
}
@media screen and (max-width:860px) {
    .footer-main {
        flex-direction: column;
    }
}

footer p {
    text-align: center;
    color: white;
    padding: 0 0 30px;
}
footer p a{
    color: white;
  }