html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

    blockquote:before,
    blockquote:after,
    q:before,
    q:after {
        content: "";
        content: none;
    }

table {
    border-collapse: collapse;
    border-spacing: 0;
}

*,
*::after,
*::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    color: #040807;
}

a {
    text-decoration: none;
    transition: all 0.3s;
}

.container {
    padding: 0 6%;
}

@media only screen and (max-width: 1110px) {
    .container {
        padding: 0 2.8%;
    }
}

@media only screen and (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

.title {
    display: inline-block;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 400;
    line-height: 20px;
    font-style: italic;
}

@media only screen and (max-width: 990px) {
    .title {
        font-size: 16px;
        line-height: 16px;
    }
}

@media only screen and (max-width: 768px) {
    .title {
        font-size: 14px;
        line-height: 14px;
    }
}

.section-desc {
    font-size: 32px;
    line-height: 39px;
}

@media only screen and (max-width: 990px) {
    .section-desc {
        font-size: 24px;
        line-height: 28px;
    }
}

@media only screen and (max-width: 768px) {
    .section-desc {
        line-height: 32px;
    }
}

@font-face {
    font-family: "Montserrat";
    src: url("../fonts/Montserrat-Bold.woff2") format("woff2"), url("../fonts/Montserrat-Bold.woff") format("woff");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Montserrat";
    src: url("../fonts/Montserrat-SemiBold.woff2") format("woff2"), url("../fonts/Montserrat-SemiBold.woff") format("woff");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Montserrat";
    src: url("../fonts/Montserrat-Medium.woff2") format("woff2"), url("../fonts/Montserrat-Medium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Montserrat";
    src: url("../fonts/Montserrat-Regular.woff2") format("woff2"), url("../fonts/Montserrat-Regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Montserrat";
    src: url("../fonts/Montserrat-Italic.woff2") format("woff2"), url("../fonts/Montserrat-Regular.woff") format("woff");
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999999;
}

    header .header {
        padding-top: 24px;
    }

    header .header__wrp {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
    }

    
        @media only screen and (max-width: 768px) {
            header .header__wrp a svg {
        height: 26px;
        width: 156px;
    }
}

header .header__wrp__action {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 44px;
}

@media only screen and (max-width: 990px) {
    header .header__wrp__action {
        display: none;
    }
}

header .header__wrp__action .header-navigation__list {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 28px;
}

header .header__wrp__action .header-navigation__list__item {
    padding: 16px 0;
}

    header .header__wrp__action .header-navigation__list__item a {
        line-height: 20px;
        color: #fdfefe;
    }

        header .header__wrp__action .header-navigation__list__item a:hover {
            color: #58b682;
        }

header .header__wrp__action .header-btn {
    display: inline-block;
    cursor: pointer;
    padding: 14px 26px;
    line-height: 24px;
    color: #fff;
    background-color: #58b682;
    border: none;
}

header .header__wrp__action .header-btn__second {
    display: inline-block;
    cursor: pointer;
    padding: 14px 26px;
    line-height: 24px;
    color: #fff;
    background-color: transparent;
    border: 1px solid #58b682;
}

header .header__wrp__burger {
    display: none;
}

@media only screen and (max-width: 990px) {
    header .header__wrp__burger {
        display: block;
    }
}

@media only screen and (max-width: 768px) {
    header .header__wrp__burger svg path {
        stroke: #e6e6e6;
    }
}

.footer-wrp .footer-bg {
    margin-top: -10px;
    height: 200px;
    background-image: url(../images/footer-bg.png);
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: 100%;
}

@media only screen and (max-width: 990px) {
    .footer-wrp .footer-bg {
        height: 124px;
    }
}

@media only screen and (max-width: 768px) {
    .footer-wrp .footer-bg {
        height: 90px;
    }
}

.footer-wrp__top {
    padding-top: 100px;
    padding-bottom: 80px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: nowrap;
}

@media only screen and (max-width: 990px) {
    .footer-wrp__top {
        padding-bottom: 100px;
    }
}

@media only screen and (max-width: 768px) {
    .footer-wrp__top {
        flex-direction: column;
        gap: 100px;
        padding-top: 60px;
    }
}

.footer-wrp__top__left {
    width: 43%;
}

@media only screen and (max-width: 768px) {
    .footer-wrp__top__left {
        width: 100%;
    }
}

.footer-wrp__top__left p {
    margin-bottom: 40px;
}

.footer-wrp__top__left a {
    display: inline-block;
    cursor: pointer;
    padding: 14px 26px;
    line-height: 24px;
    color: #fff;
    background-color: #58b682;
    border: none;
}

@media only screen and (max-width: 768px) {
    .footer-wrp__top__left a {
        width: 100%;
        text-align: center;
    }
}

.footer-wrp__top__right {
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: 40px;
}

    .footer-wrp__top__right.second {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
    }

@media only screen and (max-width: 768px) {
    .footer-wrp__top__right.second {
        flex-direction: column;
    }
}

@media only screen and (max-width: 768px) {
    .footer-wrp__top__right {
        width: 100%;
    }
}

.footer-wrp__top__right > div {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .footer-wrp__top__right > div span {
        margin-bottom: 0;
    }

    .footer-wrp__top__right > div p,
    .footer-wrp__top__right > div a {
        font-size: 20px;
        line-height: 24px;
        color: #040807;
    }

        .footer-wrp__top__right > div a:hover {
            color: #58b682;
        }

    .footer-wrp__top__right > div:nth-child(2) {
        width: 50%;
    }

@media only screen and (max-width: 768px) {
    .footer-wrp__top__right > div:nth-child(2) {
        width: 100%;
    }
}

.footer-wrp__top__right .social-media {
    display: flex;
    gap: 30px;
}

    .footer-wrp__top__right .social-media a {
        display: block;
    }

.footer-wrp__top__right .social-media__item:nth-child(1):hover path {
    transition: 0.3s ease;
    fill: #50a676;
}

.footer-wrp__top__right .social-media__item:not(.first):hover rect {
    transition: 0.3s ease;
    fill: #50a676;
}

.footer-wrp__bottom {
    background-color: #040807;
    padding: 24px 0;
}

    .footer-wrp__bottom > div {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
    }

@media only screen and (max-width: 768px) {
    .footer-wrp__bottom > div {
        gap: 90px;
    }
}

.footer-wrp__bottom > div p {
    font-size: 12px;
    line-height: 12px;
    color: #b1b2b2;
}

@media only screen and (max-width: 768px) {
    .footer-wrp__bottom > div p {
        font-size: 8px;
    }
}

.footer-wrp__bottom > div div span {
    display: block;
    font-size: 8px;
    line-height: 8px;
    color: #fff;
}

.aside-menu {
    transition: 0.5s all;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999999;
    width: 100%;
    height: 100%;
    background-color: #040807;
    transform: translateY(-100%);
    overflow: scroll;
}

.aside-menu__wrp {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: nowrap;
    height: 100%;
    padding: 20px 0;
}

    .aside-menu__wrp .aside-header {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
        width: 100%;
    }

        .aside-menu__wrp .aside-header button {
            background-color: transparent;
            border: none;
        }
        .aside-menu__wrp .aside-header a {
           width:276px;
        }

    @media only screen and (max-width: 768px) {
    .aside-menu__wrp .aside-header a {
        width: 210px;
    }
}
.aside-menu__wrp .aside-content__list {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: nowrap;
    gap: 48px;
}

.aside-menu__wrp .aside-content__list__item a {
    font-size: 24px;
    line-height: 24px;
    color: #fdfefe;
}

.aside-menu__wrp .aside-footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

    .aside-menu__wrp .aside-footer a {
        width: 100%;
        text-align: center;
    }

        .aside-menu__wrp .aside-footer a:first-child {
            display: inline-block;
            cursor: pointer;
            padding: 14px 26px;
            line-height: 24px;
            color: #fff;
            background-color: transparent;
            border: 1px solid #58b682;
        }

        .aside-menu__wrp .aside-footer a:last-child {
            display: inline-block;
            cursor: pointer;
            padding: 14px 26px;
            line-height: 24px;
            color: #fff;
            background-color: #58b682;
            border: none;
        }

.aside-menu.active {
    transform: translateY(0%);
}

.banner {
    background-image: url(../images/bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}

.banner__wrp {
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    padding-right: 6%;
}

@media only screen and (max-width: 1110px) {
    .banner__wrp {
        padding-right: 2.8%;
    }
}

@media only screen and (max-width: 768px) {
    .banner__wrp {
        flex-direction: column;
        align-items: center;
    }
}

.banner__wrp__left {
    max-width: 940px;
    width: 940px;
    background-color: white;
    padding: 0 20px 20px 6%;
    position: relative;
}

@media only screen and (max-width: 990px) {
    .banner__wrp__left {
        max-width: 500px;
    }
}

@media only screen and (max-width: 768px) {
    .banner__wrp__left {
        width: 100%;
    }
}

.banner__wrp__left::before {
    content: "";
    position: absolute;
    top: -30px;
    left: 0;
    height: 30px;
    width: 85%;
    background-color: white;
    max-width: 815px;
    display: inline-block;
}

.banner__wrp__left h1 {
    font-size: 50px;
    font-weight: 500;
    line-height: 70px;
}

@media only screen and (max-width: 990px) {
    .banner__wrp__left h1 {
        font-size: 32px;
        line-height: 50px;
    }
}

@media only screen and (max-width: 768px) {
    .banner__wrp__left h1 {
        line-height: 36px;
    }
}

.banner__wrp__left h1 span {
    font-weight: 700;
    font-size: 64px;
    font-weight: 700;
    line-height: 70px;
}

@media only screen and (max-width: 990px) {
    .banner__wrp__left h1 span {
        font-size: 44px;
        line-height: normal;
    }
}

@media only screen and (max-width: 768px) {
    .banner__wrp__left h1 span {
        font-size: 32px;
        line-height: 36px;
    }
}

.banner__wrp__right {
    background-color: white;
    padding: 20px 50px;
}

@media only screen and (max-width: 990px) {
    .banner__wrp__right {
        padding: 20px 15px;
    }
}

@media only screen and (max-width: 768px) {
    .banner__wrp__right {
        width: 100%;
        max-width: 500px;
        padding: 0 15px 20px 15px;
    }
}

.banner__wrp__right .countdown-wrp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

    .banner__wrp__right .countdown-wrp .countdown-item {
        text-align: center;
        position: relative;
    }

        .banner__wrp__right .countdown-wrp .countdown-item span {
            display: block;
        }

            .banner__wrp__right .countdown-wrp .countdown-item span:first-child {
                font-size: 20px;
                font-weight: 600;
                line-height: 24px;
                color: #50a676;
            }

            .banner__wrp__right .countdown-wrp .countdown-item span:last-child {
                font-size: 10px;
                font-weight: 400;
                line-height: 10px;
                margin-top: 10px;
            }

        .banner__wrp__right .countdown-wrp .countdown-item:not(:last-child) span:first-child::after {
            content: ":";
            position: absolute;
            top: 0;
            right: -20px;
        }

.banner__wrp__right .banner__ticket {
    display: none;
    background-color: #58b682;
    width: 100%;
    padding: 14px 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: white;
    margin-top: 30px;
    text-align: center;
}

@media only screen and (max-width: 768px) {
    .banner__wrp__right .banner__ticket {
        display: inline-block;
    }
}

.banner__wrp .banner-ticket-wrp {
    display: none;
    padding-left: 20px;
    width: 100%;
    text-align: center;
}

@media only screen and (max-width: 768px) {
    .banner__wrp .banner-ticket-wrp {
        display: block;
    }
}

.banner__wrp .banner-ticket-wrp .banner__ticket {
    display: inline-block;
    background-color: #58b682;
    width: 100%;
    padding: 14px 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: white;
}

.about {
    padding-top: 40px;
    position: relative;
}

.about__wrp__content {
    max-width: 800px;
}

    .about__wrp__content .content {
        font-size: 24px;
        font-weight: 500;
        line-height: 30px;
    }

@media only screen and (max-width: 990px) {
    .about__wrp__content .content {
        font-size: 16px;
        line-height: 18px;
    }
}

.about__wrp__statistics {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

@media only screen and (max-width: 768px) {
    .about__wrp__statistics {
        display: none;
    }
}

.about__wrp__statistics .statistics-box {
    background-color: #040807;
    color: white;
    padding: 24px;
    display: flex;
    flex-direction: column;
    position: relative;
}

    .about__wrp__statistics .statistics-box.first {
        width: 25%;
    }

        .about__wrp__statistics .statistics-box.first:after {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            height: 4px;
            width: 100%;
            background-color: #58b682;
        }

    .about__wrp__statistics .statistics-box.second {
        width: 35%;
    }

    .about__wrp__statistics .statistics-box.third {
        width: 50%;
    }

    .about__wrp__statistics .statistics-box span:first-child {
        color: #50a676;
        font-size: 60px;
        font-weight: 600;
        line-height: 60px;
    }

@media only screen and (max-width: 990px) {
    .about__wrp__statistics .statistics-box span:first-child {
        font-size: 44px;
        line-height: 44px;
    }
}

@media only screen and (max-width: 768px) {
    .about__wrp__statistics .statistics-box span:first-child {
        font-size: 32px;
        line-height: 32px;
    }
}

.about__wrp__statistics .statistics-box span:last-child {
    font-size: 16px;
    font-weight: 500;
    line-height: 16px;
    margin-top: 6px;
}

@media only screen and (max-width: 768px) {
    .about__wrp__statistics .statistics-box span:last-child {
        font-size: 16px;
        line-height: 16px;
    }
}

.about__wrp .bg-icon {
    position: absolute;
    bottom: 0;
}

@media only screen and (max-width: 768px) {
    .about__wrp .bg-icon {
        display: none;
    }
}

.countries {
    background-color: #040807;
    color: #b2ddc6;
    padding-block: 60px;
}

@media only screen and (max-width: 768px) {
    .countries {
        margin-top: 30px;
    }
}

.countries__scroller {
    max-width: 100%;
}

.countries__scroller__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    font-size: 18px;
    font-style: italic;
    font-weight: 400;
    line-height: 16px;
}

@media only screen and (max-width: 768px) {
    .countries__scroller__inner {
        font-size: 14px;
        line-height: 14px;
    }
}

.countries__scroller[data-animated="true"] {
    overflow: hidden;
    -webkit-mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
    mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
}

    .countries__scroller[data-animated="true"] .countries__scroller__inner {
        width: max-content;
        flex-wrap: nowrap;
        animation: scroll 20s linear infinite;
    }

@keyframes scroll {
    to {
        transform: translate(calc(-50% - 20px));
    }
}

.countries__wrapper {
    margin-top: 35px;
    margin-bottom: 35px;
}

    .countries__wrapper figure {
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .countries__wrapper figure img {
            max-width: 100%;
        }

.proqram {
    padding-bottom: 140px;
}

@media only screen and (max-width: 990px) {
    .proqram {
        padding: 100px 0;
    }
}

.proqram-wrp__header {
    margin-bottom: 40px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: nowrap;
    gap: 40px;
}

@media only screen and (max-width: 990px) {
    .proqram-wrp__header {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media only screen and (max-width: 768px) {
    .proqram-wrp__header {
        margin-bottom: 20px;
        gap: 32px;
    }
}
.header__wrp .logo{
    width:276px;
}
@media only screen and (max-width:768px){
    .header__wrp a {
        width: 210px;
    }
}
.proqram-wrp__header > div {
    width: 40%;
}

@media only screen and (max-width: 990px) {
    .proqram-wrp__header > div {
        width: 60%;
    }
}

@media only screen and (max-width: 768px) {
    .proqram-wrp__header > div {
        width: 100%;
    }
}

.proqram-wrp__header > div:last-child {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 22px;
}

    .proqram-wrp__header > div:last-child > span {
        font-size: 18px;
        font-weight: 500;
        line-height: 18px;
        color: #3e815c;
    }

.proqram-wrp__header .date {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

@media only screen and (max-width: 990px) {
    .proqram-wrp__header .date {
        width: 100%;
        justify-content: flex-start;
    }
}

@media only screen and (max-width: 768px) {
    .proqram-wrp__header .date {
        gap: 6px;
    }
}

.proqram-wrp__header .date button {
    display: inline-block;
    cursor: pointer;
    padding: 14px 33px;
    line-height: 24px;
    color: #fff;
    background-color: transparent;
    border: 1px solid #040807;
    color: #040807;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    transition: 0.3s ease;
    white-space: pre;
    font-family: inherit;
}

@media only screen and (max-width: 990px) {
    .proqram-wrp__header .date button {
        flex: 1;
    }
}

@media only screen and (max-width: 768px) {
    .proqram-wrp__header .date button {
        padding: 19px 17px;
        font-size: 14px;
        line-height: 14px;
        width: calc((100% - 12px) / 3);
    }
}

.proqram-wrp__header .date button.active {
    background-color: #040807;
    color: #fff;
}

.proqram-wrp__header .date button:not(.active):hover {
    outline: 3px solid #040807;
    background-color: #e6e6e6;
}

.proqram-wrp__content .table-header {
    padding: 20px;
    background-color: #e6e6e6;
    display: flex;
}

@media only screen and (max-width: 990px) {
    .proqram-wrp__content .table-header {
        padding: 20px 13px;
    }
}

@media only screen and (max-width: 768px) {
    .proqram-wrp__content .table-header {
        display: none;
    }
}

.proqram-wrp__content .table-header span {
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    line-height: 14px;
}

    .proqram-wrp__content .table-header span:nth-child(1) {
        width: 20%;
    }

    .proqram-wrp__content .table-header span:nth-child(2) {
        width: 40%;
    }

    .proqram-wrp__content .table-header span:nth-child(3) {
        width: 40%;
    }

.proqram-wrp__content .table-content .item {
    border-bottom: 1px solid #e6e6e6;
    padding: 23px 20px;
    display: flex;
    align-items: center;
}

@media only screen and (max-width: 990px) {
    .proqram-wrp__content .table-content .item {
        padding: 33px 13px;
    }
}

@media only screen and (max-width: 768px) {
    .proqram-wrp__content .table-content .item {
        padding: 24px 20px;
        flex-direction: column;
        gap: 24px;
        align-items: flex-start;
    }
}

.proqram-wrp__content .table-content .item:first-child {
    border-top: 1px solid #e6e6e6;
}

@media only screen and (max-width: 768px) {
    .proqram-wrp__content .table-content .item > div {
        width: 100% !important;
    }
}

.proqram-wrp__content .table-content .item > div:nth-child(1) {
    width: 20%;
}

    .proqram-wrp__content .table-content .item > div:nth-child(1) span {
        font-weight: 400;
        line-height: 16px;
    }

.proqram-wrp__content .table-content .item > div:nth-child(2) {
    width: 40%;
    padding-right: 25px;
}

    .proqram-wrp__content .table-content .item > div:nth-child(2) p {
        font-weight: 400;
        line-height: 20px;
    }

.proqram-wrp__content .table-content .item > div:nth-child(3) {
    width: 40%;
}

    .proqram-wrp__content .table-content .item > div:nth-child(3) .speaker-name {
        display: block;
        line-height: 16px;
        font-weight: 600;
        margin-bottom: 6px;
    }

    .proqram-wrp__content .table-content .item > div:nth-child(3) .speaker-position {
        display: block;
        line-height: 16px;
        font-weight: 400;
        font-style: italic;
        margin-bottom: 15px;
    }

@media only screen and (max-width: 990px) {
    .proqram-wrp__content .table-content .item > div:nth-child(3) .speaker-position {
        font-size: 12px;
        line-height: 12px;
    }
}

.speakers {
    background-color: #040807;
    padding: 146px 0 60px;
    color: #fff;
}

@media only screen and (max-width: 990px) {
    .speakers {
        padding: 80px 0;
    }
}

@media only screen and (max-width: 768px) {
    .speakers {
        padding: 60px 0 40px;
    }
}

.speakers-wrp__header p {
    width: 50%;
    margin-bottom: 40px;
}

@media only screen and (max-width: 990px) {
    .speakers-wrp__header p {
        width: 70%;
    }
}

@media only screen and (max-width: 768px) {
    .speakers-wrp__header p {
        width: 100%;
    }
}

.speakers-wrp__content {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 20px;
}

@media only screen and (max-width: 990px) {
    .speakers-wrp__content {
        column-gap: 60px;
    }
}

@media only screen and (max-width: 768px) {
    .speakers-wrp__content {
        justify-content: center;
    }
}

.speakers-wrp__content .speaker-item {
    width: calc((100% - 60px) / 4);
    position: relative;
}

    .speakers-wrp__content .speaker-item:nth-child(1) {
        width: calc(( 100% - 40px ) / 3);
    }

        .speakers-wrp__content .speaker-item:nth-child(1) .speaker-item__img {
            height: 450px;
        }

@media only screen and (max-width: 990px) {
    .speakers-wrp__content .speaker-item:nth-child(1) .speaker-item__img {
        height: 270px;
    }
}

@media only screen and (max-width: 768px) {
    .speakers-wrp__content .speaker-item:nth-child(1) .speaker-item__img {
        height: 409px;
    }
}

@media only screen and (max-width: 990px) {
    .speakers-wrp__content .speaker-item:nth-child(1) {
        width: calc((100% - 120px) / 3);
    }
}

@media only screen and (max-width: 768px) {
    .speakers-wrp__content .speaker-item:nth-child(1) {
        width: 100%;
        max-width: 400px;
    }
}

.speakers-wrp__content .speaker-item:nth-child(2) {
    width: calc(( 100% - 40px ) / 3);
}

    .speakers-wrp__content .speaker-item:nth-child(2) .speaker-item__img {
        height: 450px;
    }

@media only screen and (max-width: 990px) {
    .speakers-wrp__content .speaker-item:nth-child(2) .speaker-item__img {
        height: 270px;
    }
}

@media only screen and (max-width: 768px) {
    .speakers-wrp__content .speaker-item:nth-child(2) .speaker-item__img {
        height: 409px;
    }
}

@media only screen and (max-width: 990px) {
    .speakers-wrp__content .speaker-item:nth-child(2) {
        width: calc((100% - 120px) / 3);
    }
}

@media only screen and (max-width: 768px) {
    .speakers-wrp__content .speaker-item:nth-child(2) {
        width: 100%;
        max-width: 400px;
    }
}

.speakers-wrp__content .speaker-item:nth-child(3) {
    width: calc(( 100% - 40px ) / 3);
}

    .speakers-wrp__content .speaker-item:nth-child(3) .speaker-item__img {
        height: 450px;
    }

@media only screen and (max-width: 990px) {
    .speakers-wrp__content .speaker-item:nth-child(3) .speaker-item__img {
        height: 270px;
    }
}

@media only screen and (max-width: 768px) {
    .speakers-wrp__content .speaker-item:nth-child(3) .speaker-item__img {
        height: 409px;
    }
}

@media only screen and (max-width: 990px) {
    .speakers-wrp__content .speaker-item:nth-child(3) {
        width: calc((100% - 120px) / 3);
    }
}

@media only screen and (max-width: 768px) {
    .speakers-wrp__content .speaker-item:nth-child(3) {
        width: 100%;
        max-width: 400px;
    }
}

.speakers-wrp__content .speaker-item:hover {
    border: 1px solid #50a676;
}

    .speakers-wrp__content .speaker-item:hover img {
        transform: scale(1.2);
        transition: 0.3s ease;
    }

@media only screen and (max-width: 990px) {
    .speakers-wrp__content .speaker-item {
        width: calc((100% - 120px) / 3);
    }
}

@media only screen and (max-width: 768px) {
    .speakers-wrp__content .speaker-item {
        width: 100%;
        max-width: 400px;
    }
}

.speakers-wrp__content .speaker-item__img {
    width: 100%;
    height: 380px;
    margin-bottom: 8px;
    overflow: hidden;
}

@media only screen and (max-width: 990px) {
    .speakers-wrp__content .speaker-item__img {
        margin-bottom: 6px;
        height: 270px;
    }
}

@media only screen and (max-width: 768px) {
    .speakers-wrp__content .speaker-item__img {
        margin-bottom: 6px;
        height: 409px;
    }
}

.speakers-wrp__content .speaker-item__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.speakers-wrp__content .speaker-item__info {
    padding: 12px 10px 12px 16px;
    border-left: 1px solid #575a59;
}

@media only screen and (max-width: 990px) {
    .speakers-wrp__content .speaker-item__info {
        padding: 9px 10px 9px 12px;
    }
}

@media only screen and (max-width: 768px) {
    .speakers-wrp__content .speaker-item__info {
        padding: 13px 10px 13px 18px;
    }
}

.speakers-wrp__content .speaker-item__info .name {
    display: block;
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 10px;
}

@media only screen and (max-width: 990px) {
    .speakers-wrp__content .speaker-item__info .name {
        font-size: 15px;
        line-height: 18px;
        margin-bottom: 8px;
    }
}

@media only screen and (max-width: 768px) {
    .speakers-wrp__content .speaker-item__info .name {
        font-size: 20px;
        line-height: 24px;
        margin-bottom: 10px;
    }
}

.speakers-wrp__content .speaker-item__info .position {
    font-size: 12px;
    font-weight: 400;
    line-height: 14px;
    color: #fff;
    font-style: italic;
}

@media only screen and (max-width: 990px) {
    .speakers-wrp__content .speaker-item__info .position {
        font-size: 9px;
        line-height: 10px;
    }
}

@media only screen and (max-width: 990px) {
    .speakers-wrp__content .speaker-item__info .position {
        font-size: 12px;
        line-height: 14px;
    }
}

.speakers-wrp__content .speaker-item a {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.white-speakers {
    background-color: #fff;
    padding: 146px 0 60px;
    color: #040807;
}

@media only screen and (max-width: 990px) {
    .white-speakers {
        padding: 80px 0;
    }
}

@media only screen and (max-width: 768px) {
    .white-speakers {
        padding: 60px 0 40px;
    }
}

.white-speakers-wrp__header p {
    width: 50%;
    margin-bottom: 40px;
}

@media only screen and (max-width: 990px) {
    .white-speakers-wrp__header p {
        width: 70%;
    }
}

@media only screen and (max-width: 768px) {
    .white-speakers-wrp__header p {
        width: 100%;
    }
}

.white-speakers-wrp__content {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 20px;
}

@media only screen and (max-width: 990px) {
    .white-speakers-wrp__content {
        column-gap: 60px;
    }
}

@media only screen and (max-width: 768px) {
    .white-speakers-wrp__content {
        justify-content: center;
    }
}

.white-speakers-wrp__content .speaker-item {
    width: calc((100% - 60px) / 4);
    position: relative;
}

    .white-speakers-wrp__content .speaker-item:hover {
        border: 1px solid #50a676;
    }

        .white-speakers-wrp__content .speaker-item:hover img {
            transform: scale(1.2);
            transition: 0.3s ease;
        }

@media only screen and (max-width: 990px) {
    .white-speakers-wrp__content .speaker-item {
        width: calc((100% - 120px) / 3);
    }
}

@media only screen and (max-width: 768px) {
    .white-speakers-wrp__content .speaker-item {
        width: 100%;
        max-width: 400px;
    }
}

.white-speakers-wrp__content .speaker-item__img {
    width: 100%;
    height: 380px;
    margin-bottom: 8px;
    overflow: hidden;
}

@media only screen and (max-width: 990px) {
    .white-speakers-wrp__content .speaker-item__img {
        margin-bottom: 6px;
        height: 270px;
    }
}

@media only screen and (max-width: 768px) {
    .white-speakers-wrp__content .speaker-item__img {
        margin-bottom: 6px;
        height: 409px;
    }
}

.white-speakers-wrp__content .speaker-item__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.white-speakers-wrp__content .speaker-item__info {
    padding: 12px 10px 12px 16px;
    border-left: 1px solid #575a59;
}

@media only screen and (max-width: 990px) {
    .white-speakers-wrp__content .speaker-item__info {
        padding: 9px 10px 9px 12px;
    }
}

@media only screen and (max-width: 768px) {
    .white-speakers-wrp__content .speaker-item__info {
        padding: 13px 10px 13px 18px;
    }
}

.white-speakers-wrp__content .speaker-item__info .name {
    display: block;
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 10px;
}

@media only screen and (max-width: 990px) {
    .white-speakers-wrp__content .speaker-item__info .name {
        font-size: 15px;
        line-height: 18px;
        margin-bottom: 8px;
    }
}

@media only screen and (max-width: 768px) {
    .white-speakers-wrp__content .speaker-item__info .name {
        font-size: 20px;
        line-height: 24px;
        margin-bottom: 10px;
    }
}

.white-speakers-wrp__content .speaker-item__info .position {
    font-size: 12px;
    font-weight: 400;
    line-height: 14px;
    color: #575a59;
    font-style: italic;
}

@media only screen and (max-width: 990px) {
    .white-speakers-wrp__content .speaker-item__info .position {
        font-size: 9px;
        line-height: 10px;
    }
}

@media only screen and (max-width: 990px) {
    .white-speakers-wrp__content .speaker-item__info .position {
        font-size: 12px;
        line-height: 14px;
    }
}

.white-speakers-wrp__content .speaker-item a {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.partners {
    padding-bottom: 140px;
}

.partners__wrp__header {
    max-width: 550px;
}

@media only screen and (max-width: 990px) {
    .partners__wrp__header {
        margin-bottom: 30px;
    }
}

@media only screen and (max-width: 768px) {
    .partners__wrp__header {
        margin-bottom: 60px;
    }
}

.partners__wrp__content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 60px;
}

@media only screen and (max-width: 768px) {
    .partners__wrp__content {
        gap: 14px;
        margin-top: 40px;
    }
}

.partners__wrp__content a {
    width: calc((100% - 60px) / 4);
    display: inline-block;
    padding: 15px;
    border: 1px solid #e6e6e6;
    filter: grayscale(100%);
}

@media only screen and (max-width: 768px) {
    .partners__wrp__content a {
        width: calc((100% - 14px) / 2);
        padding: 8px;
    }
}

.partners__wrp__content a:hover {
    filter: grayscale(0%);
}

.partners__wrp__content a img {
    width: 100%;
    aspect-ratio: 3 / 1;
    object-fit: contain;
}

.sponsorship {
    padding-bottom: 140px;
}

@media only screen and (max-width: 990px) {
    .sponsorship {
        margin-bottom: 100px;
    }
}

.sponsorship__wrp__header {
    margin-bottom: 40px;
}

@media only screen and (max-width: 768px) {
    .sponsorship__wrp__header {
        margin-bottom: 20px;
    }
}

.sponsorship__wrp__content {
    display: flex;
    gap: 20px;
}

@media only screen and (max-width: 990px) {
    .sponsorship__wrp__content {
        gap: 18px;
    }
}

@media only screen and (max-width: 768px) {
    .sponsorship__wrp__content {
        flex-direction: column;
        gap: 8px;
    }
}

.sponsorship__wrp__content .sponsor-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: calc((100% - 20px) / 3);
    border: 2px solid #020404;
    padding: 30px 20px 20px 20px;
}

@media only screen and (max-width: 990px) {
    .sponsorship__wrp__content .sponsor-card {
        width: calc((100% - 18px) / 3);
        padding: 20px;
    }
}

@media only screen and (max-width: 768px) {
    .sponsorship__wrp__content .sponsor-card {
        width: 100%;
    }
}

.sponsorship__wrp__content .sponsor-card.active {
    box-shadow: 0px 8px 14px 0px rgba(2, 4, 4, 0.24);
}

    .sponsorship__wrp__content .sponsor-card.active .sponsor-btn {
        background-color: #3e815c;
    }

.sponsorship__wrp__content .sponsor-card .upper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

    .sponsorship__wrp__content .sponsor-card .upper > span {
        font-size: 32px;
        line-height: 32px;
        font-weight: 600;
    }

@media only screen and (max-width: 990px) {
    .sponsorship__wrp__content .sponsor-card .upper > span {
        font-size: 24px;
        line-height: 24px;
    }
}

.sponsorship__wrp__content .sponsor-card .sponsor-line {
    height: 1px;
    max-width: 226px;
    background-color: #b1b2b2;
}

.sponsorship__wrp__content .sponsor-card__include {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

    .sponsorship__wrp__content .sponsor-card__include .item {
        display: flex;
        gap: 10px;
    }

    .sponsorship__wrp__content .sponsor-card__include .item__right {
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

        .sponsorship__wrp__content .sponsor-card__include .item__right span:nth-child(1) {
            color: #363939;
            font-size: 16px;
            font-weight: 600;
            line-height: 24px;
        }

        .sponsorship__wrp__content .sponsor-card__include .item__right span:nth-child(2) {
            color: #8c8d8d;
            font-size: 14px;
            font-weight: 500;
            line-height: 20px;
        }

.sponsorship__wrp__content .sponsor-card .sponsor-btn {
    font-family: inherit;
    background-color: #58b682;
    color: #eef8f3;
    font-size: 32px;
    font-weight: 700;
    line-height: 32px;
    border: none;
    outline: none;
    padding: 12px 0;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 24px;
}

    .sponsorship__wrp__content .sponsor-card .sponsor-btn:hover {
        background-color: #3e815c;
    }

.faq {
    padding-top: 80px;
    padding-bottom: 50px;
    background-color: #020303;
    color: #e6e6e6;
}

@media only screen and (max-width: 768px) {
    .faq {
        padding-top: 60px;
    }
}

.faq-wrp__header p {
    width: 50%;
    margin-bottom: 20px;
}

@media only screen and (max-width: 990px) {
    .faq-wrp__header p {
        margin-bottom: 40px;
        width: 80%;
    }
}

@media only screen and (max-width: 768px) {
    .faq-wrp__header p {
        margin-bottom: 32px;
        width: 100%;
    }
}

.faq-wrp__content .faq-item {
    padding: 32px 10px 28px 0;
    border-top: 1px solid #e6e6e6;
    cursor: pointer;
}

@media only screen and (max-width: 990px) {
    .faq-wrp__content .faq-item {
        padding-right: 0;
    }
}

@media only screen and (max-width: 768px) {
    .faq-wrp__content .faq-item {
        padding-top: 20px;
        padding-bottom: 20px;
    }
}

.faq-wrp__content .faq-item:last-child {
    border-bottom: 1px solid #e6e6e6;
}

.faq-wrp__content .faq-item__header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 50px;
}

    .faq-wrp__content .faq-item__header span {
        line-height: 24px;
    }

    .faq-wrp__content .faq-item__header figure {
        width: 24px;
        height: 24px;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        flex-wrap: nowrap;
        transition: 0.3s ease;
    }

.faq-wrp__content .faq-item__body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.8s ease;
}

    .faq-wrp__content .faq-item__body p {
        font-size: 14px;
        font-weight: 400;
        line-height: 18px;
        color: #b1b2b2;
    }

    .faq-wrp__content .faq-item__body.active {
        max-height: 100vh;
        padding-top: 20px;
        padding-right: 36px;
    }

.banner-ticket {
    height: 500px;
    background-image: url(../images/bg-green.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}

    .banner-ticket img {
        position: absolute;
        width: 100%;
        bottom: 0;
    }

.buy-ticket {
    display: none;
    margin-top: 50px;
    padding: 50px;
}

@media only screen and (max-width: 990px) {
    .buy-ticket {
        margin-top: 40px;
        padding-top: 40px;
    }
}

.buy-ticket.active {
    display: block;
}

.buy-ticket__wrp {
    display: flex;
    justify-content: space-between;
}

@media only screen and (max-width: 990px) {
    .buy-ticket__wrp {
        flex-direction: column;
        gap: 40px;
    }
}

.buy-ticket__wrp__header {
    width: 40%;
    font-size: 64px;
    font-weight: 700;
    line-height: 78px;
}

@media only screen and (max-width: 990px) {
    .buy-ticket__wrp__header {
        width: 100%;
        font-size: 48px;
        line-height: 52px;
    }
}

@media only screen and (max-width: 768px) {
    .buy-ticket__wrp__header {
        font-size: 32px;
        line-height: 32px;
    }
}

.buy-ticket__wrp__form {
    width: 50%;
}

@media only screen and (max-width: 990px) {
    .buy-ticket__wrp__form {
        width: 100%;
    }
}

.buy-ticket__wrp__form form {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

    .buy-ticket__wrp__form form .form-box {
        display: flex;
        flex-direction: column;
        gap: 6px;
        width: calc((100% - 20px) / 2);
        font-size: 14px;
        font-weight: 500;
        line-height: 20px;
    }

@media only screen and (max-width: 768px) {
    .buy-ticket__wrp__form form .form-box {
        width: 100%;
    }
}

.buy-ticket__wrp__form form .form-box input {
    padding: 10px 14px;
    border: 1px solid #e6e6e6;
    font-family: inherit;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
    transition: box-shadow 0.2s;
}

    .buy-ticket__wrp__form form .form-box input:hover {
        box-shadow: 0 0px 0px 4px rgba(16, 24, 40, 0.04);
    }

    .buy-ticket__wrp__form form .form-box input[type="tel"] {
        width: 100%;
    }

.buy-ticket__wrp__form form .form-check {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #575a59;
    font-size: 12px;
    font-weight: 400;
    line-height: 12px;
}

.buy-ticket__wrp__form form .error {
    color: red;
}

    .buy-ticket__wrp__form form .error#telephone-error {
        position: absolute;
        top: 49px;
        left: 0;
    }

    .buy-ticket__wrp__form form .error ::before {
        content: "*";
    }

.buy-ticket__wrp__form .form-submit {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #79c59b;
}

    .buy-ticket__wrp__form .form-submit .price {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 10px;
    }

        .buy-ticket__wrp__form .form-submit .price span:first-child {
            font-weight: 400;
        }

        .buy-ticket__wrp__form .form-submit .price span:last-child {
            font-size: 20px;
            font-weight: 600;
            line-height: 20px;
        }

    .buy-ticket__wrp__form .form-submit .submit-btn {
        background-color: #58b682;
        padding: 16px 24px;
        font-family: inherit;
        color: #fff;
        outline: none;
        border: none;
        font-size: 16px;
        font-weight: 500;
        line-height: 24px;
        text-transform: uppercase;
    }

.details-page {
    background-color: #040807;
    color: #fff;
}

    .details-page .details-wrp {
        padding: 60px 0;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: stretch;
        flex-wrap: nowrap;
    }

@media only screen and (max-width: 768px) {
    .details-page .details-wrp {
        display: flex;
        flex-direction: column-reverse;
        justify-content: flex-start;
        align-items: stretch;
        flex-wrap: nowrap;
        gap: 50px;
    }
}

.details-page .details-wrp__info {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: 60px;
}

@media only screen and (max-width: 768px) {
    .details-page .details-wrp__info {
        width: 100%;
    }
}

.details-page .details-wrp__info .back-home a {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: nowrap;
}

    .details-page .details-wrp__info .back-home a span {
        font-size: 16px;
        font-weight: 400;
        line-height: 24px;
        color: #8c8d8d;
    }

.details-page .details-wrp__info .details-about {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: 40px;
}

.details-page .details-wrp__info .details-about__title h3 {
    font-size: 32px;
    font-weight: 700;
    line-height: 39px;
    color: #fff;
    margin-bottom: 20px;
}

@media only screen and (max-width: 768px) {
    .details-page .details-wrp__info .details-about__title h3 {
        font-size: 24px;
        font-weight: 700;
        line-height: 29px;
    }
}

.details-page .details-wrp__info .details-about__title span {
    font-size: 20px;
    font-weight: 400;
    line-height: 20px;
    font-style: italic;
    color: #fff;
}

@media only screen and (max-width: 768px) {
    .details-page .details-wrp__info .details-about__title span {
        font-size: 16px;
        font-weight: 400;
        line-height: 20px;
    }
}

.details-page .details-wrp__info .details-about__desc p {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: #fff;
}

.details-page .details-wrp__img {
    width: 40%;
}

@media only screen and (max-width: 768px) {
    .details-page .details-wrp__img {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-end;
        flex-wrap: nowrap;
    }
}

.details-page .details-wrp__img figure {
    height: 607px;
}

@media only screen and (max-width: 990px) {
    .details-page .details-wrp__img figure {
        height: initial;
    }
}

@media only screen and (max-width: 768px) {
    .details-page .details-wrp__img figure {
        width: 100%;
        position: relative;
    }
}

.details-page .details-wrp__img figure .main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
