@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/*--------------------------------------------------------------
# General Styles
--------------------------------------------------------------*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
}

a {
    text-decoration: none;
}

.main-container {
    max-width: 92%;
    margin: 0 auto;
}

:root {
    --primary-color: #3A2357;
    --second-color: #272727;
    --third-color: #fff
}

@media (max-width: 1220px) {
    .main-container {
        max-width: 90%;
    }
}

.active-element {
    color: var(--primary-color);
}

/*--------------------------------------------------------------
# Section Navigation
--------------------------------------------------------------*/
.top-menu {
    width: 100%;
    padding: 30px 0;

    position: relative;

}

.top-menu .navbar {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;

}

.navbar .logo-website {
    width: 108px;
    height: 64px;
    object-fit: cover;
}

.navbar .links {
    display: flex;
    gap: 50px;
    align-items: center;
}

.navbar .links li {
    list-style: none;
    padding: 0 8px;
}

.navbar .links li a {

    color: var(--third-color);
    font-family: Inter;
    font-size: 16px;
    font-weight: 400;
    line-height: 19.36px;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;

}

.my-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 1000;
}

.my-overlay.active {
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;

}

.nav-links.active {
    opacity: 1;
    visibility: visible;
    left: 0;
}

#menu-toggle,
#img-logo {
    display: none;
}

.bx-x {
    cursor: pointer;
}

/*Active page*/
.navbar .links li a.active-element::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--third-color);
    transition: width 0.3s ease;
}

.navbar .links li a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--third-color);
    transition: width 0.3s ease;
}

.navbar .links li a:hover::after {
    width: 100%;
}

.navbar .links li a {
    position: relative;
}

.ellipse-1-postion {
    position: absolute;
    top: 12px;
    left: 0;
}

.display-icon {
    display: none;
}

.bg-color-primary {
    background-color: var(--primary-color);
}

@media (max-width: 1100px) {
    .hiden-image-nav {
        display: none;
    }

    .display-icon {
        display: initial;
    }

    .color-icon-menu {
        color: var(--third-color);
    }

    .size-icon-menu {
        font-size: 30px !important;
    }

    .navbar .links {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
        margin-top: 30px;
    }

    .top-menu .navbar {
        flex-direction: row-reverse;
    }

    .navbar .bx-menu-alt-left {
        display: block;
    }

    .top-menu .navbar .nav-links {
        opacity: 0;
        visibility: hidden;
        height: 100%;
        position: fixed;
        top: 0;
        left: -100%;
        max-width: 300px;
        width: 100%;
        padding: 20px;
        transition: all 0.5s ease;
        z-index: 1000;
        overflow: auto;

    }

    .sidebar-logo {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .bx-menu-alt-left {
        display: block;
        cursor: pointer;
    }

    #menu-toggle,
    #img-logo {
        display: initial;
    }

    .nav-links {
        display: block;
    }

}

/*--------------------------------------------------------------
# Section Hero
--------------------------------------------------------------*/
.title-hero {
    font-family: Inter;
    color: var(--third-color);
    font-size: 44px;
    font-weight: 600;
    line-height: 62.4px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    padding-right: 50px;

}

.content-hero {
    justify-content: space-between;
    display: flex;
    background-color: var(--primary-color);
}

.left-hero {
    width: 50%;
    position: relative;
}

.right-hero {
    width: 46%;
    position: relative;
}

.hero-data {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 83%;
}

.position-img-ellipse-2 {
    position: absolute;
    bottom: 0;
    width: 76px;
}

.position-img-ellipse-3 {

    position: absolute;
    width: 282px;
    max-width: 100%;
    bottom: 0px;
    right: 0px;
}

video {
    border: 6px solid #fff;
    border-radius: 12px;
    width: 500px;
    max-width: 100%;
    height: auto;
    transition: width 0.3s ease, border 0.3s ease;
}

.swiper-container {
    height: 600px;

    overflow: hidden;
}

.swiper-slide-active video {
    border: 12px solid #D53F66 !important;
    border-radius: 12px !important;
    width: 500px;
    max-width: 100%;
    height: auto;
}

.swiper-wrapper {
    width: 50%;
}

.swiper-slide {
    text-align: center;
    width: auto;
}


@media(max-width :1100px) {

    .content-hero {
        flex-direction: column;
        gap: 30px;
    }

    .hero-data {
        position: initial;
        transform: none;
        width: 100%;
    }

    .left-hero,
    .right-hero {
        width: 100%;
    }

    .title-hero {
        padding-right: 30px;
        padding-left: 30px;
    }

    .position-img-ellipse-2 {
        display: none;
    }

    .swiper-container {
        height: 330px;
        width: 100%;
        overflow: hidden;
    }

}

@media(max-width : 768px) {
    .title-hero {
        font-size: 28px;
        line-height: 42.4px;
    }

    .swiper-container {
        padding: 0 25px;
        height: 300px;
    }
}

@media(max-width : 467px) {
    .swiper-container {
        height: 240px;

    }

    .position-img-ellipse-3 {
        width: 215px;
    }
}

/*--------------------------------------------------------------
# Section Match
--------------------------------------------------------------*/
.match-per-day {
    position: relative;
}

.style-img-country {
    width: 80px;
    height: 60px;
}

.news-match-ticket {
    display: flex;
    justify-content: space-between;
}

.left-match {
    width: 48%;
}

.right-match {
    width: 42%;
    position: relative;
}

.img-rest-news {
    width: 98px;
    height: 70px;
    object-fit: cover;
    border-radius: 5px;
}

.match-per-day {
    padding-top: 150px;
}

.match-ticket {
    font-family: Inter;
    font-size: 56px;
    font-weight: 600;
    line-height: 64.4px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--second-color);
    margin-bottom: 50px;

}

.list-team {
    font-family: Inter;
    font-size: 32px;
    font-weight: 600;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #001B59;
    margin-bottom: 40px;
}

.country-flags {
    display: flex;
    gap: 70px;
    flex-wrap: wrap;
}

.other-country {
    background-color: #E3FAFF;
    width: 80px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
}

.other-country p {
    font-family: Inter;
    font-size: 40px;
    font-weight: 700;
    line-height: 48.41px;
    letter-spacing: -0.04em;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #DB4446;

}

.list-country {
    padding-bottom: 100px;
}
.image-news {
    position: relative;
}
.categroy {
    background-color: #451F61;
    position: absolute;
    bottom: 5px;
    left: 4px;
    padding: 4px;
}
.categroy p {
    font-family: Inter;
    font-size: 10px;
    font-weight: 600;
    line-height: var(--lineheight22);
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--third-color);
  
}
.title-news-section {
    font-family: Inter;
    font-size: 32px;
    font-weight: 600;
    line-height: var(--lineheight22);
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #001B59;
    margin-bottom: 30px;
}

.img-first-news {
    width: 372px;
    height: 235px;
    object-fit: cover;
    border-radius: 5px;
    max-width: 100%;
}

.first-title-news {
    font-family: Inter;
    font-size: 22px;
    font-weight: 400;
    line-height: var(--lineheight22);
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #111111;

}

.rest-title-news {
    font-family: Inter;
    font-size: 16px;
    font-weight: 400;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #111111;
}

.all-news {
    display: flex;
    justify-content: space-between;

}

.first-news,
.rest-news {
    width: 48%;
}

.news-data {
    display: flex;
    gap: 20px;
    align-items: center;
}

.rest-all-news {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.name-country {
    font-family: Inter;
    font-size: 24px;
    font-weight: 700;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #111111;
    color: var(--third-color);
}

.match-and-country {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: space-evenly;
    width: 80%;
    align-items: center;
}

.flag-of-country {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.vs {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 999px;
    width: 22px;
    height: 25px;
    padding: 20px 16px;
    background-color: var(--third-color);
}

.vs p {
    font-family: Inter;
    font-size: 24px;
    font-weight: 700;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #451F61;

}

.match-euro {
    border-radius: 8px;
}

.all-match-euro {
    width: 457px;
    max-width: 100%;
    border-radius: 8px;
    border: 6px solid #43CAE6;
    background-color: #43CAE6;
    float: right;
    margin-bottom: 30px;
}

.match-day {
    position: relative;
    background: #3A2357;
    border-radius: 8px;
    width: 455px;
    max-width: 100%;
    height: 180px;
}

.ellipse-5-position {
    position: absolute;
    right: 0;
}

.ellipse-4-position {
    position: absolute;
    bottom: 0;
    left: 4px;
}

.tickets {
    background-color: #43CAE6;
    padding: 30px;
    border-radius: 8px;
    width: 457px;
    max-width: 100%;
    float: right;
    margin-bottom: 30px;
}

.title-tickets {
    font-family: Inter;
    font-size: 16px;
    font-weight: 700;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #001B59;
    text-align: center;
    margin-bottom: 20px;
}

.desc-tickets {
    font-family: Inter;
    font-size: 32px;
    font-weight: 600;
    line-height: 42px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #000;
    margin-bottom: 30px;
}

.buy-tickets {
    text-align: center;
}

.btn-buy-tickets {
    font-family: Inter;
    font-size: 22px;
    font-weight: 700;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #000;
    text-align: center;
    padding: 15px 25px;
    background-color: #F1BF00;
    border-radius: 8px;
}

.style-match-1 {
    border: 1px solid #DDC2FF !important;
    background-color: #fff;
}

.bg-color-match {
    background-color: #fff !important;
}

.style-vs {
    background-color: #ED72AA !important;

    border: 2px solid #DB4446;
}

.text-color {
    color: #000;
}

.swiper-button-next,
.swiper-button-prev {
    position: initial !important;
    color: #005BBF !important;
    margin: 0 !important;
    width: 30px !important;
    height: 30px !important;
    border-radius: 50%;
    background-color: #fff;
    border: 2px solid #4399E6;

}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 16px !important;
    color: #005BBF !important;
    font-weight: bold;
}

.btn-carousel {
    display: flex;
    justify-content: space-between;
    height: fit-content;
    height: 50px;
    flex-direction: row-reverse;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

.calendar {
    border: 1px solid #DB4446;
    border-radius: 25px;
    padding: 8px 12px;
}

.calendar p {
    font-family: Inter;
    font-size: 16px;
    font-weight: 700;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #000;
    text-align: center;
}

.date-match {
    display: flex;
    align-items: center;
    width: 445px;
    max-width: 100%;
    float: right;
    margin-bottom: 15px;
    justify-content: space-between
}

.ellipse-6-position {
    position: absolute;
    width: 180px;
    max-width: 100%;
    bottom: 0;
    right: 0;
}

@media(max-width : 1100px) {

    .first-news,
    .rest-news {
        width: 100%;
    }

    .all-news {
        flex-direction: column;
        gap: 30px;
    }

    .right-match {
        width: 48%;
    }

    .match-ticket {
        margin-bottom: 0;
    }
}

@media(max-width : 991px) {
    .date-match {
        width: 100%;
    }

    .news-match-ticket {
        flex-direction: column;
        gap: 30px;
    }

    .left-match,
    .right-match {
        width: 100%;
    }

    .country-flags {
        gap: 30px;
    }

    .match-per-day,
    .list-country {
        padding-top: 20px;
    }

    .match-ticket {
        font-size: 40px;
    }

    .name-country {
        font-size: 16px;
    }

    .btn-buy-tickets {
        padding: 15px 15px;
        font-size: 16px;
    }

    .all-match-euro,
    .match-day,
    .tickets {
        width: 100%;
    }

    .all-news {
        flex-direction: row;

    }
}

@media(max-width : 768px) {
    .all-news {
        flex-direction: column;
    }
}

/*--------------------------------------------------------------
# Section Augmented Reality
--------------------------------------------------------------*/
#augmented-reality {
    margin-top: 50px;
}

.description-augmented-reality {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.text-1-augmented-reality {
    font-family: Inter;
    font-size: 24px;
    font-weight: 700;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #D53F66;
    text-align: left;
}

.text-2-augmented-reality {
    font-family: Inter;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #2D2E2E;
}

.title-augmented-reality {
    font-family: Inter;
    font-size: 45px;
    font-weight: 600;
    line-height: 64.4px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #27272A;

}

.content-augmented-reality {
    display: flex;
    margin-top: 85px;
    gap: 30px;
    align-items: center;
}

.description-augmented-reality {
    width: 52%;
}

.video-augmented-reality {
    width: 1000px;
    max-width: 100%;
}

@media(max-width : 991px) {
    .content-augmented-reality {
        flex-direction: column;
    }

    .description-augmented-reality {
        width: 100%;
    }

    .title-augmented-reality {
        line-height: 40px;
        font-size: 36px;
    }

    .content-augmented-reality {
        margin-top: 30px;
    }

    .description-augmented-reality {
        gap: 30px;
    }

    #augmented-reality {
        margin-top: 10px;
    }
}

/*--------------------------------------------------------------
# Section Pre Footer
--------------------------------------------------------------*/
.content-pre-footer {
    background-color: #43CAE6;
    margin-top: 200px;
    padding: 140px 0;
    text-align: center;
    position: relative;
}

.picture-qr-code {
    width: 200px;
    max-width: 100%;
    height: 200px;
}

.scan-text {
    margin-top: 20px;
    margin-bottom: 20px;
    font-family: Inter;
    font-size: 28px;
    font-weight: 600;
    line-height: 38.73px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--third-color)
}

.descritpion-scan {
    font-family: Inter;
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #2D2E2E;
    padding: 0 15px;
}

.bg-prefooter {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.position-img-ellipse-8 {
    position: absolute;
    left: 0;
    bottom: 0;
}

.position-img-ellipse-7 {
    position: absolute;
    top: 0;
    right: 0;
}
.text-underline {
    text-decoration: underline !important;
}
@media(max-width :991px) {

    .position-img-ellipse-8,
    .position-img-ellipse-7 {
        width: 92px;
        max-width: 100%;
    }
}


/*--------------------------------------------------------------
# Section Footer
--------------------------------------------------------------*/
footer {
    margin-top: 200px;
    background-color: #3A2357;
    position: relative;
}

.details-footer {
    padding: 50px 0;
    display: flex;
}

.left-footer,
.right-footer {
    width: 42%;
}

.logo-footer {
    width: 320px;
    height: 320px;
    max-width: 100%;
}

.right-footer {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.widget-footer {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.title-widget {
    font-family: Inter;
    font-size: 16px;
    font-weight: 600;
    line-height: 19.36px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #43CAE6;
}

.link {
    color: #43CAE6;
    font-family: Inter;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    cursor: pointer;
    text-decoration: none;
}

.social-media {
    display: flex;
    align-items: center;
    gap: 10px;
}

.position-img-ellipse-9 {
    position: absolute;
    bottom: 0;
    right: 0;
}

@media(max-width :991px) {
    .position-img-ellipse-9 {
        width: 150px;
        max-width: 100%;
    }

    .details-footer {
        padding: 0 0 20px 0;
    }
}

@media(max-width :768px) {

    .left-footer,
    .right-footer {
        width: 100%;
    }

    .details-footer {
        flex-direction: column;
    }

    .right-footer {
        flex-direction: column;
        gap: 40px;
        align-items: flex-start
    }
}

