@charset "UTF-8";
/*
    This CSS stylesheet was created by the Crattivo Department of Gocreattivo.
    It is designed to style FooterStyle-2.html template with a customizable logo positioned at the center.
    Our team specializes in Full Stack Development, Database Management, API Integration,
    Frontend & Backend Coordination, and Code Optimization.
    Gocreattivo is dedicated to providing high-quality, efficient, and scalable design solutions.
*/

*{
    padding:0;
    margin:0;
}
body{
    background-color: white;
    overflow-x: hidden;
}

/* Default Styling for Footer (Large Desktop)*/
footer{
    display:flex;
    position: relative;
    flex-direction: column;
    width: 100vw;
    height: auto;
    bottom: 0;
    background: linear-gradient(to top, #030303, #1f1f1f);    
    align-content: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.877);
    text-align: center;
    font-size: 0.85rem;
    font-family: "Shippori Mincho B1", serif;
    font-weight: 600;
    font-style: normal;
    p{
        margin-left: 5px;
    }
}
.default-footer-top{
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: center;
    text-align: center;
}
.default-footer-top-container{
    display: flex;
    flex-direction: row;
    width: 70%;
    justify-content: space-between;
    padding: 2vw 0 2vw 0;
    align-items: start;
    gap: 0;
}
.default-footer-top-column{
    display: flex;
    flex-direction: column;
}
.column-top{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-align: left;
    width: 100%;
    height: 3vw;
    margin: 0px 0 20px 0;
    span{
        font-style: normal;
        letter-spacing: 1px;
        font-weight: bolder;
        font-size: 1.25vw;
    }
}
.column-bottom{
    display: flex;
    align-items: start;    
    width: 100%;
    height:60%;
}
.footer-links-top{
    display: flex;
    flex-direction: column;
    list-style: none;
    width: 50%;
    li{
        /* margin: 0.6rem 1.25rem 0.6rem 0; */
        text-align: center;
        display: flex;
        flex-direction: row;
        margin-bottom: 10px;
        width: max-content;
    }
    li a{
        text-decoration: none !important;
        display: flex;
        flex-direction: row;
        color: rgba(255, 255, 255, 0.877);
    }
    li h4{
            font-size: 1vw;
            color: rgba(255, 255, 255, 0.877);
            font-weight: normal;
            margin: auto 0 auto 0;
            letter-spacing: 0.05em;
            margin-right: 5px;
    }
    li img{
        height: auto;
        width: 1.25vw;
    }
}
.footer-socials{
    display: flex;
    align-items: flex-start;
    width: 100%;
    height: 60%;
    gap: 1rem;
    a{
        display: flex;
        align-items: center;
        justify-content: center;
        width: 4rem;
        height: 4rem;
        background: white;
        border-radius: 50%;
        box-shadow: 0px 0px 8px 0px rgba(255, 255, 255, 0.5);
    }
    svg{
        path{
            fill: #45D971;
        }
        height: 1.75vw;
        width: 1.75vw;
    }
}
.footer-links-top li h4:hover{
    color: #45D971;
    transition: color 0.4s ease;
}
.footer-socials svg path:nth-of-type(1) {
    transition: fill 0.5s ease;
}
.footer-socials a:hover svg path:nth-of-type(1) {
    fill: #45D971;
}
#youtube-logo-footer path:nth-of-type(2) {
    fill: white;
}
.default-footer-bottom{
    display: flex;
    flex-direction: row;
    width: 100%;
    align-content: center;
    justify-content: center;
    text-align: center;
}
.default-footer-bottom-container{
    display: flex;
    height: auto;
    width: 70%;
    padding: 1.5rem 0 1.5rem 0;
}
.footer-right{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    text-align: right;
    color: white;
}
.footer-links{
    display: inline;
    align-content: center;
    justify-items: center;
    color: white;
    text-decoration: none;
    margin-bottom: 0;
    height: auto;
}
.footer-icon{
    display: flex;
    width: 3.5rem;
    height: auto;
    margin: 0 0 0 0.5vw;
}
/* Default Styling for Footer End */

/* Mobile Styling for Footer */
.mobile-footer-container{
    display: none;
    flex-direction: column;
    height: 6vw;
    width: 90%;
}
.footer-bottom{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    text-align: center;
    color: white;
}
/* Mobile Styling for Footer End */

/* -------------------- */
/*  MOBILE BREAKPOINTS  */
/* -------------------- */
@media only screen and (max-width: 767px) and (orientation: portrait) {
    .default-footer-bottom-container{
        display: none;
    }
    footer{
        width: 100vw;
        height: auto;
        font-size: 0.65rem;
        letter-spacing: 0.15px;
        p{
            margin-bottom: 0;
            margin-left: 5px;
        }
    }
    .mobile-footer-container{
        display: flex;
        height: auto;
        width: 90%;
        padding: 1rem 0 1rem 0;
        margin: 0 auto;
    }
    .footer-bottom{
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        text-align: center;
        color: white;
        padding: 0 0 0vw 0 ;
        > :nth-child(4){
            display: none;
        }
    }
    .footer-icon{
        height: 7vw;
        width: auto;
        margin: 0 0 1vw 0.5vw;
    }
    .default-footer-top{
        flex-direction: column;
        width: 100%;
    }
    .default-footer-top-container{
        flex-direction: column;
        width: 90%;
        justify-content: space-between;
        padding: 3rem 0 1rem 0;
        align-items: start;
        margin: 0 auto;
        gap: 0;
    }
    .default-footer-top-column{
        width: 100%;
    }
    .column-top{
        text-align: left;
        width: 100%;
        height: unset;
        margin-bottom: 0rem;
        span{
            text-transform: uppercase;
            font-size: 7vw;
            font-weight: bolder;
        }
    }
    .column-bottom{
        align-items: start;    
        width: 100%;
        height:unset;
        margin-top: 0.5rem;
        margin-bottom: 1rem;
    }
    .footer-links-top{
        display: flex;
        flex-direction: column;
        list-style: none;
        width: 100%;
        li{
            margin: 0rem 2rem 0rem 0;
            text-align: center;
            display: flex;
            flex-direction: row;
            margin-bottom: 10px;
            font-weight: bold;
            width: max-content;
        }
        li a{
            text-decoration: none !important;
            display: flex;
            flex-direction: row;
        }
        li h4{
                font-size: 0.90rem;
                color: rgba(255, 255, 255, 0.877);
                margin: auto 0 auto 0;
        }
        li img{
            height: auto;
            width: 5vw;
            margin-right: 2vw;
        }
    }
    .footer-socials{
        display: flex;
        align-items: flex-start;
        width: 100%;
        height: unset;
        margin-top: 0.75rem;
        margin-bottom: 10vw;
        svg{
            height: 2.25rem;
            width: 2.25rem;
            margin-right: 0;
        }
    }
    #youtube-logo-footer{
        transform: scale(1.2);
    }
} 
@media only screen and (max-width: 767px) and (orientation: landscape) {
    .default-footer-bottom-container{
        display: none;
    }
    footer{
        width: 100vw;
        height: auto;
        font-size: 1rem;
        letter-spacing: 0.1px;
        p{
            margin-bottom: 0;
            margin-left: 5px;
        }
    }
    .mobile-footer-container{
        display: flex;
        height: auto;
        width: 80%;
        padding: 1rem 0 1rem 0;
        margin: 0 auto;
    }
    .footer-bottom{
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        text-align: center;
        color: white;
        padding: 0 0 0 0;
        > :nth-child(4){
            display: block;
        }
    }
    .footer-links{
        margin-left: 0;
    }
    .footer-icon{
        height: 2rem;
        width: auto;
        margin: 0 0 0 5px;
    }
    .default-footer-top{
        flex-direction: column;
        width: 100%;
    }
    .default-footer-top-container{
        flex-direction: column;
        width: 80%;
        padding: 4rem 0 2rem 0;
        margin: 0 auto;
        gap: 0;
    }
    .default-footer-top-column{
        width: 100%;
    }
    .column-top{
        text-align: left;
        width: 100%;
        height: unset;
        margin-bottom: 0;
        span{
            text-transform: uppercase;
            font-size: 4.5vw;
            font-weight: bolder;
        }
    }
    .column-bottom{
        align-items: start;    
        width: 100%;
        height:unset;
        margin-top: 1rem;
        margin-bottom: 1.5rem;
    }
    .footer-links-top{
        display: flex;
        flex-direction: column;
        list-style: none;
        width: 100%;
        li{
            margin: 0rem 1.5rem 0rem 0;
            text-align: center;
            display: flex;
            flex-direction: row;
            margin-bottom: 10px;
            font-weight: bold;
            width: max-content;
        }
        li a{
            display: flex;
            flex-direction: row;
        }
        li h4{
                font-size: 1.25rem;
                color: rgba(255, 255, 255, 0.877);
                margin: auto 0 auto 0;
        }
        li img{
            height: auto;
            width: 5vw;
            margin-right: 2vw;
        }
    }
    .default-footer-top-column:first-of-type .footer-links-top {
        display: flex;
        flex-direction: row;
        gap: 0;
    }
    .footer-socials{
        display: flex;
        align-items: flex-start;
        width: max-content;
        height: unset;
        margin-top: 0.75rem;
        margin-bottom: 3vw;
        svg{
            height: 2rem;
            width: 2rem;
            margin-right: 0;
        }
    }
    #youtube-logo-footer{
        transform: scale(1.2);
    }
}
/* --------------------- */
/*   TABLET BREAKPOINTS  */
/* --------------------- */
@media only screen and (min-width: 768px) and (max-width: 1200px) and (orientation: portrait) {
    .mobile-footer-container{
        display: none;
    }
    footer{
        font-size: 1.6vw;
        letter-spacing: 0.35px;
        p{
            margin-bottom: 0vw;
        }
    }
    .default-footer-bottom-container{
        width: 80%;
        margin-bottom: 1vh;
        padding-top: 2vh;
    }
    .footer-right{
        color: rgba(255, 255, 255, 0.877);
    }
    .footer-links{
        margin-bottom: 5vw;
    }
    .footer-icon{
        height: 4vw;
        width: auto;
        margin: 0 0 0.5vw 0.5vw;
    }
    .default-footer-top{
        width: 100%;
    }
    .default-footer-top-container{
        width: 80%;
        justify-content: space-between;
        padding: 4vw 0 0.5vw 0;
        align-items: start;
        gap: 0;
    }
    .column-top{
        width: 100%;
        height: 8vw;
        margin: 0px 0 20px 0;
        span{
            font-size: 2.75vw;
        }
    }
    .column-bottom{  
        width: 100%;
        height:60%;
        margin-bottom: 3vw;
    }
    .footer-links-top{
        width: 50%;
        li{
            margin: 0rem 0rem 0rem 0;
            margin-bottom: 7px;
            font-weight: bold;
            width: max-content;
        }
        li h4{
                font-size: 2.25vw;
                color: rgba(255, 255, 255, 0.877);
                font-weight: normal;
                margin: auto 0 auto 0;
        }
        li img{
            width: 2.5vw;
        }
    }
    .footer-socials{
        svg{
            height: 3.25vw;
            margin-right: 2vw;
        }
    }
}  
@media only screen and (min-width: 767px) and (max-width: 1200px) and (orientation: landscape) {
    .mobile-footer-container{
        display: none;
    }
    footer{
        font-size: 1.5vw;
        letter-spacing: 0.35px;
        p{
            margin-bottom: 0vw;
        }
    }
    .default-footer-bottom-container{
        width: 80%;
        margin-bottom: 2vh;
        padding-top: 2vh;
    }
    .footer-right{
        color: rgba(255, 255, 255, 0.877);
    }
    .footer-links{
        margin-bottom: 5vw;
    }
    .footer-icon{
        height: 3vw;
        width: auto;
        margin: 0 0 0.5vw 0.5vw;
    }
    .default-footer-top{
        width: 100%;
    }
    .default-footer-top-container{
        width: 80%;
        justify-content: space-between;
        padding: 4vw 0 0.5vw 0;
        align-items: start;
        gap: 0;
    }
    .column-top{
        width: 100%;
        height: 8vw;
        margin: 0px 0 20px 0;
        span{
            font-size: 2.5vw;
        }
    }
    .column-bottom{  
        width: 100%;
        height:60%;
        margin-bottom: 3vw;
    }
    .footer-links-top{
        width: 50%;
        li{
            margin: 0rem 0rem 0rem 0;
            margin-bottom: 7px;
            font-weight: bold;
            width: max-content;
        }
        li h4{
                font-size: 1.5vw;
                color: rgba(255, 255, 255, 0.877);
                font-weight: normal;
                margin: auto 0 auto 0;
        }
        li img{
            width: 2.75vw;
        }
    }
    .footer-socials{
        svg{
            height: 2rem;
            margin-right: 0;
            width: auto;
        }
    }
}
/* --------------------- */
/*  DESKTOP BREAKPOINTS  */
/* --------------------- */
/* Small Desktops and Laptops */
@media only screen and (min-width: 1201px) and (max-width: 1680px) {
    .mobile-footer-container{
        display: none;
    }
    footer{
        font-size: 1.15vw;
        letter-spacing: 0.35px;
        p{
            margin-bottom: 0vw;
        }
    }
    .default-footer-bottom-container{
        width: 80%;
        margin-bottom: 1vh;
        padding-top: 2vh;
    }
    .footer-right{
        color: rgba(255, 255, 255, 0.877);
    }
    .footer-links{
        margin-bottom: 5vw;
    }
    .footer-icon{
        height: 1.75rem;
        margin: 0 0 0.5vw 0.5vw;
    }
    .default-footer-top{
        width: 100%;
    }
    .default-footer-top-container{
        width: 80%;
        justify-content: space-between;
        padding: 1vw 0 1vw 0;
        align-items: start;
        gap: 0;
    }
    .column-top{
        width: 100%;
        height: 5rem;
        margin: 0px 0 20px 0;
        span{
            font-size: 1.75rem;
        }
    }
    .column-bottom{  
        width: 100%;
        height:60%;
        margin-bottom: 1vw;
    }
    .footer-links-top{
        width: 50%;
        li{
            margin: 0rem 0rem 0rem 0;
            margin-bottom: 7px;
            font-weight: bold;
            width: max-content;
        }
        li h4{
                font-size: 1.1rem;
                color: rgba(255, 255, 255, 0.877);
                font-weight: normal;
                margin: auto 0 auto 0;
        }
        li img{
            width: 2rem;
        }
    }
    .footer-socials{
        svg{
            height: 2rem;
            width: auto;
            margin-right: 1;
        }
    }
    
}

