/* ---GLOBAL STYLES--- */

* {
    margin: 0;
    padding: 0;
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    box-sizing: border-box;
    word-break: break-word;
    scroll-behavior: smooth;
}

:root {
    /* Primary Colors */
    --yellow: #F6A436;
    --purple: #814595;
    --pink: #ff3359;
    --cream: #fae3c3;

    /* Gradient Colors */
    --gradient-purple: linear-gradient(135deg, #814595 0%, #a05fb6 100%);
    --gradient-yellow: linear-gradient(135deg, #F6A436 0%, #ffc166 100%);
    --gradient-pink: linear-gradient(135deg, #ff3359 0%, #ff5a7a 100%);

    /* Neutral Colors */
    --white: #ffffff;
    --off-white: #fafafa;
    --light-gray: #f5f5f5;
    --text-dark: #2d2d2d;
    --text-light: #666666;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(129, 69, 149, 0.08);
    --shadow-md: 0 4px 16px rgba(129, 69, 149, 0.12);
    --shadow-lg: 0 8px 32px rgba(129, 69, 149, 0.16);
    --shadow-xl: 0 16px 48px rgba(129, 69, 149, 0.2);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Transitions */
    --transition-fast: 0.2s ease-in-out;
    --transition-base: 0.3s ease-in-out;
    --transition-slow: 0.5s ease-in-out;
}

body {
    background: var(--off-white);
    color: var(--text-dark);
    overflow-x: hidden;
}

img {
    width: 100%;
    max-width: 100%;
}

a {
    cursor: pointer;
    width: fit-content;
    display: inline-block;
    text-decoration: none;
    transition: .25s;
}

button,
i {
    cursor: pointer;
    transition: .25s;
}

section {
    width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Quicksand', 'Nunito', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

p {
    text-align: justify;
    line-height: 1.7;
}

p,
li {
    color: var(--text-dark);
    font-size: clamp(14px, 1vw, 18px);
    font-weight: 400;
    line-height: 1.7;
}

@media (max-width: 996px) {
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        line-height: 1.2;
        font-weight: 700;
    }
    p,
    li {
        font-size: clamp(15px, 4vw, 19px);
        text-align: left;
        font-weight: 500;
        line-height: 1.7;
    }
}


/* ---HEADER STYLES--- */

header {
    position: sticky;
    top: 0;
    z-index: 99;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

header.scrolled {
    box-shadow: var(--shadow-md);
}

header .desktop_box .bar_box {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 0.75rem;
    column-gap: 2rem;
    padding: .7vw 7%;
    background: var(--gradient-purple);
    transition: all var(--transition-base);
}

header .desktop_box .bar_box a {
    display: flex;
    align-items: center;
    /* gap: .25vw; */
    color: white;
    font-size: .9vw;
}
header .desktop_box .bar_box a>*{
    padding: 0 0.25vw;
}

header .desktop_box .bar_box a:hover {
    color: var(--yellow);
}

header .desktop_box .bar_box a i {
    transition: none;
}

header .desktop_box .networks_box {
    display: flex;
    /* gap: 1.5vw; */
}
header .desktop_box .networks_box>*{
    padding: 0 0.75vw;
}


header .desktop_box .networks_box i {
    font-size: 1.2vw;
}

header .desktop_box .header_box {
    display: grid;
    grid-template-columns: 18% 64% 18%;
    padding: 1.5% 7%;
}

header .desktop_box .logo_box {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

header .desktop_box .menu_box {
    display: flex;
    justify-content: center;
    align-items: center;
    /* gap: 2vw; */
}

header .desktop_box .menu_box a {
    padding: .5vw 1vw;
}

.menu_box a{
    padding: 0 1vw;
}

header .desktop_box .nav_item {
    padding: .5vw 0;
}

header .desktop_box .menu_box a,
header .desktop_box .nav_item span {
    position: relative;
    color: var(--purple);
    font-size: 1vw;
    font-weight: 500;
    transition: .25s;
}

header .desktop_box .menu_box a:hover,
header .desktop_box .nav_item span:hover,
header .desktop_box .menu_box .active_item,
header .mobile_box .menu_box .active_item {
    color: var(--yellow);
}

header .desktop_box .nav_item {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

header .desktop_box .nav_item span {
    display: flex;
    align-items: flex-end;
    /* gap: .25vw; */
}

header .desktop_box .nav_item span>*{
    padding: 0 0 0 0.25vw ;
}

header .desktop_box .nav_item i {
    font-size: 1vw;
    transition: none;
}

header .desktop_box .dropdown {
    width: 15vw;
    display: flex;
    flex-direction: column;
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translateY(100%);
    padding: 1.5vw 1vw 1vw 1vw;
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    transition-delay: 0s, 0s;
    backdrop-filter: blur(10px);
}

header .desktop_box .nav_item:hover .dropdown {
    opacity: 1;
    pointer-events: initial;
    transform: translateY(100%);
    transition-delay: 0s, 0s;
}

header .desktop_box .dropdown:hover {
    opacity: 1;
    pointer-events: initial;
}

header .desktop_box .buttons_box {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    /* margin-left:1vw */
}

header .desktop_box .main_btn {
    display: flex;
    align-items: center;
    
}
header .desktop_box .main_btn>*{
    padding: 0 0.25vw;
}

header .desktop_box .main_btn::before {
    background: white;
}

header .desktop_box .main_btn i {
    position: relative;
    color: white;
    font-size: 1.5vw;
    transition: 1s;
}

header .desktop_box .main_btn:hover i {
    color: var(--yellow);
}

header .mobile_box {
    display: none;
}

@media (max-width: 1100px) {
    header .desktop_box .bar_box {
        display: none;
    }
}

@media (max-width: 996px) {
    header .desktop_box {
        display: none;
    }
    header .mobile_box {
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 3%;
    }
    header .mobile_box>.logo_box {
        width: 55%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    header .mobile_box .toggle_box {
        display: flex;
        flex-direction: column;
        /* gap: 1.2vw; */
        position: fixed;
        top: 5vw;
        right: 5vw;
        z-index: 2;
    }
    header .mobile_box .toggle_box>*{
        margin-bottom: 1.2vw;
    }
    header .mobile_box .bar_item {
        width: 7vw;
        height: .6vw;
        background: #a05fb6;
        transition: .5s;
    }
    header .active_sidebar .bar_item {
        width: 6vw;
        background: white;
    }
    header .active_sidebar .bar_item:nth-child(1) {
        transform: translate(0, 1.75vw) rotate(45deg)
    }
    header .active_sidebar .bar_item:nth-child(2) {
        opacity: 0;
    }
    header .active_sidebar .bar_item:nth-child(3) {
        transform: translate(0, -1.75vw) rotate(-45deg)
    }
    header .mobile_box .sidebar_box {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        /* gap: 10vw; */
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        padding: 8%;
        transform: translateY(-100%);
        background: var(--purple);
        transition: .5s;
        z-index: 1;
    }
    header .mobile_box .sidebar_box>*{
        padding: 5vw 0;
    }
    header .active_sidebar .sidebar_box {
        transform: translateY(0);
    }
    header .mobile_box .sidebar_box .logo_box {
        width: 70%;
    }
    header .mobile_box .menu_box {
        display: flex;
        flex-direction: column;
        align-items: center;
        /* gap: 5vw; */
    }
    header .mobile_box .menu_box>*{
        padding: 2.5vw 0;
    }
    header .mobile_box .nav_item {
        display: flex;
        flex-direction: column;
    }
    header .mobile_box a,
    header .mobile_box span {
        position: relative;
        color: white;
        font-size: 4vw;
        text-align: center;
    }
    header .mobile_box span {
        pointer-events: none;
    }
    header .mobile_box span i {
        font-size: 2.5vw;
        pointer-events: none;
    }
    header .mobile_box .dropdown_active i {
        transform: rotate(-180deg);
    }
    header .mobile_box .dropdown {
        max-height: 0;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* gap: 3vw; */
        transition: .5s;
        pointer-events: none;
        opacity: 0;
    }
    header .mobile_box .dropdown>*{
        padding: 1vw 0;
    }
    header .mobile_box .dropdown_active .dropdown {
        max-height: 50vw;
        padding: 10% 0;
        pointer-events: initial;
        opacity: 1;
    }
    header .mobile_box .dropdown a {
        font-size: 3.8vw;
        text-align: center;
    }
    header .mobile_box .main_btn {
        /* gap: 2vw; */
        border-radius: 10vw;
    }
    header .mobile_box .main_btn i {
        padding-right: 2vw;
        font-size: 6vw;
    }
    header .mobile_box .main_btn:hover i {
        color: var(--yellow) !important;
    }
    header .mobile_box .contact_box {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        /* gap: 5vw; */
    }
    header .mobile_box .contact_box>*{
        padding: 2.5vw 0vw;
    }
    header .mobile_box .networks_box {
        display: flex;
        /* gap: 5vw; */
        justify-content: center;
    }
    header .mobile_box .networks_box i {
        padding: 0 2.5vw;
        font-size: 6vw;
    }
}


/* ---FOOTER STYLES--- */

footer {
    display: flex;
    flex-direction: column;
    position: relative;
}

footer path {
    fill: var(--purple);
    transform: translateY(.5vw);
}

footer .footer_box {
    display: grid;
    grid-template-columns: 25% 32% 27% 16%;
    gap: 3%;
    padding: 5%;
    background: var(--gradient-purple);
    position: relative;
    overflow: hidden;
}

footer .footer_box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.05)"/></svg>');
    pointer-events: none;
}

footer .logo_box {
    display: flex;
    flex-direction: column;
    /* gap: 1.5vw; */
}

footer .logo_box>*{
    padding-bottom: 1.5vw;
}

footer .logo_box a {
    width: 40%;
}

footer .politics_box {
    display: flex;
    flex-direction: column;
    /* gap: .8vw; */
}

footer .politics_box a {
    color: white;
    font-size: .8vw;
    padding-bottom:.8vw;
}

footer .footer_item {
    display: flex;
    flex-direction: column;
    /* gap: .7vw; */
}

footer .footer_item>*{
    padding-bottom: .7vw;
}

footer h2 {
    color: var(--yellow);
    font-size: 1.8vw;
}

footer .footer_item a {
    color: white;
    font-size: 1vw;
    position: relative;
    transition: all var(--transition-base);
}

footer .footer_item a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--yellow);
    transition: width var(--transition-base);
}

footer .footer_item a:hover::after {
    width: 100%;
}

footer .footer_item i {
    transition: transform var(--transition-fast);
}

footer .footer_item a:hover i {
    transform: translateX(4px);
}

footer .politics_box a:hover,
footer .footer_item a:hover {
    color: var(--yellow);
    transform: translateX(4px);
}

footer .networks_box {
    display: flex;
    /* gap: 1vw */
}
footer .networks_box>*{
    padding-right:1vw;
}

footer .networks_box a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5vw;
    height: 2.5vw;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all var(--transition-base);
}

footer .networks_box a:hover {
    background: var(--yellow);
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 8px 16px rgba(246, 164, 54, 0.3);
}

footer .networks_box i {
    transition: all var(--transition-base);
}

footer .networks_box a:hover i {
    color: var(--purple) !important;
    transform: scale(1.1);
}

footer .bar_box {
    display: flex;
    justify-content: center;
    align-items: center;
    /* gap: 2vw; */
    padding: .5vw;
}

footer .bar_box>*{
    padding: 0 1vw;
}

footer .bar_box a {
    color: var(--purple);
    font-size: .8vw;
}

footer .bar_box a:hover {
    color: var(--yellow);
}

footer .bar_box span {
    color: var(--purple);
    font-size: 1vw;
}

@media (max-width: 996px) {
    footer .footer_box {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 10vw;
        padding: 20% 10%;
    }
    footer .logo_box {
        align-items: center;
        /* gap: 5vw; */
    }
    footer .logo_box>*{
        padding-bottom: 5vw;
    }
    footer .logo_box a {
        width: 30%;
    }
    footer .politics_box {
        align-items: center;
        /* gap: 2vw; */
    }
    footer .politics_box>*{
        padding-bottom: 2vw;
    }
    footer .politics_box a {
        width: fit-content;
        font-size: 3vw;
        text-align: center;
    }
    footer .footer_item {
        align-items: center;
        /* gap: 3vw; */
    }
    footer .footer_item >*{
        padding-bottom: 3vw;
    }
    footer h2 {
        font-size: 6vw;
    }
    footer .footer_item a {
        font-size: 4vw;
    }
    footer .networks_box {
        justify-content: center;
        /* gap: 3vw; */
    }
    footer .networks_box>*{
        padding: 0 1.5vw;
    }
    footer .networks_box i {
        font-size: 5vw;
    }
    footer .bar_box {
        flex-direction: column;
        /* gap: 2vw; */
        padding: 2vw 1vw;
    }
    footer .bar_box>*{
        padding: 1vw 0;
    }
    footer .bar_box a {
        font-size: 3vw;
        text-align: center;
    }
    footer .bar_box span {
        display: none;
    }
}


/* ---SWIPE STYLES--- */

.swipe_box {
    display: none;
    justify-content: center;
    align-items: center;
    /* gap: 2vw; */
    padding-top: 10vw;
    opacity: .3;
    pointer-events: none;
}

.swipe_box>*{
    padding: 0 1vw;
}

.swipe_box h2 {
    color: white !important;
    font-size: 4vw !important;
    letter-spacing: .5vw;
}

.swipe_box svg {
    width: 15% !important;
}

.swipe_box #cirlce {
    animation: swipe 2s linear infinite;
}

@media (max-width: 996px) {
    .swipe_box {
        display: flex;
    }
}


/* ---BUTTON STYLE--- */

.main_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5vw;
    width: fit-content;
    position: relative;
    padding: .9vw 2vw;
    border: none;
    border-radius: var(--radius-full);
    overflow: hidden;
    background: var(--gradient-yellow);
    box-shadow: var(--shadow-md);
    z-index: 1;
    transition: all var(--transition-base);
    transform: translateY(0);
}

.main_btn::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--purple);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.main_btn:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.main_btn:hover::before {
    width: 25vw;
    height: 25vw;
}

.main_btn:active {
    transform: translateY(0);
    box-shadow: var(--shadow-sm);
}

.main_btn span {
    position: relative;
    color: white;
    font-size: clamp(13px, 1.1vw, 17px);
    font-weight: 700;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    letter-spacing: 0.08em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.main_btn:hover span {
    color: var(--yellow);
    transform: scale(1.05);
}

@media (max-width: 996px) {
    .main_btn {
        padding: 3vw 6vw;
        gap: 2vw;
    }
    .main_btn:hover::before {
        width: 80vw;
        height: 80vw;
    }
    .main_btn span {
        font-size: clamp(15px, 3.8vw, 20px);
        font-weight: 700;
        letter-spacing: 0.1em;
    }
}


/* ---LIST STYLES--- */

ul {
    display: flex;
    flex-direction: column;
    /* gap: 1vw; */
    list-style: none;
    margin-left: 1.5vw;
}

li {
    padding-bottom: 1vw;
    width: fit-content;
    position: relative;
    cursor: pointer;
}

li::before {
    content: "";
    position: absolute;
    top: .52vw;
    left: -.93vw;
    width: .3vw;
    height: .3vw;
    border-radius: 50%;
    background: var(--purple);
    box-shadow: 0 0 8px rgba(129, 69, 149, 0.4);
}

li::after {
    content: "";
    position: absolute;
    top: .2vw;
    left: -1.25vw;
    width: .7vw;
    height: .7vw;
    border-radius: 50%;
    transition: all var(--transition-base);
    border: .08vw solid var(--purple);
}

li:hover::after {
    background: var(--purple);
    transform: scale(1.2);
    box-shadow: 0 0 12px rgba(129, 69, 149, 0.5);
}

@media (max-width: 996px) {
    ul {
        /* gap: 3vw; */
        margin-left: 4vw;
    }
    li{
        padding-bottom: 3vw;
    }
    li::before {
        top: 2.1vw;
        left: -2.8vw;
        width: .7vw;
        height: .7vw;
    }
    li::after {
        top: 1.3vw;
        left: -3.6vw;
        width: 2vw;
        height: 2vw;
    }
}


/* ---CONTACT STYLES--- */

.contact_section {
    padding: 10% 5%;
}

.contact_section .contact_box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2vw;
}

.contact_section .info_box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* gap: 1vw; */
}

.info_box > div{
    padding-bottom: 1vw;
}

.contact_section h2 {
    color: var(--purple);
    font-size: 3vw;
}

.contact_section h2:nth-child(2) {
    color: var(--yellow);
    font-size: 1.6vw;
}

.contact_section .paragraph_box p {
    text-align: left;
}

.contact_section .paragraph_box a {
    color: var(--purple);
    font-weight: 500;
}

.contact_section .paragraph_box a:hover {
    color: var(--yellow);
}

.contact_section input {
    width: 49%;
}

.contact_section .form_box {
    display: grid;
    grid-template-columns: 1fr;
    flex-direction: column;
    /* gap: 1vw; */
}

.contact_section .input_box {
    display: flex;
    grid-template-columns: 1fr 1fr;
    padding-bottom: 1vw;
    /* gap: 1vw; */
    justify-content: space-between;
}

.contact_section input {
    color: var(--purple);
    font-size: clamp(14px, 1vw, 16px);
    padding: 1.2vw;
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.contact_section textarea {
    font-size: clamp(14px, 1vw, 16px);
    color: var(--purple);
    height: 7vw;
    resize: none;
    padding: 1.2vw;
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.contact_section input:hover,
.contact_section textarea:hover {
    box-shadow: var(--shadow-md);
}

.contact_section input:focus-visible,
.contact_section textarea:focus-visible {
    outline: none;
    background: var(--white);
    border-color: var(--purple);
    box-shadow: 0 0 0 4px rgba(129, 69, 149, 0.1);
    transform: translateY(-2px);
}

.contact_section ::placeholder {
    color: #81459570;
}

.contact_section button {
    border: .2vw solid var(--purple);
    background: var(--purple);

}

.contact_section .main_btn::before {
    background: white;
}

.contact_section .main_btn:hover span {
    color: var(--purple);
}

.contact_section .send_box {
    display: flex;
    align-items: center;
    padding: 1vw 0;
}

.contact_section .message_box {
    padding-left: 3vw;
}

.contact_section .success {
    color: #0bb300;
}

.contact_section .error {
    color: #f31212;
}

.contact_section .media_box {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact_section .media_box svg {
    width: 50%;
    animation: animation05 5s linear alternate infinite;
}

.contact_section .media_box path:nth-child(2) {
    animation: animation03 4s linear alternate infinite;
}

.contact_section .media_box path:nth-child(3) {
    animation: animation06 6s linear alternate infinite;
}

.contact_section .media_item {
    width: 40%;
    position: absolute;
    overflow: hidden;
    z-index: 1;
}

.contact_section .media_item:nth-child(1) {
    bottom: 10%;
    left: 5%;
    border-radius: 50% 0 0 50%;
}

.contact_section .media_item:nth-child(2) {
    top: 2%;
    right: 5%;
    border-radius: 50% 50% 50% 0;
}

@media(max-width: 996px) {
    .contact_section {
        padding: 20% 10%;
    }
    .contact_section .contact_box {
        grid-template-columns: 1fr;
        gap: 10vw;
    }
    .contact_section .info_box {
        /* gap: 3vw; */
    }
    .info_box > div{
        padding-bottom: 3vw;
    }
    .contact_section h2 {
        font-size: 8vw;
        text-align: center;
    }
    .contact_section h2:nth-child(2) {
        font-size: 5vw;
    }
    .contact_section .paragraph_box p {
        text-align: left;
    }
    .contact_section .form_box {
        gap: 3vw;
    }
    .contact_section .input_box {
        grid-template-columns: 1fr;
        gap: 3vw;
    }
    .contact_section input {
        font-size: 4vw;
        padding: 3vw;
        border-radius: 1vw;
    }
    .contact_section textarea {
        font-size: 4vw;
        height: 25vw;
        padding: 3vw;
        border-radius: 1vw;
    }
    .contact_section button {
        border: .5vw solid var(--purple);
    }
    .contact_section .send_box {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        /* gap: 3vw; */
    }
    .contact_section .send_box>*{
        padding-bottom: 3vw;
    }
    .contact_section .message_box {
        position: relative;
        width: 100%;
        height: 7vw;
        margin-left: 0;
    }
    .contact_section .message_box p {
        width: 100%;
        position: absolute;
        top: 50%;
        left: 50%;
        text-align: left;
        transform: translate(-50%, -50%);
    }
    .contact_section .media_box svg {
        width: 85%;
    }
    .contact_section .media_item {
        width: 50%;
    }
    .contact_section .media_item:nth-child(1) {
        bottom: 10%;
        left: -5%;
    }
    .contact_section .media_item:nth-child(2) {
        top: 2%;
        right: -5%;
    }
}


/* ---VIDEO STYLES--- */

.video_section {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    opacity: 0;
    pointer-events: none;
    transition: .5s;
    z-index: 99;
}

.active_video_section {
    opacity: 1;
    pointer-events: initial;
}

.video_section .video_box {
    position: relative;
    width: 65vw;
    margin: auto;
    overflow: hidden;
    z-index: 99;
}

.video_section video {
    width: 100%;
    height: 100%;
}

.video_section .backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000080;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

@media (max-width: 996px) {
    .video_section .video_box {
        width: 80vw;
    }
}


/* ---ANIMATIONS--- */

@keyframes swipe {
    0% {
        transform: translateX(0);
        opacity: 0;
    }
    10% {
        transform: translateX(-25%);
        opacity: 1;
    }
    20% {
        width: 120px;
        transform: translateX(-50%)
    }
    35% {
        opacity: 0;
    }
    40% {
        transform: translateX(-55%);
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

@keyframes animation01 {
    from {
        transform: translate(0);
    }
    to {
        transform: translate(10%, 10%);
    }
}

@keyframes animation02 {
    from {
        transform: translate(0);
    }
    to {
        transform: translate(-5%, -5%);
    }
}

@keyframes animation03 {
    from {
        transform: scale(1) translate(0);
    }
    to {
        transform: scale(1.1) translate(-2%, -10%);
    }
}

@keyframes animation04 {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-12%);
    }
}

@keyframes animation05 {
    from {
        transform: translate(0);
    }
    to {
        transform: translate(5%, 5%);
    }
}

@keyframes animation06 {
    from {
        transform: scale(1) translate(0);
    }
    to {
        transform: scale(.8) translate(-5%, 10%);
    }
}

@keyframes animation07 {
    from {
        transform: translate(-50%, -50%);
    }
    to {
        transform: translate(-50%, -30%);
    }
}

@keyframes animation08 {
    from {
        transform: translate(-50%, -50%) scale(1) rotate(0);
    }
    to {
        transform: translate(-50%, -50%) scale(1.5) rotate(45deg);
    }
}

@keyframes animation09 {
    from {
        transform: scale(1) translate(0) rotate(0);
    }
    to {
        transform: scale(1.1) translate(-2%, -10%) rotate(10deg);
    }
}

@keyframes animation10 {
    from {
        transform: scale(1) translate(-65%, 30%) rotate(0);
    }
    to {
        transform: scale(1.1) translate(-67%, 20%) rotate(10deg);
    }
}

@keyframes animation11 {
    from {
        transform: scale(1) translate(65%, -30%) rotate(0);
    }
    to {
        transform: scale(1.1) translate(67%, -20%) rotate(10deg);
    }
}

@keyframes animation12 {
    from {
        transform: scale(1) translate(-10%, 80%) rotate(0);
    }
    to {
        transform: scale(1) translate(-12%, 90%) rotate(10deg);
    }
}

@keyframes animation13 {
    from {
        transform: scale(1) translate(10%, -80%) rotate(0);
    }
    to {
        transform: scale(1) translate(12%, -90%) rotate(10deg);
    }
}
