:root {
    --color-purple: #473192;
    --color-dark: #2E2E2F;
    --color-blue: #15BEF0
}

.chat {
    position: fixed;
    right: 1rem;
    bottom: 0;
    z-index: 99
}

.chat-close {
    position: absolute;
    top: 25%;
    right: 5%;
    transform: translate(-5%, -25%);
    width: 2rem;
    height: 2rem;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%
}

    .chat-close i {
        color: var(--color-purple)
    }

.main-title {
    color: var(--color-purple);
    font-weight: 800;
    font-size: 48px;
    line-height: 64px;
    text-align: center;
    margin-bottom: 1.5rem
}

.main-text {
    font-weight: 400;
    font-size: 21px;
    line-height: 25px;
    text-align: center;
    margin-bottom: 4rem
}

    .main-text span {
        font-weight: 700
    }

.policy-button {
    background-color: #fff;
    color: #383F73;
    border: none;
    font-size: large;
}

.active-number {
    color: var(--color-dark) !important
}

.active i {
    transform: rotate(-180deg)
}

.active-page {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    bottom: -3px
}

    .active-page span {
        height: 1.5px;
        background-color: #15bef0;
        display: inline-block
    }

        .active-page span:first-child {
            width: 60%
        }

        .active-page span:not(:first-child) {
            width: 10%
        }

.blue-background {
    background-color: #f3fdff
}

.error {
    color: red;
    font-weight: 400 !important
}

body {
    font-family: "Montserrat"
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    padding-bottom: 1rem
}

.header-bg {
    background: linear-gradient(135deg, #473192 0%, #15BEF0 100%)
}

.header-position {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100
}

.header-sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 100
}

.header .nav {
    display: flex;
    align-items: center
}

    .header .nav a {
        display: inline-block;
        color: #fff;
        text-decoration: none;
        text-transform: capitalize;
        font-size: 1rem;
        line-height: 1.5rem;
        font-weight: 700;
        position: relative
    }

        .header .nav a:not(:last-child) {
            margin-right: 2rem
        }

.header .contact {
    border-radius: 10px;
    background-color: #fff;
    border: 2px solid #fff;
}

    .header .contact a {
        display: inline-block;
        font-weight: 700;
        font-size: 1rem;
        line-height: 1.5rem;
        text-decoration: none;
        padding: 12px 22px;
        background: linear-gradient(135deg, #473192 0%, #15BEF0 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

.header .hamburger-icon {
    cursor: pointer;
    display: none
}

.hamburger-wrap {
    display: none
}

.isShow {
    transform: translateX(0) !important;
    left: 0 !important;
}

.banner-container {
    background: linear-gradient(135deg, #473192 0%, #15BEF0 100%)
}

.banner-wrapper {
    height: 100vh;
    align-items: center;
    position: relative
}

    .banner-wrapper .wrapper-left {
        position: relative;
        z-index: 9
    }

        .banner-wrapper .wrapper-left h2 {
            color: #fff;
            font-weight: 800;
            font-size: 36px;
            line-height: 44px;
            margin-bottom: 1rem
        }

            .banner-wrapper .wrapper-left h2 span {
                display: block;
                font-weight: 800;
                font-size: 72px;
                line-height: 72px
            }

        .banner-wrapper .wrapper-left p {
            color: #fff;
            font-weight: 400;
            font-size: 18px;
            line-height: 32px;
            width: 75%
        }

        .banner-wrapper .wrapper-left img {
            position: absolute;
            top: -5rem;
            left: -5rem;
            z-index: -1
        }

.banner-wrapper-right {
    display: flex;
    align-items: flex-end;
    height: 100%
}

.banner-wrapper-down {
    position: absolute;
    left: 50%;
    bottom: 3%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    cursor: pointer;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    transform: translate(-50%, -3%);
    padding: 0
}

    .banner-wrapper-down a {
        width: 100%;
        height: 100%;
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center
    }

    .banner-wrapper-down i {
        color: #15bef0
    }

.banner-cta {
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #15bef0;
    position: relative
}

    .banner-cta:hover {
        color: #15bef0
    }

    .banner-cta::after {
        content: "→";
        position: absolute;
        top: -2px;
        right: -20px;
        font-size: 20px;
    }

.contact-btn {
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #15bef0;
    position: relative
}

    .contact-btn:hover {
        color: #15bef0
    }

    .contact-btn::after {
        content: "→";
        position: absolute;
        top: 0px;
        right: -12px;
        font-size: 20px;
    }

.new-container {
    padding-top: 8rem;
    padding-bottom: 8rem
}

.new-wrapper {
    align-items: center
}

.new-wrapper-left h2 {
    color: var(--color-purple);
    font-weight: 800;
    font-size: 36px;
    line-height: 44px;
    width: 90%;
    margin-bottom: 1.5rem
}

.new-wrapper-left p {
    color: var(--color-dark);
    font-weight: 400;
    font-size: 18px;
    line-height: 32px;
    width: 90%
}

.video-container {
    margin-bottom: 3rem;
}

    .video-container iframe {
        width: 100%;
        height: 31.625rem
    }

.meet-container {
    padding-bottom: 8rem
}

    .meet-container .content img {
        width: 100%;
        max-height: 11.875rem;
        margin-bottom: 2rem
    }

    .meet-container .content p {
        font-weight: 400;
        font-size: 14px;
        line-height: 24px
    }

.reference-container {
    background: linear-gradient(135deg, #473192 0%, #15BEF0 100%);
    padding-bottom: 8rem;
    padding-top: 4rem;
    position: relative
}

    .reference-container .container {
        position: relative;
        z-index: 9
    }

    .reference-container .bg-image {
        position: absolute;
        right: 2rem;
        top: 0;
        z-index: -1
    }

    .reference-container .wrapper-first-right {
        display: flex;
        justify-content: center;
        align-items: center
    }

    .reference-container .wrapper-second-right {
        display: flex;
        justify-content: center;
        align-items: center
    }

.reference-title {
    font-weight: 800;
    font-size: 36px;
    line-height: 44px;
    color: #fff;
    margin-bottom: 1.5rem
}

.reference-text {
    font-weight: 400;
    font-size: 18px;
    line-height: 32px;
    color: #fff
}

    .reference-text span {
        font-weight: 700
    }

.success-container {
    padding-top: 8rem;
}

    .success-container h2 {
        margin-bottom: 62px;
    }

    .success-container .content {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        flex-direction: column;
        height: 330px;
    }

        .success-container .content h3 {
            font-weight: 800;
            font-size: 21px;
            line-height: 25px;
            color: var(--color-dark);
            margin-bottom: 1.5rem
        }

        .success-container .content p {
            font-weight: 400;
            font-size: 14px;
            line-height: 24px;
            color: var(--color-dark);
        }

    .success-container .content-info {
        display: flex;
        align-items: center
    }

        .success-container .content-info img {
            max-width: 64px;
            max-height: 64px;
            border-radius: 50%;
        }

        .success-container .content-info .name {
            margin-left: 1rem
        }

            .success-container .content-info .name p {
                color: var(--color-dark)
            }

                .success-container .content-info .name p:first-child {
                    margin-bottom: 4px;
                    font-weight: 700;
                    font-size: 14px;
                    line-height: 21px
                }

                .success-container .content-info .name p:last-child {
                    margin-bottom: unset;
                    font-weight: 400;
                    font-size: 12px;
                    line-height: 18px
                }

.blog-container {
    padding-top: 8rem;
    position: relative
}

    .blog-container .swiper-container {
        padding: 1rem;
        margin-bottom: 4rem
    }

    .blog-container .swiper-slide {
        box-shadow: 0px 4px 8px rgba(214,210,204,.5)
    }

        .blog-container .swiper-slide img {
            max-height: 242px;
        }

    .blog-container .swiper-slide-content {
        padding: 2.6rem 1.5rem 2rem 1.5rem
    }

        .blog-container .swiper-slide-content p {
            font-weight: 500;
            font-size: 20px;
            line-height: 30px;
            color: var(--color-dark);
            height: 90px;
        }

        .blog-container .swiper-slide-content .ticket-wrapper {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            margin-bottom: 2rem
        }

        .blog-container .swiper-slide-content .ticket-item {
            font-weight: 400;
            font-size: 14px;
            line-height: 21px;
            color: var(--color-dark);
            cursor: pointer;
            display: inline-block;
            margin-right: .2rem
        }

.blog-slider-navigation {
    position: absolute;
    top: 50%;
    transform: translateX(-50%);
    cursor: pointer
}

.blog-slider-left {
    left: 2rem
}

.blog-slider-right {
    right: 2rem
}

.faq-container {
    padding-top: 8rem;
    padding-bottom: 8rem
}

    .faq-container h2 {
        margin-bottom: 62px
    }

.faq-content {
    border-top: 1px solid #ccc;
    cursor: pointer
}

    .faq-content:last-child {
        border-bottom: 1px solid #ccc
    }

    .faq-content i {
        transition: .2s all ease-in-out;
        color: #15bef0
    }

    .faq-content .wrap-title {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: 2rem;
        margin-bottom: 1.5rem
    }

        .faq-content .wrap-title p {
            font-weight: 800;
            font-size: 21px;
            line-height: 25px;
            color: var(--color-dark);
            margin-bottom: 0;
            width: 80%;
        }

        .faq-content .wrap-title .icon {
            min-width: 3rem;
            min-height: 3rem;
            border: 2px solid #e6e6e6;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center
        }

    .faq-content .wrap-toggle {
        width: 95%
    }

        .faq-content .wrap-toggle p {
            font-weight: 400;
            font-size: 14px;
            line-height: 24px;
            color: var(--color-dark)
        }

.contact-container {
    padding-bottom: 8rem;
    position: relative
}

    .contact-container .bg-image {
        position: absolute;
        bottom: 0;
        width: 100%
    }

.contact-wrapper {
    align-items: flex-end;
    position: relative;
    z-index: 2
}

.contact-wrapper-right h3 {
    font-weight: 800;
    font-size: 48px;
    line-height: 64px;
    color: #fff;
    margin-bottom: 1.5rem
}

.contact-wrapper-right p {
    font-weight: 400;
    font-size: 21px;
    line-height: 25px;
    color: #fff;
    margin-bottom: 2rem
}

.contact-wrapper-right .banner-cta {
    color: #fff
}

.feature-container {
    padding-top: 8rem;
    padding-bottom: 8rem
}

.feature-wrap {
    margin-bottom: 4rem;
    align-items: center
}

    .feature-wrap:nth-child(even) {
        flex-direction: row-reverse
    }

.feature-right h3 {
    color: var(--color-purple);
    font-weight: 800;
    font-size: 24px;
    line-height: 36px;
    margin-bottom: 1.5rem
}

.feature-right p {
    font-weight: 400;
    font-size: 18px;
    line-height: 32px;
    color: var(--color-dark);
    margin-bottom: 1.5rem
}

.blog-page-container {
    padding-bottom: 4rem;
    padding-top: 4rem;
    background-color: #f3fdff
}

.blog-page-wrapper {
    display: flex;
    align-items: center;
    background-color: #fff;
    padding: 0
}

    .blog-page-wrapper .right-wrapper {
        padding-left: 8.43rem;
        padding-right: 6.43rem
    }

        .blog-page-wrapper .right-wrapper h4 {
            font-weight: 800;
            font-size: 16px;
            line-height: 24px;
            color: var(--color-dark);
            margin-bottom: 12px
        }

        .blog-page-wrapper .right-wrapper p {
            font-weight: 400;
            font-size: 12px;
            line-height: 18px;
            margin-bottom: 1.5rem;
            color: var(--color-dark);
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden
        }

        .blog-page-wrapper .right-wrapper .ticket-wrapper {
            display: flex;
            align-items: center
        }

            .blog-page-wrapper .right-wrapper .ticket-wrapper a {
                font-weight: 400;
                font-size: 12px;
                line-height: 18px;
                color: var(--color-dark);
                display: inline-block;
                margin-left: .5rem;
                text-decoration: none;
            }

        .blog-page-wrapper .right-wrapper .divider {
            display: block;
            margin-top: 1.5rem;
            margin-bottom: 1.5rem;
            height: 1px;
            width: 226px;
            background-color: #e6e6e6
        }

        .blog-page-wrapper .right-wrapper .banner-cta {
            color: var(--color-blue);
            font-size: 12px;
            line-height: 24px
        }

            .blog-page-wrapper .right-wrapper .banner-cta::after {
                top: -4px
            }

.blog-page-items {
    padding-bottom: 4rem;
    background-color: #f3fdff
}

.blog-page-item {
    background: #fff;
    margin-bottom: 2rem;
    height: calc(100% - 50px);
}

.blog-page-item-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    padding: 2rem;
}

    .blog-page-item-content h4 {
        font-weight: 800;
        font-size: 14px;
        line-height: 21px;
        color: var(--color-dark);
        height: 63px;
    }

    .blog-page-item-content p {
        font-weight: 400;
        font-size: 12px;
        line-height: 18px;
        color: var(--color-dark);
        height: 265px;
    }

    .blog-page-item-content .ticket-wrapper {
        display: flex;
        align-items: flex-start;
        margin-bottom: 1rem
    }

    .blog-page-item-content .ticket-item {
        display: inline-block;
        margin-left: .5rem;
        text-transform: capitalize;
        text-decoration: none;
        font-weight: 400;
        color: var(--color-dark);
        font-size: 12px;
        line-height: 18px
    }

    .blog-page-item-content .banner-cta {
        font-size: 12px;
        line-height: 24px
    }

        .blog-page-item-content .banner-cta::after {
            top: -4px
        }

    .blog-page-item-content .hr {
        height: 1px;
        background-color: #e6e6e6;
        margin-bottom: 1.5rem
    }

.blog-page-pagination {
    display: flex;
    align-items: center;
    justify-content: flex-end
}

    .blog-page-pagination span {
        cursor: pointer
    }

        .blog-page-pagination span i {
            color: #979797
        }

    .blog-page-pagination ul {
        display: flex;
        align-items: center;
        list-style-type: none;
        padding-left: 0;
        margin-bottom: 0;
        margin-left: .5rem;
        margin-right: .5rem
    }

        .blog-page-pagination ul li:not(:first-child) {
            margin-left: 1rem
        }

        .blog-page-pagination ul li a {
            color: #c4c4c4;
            text-decoration: none
        }

.footer {
    background-image: url(/img/svg/footer-background.svg);
    background-repeat: no-repeat;
    background-position: right bottom
}

.footer-top {
    padding-top: 6rem;
    padding-bottom: 4rem
}


.footer-content-wrapper ul {
    padding-left: unset;
    list-style-type: none
}

    .footer-content-wrapper ul li {
        margin-bottom: 1rem
    }

        .footer-content-wrapper ul li a {
            display: inline-block;
            color: var(--color-dark);
            text-decoration: none;
            text-transform: capitalize
        }

.footer-bottom {
    border-top: 1px solid #d6d2cc;
    padding-top: 2rem;
    padding-bottom: 2rem
}

    .footer-bottom .company {
        font-weight: 400;
        font-size: 14px;
        line-height: 17px;
        color: var(--color-dark)
    }

.footer-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end
}

    .footer-nav a {
        color: var(--color-dark);
        display: inline-block;
        text-decoration: none;
        text-transform: capitalize;
        font-weight: 400;
        font-size: 14px;
        line-height: 17px
    }

        .footer-nav a:not(:last-child) {
            margin-right: 3.5rem
        }

.footer-title {
    font-weight: 700;
    font-size: 21px;
    line-height: 25px;
    color: var(--color-dark);
    margin-bottom: 1.5rem
}

.footer-adress {
    font-weight: 400;
    font-size: 14px;
    color: var(--color-dark)
}

.footer-mail {
    font-weight: 400;
    font-size: 14px;
    color: var(--color-dark);
    text-decoration: none;
    display: inline-block;
    margin-bottom: 1rem
}

    .footer-mail:hover {
        color: var(--color-dark)
    }

.footer-social {
    display: flex;
    align-items: center
}

    .footer-social a {
        display: inline-block
    }

        .footer-social a:not(:last-child) {
            margin-right: .5rem
        }

        .footer-social a i {
            color: #15bef0
        }

.footer-form {
    height: 50px;
    border: 1px solid #D6D2CC;
    border-radius: 50px;
    position: relative;
}

    .footer-form input {
        width: calc(100% - 55px);
        height: 100%;
        border-radius: 50px;
        background: transparent;
        border: none;
        outline: none;
        color: #2E2E2F;
        padding-left: 10px;
    }

        .footer-form input::placeholder {
            font-weight: 400;
            font-size: 16px;
            line-height: 48px;
            color: #2E2E2F;
        }

    .footer-form button {
        position: absolute;
        right: 0;
        height: 100%;
        width: 50px;
        outline: none;
        color: #fff;
        background-color: var(--color-purple);
        border-radius: 50px;
        border: 1px solid #FFFFFF;
    }

.footer-check {
    margin-top: 1rem;
}

    .footer-check .check {
        display: flex;
        align-items: flex-start;
        margin-bottom: 1rem;
    }

    .footer-check input {
        display: none;
    }

        .footer-check input:checked + .cb i {
            visibility: visible;
        }

    .footer-check .check .cb {
        display: inline-block;
        min-width: 1rem;
        min-height: 1rem;
        max-height: 1rem;
        border: 1px solid #D6D2CC;
        border-radius: 2px;
        position: relative;
    }

        .footer-check .check .cb i {
            visibility: hidden;
            color: #20A2DE;
            font-size: 1rem;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%,-50%);
        }

    .footer-check .check span {
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        color: #22221F;
    }

        .footer-check .check span:last-child {
            margin-left: 1rem;
        }

.blog-detail-container {
    margin-top: 3.375rem;
    padding-bottom: 4rem
}

.blog-detail-return {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: var(--color-dark);
    font-weight: 400;
    font-size: 10px;
    line-height: 10px
}

    .blog-detail-return:hover {
        color: var(--color-dark)
    }

.blog-detail-title {
    color: var(--color-purple);
    font-size: 36px;
    line-height: 44px;
    font-weight: 800
}

.blog-detail-image {
    padding-top: 2rem;
    margin-bottom: 1.5rem
}

.blog-detail-text {
    color: var(--color-dark);
    font-size: 1.25rem;
    line-height: 1.875rem;
    font-weight: 400;
    margin-bottom: 2rem
}

.blog-detail-social {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #d8d8d8;
    padding-top: 1rem
}

    .blog-detail-social .left {
        display: flex;
        align-items: center
    }

        .blog-detail-social .left a {
            color: var(--color-dark);
            display: inline-block;
            margin-left: .5rem;
            text-transform: capitalize;
            text-decoration: none;
            font-size: 12px;
            line-height: 18px
        }

    .blog-detail-social .right {
        display: flex;
        align-items: center
    }

        .blog-detail-social .right span {
            display: inline-block;
            cursor: pointer
        }

            .blog-detail-social .right span a {
                color: black;
            }

            .blog-detail-social .right span:not(:first-child) {
                margin-left: 1rem
            }

.blog-detail-slider {
    background-color: #f3fdff;
    padding-top: 4rem
}

    .blog-detail-slider .main-title {
        text-align: left;
        font-size: 24px;
        line-height: 36px
    }

    .blog-detail-slider .swiper-container {
        padding-bottom: 4rem
    }

    .blog-detail-slider .swiper-slide {
        background-color: #fff;
        height: calc(100% + 200px);
    }

        .blog-detail-slider .swiper-slide img {
            max-height: 139px;
        }

    .blog-detail-slider .swiper-slide-content {
        padding: 1.5rem
    }

        .blog-detail-slider .swiper-slide-content h4 {
            font-weight: 800;
            font-size: 14px;
            line-height: 21px;
            color: var(--color-dark);
            margin-bottom: 12px;
            height: 63px;
        }

        .blog-detail-slider .swiper-slide-content p {
            font-weight: 400;
            font-size: 12px;
            line-height: 18px;
            color: var(--color-dark);
            height: 275px;
        }

        .blog-detail-slider .swiper-slide-content .ticket-wrapper {
            display: flex;
            align-items: center;
            margin-bottom: 1rem
        }

        .blog-detail-slider .swiper-slide-content .ticket-item {
            display: inline-block;
            margin-left: .5rem;
            text-transform: capitalize;
            text-decoration: none;
            font-weight: 400;
            color: var(--color-dark);
            font-size: 12px;
            line-height: 18px
        }

        .blog-detail-slider .swiper-slide-content .hr {
            height: 1px;
            background-color: #e6e6e6;
            margin-bottom: 1.5rem
        }

    .blog-detail-slider .swiper-pagination {
        display: none
    }

.partners-container {
    padding-top: 4rem;
    padding-bottom: 4rem
}

    .partners-container h3 {
        color: var(--color-purple);
        text-align: center;
        font-weight: 800;
        font-size: 36px;
        line-height: 44px
    }

    .partners-container .right-wrapper {
        background-color: #fff;
        padding-top: 4rem;
        padding-bottom: 2rem;
        padding-left: 2rem;
        padding-right: 2rem
    }

        .partners-container .right-wrapper .title {
            font-weight: 800;
            font-size: 16px;
            line-height: 24px;
            color: var(--color-dark);
            margin-bottom: 2.5rem
        }

        .partners-container .right-wrapper .form-group {
            display: flex;
            flex-direction: column;
            margin-bottom: 1rem
        }

            .partners-container .right-wrapper .form-group label {
                font-weight: 800;
                font-size: 14px;
                line-height: 24px
            }

            .partners-container .right-wrapper .form-group input {
                height: 46px;
                border-radius: 8px;
                border: 1px solid #d6d2cc;
                outline: none;
            }

            .partners-container .right-wrapper .form-group select {
                height: 46px;
                border-radius: 8px;
                border: 1px solid #d6d2cc;
                outline: none;
                padding-right: 1rem;
                padding-left: .5rem;
                -webkit-appearance: none;
                -moz-appearance: none;
                appearance: none;
                background: url(../img/svg/down-chevron.svg) no-repeat calc(95% + 3px) center
            }

            .partners-container .right-wrapper .form-group span {
                color: red;
                font-size: 14px
            }

        .partners-container .right-wrapper .privacy {
            font-weight: 400;
            font-size: 14px;
            line-height: 21px;
            color: var(--color-dark);
            margin-bottom: 2rem
        }

            .partners-container .right-wrapper .privacy a {
                color: var(--color-blue)
            }

        .partners-container .right-wrapper .check {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1rem
        }

            .partners-container .right-wrapper .check:last-child {
                margin-bottom: 2rem
            }

            .partners-container .right-wrapper .check span {
                color: var(--color-dark);
                font-weight: 400;
                font-size: 16px;
                line-height: 24px
            }

                .partners-container .right-wrapper .check span:last-child {
                    margin-left: 2rem
                }

            .partners-container .right-wrapper .check .cb {
                display: inline-block;
                min-width: 1rem;
                min-height: 1rem;
                border: 1px solid #d6d2cc;
                border-radius: 2px;
                position: relative
            }

                .partners-container .right-wrapper .check .cb img {
                    position: absolute;
                    top: 50%;
                    left: 50%;
                    transform: translate(-50%, -50%);
                    display: none
                }

            .partners-container .right-wrapper .check input {
                display: none
            }

                .partners-container .right-wrapper .check input:checked + .cb img {
                    display: block
                }

        .partners-container .right-wrapper button {
            border: none;
            background: none
        }

.success-wrapper {
    text-align: center;
    padding-top: 128px;
    padding-bottom: 128px;
}

    .success-wrapper h1 {
        color: #473192;
        font-size: 48px;
        margin-top: 32px;
    }

.error-container {
    position: relative;
    background-image: url(/img/upload/desktop-error.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 100vh;
}

    .error-container .content {
        position: absolute;
        top: 50%;
        right: 50px;
        transform: translateY(-50%);
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        justify-content: flex-end;
    }

        .error-container .content span {
            color: #4a56cc;
            font-size: 64px;
            line-height: 78.08px;
            font-weight: 400;
        }

            .error-container .content span:first-child {
                font-weight: 700;
            }

        .error-container .content a {
            text-decoration: none;
            background: linear-gradient(90deg, #3e63bf 0%, #348ac7 100%);
            border-radius: 40px;
            font-size: 32px;
            font-weight: 600;
            border: 0;
            padding: 1.25rem 2.875rem;
            color: #fff;
            display: inline-block;
            margin-top: 1rem;
        }

.welcalm #cookieseal-banner {
    background-color: #473192;
}

    .welcalm #cookieseal-banner .cookieseal-banner-body button {
        background-color: #15BEF0;
    }

@media(max-width: 767px) {
    .chat {
        display: none
    }

    .mobile-direction {
        flex-direction: column-reverse
    }

    .main-title {
        font-size: 24px;
        line-height: 32px
    }

    .main-text {
        font-size: 12px;
        line-height: 24px
    }

    .header .logo img {
        max-width: 90px
    }

    .header .nav {
        display: none
    }

    .header .contact {
        display: none
    }

    .header .hamburger-icon {
        display: block
    }

    .hamburger-top {
        padding: 1rem;
        display: flex;
        align-items: center;
        justify-content: space-between
    }

        .hamburger-top img {
            max-width: 5rem
        }

        .hamburger-top i {
            font-size: 1.5rem;
            color: #fff
        }

    .hamburger-wrap {
        background: linear-gradient(135deg, #473192 0%, #15BEF0 100%);
        display: block;
        position: fixed;
        height: 100vh;
        background-color: #fff;
        width: 100%;
        z-index: 999;
        transform: translateX(-100%);
        transition: .1s transform ease;
        top: 0;
        left: -100%;
    }

        .hamburger-wrap nav {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            padding-top: 5rem
        }

            .hamburger-wrap nav a {
                font-weight: 700;
                font-size: 16px;
                line-height: 24px;
                color: #fff;
                text-transform: capitalize;
                text-decoration: none;
                display: inline-block;
                margin-bottom: 1rem
            }

                .hamburger-wrap nav a:last-child {
                    border: 2px solid #fff;
                    border-radius: 10px;
                    padding: 12px 22px
                }

    .banner-wrapper {
        height: 30rem;
        align-items: flex-end;
        justify-content: center
    }

    .banner-wrapper-down {
        display: none
    }

    .banner-wrapper-right {
        height: unset;
        justify-content: center
    }

    .banner-wrapper .wrapper-left h2 {
        color: var(--color-dark);
        font-size: 18px;
        line-height: 27px
    }

        .banner-wrapper .wrapper-left h2 span {
            font-size: 36px;
            line-height: 36px;
            width: 50%
        }

    .banner-wrapper .wrapper-left p {
        font-size: 12px;
        line-height: 24px;
        color: var(--color-dark);
        width: 100%
    }

    .banner-wrapper .wrapper-left img {
        display: none
    }

    .banner-wrapper .wrapper-right {
        justify-content: center
    }

        .banner-wrapper .wrapper-right img {
            max-width: 16rem
        }

    .banner-mobile-position {
        position: absolute;
        z-index: 9;
        bottom: -17rem
    }

    .new-container {
        padding-top: 18rem;
        padding-bottom: 4rem
    }

    .new-wrapper {
        flex-direction: column-reverse
    }

    .new-wrapper-right {
        margin-bottom: 2rem;
        display: flex;
        justify-content: center
    }

        .new-wrapper-right img {
            max-width: 16rem
        }

    .new-wrapper-left h2 {
        font-size: 18px;
        line-height: 27px
    }

    .new-wrapper-left p {
        font-size: 12px;
        line-height: 24px
    }

    .video-container {
        margin-bottom: 3rem;
    }

        .video-container iframe {
            height: 9rem
        }

    .meet-container {
        padding-bottom: 4rem
    }

        .meet-container .content {
            margin-bottom: 1rem
        }

            .meet-container .content img {
                max-height: 11.25rem
            }

            .meet-container .content p {
                font-size: 12px;
                line-height: 24px
            }

    .reference-container {
        padding-bottom: 4rem
    }

        .reference-container .wrapper-first-right img {
            max-width: 20.125rem
        }

        .reference-container .bg-image {
            left: 0;
            top: 0;
            right: 0
        }

            .reference-container .bg-image img {
                width: 100%
            }

    .reference-title {
        font-size: 18px;
        line-height: 36px;
        margin-bottom: 12px
    }

    .reference-text {
        font-size: 12px;
        line-height: 24px
    }

    .success-container {
        padding-top: 4rem;
    }

        .success-container .content {
            margin-bottom: 2rem;
            height: unset;
        }

            .success-container .content h3 {
                font-size: 16px;
                line-height: 24px
            }

            .success-container .content p {
                font-size: 14px;
                line-height: 24px;
                margin-bottom: 2rem
            }

    .blog-container {
        padding-top: 4rem;
        padding-bottom: 4rem
    }

        .blog-container .swiper-container {
            padding: 0 0 1rem .5rem;
            margin-bottom: 2rem
        }

        .blog-container .swiper-slide img {
            max-height: 147px;
        }

        .blog-container .swiper-slide-content p {
            font-size: 16px;
            line-height: 24px;
            height: 72px;
        }

        .blog-container .swiper-slide-content .ticket-wrapper {
            margin-bottom: 1rem
        }

    .blog-slider-navigation {
        display: none
    }

    .faq-container {
        padding-top: 0;
        padding-bottom: 4rem;
        position: relative;
        z-index: 1;
    }

        .faq-container h2 {
            margin-left: auto;
            margin-right: auto;
            width: 80%;
        }

    .faq-content .wrap-title {
        margin-top: 1rem;
        margin-bottom: 1rem
    }

        .faq-content .wrap-title p {
            font-size: 16px;
            line-height: 24px;
        }

    .contact-container {
        padding-bottom: 2rem;
    }

        .contact-container .bg-image img {
            max-height: 600px;
        }

    .contact-wrapper-left {
        display: flex;
        justify-content: center;
        margin-bottom: 2rem
    }

        .contact-wrapper-left img {
            max-width: 16rem
        }

    .contact-wrapper-right h3 {
        font-size: 24px;
        line-height: 36px;
        margin-bottom: 12px
    }

    .contact-wrapper-right p {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 1rem
    }

    .feature-container {
        padding-top: 4rem;
        padding-bottom: 4rem
    }

    .feature-wrap {
        margin-bottom: 2rem
    }

    .feature-left {
        display: flex;
        justify-content: center;
        margin-bottom: 1rem
    }

        .feature-left img {
            max-width: 16rem
        }

    .feature-right h3 {
        font-size: 18px;
        line-height: 27px;
        margin-bottom: 12px
    }

    .feature-right p {
        font-size: 12px;
        line-height: 24px
    }

    .blog-page-container {
        display: none
    }

    .blog-page-items {
        padding-top: 4rem
    }

    .blog-page-item {
        margin-bottom: 2rem
    }

    .blog-page-item-content {
        padding: 1rem 2rem 2rem 2rem
    }

    .blog-page-pagination {
        justify-content: center
    }

    .footer {
        background: none
    }

    .footer-top {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding-top: 2rem;
        padding-bottom: 1rem
    }

        .footer-top .wrapper-right {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
        }

    .footer-bottom {
        padding-top: 1rem;
        flex-direction: column
    }

        .footer-bottom .company {
            font-size: 12px;
            line-height: 15px;
            text-align: center
        }

    .footer-logo {
        margin-bottom: 2rem;
        text-align: center;
    }

        .footer-logo img {
            max-width: 90px
        }

    .footer-title {
        text-align: center;
        font-size: 16px;
        line-height: 24px
    }

    .footer-content-wrapper ul:last-child {
        margin-left: 4rem
    }

    .footer-content-wrapper ul li a {
        font-size: 12px;
        line-height: 24px
    }

    .footer-adress {
        font-size: 12px;
        line-height: 24px;
        text-align: center
    }

    .footer-mail {
        font-size: 12px;
        line-height: 24px
    }

    .footer-nav {
        flex-direction: column
    }

        .footer-nav a {
            margin-bottom: 12px
        }

            .footer-nav a:not(:last-child) {
                margin-right: unset
            }

    .footer-content-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .footer-form {
        width: 80%;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-check .check span {
        font-size: 10px;
        line-height: 18px;
    }

    .blog-detail-container {
        margin-top: 2rem;
        padding-bottom: 2rem
    }

    .blog-detail-title {
        font-size: 18px;
        line-height: 27px;
        text-align: left
    }

    .blog-detail-image {
        padding-top: 1rem;
        margin-bottom: 2rem
    }

    .blog-detail-text {
        text-align: center;
        font-size: 12px;
        line-height: 18px
    }

    .blog-detail-slider {
        padding-bottom: 2rem
    }

        .blog-detail-slider .swiper-slide-content p {
            font-size: 12px;
            line-height: 18px
        }

        .blog-detail-slider .swiper-slide-content .ticket-item {
            font-size: 8px;
            line-height: 12px
        }

        .blog-detail-slider .swiper-pagination {
            display: block;
            bottom: 0
        }

        .blog-detail-slider .swiper-pagination-bullet {
            background: #979797;
            width: 1rem;
            height: .5rem
        }

        .blog-detail-slider .swiper-pagination-bullet-active {
            background: var(--color-purple)
        }

    .partners-container {
        padding-top: 2rem
    }

        .partners-container h3 {
            display: none
        }

        .partners-container .left-wrapper {
            display: flex;
            justify-content: center
        }

            .partners-container .left-wrapper img {
                max-width: 16rem
            }

        .partners-container .right-wrapper {
            padding-top: 2rem
        }

            .partners-container .right-wrapper .title {
                font-size: 14px;
                line-height: 21px;
                text-align: center
            }

            .partners-container .right-wrapper .privacy {
                font-weight: 400;
                font-size: 12px;
                line-height: 18px
            }

            .partners-container .right-wrapper .check span {
                font-weight: 400;
                font-size: 10px;
                line-height: 15px
            }

    .success-wrapper {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .error-container {
        background-image: url(/img/upload/mobile-error.png);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
    }

        .error-container .content {
            right: 10px;
        }

            .error-container .content span {
                font-size: 36px;
                line-height: 43.92px;
            }

            .error-container .content a {
                font-size: 20px;
                padding: 0.75rem 1.875rem;
            }
}


@media (min-width:1280px) and (max-width:1281px) {
    .banner-wrapper .wrapper-left {
        margin-top: 48px;
    }

        .banner-wrapper .wrapper-left p {
            width: 100%;
            line-height: 24px;
        }

        .banner-wrapper .wrapper-left h2 span {
            font-size: 52px;
            line-height: 52px;
        }

    .banner-wrapper .wrapper-right img {
        max-height: 450px;
    }
}

.video-container {
    width: 100%;
}
