@import url("https://fonts.googleapis.com/css2?family=Libre+Bodoni:ital,wght@0,400..700;1,400..700&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
:root {
    --primary-lighter: #FFA6FC;
    --primary-color: #B72A67;
    --primary-darker: #1A1819;
    --color-error: #FF3059;
    --color-success: #8BCC0A;
    --color-black: #0C0C0C;
    --color-gadient: #6A0E44;
    --color-grey: #D9D9D9;
}

@keyframes rightToLeft {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(0px);
    }
}

a {
    text-decoration: none !important;
}

body {
    overflow-x: hidden;
}

body #running-text-container {
    padding: 24px 0px;
    overflow: hidden;
}

body #running-text-container span#running-text {
    font-size: 30px;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    color: var(--primary-lighter);
    text-transform: uppercase;
    display: inline-block;
    white-space: nowrap;
    position: relative;
}

@media screen and (max-width: 48rem) {
    body #running-text-container span#running-text {
        font-size: 16px;
    }
}

body header .navbar-brand {
    display: none;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: bold;
}

body header .navbar {
    background-color: #000000;
    min-height: 91px;
    transition: position 10s;
}

body header .navbar ul li {
    padding: 0px 60px;
}

body header .navbar ul li a.nav-link {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff !important;
}

body header .navbar ul li a.nav-link:hover {
    color: var(--primary-color) !important;
}

body header .navbar.fixed-top {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    background-color: rgba(0, 0, 0, 0.5);
}

@media screen and (max-width: 48rem) {
    body header .navbar-collapse {
        position: absolute;
        top: 80px;
        left: 0;
        background-color: #000000;
        z-index: 1;
        width: 100%;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
    }
    body header .navbar-collapse ul {
        flex-direction: column;
        padding-left: 15px;
    }
    body header .navbar-collapse ul li {
        padding: 20px 0px;
    }
    body header .navbar-collapse ul li a {
        font-size: 14px;
    }
    body header button.navbar-toggler {
        padding-right: 0px;
        border: none;
    }
    body header button.navbar-toggler:focus {
        box-shadow: unset;
    }
    body header button.navbar-toggler i {
        color: #ffffff;
        font-size: 30px;
    }
    body header #navbarNav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 250px;
        height: 100vh;
        background-color: #000000;
        transition: left 0.3s ease-out;
    }
    body header #navbarNav.show {
        left: 0;
    }
}

body #slider-ter .swiper-slide {
    opacity: 0.5;
}

body #slider-ter .swiper-slide.swiper-slide-next {
    opacity: 1;
}

body #slider-ter .swiper-slide:first-child,
body #slider-ter .swiper-slide:last-child {
    width: 50%;
}

body .form_contact {
    margin-top: 80px;
    margin-bottom: 96px;
}

@media screen and (max-width: 48rem) {
    body .form_contact {
        margin-top: 40px;
        margin-bottom: 40px;
    }
}

body .form_contact form .two-col {
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

body .form_contact form .two-col .form-group {
    width: 100%;
}

body .form_contact form .two-col .form-group input {
    border: none;
    border-bottom: 1px solid var(--primary-color);
    background-color: transparent;
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    width: 100%;
    padding-bottom: 10px;
    padding-left: 14px;
}

body .form_contact form .two-col .form-group input::-moz-placeholder {
    color: #ffffff;
    opacity: 1;
}

body .form_contact form .two-col .form-group input::placeholder {
    color: #ffffff;
    opacity: 1;
}

body .form_contact form .two-col .form-group input:focus-visible {
    outline: unset;
}

@media screen and (max-width: 48rem) {
    body .form_contact form .two-col {
        flex-direction: column;
        gap: 30px;
    }
    body .form_contact form .two-col .form-group {
        width: 100%;
    }
    body .form_contact form .two-col .form-group input {
        font-size: 14px;
    }
}

body .form_contact form .one-col {
    margin-top: 60px;
}

body .form_contact form .one-col .form-group input {
    border: none;
    border-bottom: 1px solid var(--primary-color);
    background-color: transparent;
    font-family: "Montserrat", sans-serif;
    color: #ffffff;
    width: 100%;
    padding-left: 14px;
    padding-bottom: 10px;
}

body .form_contact form .one-col .form-group input::-moz-placeholder {
    color: #ffffff;
    opacity: 1;
}

body .form_contact form .one-col .form-group input::placeholder {
    color: #ffffff;
    opacity: 1;
}

body .form_contact form .one-col .form-group input:focus-visible {
    outline: unset;
}

@media screen and (max-width: 48rem) {
    body .form_contact form .one-col {
        margin-top: 30px;
    }
    body .form_contact form .one-col .form-group input {
        font-size: 14px;
    }
}

body .form_contact form button {
    margin-top: 48px;
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    font-family: "Montserrat", sans-serif;
    padding: 12px 32px;
    font-size: 14px;
    font-weight: 700;
}

body .form_contact form button:hover {
    background-color: #ffffff;
}

@media screen and (max-width: 48rem) {
    body .form_contact form button {
        margin-top: 30px;
        width: 100%;
    }
}

body #title-party h2 {
    position: relative;
}

body #title-party h2:after {
    position: absolute;
    content: "";
    width: 349px;
    height: 2px;
    background-color: #ffffff;
    top: 50%;
    margin-left: 20px;
}

@media screen and (max-width: 48rem) {
    body #title-party h2::after {
        width: 100%;
    }
}

body .list-party {
    margin-bottom: 30px;
}

body .list-party .item-party {
    display: flex;
    margin-bottom: 40px;
    align-items: center;
}

body .list-party .item-party .img {
    width: 70%;
}

body .list-party .item-party .img img {
    width: 474px;
    height: 571px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

body .list-party .item-party .content {
    background-color: var(--primary-darker);
    padding: 40px;
    width: 100%;
    margin-left: -20px;
}

body .list-party .item-party .content span {
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 600;
}

body .list-party .item-party .content h3 {
    color: #ffffff;
    font-family: "Libre Bodoni", serif;
    font-size: 40px;
    font-style: italic;
    text-transform: uppercase;
    margin-bottom: 40px;
    margin-top: 32px;
}

body .list-party .item-party .content p {
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    margin-bottom: 40px;
    font-size: 24px;
}

body .list-party .item-party .content a {
    color: var(--primary-color);
    font-family: "Montserrat", sans-serif;
    font-size: 24px;
}

@media screen and (max-width: 48rem) {
    body .list-party .item-party {
        flex-direction: column;
    }
    body .list-party .item-party .img {
        width: 100%;
    }
    body .list-party .item-party .img img {
        width: 100%;
        height: 295px;
        -o-object-fit: cover;
        object-fit: cover;
        -o-object-position: top center;
        object-position: top center;
    }
    body .list-party .item-party .content {
        margin-left: 0px;
    }
    body .list-party .item-party .content p {
        font-size: 14px;
    }
    body .list-party .item-party .content a {
        font-size: 14px;
    }
}

body footer {
    background-color: #000000;
    padding: 41px 0px;
}

body footer .menu-ft {
    margin-bottom: 68px;
}

body footer .menu-ft ul {
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 120px;
}

body footer .menu-ft ul li {
    list-style: none;
}

body footer .menu-ft ul li a {
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
}

body footer .text-ft {
    text-align: center;
}

body footer .text-ft h3 {
    font-weight: bold;
    color: var(--primary-color);
    font-size: 150px;
    font-family: "Montserrat", sans-serif;
}

body footer .text-ft p {
    color: var(--primary-color);
    font-family: "Montserrat", sans-serif;
}

body footer .icon {
    margin-bottom: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 120px;
}

body footer .icon a {
    color: #ffffff;
    font-size: 37px;
}

body footer .icon a:hover {
    color: var(--primary-color);
}

@media screen and (max-width: 48rem) {
    body footer .menu-ft {
        margin-bottom: 30px;
    }
    body footer .menu-ft ul {
        flex-direction: column;
        gap: 20px;
    }
    body footer .text-ft h3 {
        font-size: 80px !important;
    }
    body footer .icon {
        gap: 30px;
        margin-bottom: 30px;
    }
    body footer .icon a {
        font-size: 37px;
    }
}

body label.error {
    color: #ffffff;
    font-style: italic;
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
}

body .heading_post {
    text-align: center;
    background: url("../img/bg_news.jpg") no-repeat center center;
    background-size: cover;
    padding: 50px 0px;
    position: relative;
}

body .heading_post .content_heading {
    z-index: 2;
    position: relative;
    font-family: "Montserrat", sans-serif;
}

body .heading_post .content_heading h1 {
    color: #ffffff;
}

body .heading_post .content_heading .post_meta span {
    color: var(--primary-color);
}

body .heading_post::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
    width: 100%;
    height: 100%;
    z-index: 1;
}

body .post_content {
    padding: 30px 0px;
    font-family: "Montserrat", sans-serif;
}

body .scroll-container-parent {
    display: flex;
    flex-direction: column;
}

body .sticky-section {
    top: 100px;
    width: 100%;
    height: 600vh;
    display: flex;
    align-items: center;
}

@media screen and (max-width: 48rem) {
    body .scroll-container-parent {
        height: auto;
        padding: 10px 0;
    }
    body .sticky-section {
        position: relative;
        height: auto !important;
        flex-direction: column;
        padding: 10px;
    }
    body .scroll-container {
        flex-direction: column;
        width: 100%;
    }
}


/*# sourceMappingURL=app.css.map */