/* ---GLOBAL STYLES--- */

* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
    word-break: break-word;
    scroll-behavior: smooth;
}

:root {
    --orange: #ff4242;
    --yellow: #ffc448;
    --gray: #555555;
}

body {
    background: white;
}

img,
svg {
    max-width: 100%;
}

a {
    display: inline-block;
    text-decoration: none;
}

a,
button,
i {
    transition: .25s;
    cursor: pointer;
}

button {
    border: none;
}

section {
    width: 100%;
    padding: 8%;
}

h1,
h2 {
    font-weight: 800;
    line-height: 1;
}

p {
    color: var(--gray);
    font-size: 18px;
    font-weight: 500;
    margin: 5px 0;
}


/* ---LEGAL STYLES--- */

.legal_section {
    padding: 8% 8% 18% 8%;
}

.legal_section h1 {
    color: var(--orange);
    font-size: 30px;
}

.legal_section p {
    margin: 20px 0;
    text-align: justify;
}

.legal_section ul {
    color: var(--gray);
    font-size: 16px;
    font-weight: 400;
    text-align: justify;
    margin: 5px 0;
    list-style-position: inside;
}

.legal_section a {
    color: var(--gray);
    font-weight: 600;
}

.legal_section a:hover {
    color: var(--orange);
}

@media (max-width: 995px) {
    .legal_section h1 {
        font-size: 25px;
    }
    .legal_section {
        padding: 25% 10% 40% 10%;
    }
}


/* ---BUTTON STYLES--- */

.slide_btn {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    background: var(--orange);
    box-shadow: 5px 5px 10px #00000020;
    overflow: hidden;
}

.slide_btn::after {
    content: "";
    position: absolute;
    right: 0;
    width: 0%;
    height: 100%;
    background: var(--yellow);
    transition: all 0.4s ease-in-out;
}

.slide_btn:hover::after {
    right: auto;
    left: 0;
    width: 100%;
}

.slide_btn span {
    color: white;
    width: 100%;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    letter-spacing: 2px;
    padding: 10px 20px;
    transition: all 0.3s ease-in-out;
    z-index: 1;
}

.slide_btn:hover span {
    animation: scaleUp 0.3s ease-in-out;
}


/* ---ANIMATION STYLES--- */

@keyframes scaleUp {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(0.95);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes slide_bg {
    from {
        object-position: 0;
    }
    to {
        object-position: 100%;
    }
}

@keyframes app_rotation {
    from {
        transform: rotate(0) scale(1);
    }
    to {
        transform: rotate(-10deg) scale(1.1);
    }
}