@font-face {
    font-family: 'Koliko Script';
    src: url('../font/koliko/koliko-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Koliko Script';
    src: url('../font/koliko/koliko-Light.ttf') format('truetype');
    font-style: normal;
}

@font-face {
    font-family: 'Koliko Script';
    src: url('../font/koliko/koliko-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

.koliko-regular-text {
    font-family: 'Koliko Script', sans-serif;
    font-weight: normal;
    letter-spacing: .09em;
}

.koliko-light-text {
    font-family: 'Koliko Script', sans-serif;
    font-weight: 100;
    letter-spacing: .09em;
}

.koliko-bold-text {
    font-family: 'Koliko Script', sans-serif;
    font-weight: bold;
    letter-spacing: .09em;
}

@font-face {
    font-family: 'Campton Script';
    src: url('../font/campton/CamptonBook.otf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Campton Script';
    src: url('../font/campton/CamptonLight.otf') format('truetype');
    font-style: normal;
}

@font-face {
    font-family: 'Campton Script';
    src: url('../font/campton/CamptonBold.otf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

.campton-regular-text {
    font-family: 'Campton Script', sans-serif;
    font-weight: normal;
}

.campton-light-text {
    font-family: 'Campton Script', sans-serif;
    font-weight: 100;
}

.campton-bold-text {
    font-family: 'Campton Script', sans-serif;
    font-weight: bold;
}

body,
html {
    background-color: #141a45;
    cursor: url('../assets/images/iconos/cursor.png'), auto;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

/* Header */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    color: white;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #141a45;
    z-index: 3;
}

.header.alternate {
    background-color: #d1d2d4;
}

.logo {
    margin-right: auto;
    background-image: url('../assets/images/logo/white.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 172px;
    height: 31px;
}

.logo.alternate {
    background-image: url('../assets/images/logo/blue.png');
}

.menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 37px;
    height: 37px;
    cursor: pointer;
    margin-right: 5%;
}

.menu-btn div {
    width: 100%;
    height: 2px;
    background-color: #ed028c;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-btn.active .bar1 {
    transform: rotate(45deg) translate(6px, 6px);
    width: 120%;
}

.menu-btn.active .bar2 {
    opacity: 0;
}

.menu-btn.active .bar3 {
    transform: rotate(-45deg) translate(12px, -12px);
    width: 120%;
}

.play-audio-button {
    display: flex;
    justify-content: space-around;
    cursor: pointer;
    width: 37px;
    height: 37px;
    margin-right: 1rem;
    background-color: transparent;
    border-style: none;
    margin-left: auto;
}

.play-audio-button.alternate {
    display: none;
}

.play-audio-button div {
    position: relative;
    width: 2px;
    margin-top: 15%;
    height: 100%;
    background-color: #ed028c;
}

.play-audio-button .bar-1 {
    height: 60%;
    top: 10%;
}

.play-audio-button .bar-2 {
    height: 80%;
    top: -10%;
}

.play-audio-button .bar-3 {
    height: 60%;
    top: 10%;
}

.menu {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #d1d2d4;
    color: white;
    text-align: center;
    z-index: 2;
}

.menu a {
    color: white;
    text-decoration: none;
    font-size: 3rem;
}

.menu a:hover {
    color: #141a45;
}

.menu.show {
    display: flex;
}

@media (max-width: 768px) {
    .logo {
        margin-left: -2rem;
    }

    .menu-btn {
        margin-right: 2rem;
    }

    .menu-btn div {
        width: 70%;
    }
}

/* container */
.container {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    overflow: auto;
}

/*Footer*/
.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 5px;
    padding-right: 5px;
    padding-bottom: 5px;
    color: white;
}

.footer-left {
    display: flex;
}

.footer-logo {
    margin-right: auto;
    background-image: url('../assets/images/logo/white.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 110px;
    height: 31px;
}

.footer-right {
    display: flex;
    align-items: center;
}

.footer-right span {
    margin-right: 10px;
}

.footer-link {
    color: white;
    text-decoration: none;
}

.footer-link:hover {
    text-decoration: underline;
}