/* Header  --------------------------------------------------------- */

#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;

    width: 100%;
    height: 6.4rem;

    z-index: 100000;
}

#header > div {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;

    margin: 0 auto;
    
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: saturate(180%) blur(1.8rem);
    -webkit-backdrop-filter: saturate(180%) blur(1.8rem);
}

#header > div > .large-desktop__navigation {
    position: relative;

    width: 100%;
    height: 6.4rem;

    display: flex;
    align-items: center;
    justify-content: center;
}

#header > div > .large-desktop__navigation > ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4.8rem;
}

#header > div > .large-desktop__navigation > ul > li > a > img {
    width: 2.4rem;
    opacity: 0.75;
    transition: opacity 0.25s;
}

#header > div > .large-desktop__navigation > ul > li > a > img:hover {
    opacity: 1;
}

#header > div > .large-desktop__navigation > ul > li > a {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.05rem;
    transition: color 0.25s;
}

#header > div > .large-desktop__navigation > ul > li > a:hover {
    color: rgba(255, 255, 255, 1);
}

#header > div > .small-desktop__navigation {
    position: relative;

    width: 100%;
    min-height: 6.4rem;

    display: none;

    padding: 0 2.4rem;
}

.small-desktop__navigation > div {
    width: 100%;
    height: 6.4rem;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.small-desktop__navigation > div > a > img {
    width: 2.4rem;
    opacity: 0.75;
    transition: opacity 0.25s;
}

.small-desktop__navigation > div > a > img:hover {
    opacity: 1;
}

.small-desktop__navigation > div > #navToggle {
    position: relative;

    width: 1.8rem;
    height: 1.2rem;

    cursor: pointer;
}

.small-desktop__navigation > div > #navToggle::before {
    content: "";

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateY(-0.4rem);

    width: 1.8rem;
    height: 0.1rem;

    background: rgba(255, 255, 255, 0.75);
    transition: all 0.25s;
}

#navToggle:hover::before {
    background: rgba(255, 255, 255, 1) !important;
}

.small-desktop__navigation > div > #navToggle::after {
    content: "";

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateY(0.4rem);

    width: 1.8rem;
    height: 0.1rem;

    background: rgba(255, 255, 255, 0.75);
    transition: all 0.25s;
}

#navToggle:hover::after,
#navToggle:active::after {
    background: rgba(255, 255, 255, 1) !important;
}

#navToggle.icon-active::before {
    transform: translate(-50%, -50%) translateY(0rem) rotate(45deg) !important;
    background: rgba(255, 255, 255, 1) !important;
}

#navToggle.icon-active::after {
    transform: translate(-50%, -50%) translateY(0rem) rotate(135deg) !important;
    background: rgba(255, 255, 255, 1) !important;
}

.small-desktop__navigation > nav {
    width: 100%;
    height: 0;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;

    overflow: hidden;
    transition: height 1s ease-in-out;
}

.small-desktop__navigation > nav.mobile-nav__open {
    height: calc(100vh - 6.4rem);
}

.small-desktop__navigation > nav > ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 4.8rem;

    padding: 2.4rem;
}

.small-desktop__navigation > nav > ul > li > a {
    font-family: "Gilory-Medium";
    font-size: 2rem;
    color: rgba(255, 255, 255, 1);
    letter-spacing: 0.05rem;
    transition: color 0.25s;
}

@media all and (max-width: 720px) {
    .large-desktop__navigation {
        display: none !important;
    }

    .small-desktop__navigation {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
}

/* Header  --------------------------------------------------------- */

/* Search Bar ------------------------------------------------------ */

.search-bar__container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: saturate(180%) blur(1.5rem);
    z-index: 100000;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.25s;
}

.search-bar__container.search-bar__container-active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.search-form__group {
    position: relative;
    width: 64rem;
    margin: 0 auto;
    margin-top: 6.4rem;

    border-bottom: 0.1rem solid #999;

    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.search-form__group i {
    font-size: 1.8rem;
    color: #999;
}

.search-form__group #close-search__bar-icon {
    cursor: pointer;
    transition: color 0.25s;
}

.search-form__group #close-search__bar-icon:hover {
    color: #fff;
}

.search-form__group input {
    display: block;
    width: 100%;
    height: 4.8rem;
    margin: 0 auto;

    font-family: "Gilory-Medium";
    font-size: 1.6rem;

    background: transparent;
    color: #999;
    border: none;
    outline: none;
}

@media (max-width: 720px) {
    .search-form__group {
        width: 48rem;
    }
}

@media (max-width: 520px) {
    .search-form__group {
        width: 36rem;
    }
}

@media (max-width: 380px) {
    .search-form__group {
        width: 28rem;
    }
}

/* Search Bar ------------------------------------------------------ */

/* Section 1 ( Web Design ) ---------------------------------------- */

#section1 {
    position: relative;
    width: 100%;
    min-height: 56.4rem;

    padding-top: 6.4rem;
}

.section1-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    width: 60%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 4.8rem;
}

.section1-content > h2 {
    font-family: "Gilory-Bold";
    color: #fff;
    font-size: 5.8rem;
    line-height: 1.1;
}

.section1-content > a {
    font-family: "Gilory-Medium";
    font-size: 1.7rem;
    color: #fff;
    word-spacing: 0.15rem;
    letter-spacing: 0.05rem;
    padding: 2rem;
    border: 0.2rem solid #0088dc;
    border-radius: 5rem;
    transition: background 0.5s;
}

#section1 .section1-content > a:hover {
    background: #0088dc;
}

@media (max-width: 1100px) {
    #section1 .section1-content > h2 {
        font-size: 5.4rem;
    }
}

@media (max-width: 980px) {
    #section1 {
        min-height: 60.4rem;
    }

    #section1 .section1-content > h2 {
        font-size: 4.8rem;
        line-height: 1.25;
    }
}

@media (max-width: 860px) {
    .section1-content {
        width: 75%;
    }

    #section1 .section1-content > h2 {
        font-size: 4.4rem;
    }

    #section1 .section1-content > a {
        padding: 1.8;
    }
}

@media (max-width: 640px) {
    #section1 .section1-content > h2 {
        font-size: 3.8rem;
    }
}

@media (max-width: 520px) {
    .section1-content {
        width: 80%;
    }

    #section1 .section1-content > h2 {
        font-size: 3.8rem;
    }
}

@media (max-width: 420px) {
    .section1-content {
        width: 80%;
    }

    #section1 .section1-content > h2 {
        font-size: 3.2rem;
    }

    #section1 .section1-content > a {
        font-size: 1.5rem;
    }
}

/* Section 1 ( Web Design ) ---------------------------------------- */

/* Section 3 ------------------------------------------------------- */

#section3 {
    position: relative;
    width: 100%;
    padding: 2.4rem;
    background: #000;
}

.section3-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.section3-container__item {
    width: 100%;
    height: 30rem;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1.2rem;
}

.section3-container__item:nth-child(1) {
    background: #000;
}

.section3-container__item:nth-child(2) {
    background: #fff;
}

.section3-container__item:nth-child(3) {
    background: #fff;
}

.section3-container__item:nth-child(4) {
    background: #000;
}

.section3-container__item:nth-child(5) {
    background: #000;
}

.section3-container__item:nth-child(6) {
    background: #fff;
}

.section3-container__item:nth-child(7) {
    background: #fff;
}

.section3-container__item > h2 {
    font-family: "Gilory-Bold";
    color: #fff;
    font-size: 3.6rem;
}

.section3-container__item:nth-child(1) > h2  {
    color: #fff;
}

.section3-container__item:nth-child(2) > h2  {
    color: #000;
}

.section3-container__item:nth-child(3) > h2  {
    color: #000;
}

.section3-container__item:nth-child(4) > h2  {
    color: #fff;
}

.section3-container__item:nth-child(5) > h2  {
    color: #fff;
}

.section3-container__item:nth-child(6) > h2  {
    color: #000;
}

.section3-container__item:nth-child(7) > h2  {
    color: #000;
}

.section3-container__item > p {
    font-family: "Gilory-Regular";
    color: #fff;
    font-size: 1.8rem;
}

.section3-container__item:nth-child(1) > p  {
    color: #fff;
}

.section3-container__item:nth-child(2) > p  {
    color: #000;
}

.section3-container__item:nth-child(3) > p  {
    color: #000;
}

.section3-container__item:nth-child(4) > p  {
    color: #fff;
}

.section3-container__item:nth-child(5) > p  {
    color: #fff;
}

.section3-container__item:nth-child(6) > p  {
    color: #000;
}

.section3-container__item:nth-child(7) > p  {
    color: #000;
}

.section3-container__item > div {
    width: 50%;
    margin-top: 2.4rem;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.section3-container__item > div > a {
    font-family: "Gilory-Regular";
    color: #fff;
    font-size: 1.8rem;
    text-decoration: underline;
    transition: color 0.25s;
}

.section3-container__item:nth-child(1) > div > a  {
    color: #fff;
}

.section3-container__item:nth-child(2) > div > a  {
    color: #000;
}

.section3-container__item:nth-child(3) > div > a  {
    color: #000;
}

.section3-container__item:nth-child(4) > div > a  {
    color: #fff;
}

.section3-container__item:nth-child(5) > div > a  {
    color: #fff;
}

.section3-container__item:nth-child(6) > div > a  {
    color: #000;
}

.section3-container__item:nth-child(7) > div > a  {
    color: #000;
}

.section3-container__item > div > a:hover {
    color: #0088dc;
}

@media (max-width: 1024px) {
    .section3-container {
        grid-template-columns: 1fr;
    }

    .section3-container__item > div {
        width: 35%;
    }

    .section3-container__item:nth-child(odd) {
        background: #fff;
    }
    
    .section3-container__item:nth-child(even) {
        background: #000;
    }

    .section3-container__item > h2 {
        font-size: 4rem;
    }

    .section3-container__item:nth-child(odd) > h2  {
        color: #000;
    }
    
    .section3-container__item:nth-child(even) > h2  {
        color: #fff;
    }

    .section3-container__item > p {
        font-size: 2rem;
    }

    .section3-container__item:nth-child(odd) > p  {
        color: #000;
    }
    
    .section3-container__item:nth-child(even) > p  {
        color: #fff;
    }

    .section3-container__item > a {
        font-size: 2rem;
    }

    .section3-container__item:nth-child(odd) > div > a  {
        color: #000;
    }
    
    .section3-container__item:nth-child(even) > div > a  {
        color: #fff;
    }
}

@media (max-width: 840px) {
    .section3-container__item > h2 {
        font-size: 3.6rem;
    }

    .section3-container__item > div {
        width: 40%;
    }
}

@media (max-width: 680px) {
    #section3 {
        padding: 0;
    }

    .section3-container__item > div {
        width: 50%;
    }
}

@media (max-width: 560px) {
    .section3-container__item {
        height: 36rem;
        padding: 1.2rem;
    }
    .section3-container__item > h2 {
        font-size: 3.2rem;
        line-height: 1.25;
    }

    .section3-container__item > p {
        font-size: 1.8rem;
    }

    .section3-container__item > div {
        width: 60%;
    }
}

@media (max-width: 420px) {
    .section3-container__item > h2 {
        font-size: 2.8rem;
    }

    .section3-container__item > p {
        font-size: 1.6rem;
    }

    .section3-container__item > div > a {
        font-size: 1.6rem;
    }

    .section3-container__item > div {
        width: 60%;
    }
}

/* Section 3 ------------------------------------------------------- */

/* Section 2 ( Graphic Design ) ------------------------------------ */

#section2 {
    position: relative;
    width: 100%;
    min-height: 56.4rem;
    background: #fff;

    padding-top: 6.4rem;
}

#section2 .section1-content > h2 {
    color: #000;
}

#section2 .section1-content > a {
    color: #743089;
    border: 0.2rem solid #743089;
    transition: all 0.5s;
}

#section2 .section1-content > a:hover {
    background: #743089;
    color: #fff;
}

@media (max-width: 1100px) {
    #section2 .section1-content > h2 {
        font-size: 5.4rem;
    }
}

@media (max-width: 980px) {
    #section2 {
        min-height: 60.4rem;
    }

    #section2 .section1-content > h2 {
        font-size: 4.8rem;
        line-height: 1.25;
    }
}

@media (max-width: 860px) {
    .section1-content {
        width: 75%;
    }

    #section2 .section1-content > h2 {
        font-size: 4.4rem;
    }

    #section2 .section1-content > a {
        padding: 1.8;
    }
}

@media (max-width: 640px) {
    #section2 .section1-content > h2 {
        font-size: 3.8rem;
    }
}

@media (max-width: 520px) {
    .section1-content {
        width: 80%;
    }

    #section2 .section1-content > h2 {
        font-size: 3.8rem;
    }
}

@media (max-width: 420px) {
    .section1-content {
        width: 80%;
    }

    #section2 .section1-content > h2 {
        font-size: 3.2rem;
    }

    #section2 .section1-content > a {
        font-size: 1.5rem;
    }
}

/* Section 2 ( Graphic Design ) ------------------------------------ */

/* Section 4 ------------------------------------------------------- */

#section4 {
    position: relative;
    width: 100%;
    padding: 2.4rem;
    background: #fff;
}

.section4-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.section4-container__item {
    width: 100%;
    height: 30rem;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1.2rem;
}

.section4-container__item:nth-child(1) {
    background: #000;
}

.section4-container__item:nth-child(2) {
    background: #fff;
}

.section4-container__item:nth-child(3) {
    background: #fff;
}

.section4-container__item:nth-child(4) {
    background: #000;
}

.section4-container__item:nth-child(5) {
    background: #000;
}

.section4-container__item:nth-child(6) {
    background: #fff;
}

.section4-container__item:nth-child(7) {
    background: #fff;
}

.section4-container__item:nth-child(8) {
    background: #000;
}

.section4-container__item:nth-child(9) {
    background: #000;
}

.section4-container__item:nth-child(10) {
    background: #fff;
}

.section4-container__item > h2 {
    font-family: "Gilory-Bold";
    font-size: 3.6rem;
}

.section4-container__item:nth-child(1) > h2  {
    color: #fff;
}

.section4-container__item:nth-child(2) > h2  {
    color: #000;
}

.section4-container__item:nth-child(3) > h2  {
    color: #000;
}

.section4-container__item:nth-child(4) > h2  {
    color: #fff;
}

.section4-container__item:nth-child(5) > h2  {
    color: #fff;
}

.section4-container__item:nth-child(6) > h2  {
    color: #000;
}

.section4-container__item:nth-child(7) > h2  {
    color: #000;
}

.section4-container__item:nth-child(8) > h2  {
    color: #fff;
}

.section4-container__item:nth-child(9) > h2  {
    color: #fff;
}

.section4-container__item:nth-child(10) > h2  {
    color: #000;
}

.section4-container__item > p {
    font-family: "Gilory-Regular";
    font-size: 1.8rem;
}

.section4-container__item:nth-child(1) > p  {
    color: #fff;
}

.section4-container__item:nth-child(2) > p  {
    color: #000;
}

.section4-container__item:nth-child(3) > p  {
    color: #000;
}

.section4-container__item:nth-child(4) > p  {
    color: #fff;
}

.section4-container__item:nth-child(5) > p  {
    color: #fff;
}

.section4-container__item:nth-child(6) > p  {
    color: #000;
}

.section4-container__item:nth-child(7) > p  {
    color: #000;
}

.section4-container__item:nth-child(8) > p  {
    color: #fff;
}

.section4-container__item:nth-child(9) > p  {
    color: #fff;
}

.section4-container__item:nth-child(10) > p  {
    color: #000;
}

.section4-container__item > div {
    width: 50%;
    margin-top: 2.4rem;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.section4-container__item > div > a {
    font-family: "Gilory-Regular";
    font-size: 1.8rem;
    text-decoration: underline;
    transition: color 0.25s;
}

.section4-container__item:nth-child(1) > div > a  {
    color: #fff;
}

.section4-container__item:nth-child(2) > div > a  {
    color: #000;
}

.section4-container__item:nth-child(3) > div > a  {
    color: #000;
}

.section4-container__item:nth-child(4) > div > a  {
    color: #fff;
}

.section4-container__item:nth-child(5) > div > a  {
    color: #fff;
}

.section4-container__item:nth-child(6) > div > a  {
    color: #000;
}

.section4-container__item:nth-child(7) > div > a  {
    color: #000;
}

.section4-container__item:nth-child(8) > div > a  {
    color: #fff;
}

.section4-container__item:nth-child(9) > div > a  {
    color: #fff;
}

.section4-container__item:nth-child(10) > div > a  {
    color: #000;
}

.section4-container__item > div > a:hover {
    color: #0088dc;
}

@media (max-width: 1024px) {
    .section4-container {
        grid-template-columns: 1fr;
    }

    .section4-container__item > div {
        width: 35%;
    }

    .section4-container__item:nth-child(odd) {
        background: #000;
    }
    
    .section4-container__item:nth-child(even) {
        background: #fff;
    }

    .section4-container__item > h2 {
        font-size: 4rem;
    }

    .section4-container__item:nth-child(odd) > h2  {
        color: #fff;
    }
    
    .section4-container__item:nth-child(even) > h2  {
        color: #000;
    }

    .section4-container__item > p {
        font-size: 2rem;
    }

    .section4-container__item:nth-child(odd) > p  {
        color: #fff;
    }
    
    .section4-container__item:nth-child(even) > p  {
        color: #000;
    }

    .section4-container__item > a {
        font-size: 2rem;
    }

    .section4-container__item:nth-child(odd) > div > a  {
        color: #fff;
    }
    
    .section4-container__item:nth-child(even) > div > a  {
        color: #000;
    }
}

@media (max-width: 840px) {
    .section4-container__item > h2 {
        font-size: 3.6rem;
    }

    .section4-container__item > div {
        width: 40%;
    }
}

@media (max-width: 680px) {
    #section4 {
        padding: 0;
    }

    .section4-container__item > div {
        width: 50%;
    }
}

@media (max-width: 560px) {
    .section4-container__item {
        height: 36rem;
        padding: 1.2rem;
    }
    .section4-container__item > h2 {
        font-size: 3.2rem;
        line-height: 1.25;
    }

    .section4-container__item > p {
        font-size: 1.8rem;
    }

    .section4-container__item > div {
        width: 60%;
    }
}

@media (max-width: 420px) {
    .section4-container__item > h2 {
        font-size: 2.8rem;
    }

    .section4-container__item > p {
        font-size: 1.6rem;
    }

    .section4-container__item > div > a {
        font-size: 1.6rem;
    }

    .section4-container__item > div {
        width: 60%;
    }
}

/* Section 4 ------------------------------------------------------- */

/* Section 6 ( Contact ) ------------------------------------------- */

#section6 {
    position: relative;
    width: 100%;
    padding: 2.4rem;
    background: #fff;

    padding-top: 6.4rem;
}

.section6-container {
    width: 80%;
    margin: 0 auto;
    padding: 4.8rem;

    background: #f5f5f7;
    border-radius: 2.5rem;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 4.8rem;
}

.section6-container > header {
    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.4rem;
}

.section6-container > header > h2 {
    font-family: "Gilory-Bold";
    font-size: 3.6rem;
    color: #000;
    text-align: center;
}

.section6-container > header > p {
    font-size: 1.7rem;
    color: #333;
    line-height: 1.25;
    text-align: center;
}

.section6-container > div {
    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 2.4rem;
}

.section6-container > div > h3 {
    font-size: 3.6rem;
    color: #000;
    width: 100%;
    padding-top: 4.8rem;
    padding-bottom: 1.2rem;
    border-top: 0.1rem solid #d2d2d7;
}

.contact-countries__grid {
    width: 100%;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.4rem;
}

.contact-countries__grid > div > h4 {
    font-size: 2rem;
    color: #000;
    margin-bottom: 1.2rem;
}

.contact-countries__grid > div > ul {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;

    font-size: 1.6rem;
    color: #333;
    list-style: disc;
    margin-left: 1.8rem;
}

.contact-countries__grid > div > ul > li > a {
    font-size: 1.6rem;
    color: #333;
    line-height: 1.25;
}

.contact-countries__grid > div > ul > li > a:hover {
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .section6-container {
        width: 100%;
    }
    .contact-countries__grid {
        grid-template-columns: 1fr;
        gap: 3.2rem;
    }
}

@media (max-width: 680px) {
    #section6 {
        padding: 0;
    }

    .section6-container {
        border-radius: 0;
    }
}

/* Section 6 ( Contact ) ------------------------------------------- */

/* Section 5 ( Support ) ------------------------------------------- */

#section5 {
    position: relative;
    width: 100%;
    padding: 2.4rem;
    background: #fff;

    padding-top: 6.4rem;
    padding-bottom: 6.4rem;
}

.section5-container {
    width: 80%;
    margin: 0 auto;
    padding: 4.8rem;

    background: #f5f5f7;
    border-radius: 2.5rem;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 2.4rem;
}

.section5-container > h2 {
    font-family: "Gilory-Bold";
    font-size: 3.6rem;
    color: #000;
}

.section5-container > p {
    font-size: 1.7rem;
    color: #333;
    line-height: 1.25;
}

.section5-container > a {
    min-width: 2.5rem;
    font-family: "Gilory-Medium";
    font-size: 1.7rem;
    color: #743089;
    word-spacing: 0.15rem;
    letter-spacing: 0.05rem;
    padding: 1.6rem;
    border: 0.2rem solid #743089;
    border-radius: 5rem;
    cursor: pointer;
    transition: all 0.5s;
}

#section5 .section5-container > a:hover {
    background: #743089;
    color: #fff;
}

@media (max-width: 1024px) {
    .section5-container {
        width: 100%;
    }
}

@media (max-width: 680px) {
    #section5 {
        padding: 0;
    }

    .section5-container {
        border-radius: 0;
    }
}

/* Section 5 ( Support ) ------------------------------------------- */

/* Support --------------------------------------------------------- */

.support-container {
    position: fixed;
    bottom: 0;
    left: 0;
    top: 0;
    right: 0;

    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: saturate(180%) blur(1.5rem);
    z-index: 100000;

    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: all 0.25s;
}

.support-container.support-container__active {
    opacity: 1;
    pointer-events: all;
    visibility: visible;
}

#close-support__container-icon {
    position: absolute;
    top: 3.2rem;
    right: 3.2rem;

    font-size: 2.4rem;
    color: #333;
    cursor: pointer;
}

.support-container > p {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    font-family: "Gilory-ExBold";
    font-size: 4.8rem;
    color: #333;
    line-height: 1.25;
    text-align: center;
}

/* Support --------------------------------------------------------- */

/* Footer ---------------------------------------------------------- */

#footer {
    position: relative;

    width: 100%;
    padding: 0 2.4rem 0 2.4rem;
    overflow: hidden;
    background: #fff;
    border-top: 0.1rem solid #d2d2d7;
}

.footer-container {
    max-width: 80%;
    min-height: 8rem;
    padding: 2.4rem 4.8rem;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-text {
    font-size: 1.3rem;
    color: #6e6e73;
    line-height: 1.25;
}

.footer-container ul {
    display: flex;
    align-items: center;
    gap: 2.4rem;
}

.footer-container ul li a:hover {
    color: #6e6e73;
    text-decoration: underline;
}

.footer-container a:hover {
    color: #0088dc;
}

.footer-text > a {
    color: #6e6e73;
}

@media (max-width: 1080px) {
    .footer-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 2.4rem;
    }
}

@media (max-width: 1024px) {
    #footer {
        padding: 0;
    }

    .footer-container {
        width: 100%;
    }
}

@media (max-width: 680px) {
    .footer-container {
        padding: 3.2rem 0 3.2rem;
    }
}

/* Footer ---------------------------------------------------------- */
