* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* HEADER */
.header-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0px;
    left: 0;
    width: 100%;
    background-color: #fff;
    z-index: 800;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}
.header-tile-container {
    display: flex;
    width: 100%;
}
/* Header Logos Tile */
.header-tile-container.header-tile-logos {
    justify-content: space-between;
    max-width: 1200px;
    padding: 10px;
}
.header-logo-wrap-redirect {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    gap: 7px;
    color: #701F56;
    transition: all 0.3s ease;
}
.header-logo-wrap-redirect:hover {
    color: #CF4362;
}
.header-logo-title {
    font-size: 0px;
}
.logo-title-beyond {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 20px;
}
.logo-title-this {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 400;
}
.header-logo-image {
    width: 57px;
    height: 75px;
}

/* Header Right Group Elements */
.header-right-group-container {
    display: flex;
    gap: 20px;
    align-items: center;
}
.header-redirect-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
    font-size: 12px;
    padding: 5px 8px;
    border-radius: 8px;
    gap: 5px;
    transition: all 0.3s ease;
}
.header-redirect-wrap:hover {
    transform: translateY(-1px);
}
.header-redirect-wrap.header-contact-us {
    background: linear-gradient(145deg, #8c237c, #8c237c);
}
.header-redirect-wrap.header-contact-us:hover {
    background: linear-gradient(145deg, #8c237c, #e54f59);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
.header-redirect-icon {
    width: 30px;
    height: 30px;
    border-radius: 3px;
}
.header-redirect-label {
    color: #f1f1f1;
    font-size: 15px;
}

/* Header Navigation Styles */
.header-tile-container.header-tile-navigation {
    background: #701F56;
    gap: 50px;
    padding: 10px;
    font-size: 18px;
    color: #f1f1f1;
    font-weight: 500;
    justify-content: flex-end;
}
.header-tile-container-width-control {
    display: flex;
    width: 100%;
    max-width: 1200px;
    justify-content: flex-end;
    gap: 10px;
}
.header-navigation-element {
    cursor: pointer;
    transition: all 0.2s ease;

}
.header-navigation-element:hover {
    color: #CF4362;
    transform: translateY(-1px);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
.header-social-icon {
    width: 20px;
    height: 20px;
}
.header-social-icon-link {
    display: flex;
    width: 20px;
    height: 20px;
}

.header-social-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #8c237c, #8c237c);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.2s ease;
    border: 2px solid #8c237c;
}
.header-social-icon-wrapper:hover {
    cursor: pointer;
    background: linear-gradient(145deg, #CF4362, #8c237c);
    border: 2px solid #CF4362;
}
.header-right-group-container > *:not(:first-child) {
    display: none;
}
.header-right-group-container > *:first-child {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
    padding: 10px;
}
.header-right-group-container > *:first-child:hover {
    cursor: pointer;
    background: #f2f2f2;
}
.header-social-icon-link.skool-icon {
    width: 60px;
}



@media (max-width: 900px) {
    .header-tile-container {
        display: flex;
        width: 100%;
    }

    .header-logo-wrap-redirect {
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        gap: 7px;
        color: #701F56;
        transition: all 0.3s ease;
    }
    .header-logo-wrap-redirect:hover {
        color: #CF4362;
    }
    .header-logo-title {
        font-size: 0px;
    }
    .logo-title-beyond {
        font-family: 'Montserrat', sans-serif;
        font-weight: 900;
        font-size: 15px;
    }
    .logo-title-this {
        font-family: 'Montserrat', sans-serif;
        font-size: 15px;
        font-weight: 400;
    }
    .header-logo-image {
        width: 38px;
        height: 50px;
    }

    /* Header Right Group Elements */
    .header-right-group-container {
        display: flex;
        gap: 10px;
        align-items: center;
    }
    .header-redirect-wrap {
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        text-decoration: none;
        font-size: 12px;
        padding: 5px 8px;
        border-radius: 8px;
        gap: 5px;
        transition: all 0.3s ease;
    }
    .header-redirect-wrap:hover {
        transform: translateY(-1px);
    }
    .header-redirect-wrap.header-contact-us {
        background: linear-gradient(145deg, #8c237c, #8c237c);
    }
    .header-redirect-wrap.header-contact-us:hover {
        background: linear-gradient(145deg, #8c237c, #e54f59);
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    }
    .header-redirect-icon {
        width: 30px;
        height: 30px;
        border-radius: 3px;
    }
    .header-redirect-label {
        color: #f1f1f1;
        font-size: 15px;
    }

    /* Header Navigation Styles */
    .header-tile-container.header-tile-navigation {
        background: #701F56;
        gap: 50px;
        padding: 10px;
        font-size: 18px;
        color: #f1f1f1;
        font-weight: 500;
        justify-content: flex-end;
    }
    .header-tile-container-width-control {
        display: flex;
        width: 100%;
        max-width: 1200px;
        justify-content: flex-end;
        gap: 10px;
    }
    .header-navigation-element {
        cursor: pointer;
        transition: all 0.2s ease;

    }
    .header-navigation-element:hover {
        color: #CF4362;
        transform: translateY(-1px);
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    }
    .header-social-icon {
        width: 15px;
        height: 15px;
    }
    .header-social-icon-link {
        display: flex;
        width: 15px;
        height: 15px;
    }

    .header-social-icon-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(145deg, #8c237c, #8c237c);
        width: 30px;
        height: 30px;
        border-radius: 50%;
        transition: all 0.2s ease;
        border: 2px solid #8c237c;
    }
    .header-social-icon-wrapper:hover {
        cursor: pointer;
        background: linear-gradient(145deg, #CF4362, #8c237c);
        border: 2px solid #CF4362;
    }
}


