.font-zizou {
    font-family: "zizou-slab-regular";
}

.font-zizou-bold {
    font-family: "zizou-slab-bold";
}

/* header */

.forms-container {
    display: flex;
    flex-direction: row;
    position: absolute;
    margin-top: 20%;
    width: 100%;
}

.rectangle {
    height: fit-content;
    width: 280px;
    background-color: rgb(72, 39, 131);
    position: relative;
    border-radius: 0 20px 20px 0;
}

.semicircle {
    height: inherit;
    width: 150px;
    background-color: rgb(72, 39, 131);
    border-radius: 0 220px 220px 0;
    position: relative;
    left: -20px;
    top: 0;
    z-index: -1;
}

.forms-container .flecha-roja {
    transform: rotate(45deg);
    position: relative;
    width: 90px;
    top: 190px;
    left: 35px;
}

.new-content-header h1 {
    font-family: 'zizou-slab-bold';
    font-size: 25px;
    color: #6AC4D9;
}

.new-content-header .flecha-header {
    font-family: zizou-slab-regular;
    font-size: 30px;
    margin-right: 10px;
}

.new-content-header p.description {
    font-family: 'zizou-slab-regular';
    font-size: 15px;
    line-height: 1.2;
}

.new-content-header p.little-title {
    font-family: 'zizou-slab-bold';
    font-size: 15px;
    line-height: 1.2;
}

.new-content-header p span {
    font-family: 'zizou-slab-regular';
    font-size: 15px;
    line-height: 1.2;
    color: #6AC4D9;
}

.skyblue-line-sling {
    width: 100%;
    border-bottom: 1.5px solid #6AC4D9;
}


@media (min-width: 768px) {

    .forms-container {
        margin-top: 12%;
    }

    .semicircle {
        height: inherit;
        width: 180px;
        border-radius: 0 380px 380px 0;
        left: -80px;
    }

    .rectangle {
        height: fit-content;
        width: 450px;
        border-radius: 0 70px 70px 0;
    }

    .forms-container .new-content-header {
        margin-left: 100px !important;
        margin-top: 18px !important;
    }

    .forms-container .flecha-roja {
        transform: rotate(45deg);
        position: relative;
        width: 110px;
        top: 275px;
        left: 85px
    }

    .new-content-header h1 {
        font-size: 38px;
        line-height: 1;
    }

    .new-content-header .flecha-header {
        font-size: 60px;
    }

    .new-content-header p,
    .new-content-header p span {
        font-size: 20px;
    }

    .new-content-header p.little-title {
        font-size: 23px;
    }

    .new-content-header p.description {
        font-size: 20px;
    }

}

/* modificaciones */
.forms-container-gest-ambiental .semicircle,
.ingenieria-arquitectura .semicircle {
    height: inherit;
    width: 160px;
}

.forms-container-gest-ambiental .rectangle,
.ingenieria-arquitectura .rectangle {
    height: fit-content;
}

.forms-container-gest-ambiental .flecha-roja,
.ingenieria-arquitectura .flecha-roja {
    top: 210px;
    left: 17px;
}

@media (min-width: 768px) {
    .forms-container-gest-ambiental .semicircle,
    .ingenieria-arquitectura .semicircle {
        height: inherit;
        width: 190px;
    }

    .forms-container-gest-ambiental .rectangle,
    .ingenieria-arquitectura .rectangle {
        height: fit-content;
    }

    .forms-container-gest-ambiental .flecha-roja,
    .ingenieria-arquitectura .flecha-roja {
        width: 110px;
        top: 275px;
        left: 85px
    }
}

/* seccion maestrias */
.section-heading {
    /* font-family: "sgothic-bdcap"; */
    font-family: "zizou-slab-bold" !important;
    color: #35158c;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    margin-top: 2rem;
    font-size: 2rem;
}

.section-heading::before {
    content: "";
    width: 4px;
    height: 2rem;
    background: #35158c;
    margin-right: 0.5rem;
}

.acordeon input {
    display: none;
}

.acordeon-item .acordeon-content {
    background: #f8f8f8;
    transition: opacity 1s ease-out;
    opacity: 0;
    height: 0;
    overflow: hidden;
}

.acordeon-item .acordeon-content ul {
    list-style-type: disc;
    padding-left: 2rem;
}

.acordeon-item {
    border: 1px solid #e5e7eb;
    margin-bottom: 1rem;
}

.font-sgothic {
    font-family: "sgothic-bdcap";
}

.acordeon-item .acordeon-title {
    color: #35158c;
    /* font-family: "sgothic-bdcap"; */
    font-family: 'zizou-slab-bold';
    font-size: 1.5rem;
    padding: 0.5rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    margin-bottom: 0;
}

.acordeon-item .acordeon-title h3 {
    color: #35158c;
    /* font-family: "sgothic-bdcap"; */
    font-family: 'zizou-slab-bold';
    font-size: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    margin: 0;
}

.acordeon-item .acordeon-date {
    color: #000000;
    font-family: "zizou-slab-bold";
    font-size: 1rem;
    padding: 0 1rem 0.5rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    margin-bottom: 0;
  }

.acordeon-item .acordeon-title::after {
    content: "＋";
    color: rgb(25, 25, 25);
    font-size: 1.5rem;
}

.acordeon input:checked+.acordeon-item .acordeon-content {
    padding: 2rem;
    opacity: 1;
    height: auto;
}

.acordeon input:checked+.acordeon-item .acordeon-title::after {
    content: "-";
}

.acordeon-item .acordeon-subtitle {
    font-size: 1.125rem;
}

.info-grid .info-grid-item {
    background: transparent;
    padding: 2rem 3rem;
    color: #35158c;
}

.info-grid .info-grid-item-2 {
    background: transparent;
    padding: 2rem 3rem;
    color: #35158c;
}


.info-grid .info-grid-item h3 {
    font-family: "sgothic-bdcap";
    font-size: 2rem;
}

.info-grid .info-grid-item .item-title {
    font-family: "sgothic-bdcap";
    font-size: 2rem;
    line-height: 1.2;
    color: #35158c !important;
    margin: 10px 0 4px;
}

.info-grid .info-grid-item img {
    width: 40px;
    padding-top: 12px;
}

.certificate {
    background: #f8f8f8;
}

.btn-main-accent {
    display: block;
    padding: 0.5rem 1rem;
    background: #ff0000;
    color: #fff;
    width: 100%;
    font-family: "sgothic-bdcap";
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    margin-bottom: 20px;
}

.btn-main-accent::before {
    content: "";
    width: 100%;
    height: 100%;
    border: 2px solid #ff0000;
    position: absolute;
    left: 5px;
    top: 5px;
}

.btn-main-accent:hover {
    background: #ff0000;
    color: #fff;
}

.btn-white-accent {
    display: block;
    padding: 0.5rem 1rem;
    background: #fff;
    color: #ff0000;
    border: 2px solid #ff0000;
    width: 100%;
    font-family: "sgothic-bdcap";
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 9;
}

/* .btn-white-accent::before {
    content: "";
    width: 100%;
    height: 100%;
    border-bottom: 2px solid #ff0000;
    border-right: 2px solid #ff0000;
    position: absolute;
    left: 5px;
    top: 5px;
} */

.btn-white-accent:hover {
    background: #fff;
    color: #ff0000;
}

.white-btn-container {
    display: inline-block;
    position: relative;
    height: fit-content;
}

.sombrebutton {
    background-color: #fff;
    position: absolute;
    display: block;
    width: 92%;
    height: 100%;
    border: 2px solid #ff0000;
    left: 20px;
    top: 5px;
}

.certificate .btn-main-accent {
    margin-bottom: 4rem;
}

.certificate p {
    font-size: 1.2rem;
}

.certificate-img {
    position: relative;
    padding-top: 0;
    padding-left: 0;
    z-index: 1;
}

.certificate-img .pattern {
    width: 50%;
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.info-grid .info-grid-item p {
    color: #000000;
}

.info-grid .info-grid-item-2 p {
    color: #000000;
}

.acordeon-content {
    font-family: 'zizou-slab-regular';
}

@media (min-width: 992px) {

    .acordeon-content {
        font-family: 'zizou-slab-regular';
    }

    header {
        margin-bottom: 0;
    }

    header .header-logo {
        padding-top: 0px;
    }

    header h1 {
        font-size: 60px;
    }

    header .container {
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    header .hero-description {
        position: initial;
        font-size: 60px;

    }

    header .hero-description-2 {
        position: initial;
        font-size: 60px;

    }

    header .pre-title {
        font-size: 40px;
        margin-top: 5rem;
    }


    header .pre-pretitle {
        font-size: 32px;
    }

    header .sub-title {
        font-size: 60px;
    }

    /* header span.start-date {
        font-size: 18px;
        display: block;
    } */

    header .upper-title {
        font-size: 35px;
    }

    .container-header-img .position-logo {
        position: absolute;
        right: 66%;
        top: 57%;
    }

    .container-header-img .position-logo img {
        width: 28%;
    }

    .container-header-img img {
        width: 28%;
    }

    .details {
        background: #482783 url(https://upc-cdn.b-cdn.net/web-postgrado/landings/images/landing_img/details-pattern.png) no-repeat;
        color: #fff;
        display: flex;
        padding: 1rem 2rem;
        justify-content: space-around;
        align-items: center;
        background-position: right top;
        background-size: auto 100%;
        flex-direction: row;
    }

    .details-2 {
        background: #482783 url(https://upc-cdn.b-cdn.net/web-postgrado/landings/images/landing_img/details-pattern.png) no-repeat;
        color: #fff;
        display: flex;
        padding: 1rem 2rem;
        justify-content: space-around;
        align-items: center;
        background-position: right top;
        background-size: auto 100%;
        flex-direction: row;
    }

    .info-grid .info-grid-item:nth-child(1),
    .info-grid .info-grid-item:nth-child(4) {
        background: transparent;
    }

    .info-grid .info-grid-item:nth-child(2),
    .info-grid .info-grid-item:nth-child(3) {
        background: transparent;
    }

    .info-grid .info-grid-item p {
        color: #000000;
    }

    .info-grid .info-grid-item-2:nth-child(1),
    .info-grid .info-grid-item-2:nth-child(4) {
        background: transparent;
    }

    .info-grid .info-grid-item-2:nth-child(2),
    .info-grid .info-grid-item-2:nth-child(3) {
        background: transparent;
    }

    .info-grid .info-grid-item-2 p {
        color: #000000;
    }

    .certificate-img {
        position: relative;
        padding-top: 4rem;
        padding-left: 6rem;
        z-index: 1;
    }
}

/* slider profesores */

.new-conteiner-profesores {
    background: #f8f8f8;
}

.new-conteiner-profesores img {
    border-radius: 0 0 25px 0;
    width: 70%;
    height: 50%;
}

.line-skyblue-sling {
    width: 200px;
    border-bottom: 1.5px solid #4DC0FF;
    margin: 5px 0;
}

.new-conteiner-profesores .description {
    font-family: zizou-slab-regular;
    font-size: 20px;
    line-height: 1.4;
}


@media (min-width: 768px) {
    .new-conteiner-profesores img {
        width: 100%;
        height: 70%;
    }

}


.heading-section {
    font-family: "zizou-slab-bold";
    color: #35158c;
    display: flex;
    align-items: center;
    margin-top: 2.5rem;
}

section.pagos .pagos-info-conntainer {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

section.pagos .pagos-info {
    background: #FFFFFF;
    border: solid 2px #482783;
    padding: 20px;
    font-size: 16px;
    border-radius: 10px;
}

section.pagos .pagos-info p {
    font-family: "zizou-slab-regular";
}

.what-upc-text {
    margin: 1.5rem 0 2.5rem 0;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: -0.54px;
    font-family: "zizou-slab-regular";
}

@media (min-width: 768px) {
    section.pagos .pagos-info-conntainer {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

.cta-bottom .cta-text {
    font-family: zizou-slab-bold;
    color: #543477;
    font-size: 2rem;
    text-align: center;
    line-height: 1.2;
    padding: 30px;
}

/* profesores */
.profesores-container {
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .profesores-container {
        display: flex;
        flex-direction: row;
        justify-content: center;
    }

    .profesor-info {
        width: 30%;
        padding: 10px;
    }

    .profesor-info img {
        padding: 10px;
    }

    .profesor-info p {
        line-height: 1.2;
    }

    .profesor-info-educacion {
        width: 40%;
        padding: 10px;
    }
}

.bg-gestion-publica-new {
    background-image: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url('https://upc-cdn.b-cdn.net/web-postgrado/landings/maestrias/images/covers/gestion-publica-mobile.png')
}
.bg-mba-new {
    background-image: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url('https://upc-cdn.b-cdn.net/web-postgrado/landings/maestrias/images/covers/mba-mobile.png')
}
@media (min-width: 768px) {
    .bg-gestion-publica-new {
        background-image: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url('https://upc-cdn.b-cdn.net/web-postgrado/landings/maestrias/images/covers/gestion-publica-desktop.png')
    }
    .bg-mba-new {
        background-image: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url('https://upc-cdn.b-cdn.net/web-postgrado/landings/maestrias/images/covers/mba-desktop.png')
    }
}

/* boton nuevo programa */

.boton-nuevo {
    background-color: #35158c;
    color: white;
    border: none;
    border-radius: 15px;
    padding: 2px 8px;
    font-size: 0.8rem;
    margin-left: 0.5rem; 
}