.footer2 {
    display: block;
    width: 100%;
    height: fit-content;
    position: relative;
    background-color: var(--color3);
}

.footer2 .footer_header {
    display: block;
    width: 100%;
    height: fit-content;
    position: relative;
}

.footer2 .footer_header .footer_header_logo {
    position: relative;
    margin: 0 auto;
    width: 15vw;
    height: 15vw;
    display: block;
    border-radius: 50%;
    overflow: hidden;
}

.footer2 .footer_header .footer_header_logo img {
    width: 100%;
    height: 100%;
}

.footer2 .footer_header description {
    width: 80%;
    max-width: 80%;
    height: fit-content;
    padding: .5vw;
    left: 10%;
    position: relative;
    display: block;
    color: var(--color1);
    font-size: 3vw;
    font-family: var(--font14);
    text-align: center;
}

.footer2 .footer_header description bold{
    color: var(--color4);
}

.footer2 .divider_3 {
    display: flex;
    position: relative;
    width: 100%;
    height: fit-content;
    margin-bottom: 5%;
}

.footer2 .divider_3 .divider_info_container {
    width: 30%;
    margin: 0 auto;
    height: fit-content;
    background-color: var(--color11);
    border-radius: 1vw;
    box-shadow: var(--boxshadow2);
}

.footer2 .divider_3 .footer_title {
    font-family: var(--font15);
    color: var(--color4);
    position: relative;
    margin: 1vw auto;
    font-size: 2vw;
    text-align: center;
    width: 100%;
    height: fit-content;
}

.footer2 .divider_3 .footer_list {
    list-style-type: none;
    width: 100%;
    height: fit-content;
    padding: 0;
}

.footer2 .divider_3 .footer_list li {
    width: fit-content;
    height: fit-content;
    margin: .5vw auto;
    font-family: var(--font15);
    font-size: 1.5vw;
    color: var(--color1)
}

.footer2 .divider_3 .footer_list li a {
    text-decoration: none;
    color: var(--color1);
    cursor: pointer;
}

.footer2 .divider_3 .footer_list li a:hover {
    color: var(--color4);
}

@media screen and (max-width: 62.438em) {    
    .footer2 .footer_header .footer_header_logo {
        width: 25vw;
        height: 25vw;
    }
    
    .footer2 .footer_header description {
        width: 90%;
        max-width: 90%;
        left: 5%;
        font-size: 5vw;
    }
    
    .footer2 .divider_3 {
        display: block;
        margin-bottom: 100%;
    }
    
    .footer2 .divider_3 .divider_info_container {
        width: 90%;
    }
    
    .footer2 .divider_3 .footer_title {
        margin: 3vw auto;
        font-size: 7vw;
    }
    
    .footer2 .divider_3 .footer_list li {
        margin: 2vw auto;
        font-size: 5vw;
    }
}