/*=========================================================================================*/
/*#region Footer*/
footer {
    position: relative;
    margin-top: 50px;
    background-color: var(--color-4);
    overflow: hidden;
}

.footer-title-container {
    padding: 20px;
    z-index: 9;
    display: block;
    position: relative;
}

.footer-title {
    width: 100%;
    height: 100px;
    font-weight: bold;
    font-size: 1.2rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #00000012;
    color: var(--color-white);
    border-radius: var(--border-radius-10);
    -webkit-border-radius: var(--border-radius-10);
    -moz-border-radius: var(--border-radius-10);
    -ms-border-radius: var(--border-radius-10);
    -o-border-radius: var(--border-radius-10);
}

footer .footer {
    position: relative;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 300px;
    padding: 50px 20px;
    z-index: 9;
}

footer.footer::before {
    content: '';
    background: radial-gradient(circle at 30% 100%, #ffffff42 0%, #00000000 53%);
    width: 50%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

footer.footer::after {
    content: '';
    background: radial-gradient(circle at 90% 23%, #ffffff42 0%, #00000000 53%);
    width: 50%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
}


footer ul.main-menu.footer-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
    margin: 0;
    padding: 0;
}

footer li {
    list-style: none;
}

footer .footer-products {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
}

footer .title {
    color: var(--color-white);
}

footer a {
    color: var(--color-white);
    text-decoration: none;
    font-weight: 300;
    transition: var(--speed-transition);
    -webkit-transition: var(--speed-transition);
    -moz-transition: var(--speed-transition);
    -ms-transition: var(--speed-transition);
    -o-transition: var(--speed-transition);
}

footer a:focus,
footer a:active,
footer a:hover {
    color: var(--color-2);
    transition: var(--speed-transition);
    -webkit-transition: var(--speed-transition);
    -moz-transition: var(--speed-transition);
    -ms-transition: var(--speed-transition);
    -o-transition: var(--speed-transition);
}

footer .social-media {
    /* width: fit-content; */
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 10px;
    gap: 10px;
}

footer .social-media a:hover img {
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transition: var(--speed-transition);
    -webkit-transition: var(--speed-transition);
    -moz-transition: var(--speed-transition);
    -ms-transition: var(--speed-transition);
    -o-transition: var(--speed-transition);
}

footer .social-media a img {
    width: 23px;
    transition: var(--speed-transition);
    -webkit-transition: var(--speed-transition);
    -moz-transition: var(--speed-transition);
    -ms-transition: var(--speed-transition);
    -o-transition: var(--speed-transition);
}

footer .social-media a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff21;
    border-radius: var(--border-radius-10);
    -webkit-border-radius: var(--border-radius-10);
    -moz-border-radius: var(--border-radius-10);
    -ms-border-radius: var(--border-radius-10);
    -o-border-radius: var(--border-radius-10);
}

footer .footer-licence {
    position: relative;
    text-align: center;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    font-weight: 500;
    z-index: 9;
}

footer .footer-licence .row {
    display: block;
    color: var(--color-white);
}

.footer-licence .row a {
    color: #c5c4c4;
    padding: 0 5px;
    font-weight: 700;
}

.footer-licence .row a:hover,
.footer-licence .row a:focus,
.footer-licence .row a:active {
    color: var(--color-black);
}

/*#endregion*/
/*=========================================================================================*/



/*=========================================================================================*/
/*#region Ultra-Wide & 4K Displays (2560px and above) - Styles for ultra-wide and 4K displays */
@media (min-width: 2560px) {}

/*#endregion*/
/*=========================================================================================*/

/*=========================================================================================*/
/*#region Large Desktops (Full HD & WQHD) (1920px - 2559px) - Styles for large desktops */
@media (min-width: 1920px) and (max-width: 2559px) {}

/*#endregion*/
/*=========================================================================================*/

/*=========================================================================================*/
/*#region Standard Laptops & Desktops (1366px - 1919px) - Styles for standard laptops and desktops */
@media (min-width: 1366px) and (max-width: 1919px) {}

/*#endregion*/
/*=========================================================================================*/

/*=========================================================================================*/
/*#region Large Tablets (iPad Pro & Similar) (1024px - 1365px) - Styles for large tablets */
@media (min-width: 1024px) and (max-width: 1365px) {}

/*#endregion*/
/*=========================================================================================*/

/*=========================================================================================*/
/*#region Small Tablets & Phablets (768px - 1023px) - Styles for small tablets and phablets */
@media (min-width: 768px) and (max-width: 1023px) {}

/*#endregion*/
/*=========================================================================================*/

/*=========================================================================================*/
/*#region Standard Mobile Phones (480px - 767px) - Styles for standard mobile phones */
@media (min-width: 480px) and (max-width: 767px) {
    /*===========================================================*/
    /*#region Footer*/

    footer .footer {
        height: fit-content;
        flex-direction: column;
        padding: 20px 10px;
    }

    footer .footer .row {
        gap: 40px 0px;
    }

    footer.footer::after {
        width: 100%;
        height: 50%;
    }

    footer.footer::before {
        width: 100%;
        height: 50%;
        top: auto;
        left: 0;
        bottom: 0;
    }

    footer .footer .row>div {
        text-align: center;
    }

    footer li {
        width: 100%;
    }

    footer .footer .row a {
        display: block;
        width: 100%;
        max-width: 100%;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    footer .social-media {
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    footer .social-media a {
        width: 50px !important;
        height: 50px !important;
    }

    /*#endregion*/
    /*===========================================================*/
}

/*#endregion*/
/*=========================================================================================*/

/*=========================================================================================*/
/*#region Small Mobile Phones (320px - 479px) - Styles for small mobile phones */
@media (min-width: 320px) and (max-width: 479px) {
    /*===========================================================*/
    /*#region Footer*/

    footer .footer {
        height: fit-content;
        flex-direction: column;
        padding: 20px 10px;
    }

    footer .footer .row {
        gap: 40px 0px;
    }

    footer.footer::after {
        width: 100%;
        height: 50%;
    }

    footer.footer::before {
        width: 100%;
        height: 50%;
        top: auto;
        left: 0;
        bottom: 0;
    }

    footer .footer .row>div {
        text-align: center;
    }

    footer li {
        width: 100%;
    }

    footer .footer .row a {
        display: block;
        width: 100%;
        max-width: 100%;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    footer .social-media {
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    footer .social-media a {
        width: 50px !important;
        height: 50px !important;
    }

    /*#endregion*/
    /*===========================================================*/
}

/*#endregion*/
/*=========================================================================================*/

/*=========================================================================================*/
/*#region Portrait Mode - Styles for portrait mode */
@media screen and (orientation: portrait) {}

/*#endregion*/
/*=========================================================================================*/

/*=========================================================================================*/
/*#region Landscape Mode - Styles for landscape mode */
@media screen and (orientation: landscape) {}

/*#endregion*/
/*=========================================================================================*/