@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Overpass:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Overpass", sans-serif;
}

:root {
    --color-dark: #503B2F;
    --color-light: #FFFEEC;
    --color-primary: #A153AA;
}

body {
    background-color: var(--color-light);
    color: var(--color-dark);
}

.edc-selector {
    position: relative;
    display: flex;
    align-items: center;
}

.edc-selector::after {
    content: '▼';
    position: absolute;
    width: 30px;
    height: 80%;
    right: 8px;
    background-color: white;
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: scaleX(1.2);
}

.edc-selector select {
    width: 100%;
    height: 50px;
    padding: 0px 12px;
    padding-top: 2px;
    font-size: 1.1rem;
    border-radius: 8px;
}

input {
    height: 48px;
    padding: 0px 12px;
    border: 1px solid rgba(0, 0, 0, 0.35);
    border-radius: 8px;
    font-size: 1.1rem;
}

input::placeholder {
    color: rgba(0, 0, 0, 0.25);
}

textarea {
    height: 50px;
    padding: 12px;
    border: 1px solid rgba(0, 0, 0, 0.35);
    border-radius: 8px;
    font-size: 1.1rem;
    color: var(--color-dark);
}

textarea::placeholder {
    color: rgba(0, 0, 0, 0.25);
}

/* SPLIDE */
.splide__arrows {
    max-width: 1000px;
    height: 0px;
    position: absolute;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9;
    padding: 0px 12px;
    margin: 0 auto;
}

.splide__arrow {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: none;
    border: none;
    padding: 12px;
    background-color: white;
    box-shadow: 0px 2px 16px rgba(0, 0, 0, .25);
    border: 1px solid var(--color-dark);
    border-radius: 200px;
}

.splide__arrow:disabled {
    opacity: 0.25;
    pointer-events: none;
}

.splide__arrow--prev { transform: rotate(180deg); }

.splide__arrow svg {
    fill: var(--color-dark);
}

.edc-section-head__title {
    margin-bottom: 8px;
}

.edc-section-head ul {
    padding-left: 16px;
}

div#unity-webgl-logo{
    display: none;
}