*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
}

/* body {
    height: 600vh;
    background-color: black;
    background-size: cover;
    background-position: center;
    display: flex;

} */

.navbar .links li{
    list-style: none;
    font-size: 1.5rem;
}

.navbar .links a:hover{
    color: orange;
}

header{
    position: fixed;
    padding: 0.5rem 2rem;
    background-color: white;
    width: 100%;
    z-index: 100;
}

.navbar {
    width: 100%;
    height: 60px;
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    
}

.navbar .logo .logo1{
    width: 15rem;
    height: 15rem;
    padding-top: 1rem;
    border-radius: 1rem;
}

.navbar .links{
    display: flex;
    gap: 2rem;
    padding-right: 350px;
}

.navbar .links a{
    text-decoration: none;
    position: relative;
    color: black;
    font-size: 1rem;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

.navbar .links a::after{
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 3px;
    background: black;
    transform-origin: right; 
    border-radius: 5px;
    transform: scaleX(0);
    transition: transform .5s;
}

.navbar .links a:hover::after{
    transform-origin: left;
    transform: scaleX(1);
}

.navbar .toggle_btn{
    color: black;
    font-size: 1.5rem;
    cursor: pointer;
    display: none;

}

.action_btn{
    background-color: orange;
    color: white;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border: none;
    outline: none;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    cursor: pointer;
    transition: scale 0.2 ease;
}

.action_btn:hover{
    scale: 1.05;
    color: white;
}

.action_btn:active{
    scale: 0.95;
} 

.dropdown_menu{
    display: none;
    position: absolute;
    right: 2rem;
    top: 60px;
    height: 0;
    width: 300px;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    transform: scale(1);
    transition: height .2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dropdown_menu.active-popup{
    transform: scale(0);
}

.dropdown_menu.open{
    height: 200px;

}

.dropdown_menu a{
    text-decoration: none;
    position: relative;
    color: black;
    font-size: 1rem;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

.dropdown_menu li{
    padding: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dropdown_menu .action_btn{
    width: 100%;
    display: flex;
    justify-content: center;
}
.footer-container {

    display: grid;
    grid-template-columns: 0.75fr 1fr 1fr 2fr;
    /* Five equal fractions */
    gap: 10px;

}

.footer-container ul {
    list-style-type: none;
}

.footer-container a {

    color: white;
    text-decoration: none;


}

.footer-container h3 {
    margin: 0px;
}

svg {
    width: 20px;
    /* Adjust width as needed */
    height: 20px;
    margin-right: 5px;
    fill: white;
    /* Adjust height as needed */
}

.footer-icons {
    display: flex;
    flex-direction: row;
}

.footer-column-sp img {
    width: 120px;
    height: 120px;
    margin: 0;

}

.footer-copyright {
    margin-top: -10px;
}

.footer-column-sp h5 {
    margin: 0;
}

footer {
    background-color: grey;
    color: white;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
    margin-top: 40px;
    left: 0;
    bottom: 0;
    width: 100%;
    padding-top: 10px;
    
    /* Set position to absolute */

}

footer h3 {
    text-align: center;
}

@media screen and (max-width: 850px) {
    .footer-container {
        display: grid;
        grid-template-columns: 0.01fr 1fr 1fr;
        grid-template-rows: repeat(2, 1fr);
    }

    .footer-column {
        margin-top: 0;
        margin-bottom: 0;
    }

    .footer-column-sp {
        opacity: 0;
    }


}

footer .social_icons{
    position: absolute;
    display: block;
    justify-content: center; 
    align-items: center; 
    margin: 10px 0;
    flex-wrap: wrap;
    /* padding: 1rem 2rem; */
    border-radius: 1rem;
    /* border-style: solid;
    border-color: white; */

}

footer .social_icons li{
    list-style: none;
    font-size: 1.5rem;
    padding-top: 10px;
}

footer .social_icons li a{
    font-size: 1.5rem;
    color: white;
    text-decoration: none;
    font-family: Georgia, 'Times New Roman', Times, serif;
    margin: 0 10px;
}

footer .social_icons li h2{
    font-size: 1.5rem;
    color: white;
    margin: 0 10px;
}

footer .logo2 .logo3{
    width: 15rem;
    height: 15rem;
    /* padding-top: rem; */
    border-radius: 1rem;
    margin: -50px;
}
footer #col1{
    margin: 50px 0px;
}
#col1 a{
    text-decoration: none;
    font-family: Georgia, 'Times New Roman', Times, serif;
    color: white;
    font-size: 1.5rem;
}
#col1 a:hover{
    color: darkgreen;
}
#col1 li{
    text-decoration: none;
    list-style: none;
    margin: 10px 0px;
}

.copy{
    font-size: 0.7rem;
    opacity: 1;
    margin: 0 0px;
}

.row{
    width: 85%;
    margin: -30px; 
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between; 
}
.col{
    flex-basis: 25%;
    /* padding: 10px; */
}
.col:nth-child(2), .col:nth-child(3){
    flex-basis: 15%;
}
.logo2 .logo3{
    width: 10rem;
    height: 5rem;
    padding-top: 1rem;
}

/* responsive design */
@media(max-width: 1030px){
    .wave{
        display: none;
    }
    
}

@media (max-width: 800px){
    .navbar .action_btn,
    .navbar .links{
        display: none;
    }

    .navbar .toggle_btn{
        display: block;
    }

    .dropdown_menu{
        display: block;
    }
    
    .col{
        flex-basis: 100%;
    }
    #col2{
        margin-top: 200px;
    }
    .col:nth-child(2), .col:nth-child(3){
        flex-basis: 100%;
    }

}

@media (max-width: 576px){
    .dropdown_menu{
        left: 2rem;
        width: unset;
    }
}