html {
    scroll-behavior: smooth;
}

.nunito-sans-gineceo {
    font-family: "Nunito Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings:
        "wdth" 100,
        "YTLC" 500;
}

.metamorphous-semibold {
  font-family: "Metamorphous", serif !important;
  font-weight: 600;
  font-style: normal;
}

.metamorphous-bold {
  font-family: "Metamorphous", serif !important;
  font-weight: 700;
  font-style: normal;
}

/* HERO SECTION */
.gineceo__container {
    width: 100%;
    height: calc(100vh - 59px);
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    background-color: #222237;
    color: #DFDFE8;
    font-family: "Adamina" !important;
    font-weight: 400 !important;
}

.gineceo__hero-text {
    width: 55%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.gineceo__hero-text .text {
    padding: 0px 45px;
}

.gineceo-title {
    font-size: 75px;
    /*font-family: "Metamorphous", serif;
    font-weight: 700;*/
    font-style: normal;
    color: #DFDFE8;
}

.gineceo-subtitle {
    font-size: 30px;
    /*font-family: "Metamorphous", serif;
    font-weight: 600;*/
    font-style: normal;
    color: #DFDFE8;
}

.gineceo__hero-video {
    width: 45%;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.video-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    background-color: #222237;
    position: relative;
}

.video-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(34, 34, 55, 1) 0%, rgba(34, 34, 55, 0) 30%);
    z-index: 1;
}

.video-wrapper video {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 0;
}

.gineceo__hireme-btn {
    padding: 5px 15px;
    border-radius: 5px;
    color: #222237;
    background: #DFDFE8;
    border: none;
}

/* EVENTS SECTION */
.events__container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #DFDFE8;
    padding: 20px;
    gap: 15px;
}

.events {
    width: 100%;
    padding: 20px;
    background-color: #fff;
    margin: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.events-container {
    width: 40%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 15px;
}

.events__container h2 {
    font-family: "Nunito Sans", sans-serif;
    font-style: normal;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: underline;
    color: #222237;
}

.event {
    padding: 5px 10px;
    border: 1px solid #989898;
    border-radius: 15px;
    background-color: #DFDFE8;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.event:hover {
    cursor: pointer;
    background-color: #222237;
    color: #DFDFE8 !important;
}

.event:hover p {
    color: #DFDFE8 !important;
}

.event a,
.event p {
    transition: all 0.3s;
}

.event a p {
    font-size: 24px;
    margin: 0px;
    padding: 0px;
    font-family: "Nunito Sans", sans-serif;
    font-style: normal;
}

.event .event-href {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #222237;
}

.event-href.no-link {
    pointer-events: none;
    cursor: default;
}

/* DESCRIPTION SECTION */

.gineceo__description-container {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #222237;
    padding: 20px 0px;
}

.gineceo__description-container * {
    color: #DFDFE8;
}

.gineceo__description-container h2 {
    font-family: "Nunito Sans", sans-serif;
    font-style: normal;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 32px;
}

.description-container {
    width: 65%;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 50px;
    margin: 0px;
}

@media (min-width: 1439px) and (max-width: 1919px) {
    .description-container {
        width: 85%;
    }

    .gineceo__description-item .gineceo__description-text h3 {
        font-size: 24px;
    }
}

.description-container .gineceo__description-item {
    width: 85%;
    display: flex;
    justify-content: flex-start;
    /*align-items: flex-start;*/
    gap: 35px;
    margin-top: 40px;
}

.description-container .gineceo__description-item:nth-child(odd) {
    flex-direction: row;
}

.description-container .gineceo__description-item:nth-child(even) {
    flex-direction: row-reverse;
}

.description-container .gineceo__description-item img {
    width: 50%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 5px;
    -webkit-box-shadow: 3px 4px 13px 0px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 3px 4px 13px 0px rgba(0, 0, 0, 0.75);
    box-shadow: 3px 4px 13px 0px rgba(0, 0, 0, 0.75);
}

.gineceo__description-item .gineceo__description-text h3 {
    font-size: 1.5rem !important;
    font-weight: 800;
}

.gineceo__description-item::before,
.gineceo__description-text::before,
.gineceo__description-item::after,
.gineceo__description-text::after {
    display: none;
}

.gineceo__description-item .gineceo__description-text p {
    font-size: 18px;
}

/* BACKGROUND SECTION */
.gineceo__background-section {
    width: 100%;
    padding: 20px 0px 45px 0px;
    background-color: #DFDFE8;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.gineceo__background-section h2 {
    font-family: "Nunito Sans", sans-serif;
    font-style: normal;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: underline;
    font-size: 32px;
}

#background {
    width: 650px;
    height: auto;
    aspect-ratio: 16 / 9;
    background-color: #989898;
}

#background .pptx {
    width: 100%;
    height: 100%;
}

/* RRSS SECTION */

.gineceo__rrss-section {
    width: 100%;
    padding: 20px;
    background-color: #DFDFE8;
    color: #222237;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.gineceo__rrss-section h2.rrss-section-title,
.gineceo__testimonials h2{
    font-family: "Nunito Sans", sans-serif;
    font-style: normal;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: underline;
    color: #222237;
    align-items: center !important;
    font-size: 32px;
}

.gineceo__rrss-section .rrss-container {
    width: 50%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    gap: 20px;
    margin: 35px auto;
}

.gineceo__rrss-section::before,
.gineceo__rrss-section::after,
.gineceo__rrss-section .rrss-container::before,
.gineceo__rrss-section .rrss-container::after {
    display: none;
}

.gineceo__rrss-section .rrss-container a {
    text-decoration: none;
    width: auto;
    height: auto;
}

.gineceo__rrss-section .rrss-container a i {
    color: #222237;
    font-size: 36px;
    transition: all 0.3s;
}

.gineceo__rrss-section .rrss-container a i.fa-instagram:hover {
    color: #8134AF;
}

.gineceo__rrss-section .rrss-container a i.fa-tiktok:hover {
    color: #ff0050;
}

.gineceo__rrss-section .rrss-container a i.fa-spotify:hover {
    color: #1db954;
}

.gineceo__rrss-section .rrss-container a i.fa-youtube:hover {
    color: #FF0000;
}

/* HIRE ME */
.gineceo__hireme-section {
    width: 100%;
    padding: 35px 20px;
    background-color: #222237;
    color: #DFDFE8;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.gineceo__hireme-section h2,
.gineceo__hireme-section h3 {
    color: #DFDFE8;
}

.gineceo__hireme-section h2 {
    font-family: "Nunito Sans", sans-serif;
    font-style: normal;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: underline;
    color: #DFDFE8;
    align-items: center !important;
    font-size: 32px;
}

.gineceo__hireme-section .hireme-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.gineceo__hireme-section .hireme-container {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.gineceo__hireme-section .hireme-container .hireme-item {
    width: 30%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.gineceo__hireme-section .gineceo__hireme-section-btn {
    padding: 5px 15px;
    border-radius: 5px;
    color: #222237;
    background: #DFDFE8;
    border: none;
    text-transform: uppercase;
    margin: 15px 0px;
}

.hireme-container::before,
.hireme-container::after,
.hireme-item::before,
.hireme-item::after {
    display: none;
}

.hireme-item p {
    color: #DFDFE8 !important;
}

/* TESTIMONIALS SECTION */
.gineceo__testimonials {
    width: 100%;
    padding: 20px;
    background-color: #DFDFE8;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.testimonials-content {
    width: 75%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 45px;
    grid-row-gap: 0px;
    margin: 20px 0px;
}

.testimonial-card {
    width: 100%;
    background-color: aquamarine;
}

/* START */
.testimonial-card-1 {
    position: relative;
    padding: 1.2rem;
    overflow: hidden;
    background-color: #fff;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    min-height: 250px;
    border-radius: 8px;
    transition: 0.2s ease-in-out;
}
.testimonial-card-1 .testimonial-body {
    margin-bottom: 1rem;
    box-sizing: border-box;
}
.testimonial-card-1 .testimonial-body h5 {
    font-size: 1.25rem;
    font-weight: 500;
    margin: 0;
    color: #142b6f;
}
.testimonial-card-1 .testimonial-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    
}
.testimonial-card-1 .testimonial-footer .primary-text{
    font-size: 1rem;
    margin-bottom: 0.2rem;
    color: #142b6f;
}
.testimonial-card-1 .testimonial-footer .secondary-text{
    font-size: 0.8rem;
    font-style: italic;
    margin: 0;
    color: #142b6f;
}
.testimonial-card-1 .testimonial-footer .music-avatar {
    width: 70px;
    height: 70px;
    overflow: hidden;
    border-radius: 50%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #8134AF;
}
.testimonial-card-1 .testimonial-footer .music-avatar i {
    width: 100%;
    color: white;
}
.testimonial-card-1:hover {
    box-shadow: rgba(0, 0, 0, 0.1) -4px 9px 25px -6px;
}
/* FINISH */