/*=============GLOBAL=================*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    width: 100%;
}

body {
    width: 100%;
    min-height: 100vh;
    font-size: 16px;
    font-family: "Montserrat", sans-serif;
    scroll-behavior: smooth;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

body.locked {
    overflow: hidden;
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-thumb {
    background-color: #333333;
}

::-webkit-scrollbar-track {
    background-color: #ffffff;
}

::-moz-selection {
    background: #333333;
    color: #ffffff;
}

::selection {
    background: #333333;
    color: #ffffff;
}

a,
a:hover,
a:active,
a:visited {
    text-decoration: none;
}

p {
    margin: 0;
    background-color: transparent;
}

ul {
    margin: 0;
    padding: 0;
    padding-left: 30px;
}

img {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    display: block;
}

svg {
    display: block;
}

button {
    border: none;
    outline: none;
    background-color: transparent;
    padding: 0;
    margin: 0;
    transition: all 0.3s;
    cursor: pointer;
}

a {
    transition: all 0.3s;
    cursor: pointer;
}

input {
    outline: none;
    font-family: var(--general-font);
}

input::-webkit-inner-spin-button,
input::-webkit-outer-spin-button {
    display: none;
}

main {
    width: 100%;
    min-height: 50vh;
}



main.primary-bg {
    background-color: #F5F5F7;
}

section {
    width: 100%;
    padding: 20px 0;
    position: relative;
}

.swiper {
    width: 100%;
    z-index: 0;
}

.swiper .swiper-slide {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.swiper.pagination-true {
    padding-bottom: 40px;
}

.swiper.pagination-true .swiper-pagination {
    bottom: 0 !important;
}

.row {
    width: 100%;
    margin: 0 auto;
}

@media (min-width: 1600px) {
    .container {
        max-width: 1500px;
    }
}

/*==================HEADER======================*/
header {
    width: 100%;
    position: relative;
    background-color: #333333;
    z-index: 99;
}

header.fixed-top {
    animation: fixed 0.5s ease forwards;
}

header .header-logo {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 200px;
    max-height: 60px;
}

header .header-logo img {
    width: 100%;
    height: auto;
    -o-object-fit: contain;
    object-fit: contain;
}

header .languages {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

@media (min-width: 768px) {
    header .languages {
        gap: 10px;
    }
}

header .languages a {
    opacity: 0.6;
    font-weight: 600;
    font-size: 12px;
    line-height: 12px;
    color: #fff;
    text-transform: uppercase;
}

header .languages a.active {
    opacity: 1;
}

header .menu-button {
    display: block;
    cursor: pointer;
    min-width: 24px;
    height: 20px;
}

header .menu-button .bar {
    width: 100%;
    height: 3px;
    background-color: #fff;
    margin-bottom: 5px;
    transition: 0.3s;
}

header .menu-button .bar:nth-child(3) {
    margin-bottom: 0;
}

header .menu-button.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

header .menu-button.active .bar:nth-child(2) {
    opacity: 0;
}

header .menu-button.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

header .mobile-nav {
    width: 100%;
    position: relative;
    z-index: 2;
    padding: 12px 0;
}

header .mobile-nav .row {
    width: 100%;
}

header .mobile-nav .row .col-6 {
    padding: 0;
}

header .mobile-nav .row .col-6:first-child {
    padding-right: 10px;
}

header .mobile-nav .row .col-6:last-child {
    padding-left: 10px;
}

header .social-media {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

header .social-media a {
    display: block;
    color: #fff;
    font-size: 12px;
    line-height: 12px;
}

@media (min-width: 768px) {
    header .social-media a {
        font-size: 16px;
        line-height: 16px;
    }
}

header .poster-link {
    color: #A4D100 !important;
}

header .signup-link {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    color: #fff !important;
    font-weight: 10px;
    border-radius: 5px;
    padding: 6px 8px;
    background-color: #A4D100;
}

header .mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #333333;
    padding: 20px 0;
    animation: menuAnimate 0.3s ease forwards;
    z-index: 1;
}

header .mobile-menu .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
}

header .mobile-menu .menu-links {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    margin-top: 10px;
}

header .mobile-menu .menu-links a {
    color: #fff;
    text-transform: uppercase;
    font-size: 12px;
    line-height: 12px;
    font-weight: 500;
}

header .mobile-menu .menu-links a:hover,
header .mobile-menu .menu-links a.active {
    color: #A4D100;
}

header .general-nav {
    width: 100%;
    position: relative;
    background-color: #333333;
    padding: 15px 0;
}

header .general-nav .row {
    width: 100%;
}

header .general-nav .row .col-2,
header .general-nav .row .col-8 {
    padding: 0;
}

header .general-nav .nav-links {
    width: 100%;
    padding: 0 30px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    gap: 10px;
}

header .general-nav .nav-links a {
    color: #fff;
    text-transform: uppercase;
    font-size: 10px;
    line-height: 10px;
    font-weight: 500;
    text-align: center;
}

@media (min-width: 1400px) {
    header .general-nav .nav-links a {
        font-size: 12px;
        line-height: 12px;
    }
}

header .general-nav .nav-links a:hover,
header .general-nav .nav-links a.active {
    color: #A4D100;
}

@keyframes menuAnimate {
    0% {
        opacity: 0;
        transform: translateY(-40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fixed {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/*=======================FOOTER========================*/
footer {
    width: 100%;
    position: relative;
    background-color: #333333;
    padding: 30px 0;
}

footer .footer-logo {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 200px;
    max-height: 60px;
}

footer .footer-logo img {
    width: 100%;
    height: auto;
    -o-object-fit: contain;
    object-fit: contain;
}

footer .social-media {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

footer .social-media a {
    display: block;
    color: #fff;
    font-size: 12px;
    line-height: 12px;
}

@media (min-width: 768px) {
    footer .social-media a {
        font-size: 16px;
        line-height: 16px;
    }
}

footer .footer-top {
    width: 100%;
    margin-bottom: 30px;
}

footer .footer-top .container {
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

footer .footer-top .footer-text {
    width: 100%;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    max-width: 344px;
}

footer .footer-top .col-title {
    color: #fff;
    position: relative;
    padding-bottom: 10px;
}

footer .footer-top .col-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: #A4D100;
}

footer .footer-top .contact-links {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
}

footer .footer-top .contact-links a {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 12px;
    line-height: 14px;
}

footer .footer-top .contact-links a span {
    display: block;
    max-width: 200px;
    transition: all 0.2s;
}

footer .footer-top .contact-links a svg {
    font-size: 12px;
}

footer .footer-top .contact-links a:hover span {
    color: #A4D100;
}

footer .accordion {
    background-color: transparent;
}

footer .accordion .accordion-item {
    background-color: transparent;
    border: none;
}

footer .accordion .accordion-button {
    padding: 0;
    border-radius: none;
    background-color: transparent;
    color: #fff;
    font-size: 14px;
    margin-bottom: 5px;
    position: relative;
    box-shadow: none !important;
}

footer .accordion .accordion-button:focus {
    box-shadow: none !important;
}

footer .accordion .accordion-button::after {
    content: "";
    position: absolute;
    width: 0;
    height: 1px;
    background-color: #fff;
    left: 0;
    bottom: -3px;
    transition: 0.3s;
    transform: rotate(0) !important;
}

footer .accordion .accordion-button[aria-expanded=true]::after {
    width: 100%;
    transform: rotate(0) !important;
}

footer .accordion .accordion-body {
    padding: 0;
}

footer .accordion .accordion-body .collapse-inner {
    padding: 10px 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    max-width: 400px;
}

footer .footer-bottom {
    width: 100%;
}

footer .footer-bottom .copyright {
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 14px;
}

footer .footer-bottom .copyright a {
    color: #A4D100;
}

/*====================COMPONENT==========================*/
/*===============PRELOADER==================*/
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #333333;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    z-index: 999999;
}

.preloader .preloader-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 4px solid #A4D100;
    border-bottom-color: transparent;
    border-right-color: transparent;
    animation: loader 0.5s linear infinite;
}

.preloader .logo {
    max-width: 80%;
    animation: preloader-logo 2s ease infinite;
}

.preloader .logo img {
    max-width: 100%;
    height: auto;
    -o-object-fit: contain;
    object-fit: contain;
}

@keyframes loader {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes preloader-logo {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }

    100% {
        opacity: 1;
    }
}

/*===========================SECTION TITLE============================*/
.section-title {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 30px;
}

.section-title .main-title {
    font-size: 24px;
    line-height: 30px;
    color: #000000;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
}

.section-title .sub-title {
    font-size: 14px;
    line-height: 24px;
    color: #000000;
    font-weight: 500;
    text-align: center;
}

@media (min-width: 768px) {
    .section-title .sub-title {
        font-size: 16px;
    }
}

.section-title.white .main-title,
.section-title.white .sub-title {
    color: #fff;
}

/*===========================GRID CONTAINER================================*/
.grid-container {
    width: 100%;
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    place-items: center;
}

@media (min-width: 992px) {
    .grid-container.max-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .custom-col-10 {
        flex: 0 0 auto;
        width: 10%;
    }
}

@media (min-width: 1200px) {
    .grid-container.max-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) {
    .grid-container.max-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .grid-container.max-4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1200px) {
    .grid-container.max-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 576px) {
    .grid-container.max-5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .grid-container.max-5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1200px) {
    .grid-container.max-5 {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1400px) {
    .grid-container.max-5 {
        grid-template-columns: repeat(5, 1fr);
    }
}

/*=======================PRIMARY CARD==========================*/
.primary-card {
    width: 100%;
    max-width: 450px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.primary-card .card-image {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: relative;
}

.primary-card .card-image .main-image {
    width: 100%;
    height: 300px;
}

.primary-card .card-image .main-image img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.primary-card .card-image .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.3s;
}

.primary-card .card-image .image-overlay .overlay-icon {
    width: 60px;
    height: 60px;
    -o-object-fit: contain;
    object-fit: contain;
    transform: scale(0);
    transition: all 0.3s;
}

.primary-card .card-body {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    background-color: #fff;
    padding: 20px;
}

.primary-card .card-body .card-title {
    font-weight: 600;
    color: #212529;
    font-size: 18px;
    line-height: 24px;
    text-align: center;
}

.primary-card .card-body .card-title:hover {
    color: #A4D100;
}

.primary-card .card-body .card-subtitle {
    color: #212529;
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    text-align: center;
}

.primary-card .card-body .card-line {
    width: 90px;
    height: 3px;
    background-color: #A4D100;
}

.primary-card .card-body .card-date {
    font-size: 14px;
    line-height: 18px;
    font-weight: 400;
    color: #212529;
    text-align: center;
}

.primary-card .card-body .card-text {
    color: #212529;
    font-size: 14px;
    text-align: center;
    line-height: 20px;
}

.primary-card .card-body .card-text a {
    color: #A4D100;
    text-decoration: underline;
    font-weight: 500;
}

.primary-card .card-body .card-text a:hover {
    text-decoration: none;
}

.primary-card:hover .card-image .image-overlay {
    opacity: 1;
}

.primary-card:hover .card-image .image-overlay .overlay-icon {
    transform: scale(1);
}

.primary-card.event .card-image .main-image {
    height: 270px;
}

.primary-card.event .card-body {
    min-height: 170px;
}

.primary-card.event .card-body .card-title {
    font-size: 16px;
}

.primary-card.commite-member {
    max-width: 300px;
}

.primary-card.commite-member .card-image .main-image {
    height: auto;
}

@media (min-width: 576px) {
    .primary-card.commite-member .card-image .main-image {
        height: 170px;
    }
}

@media (min-width: 768px) {
    .primary-card.commite-member .card-image .main-image {
        height: 230px;
    }
}

.primary-card.commite-member .card-body .card-subtitle {
    font-size: 14px;
}

.primary-card.mentor {
    max-width: 300px;
}

.primary-card.mentor .card-image .main-image {
    height: auto;
}

.primary-card.mentor .card-body .card-subtitle {
    font-size: 14px;
}

.primary-card.report {
    max-width: 400px;
}

.primary-card.report .card-image .main-image {
    height: auto;
}

/*==================SEE ALL BUTTON=====================*/
.see-all-button {
    width: 100%;
    max-width: 175px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px 30px;
    text-transform: uppercase;
    font-size: 13px;
    line-height: 13px;
    color: #333333;
    border: 1.5px solid #333333;
    margin: 0 auto;
    margin-top: 30px;
}

.see-all-button.white {
    color: #fff;
    border: 1.5px solid #fff;
}

.see-all-button:hover {
    background-color: #A4D100;
    border-color: #A4D100;
    color: #fff;
}

/*==================PERSON MODAL=====================*/
.modal_backdrop,
.discount-modal_backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.6);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    opacity: 0;
    animation: backdrop 0.3s ease forwards;
}

.modal_backdrop {
    z-index: 9990;
}

.discount-modal_backdrop {
    z-index: 9970;
}

@keyframes backdrop {
    100% {
        opacity: 1;
    }
}

.person-modal {
    width: 95%;
    max-width: 900px;
    max-height: 70vh;
    overflow: auto;
    padding: 10px;
    background-color: #333333;
    border-radius: 10px;
    z-index: 9999;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 10px;
    opacity: 0;
    animation: modal 0.5s ease forwards;
}

@media (min-width: 992px) {
    .person-modal {
        max-height: 50vh;
    }
}

.person-modal .modal-inner {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    align-items: flex-start;
    padding: 15px 0;
    background-color: #333333;
    border-radius: 10px;
}

.person-modal .modal-inner .close-button {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: #fff;
    background-color: #A4D100;
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    border: 2px solid #A4D100;
    transition: all 0.3s;
}

.person-modal .modal-inner .close-button:hover {
    background-color: #333333;
    color: #A4D100;
}

.person-modal .modal-inner .row {
    width: 100%;
}

.person-modal .modal-inner .row .col-12 {
    margin-bottom: 40px;
}

.person-modal .modal-inner .row .col-12:last-child {
    margin-bottom: 0;
}

@media (min-width: 992px) {
    .person-modal .modal-inner .row .col-12 {
        margin-bottom: 0;
    }
}

.person-modal .modal-inner .mentor-image {
    position: relative;
    width: 200px;
    height: 200px;
    border: 1px solid #fff;
    border-radius: 15px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background: linear-gradient(137.95deg, #646565 4.08%, #525353 31.86%, #242324 87.64%, #1F1E1F 92.98%);
}

.person-modal .modal-inner .mentor-image img.main {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    border-radius: 15px;
}

.person-modal .modal-inner .mentor-image img.flag {
    width: 35px;
    height: 20px;
    -o-object-fit: contain;
    object-fit: contain;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
}

.person-modal .modal-inner .mentor-image:hover {
    background: #A4D100;
}

.person-modal .modal-inner .modal-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
    max-height: 260px;
    overflow: auto;
}

.person-modal .modal-inner .modal-content::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

.person-modal .modal-inner .modal-content::-webkit-scrollbar-thumb {
    background-color: #A4D100;
}

.person-modal .modal-inner .modal-content .title {
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 0;
    color: #fff;
}

@media (min-width: 576px) {
    .person-modal .modal-inner .modal-content .title {
        font-size: 32px;
    }
}

.person-modal .modal-inner .modal-content .subtitle {
    margin-bottom: 0;
    font-size: 18px;
    color: #fff;
}

.person-modal .modal-inner .modal-content .text {
    font-size: 14px;
    line-height: 22px;
    color: #fff !important;
    background-color: transparent !important;
}

.person-modal .modal-inner .modal-content .text * {
    color: #fff !important;
    background-color: transparent !important;
}

@keyframes modal {
    100% {
        opacity: 1;
    }
}

/*=======================SCROLL BUTTON============================*/
.scroll-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background-color: #333333;
    color: #fff;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 999;
    border: 1px solid #fff;
    animation: tool 0.3s ease forwards;
    border-radius: 5px;
    transition-duration: .3s;
}

.scroll-button:hover {
    border-radius: 50%;
}

@keyframes tool {
    0% {
        opacity: 0;
        transform: translateY(200px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/*======================SOCIAL TOOLBAR=======================*/
.social-toolbar {
    position: fixed;
    bottom: 20px;
    right: 20px;
    transition: 0.3s;
    z-index: 999;
}

.social-toolbar.fixed-true {
    bottom: 85px;
}

.social-toolbar .open-toolbar-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-color: #A4D100;
    font-size: 28px;
    border: 1px solid #fff;
}

.social-toolbar .social-icons {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(-50px);
    animation: toolbaricons 0.3s ease forwards;
}

.social-toolbar .social-icons .icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 30px;
    border: 1px solid #fff;
}

.social-toolbar .social-icons .icon img {
    width: 30px;
    height: 30px;
    -o-object-fit: contain;
    object-fit: contain;
}

.social-toolbar .social-icons .icon svg,
.social-toolbar .social-icons .icon img {
    transition: all 0.3s;
}

.social-toolbar .social-icons .icon:hover svg,
.social-toolbar .social-icons .icon:hover img {
    transform: scale(0.8);
}

.social-toolbar .social-icons .icon.wp {
    background-color: #25d366;
}

.social-toolbar .social-icons .icon.msg {
    background-color: #ff6a00;
}

.social-toolbar .social-icons .icon.tg {
    background-color: #0088cc;
}

@keyframes toolbaricons {
    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

/*=========================GALLERY IMAGE==========================*/
.gallery-image {
    display: block;
    width: 100%;
    position: relative;
}

.gallery-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.gallery-image .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.2s;
}

.gallery-image .image-overlay .zoom-button {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    font-size: 22px;
    color: #333333;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    transform: scale(0);
}

.gallery-image:hover .image-overlay {
    opacity: 1;
}

.gallery-image:hover .image-overlay .zoom-button {
    transform: scale(1);
}

.primary-button {
    min-width: 140px;
    font-size: 12px;
    font-weight: 600;
    line-height: 18px;
    letter-spacing: 1px;
    background-color: #A4D100;
    color: #fff;
    padding: 15px;
    border-radius: 10px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: center;
    white-space: nowrap;
    text-transform: uppercase;
}

.primary-button:hover {
    background-color: #333333;
}

@media (min-width: 768px) {
    .primary-button {
        font-size: 14px;
        min-width: 155px;
    }
}

.card-skeleton {
    width: 100%;
    background-color: gray;
}

.card-skeleton.event {
    max-width: 450px;
    min-height: 440px;
}

.conference-poster {
    width: 100%;
    display: block;
}

.conference-poster img {
    width: 100%;
    height: auto;
    -o-object-fit: contain;
    object-fit: contain;
}

.section-heading {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
    margin-left: 12px;
    color: #000;
}

.section-heading.white {
    color: #fff;
}

.section-heading .title {
    text-transform: lowercase;
    font-weight: 700;
    margin: 0;
}

.section-heading .subtitle {
    text-transform: uppercase;
    font-weight: 700;
    color: #A4D100;
}

.section-heading .conference-design {
    width: 100%;
    max-width: 360px;
}

.section-heading .conference-design img {
    width: 100%;
    height: auto;
    -o-object-fit: contain;
    object-fit: contain;
}

/*============================BANNER===============================*/
.swiper-pagination {
    bottom: 20px !important;
}

.swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #A4D100;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

.banner-section {
    width: 100%;
    padding: 0;
    margin: 0;
    margin-bottom: -2px;
    margin-top: 45px;
}

.banner-section .swiper {
    width: 100%;
}

.banner-section .banner-slide {
    width: 100%;
    position: relative;
}

.banner-section .banner-slide video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    z-index: 9;
}

.banner-section .banner-slide .banner-image {
    width: 100%;
    height: auto;
    -o-object-fit: contain;
    object-fit: contain;
}

.banner-section .banner-slide .banner-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 0;
    display: none;
}

@media (min-width: 400px) {
    .banner-section .banner-slide .banner-content {
        display: flex;
    }
}

@media (min-width: 992px) {
    .banner-section .banner-slide .banner-content {
        padding: 100px 0;
    }
}

@media (min-width: 1200px) {
    .banner-section .banner-slide .banner-content {
        padding: 120px 0;
    }
}

.banner-section .banner-slide .banner-content .content-inner {
    width: 100%;
    color: #fff;
    text-align: center;
}

.banner-section .banner-slide .banner-content .content-inner .content-title {
    color: #fff;
    margin-bottom: 15px;
}

.banner-section .banner-slide .banner-content .content-inner .content-text {
    color: #fff;
    background-color: transparent !important;
}

@media (min-width: 992px) {
    .banner-section .banner-slide .banner-content .content-inner .content-text {
        font-size: 24px;
    }
}

@media (min-width: 1200px) {
    .banner-section .banner-slide .banner-content .content-inner .content-text {
        font-size: 30px;
    }
}

.banner-section .banner-slide .banner-content .content-inner .content-text * {
    color: #fff;
    background-color: transparent !important;
}

@media (min-width: 992px) {
    .banner-section .banner-slide .banner-content .content-inner .content-text * {
        font-size: 24px;
    }
}

@media (min-width: 1200px) {
    .banner-section .banner-slide .banner-content .content-inner .content-text * {
        font-size: 30px;
    }
}

.banner-section.home .banner-slide .banner-content {
    align-items: flex-end;
}

.banner-section.home .banner-slide .banner-content .content-inner {
    text-align: end;
}

/*==================TIMER SECTION===================*/
.timer-section {
    background: linear-gradient(to right, #A4D100 50%, #A4D100 50% 100%);
    padding: 20px 0;
}

.timer-section .timer-inner {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.timer-section .timer-inner .left {
    width: 50%;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    /*padding-right: 20px;*/
}

/*@media (min-width: 768px) {
    .timer-section .timer-inner .left {
        padding-right: 30px;
    }
}*/

.timer-section .timer-inner .right {
    width: 50%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    /*padding-left: 20px;*/
}

/*@media (min-width: 768px) {
    .timer-section .timer-inner .right {
        padding-left: 30px;
    }
}*/

@media (max-width: 576px) {
    .timer-section .timer-inner {
        flex-wrap: wrap;
        gap: 1rem;
        padding-inline: 0;
    }
    
    .timer-section .timer-inner .right, .timer-section .timer-inner .left {
        width: 100%;
    }
}

.timer-section .content {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 10px;
    text-align: end;
    color: #fff;
}

.timer-section .content .title {
    font-size: 14px;
    line-height: 14px;
    font-weight: 600;
    margin: auto;
}

@media (min-width: 768px) {
    .timer-section .content .title {
        font-size: 20px;
        line-height: 20px;
    }
}

@media (min-width: 992px) {
    .timer-section .content .title {
        font-size: 24px;
        line-height: 24px;
    }
}

.timer-section .content .subtitle {
    font-size: 12px;
    line-height: 12px;
    letter-spacing: 1px;
}

@media (min-width: 768px) {
    .timer-section .content .subtitle {
        font-size: 14px;
        line-height: 14px;
    }
}

@media (min-width: 992px) {
    .timer-section .content .subtitle {
        font-size: 16px;
        line-height: 16px;
    }
}

.timer-section .primary-button {
    background-color: #333333;
}

.timer-section .timer {
    margin: auto;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.timer-section .timer .date-item {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.timer-section .timer .date-item .item-value {
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    line-height: 16px;
}

@media (min-width: 768px) {
    .timer-section .timer .date-item .item-value {
        font-size: 20px;
        line-height: 20px;
    }
}

@media (min-width: 992px) {
    .timer-section .timer .date-item .item-value {
        font-size: 24px;
        line-height: 24px;
    }
}

.timer-section .timer .date-item .item-label {
    color: #333333;
    font-size: 12px;
    line-height: 12px;
    font-weight: 600;
}

@media (min-width: 768px) {
    .timer-section .timer .date-item .item-label {
        font-size: 14px;
        line-height: 14px;
    }
}

@media (min-width: 992px) {
    .timer-section .timer .date-item .item-label {
        font-size: 16px;
        line-height: 16px;
    }
}

/*==========================ABOUT HOME SECTION=============================*/
.about-home-section {
    padding: 20px 0;
}

@media (min-width: 768px) {
    .about-home-section {
        padding: 40px 0;
    }
}

/*.about-home-section .container {*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*    gap: 30px;*/
/*}*/

.about-home-section .text {
    color: #212529 !important;
    background-color: transparent;
}

.about-home-section .text * {
    color: #212529 !important;
    background-color: transparent;
}

.about-home-section .author-row {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 10px;
}

@media (min-width: 768px) {
    .about-home-section .author-row {
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }
}

.about-home-section .author-row .author-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.about-home-section .author-row .author-image img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    -o-object-fit: cover;
    object-fit: cover;
}

.about-home-section .author-row .author-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 5px;
}

.about-home-section .author-row .author-info .author-title {
    font-size: 18px;
    line-height: 18px;
    font-weight: 600;
}

.about-home-section .author-row .author-info .author-subtitle {
    font-size: 14px;
    line-height: 14px;
    font-weight: 500;
}

.about-home-section .author-row .author-signature {
    widows: 150px;
    height: 75px;
}

.about-home-section .author-row .author-signature img {
    width: 150px;
    height: 75px;
    -o-object-fit: contain;
    object-fit: contain;
}

/*=======================SCROLLING TEXT======================*/
.scrolling-text {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    min-height: 90px;
    background-color: #333333;
    padding: 10px 0;
    overflow: hidden;
}

.scrolling-text .scrolling-wrapper {
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.scrolling-text .text {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 18px;
    transform: translateX(0);
    animation: scroll-text 35s linear infinite;
    white-space: nowrap;
}

@media (min-width: 768px) {
    .scrolling-text .text {
        font-size: 22px;
    }
}

@media (min-width: 992px) {
    .scrolling-text .text {
        font-size: 26px;
    }
}

.scrolling-text .text span:nth-child(even) {
    color: #A4D100;
}

@keyframes scroll-text {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(100%);
    }
}

/*custom banner section*/
.custom-banner-section {
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    padding: 40px 14px;
    margin-top: -3px;
}


@media (min-width: 768px) {
    .custom-banner-section {
    min-height: 470px;
    }
}

@media (min-width: 992px) {
    .custom-banner-section {
        padding: 60px 0;
    }
}

.custom-banner-section .row-1 {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
}

@media (min-width: 768px) {
    .custom-banner-section .row-1 {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        align-items: flex-start;
    }
}

.custom-banner-section .price-info {
    color: #fff;
    font-size: 30px;
    line-height: 30px;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 15px;
}

.custom-banner-section .price-info .old-price, .tickets-section .old-price {
    position: relative;
    
    &::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 2px;
        background-color: red;
        bottom: 50%;
        left: 0;
        transform: rotate(175deg);
    }
}

.custom-banner-section .price-info .new-price {
    font-size: 40px;
    line-height: 40px;
    font-weight: 700;
}

@media (min-width: 768px) {
    .custom-banner-section .price-info {
        font-size: 40px;
        line-height: 40px;
    }

    .custom-banner-section .price-info .new-price {
        font-size: 50px;
        line-height: 50px;
    }
}

@media (min-width: 992px) {
    .custom-banner-section .price-info .new-price {
        font-size: 60px;
        line-height: 60px;
    }
}

@media (min-width: 1200px) {
    .custom-banner-section .price-info .new-price {
        font-size: 70px;
        line-height: 70px;
    }
}

.custom-banner-section .conference-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

.custom-banner-section .conference-info .date {
    text-transform: lowercase;
    font-size: 22px;
    font-weight: 700;
}

@media (min-width: 768px) {
    .custom-banner-section .conference-info {
        align-items: flex-end;
        text-align: end;
        font-size: 28px;
    }

    .custom-banner-section .conference-info .date {
        font-size: 34px;
    }
}

.custom-banner-section .row-2 {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

.custom-banner-section .signup-btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-color: #FFF;
    width: 100%;
    max-width: 350px;
    padding: 20px;
    border-radius: 20px;
    color: #333;
    text-transform: lowercase;
    letter-spacing: 1px;
    font-weight: 700;
    font-size: 20px;
    line-height: 20px;
}

@media (min-width: 768px) {
    .custom-banner-section .signup-btn {
        font-size: 24px;
        line-height: 24px;
    }
}

@media (min-width: 992px) {
    .custom-banner-section .signup-btn {
        font-size: 28px;
        line-height: 28px;
    }
}

@media (min-width: 1200px) {
    .custom-banner-section .signup-btn {
        font-size: 34px;
        line-height: 34px;
    }
}

/*ticket sections*/
.tickets-section {
    padding: 40px 0;
    background-image: url('../images/ticket-bg.jpg');
    background-size: cover;
    background-position: right;
}

.tickets-section .row {
    width: 100%;
}

.tickets-section .row .col-12 {
    margin-bottom: 40px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

@media (min-width: 992px) {
    .tickets-section .row .col-12 {
        margin-bottom: 0;
    }
}

.tickets-section .ticket-card {
    width: 100%;
    /*border: 1px solid #333333;*/
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    cursor: default;
    transition: all 0.3s;
}

@media (min-width: 768px) {
    .tickets-section .ticket-card {
        padding: 25px 40px;
    }
}

@media (min-width: 992px) {
    .tickets-section .ticket-card {
        /*max-width: 425px;*/
        padding: 25px 30px;
        align-items: flex-start;
        height: 100%;
    }
}

@media (min-width: 1200px) {
    .tickets-section .ticket-card {
        padding: 35px 15px 10px;
        gap: 35px;
    }
}

.tickets-section .ticket-card .ticket-header {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    align-items: flex-start;
}

@media (min-width: 992px) {
    .tickets-section .ticket-card .ticket-header {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 20px;
    }
}

.tickets-section .ticket-card .ticket-header .ticket-participants,
.tickets-section .ticket-card .ticket-header .ticket-date {
    font-size: 14px;
    text-transform: uppercase;
    color: #333333;
    font-weight: 700;
}

@media (min-width: 768px) {
    .tickets-section .ticket-card .ticket-header .ticket-participants,
    .tickets-section .ticket-card .ticket-header .ticket-date {
        font-size: 20px;
    }
}

@media (min-width: 992px) {

    .tickets-section .ticket-card .ticket-header .ticket-participants,
    .tickets-section .ticket-card .ticket-header .ticket-date {
        font-size: 14px;
    }
}

@media (min-width: 1400px) {

    .tickets-section .ticket-card .ticket-header .ticket-participants {
        font-size: 18px;
    }
    
    
    .tickets-section .ticket-card .ticket-header .ticket-date {
        font-size: 30px;
    }
}

.tickets-section .ticket-card .ticket-header .ticket-price {
    font-size: 32px;
    color: #A4D100;
    font-weight: 700;
    text-transform: lowercase;
    text-align: end;
}

@media (min-width: 768px) {
    .tickets-section .ticket-card .ticket-header .ticket-price {
        font-size: 40px;
        line-height: 40px;
    }
}

@media (min-width: 992px) {
    .tickets-section .ticket-card .ticket-header .ticket-price {
        font-size: 32px;
        line-height: 32px;
        text-align: start;
    }
}

@media (min-width: 1200px) {
    .tickets-section .ticket-card .ticket-header .ticket-price {
        font-size: 38px;
        line-height: 38px;
    }
}

@media (min-width: 1400px) {
    .tickets-section .ticket-card .ticket-header .ticket-price {
        font-size: 56px;
        line-height: 56px;
    }
}

.tickets-section .ticket-card .ticket-title {
    width: 100%;
    font-weight: 700;
    color: #333333;
    font-size: 22px;
}

@media (min-width: 768px) {
    .tickets-section .ticket-card .ticket-title {
        font-size: 28px;
        line-height: 36px;
    }
}

@media (min-width: 992px) {
    .tickets-section .ticket-card .ticket-title {
        min-height: 65px;
    }
}

@media (min-width: 1200px) {
    .tickets-section .ticket-card .ticket-title {
        font-size: 32px;
        line-height: 40px;
        max-width: 280px;
    }
}

.tickets-section .ticket-card .ticket-text {
    color: #000 !important;
    background-color: transparent !important;
    font-size: 14px;
}

.tickets-section .ticket-card .ticket-text * {
    color: #000 !important;
    background-color: transparent !important;
}

@media (min-width: 768px) {
    .tickets-section .ticket-card .ticket-text {
        font-size: 16px;
    }
}

@media (min-width: 992px) {
    .tickets-section .ticket-card .ticket-text {
        min-height: 120px;
    }
}

@media (min-width: 1200px) {
    .tickets-section .ticket-card .ticket-text {
        font-size: 20px;
        min-height: 150px;
    }
}

.tickets-section .ticket-card .ticket-button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 5px;
    color: #FFF;
    font-weight: 700;
    transition: all .3s !important;
    background-color: #A4D100;
    border-radius: 20px;
    padding: 20px;
}

.tickets-section .ticket-card .ticket-button:hover {
    background-color: #333;
}

.tickets-section .ticket-card .ticket-button2 {
    background-color: #333;
}

.tickets-section .ticket-card .ticket-button2:hover {
    background-color: #A4D100;
}

.tickets-section .ticket-card .ticket-button img {
    display: none;
    -o-object-fit: contain;
    object-fit: contain;
}

.tickets-section .ticket-card .ticket-button img:nth-child(2) {
    display: none;
}

@media (min-width: 768px) {
    .tickets-section .ticket-card .ticket-button {
        font-size: 20px;
    }
}

@media (min-width: 1400px) {
    .tickets-section .ticket-card .ticket-button {
        font-size: 22px;
    }
}

/*.tickets-section .ticket-card:hover {*/
/*    background-color: #A4D100;*/
/*    border-color: #A4D100;*/
/*}*/

/*.tickets-section .ticket-card:hover .ticket-header .ticket-participants,*/
/*.tickets-section .ticket-card:hover .ticket-header .ticket-date,*/
/*.tickets-section .ticket-card:hover .ticket-header .ticket-price {*/
/*    color: #fff;*/
/*}*/

/*.tickets-section .ticket-card:hover .ticket-title {*/
/*    color: #fff;*/
/*}*/

/*.tickets-section .ticket-card:hover .ticket-text {*/
/*    color: #fff !important;*/
/*}*/

/*.tickets-section .ticket-card:hover .ticket-text * {*/
/*    color: #fff !important;*/
/*}*/

/*.tickets-section .ticket-card:hover .ticket-button {*/
/*    color: #fff;*/
/*}*/

/*.tickets-section .ticket-card:hover .ticket-button img:nth-child(1) {*/
/*    display: none;*/
/*}*/

/*.tickets-section .ticket-card:hover .ticket-button img:nth-child(2) {*/
/*    display: block;*/
/*}*/

.mentors-section {
    background-color: #333333;
    padding: 40px 0;
}

.mentors-section .row .col-12 {
    margin-bottom: 30px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.mentors-section .mentor-card {
    width: 100%;
    max-width: 200px;
    cursor: pointer;
}

.mentors-section .mentor-card .mentor-image {
    position: relative;
    width: 200px;
    height: 200px;
    border: 1px solid #fff;
    border-radius: 15px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background: linear-gradient(137.95deg, #646565 4.08%, #525353 31.86%, #242324 87.64%, #1F1E1F 92.98%);
}

@media(max-width:576px) {
    .mentors-section .mentor-card .mentor-image {
        width: 100%;
        height: 154px;
    }

    .mentors-section .mentor-card {
        margin-bottom: 10px;
    }

}

.mentors-section .mentor-card .mentor-image img.main {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 15px;
}

.mentors-section .mentor-card .mentor-image img.flag {
    width: 75px;
    height: 30px;
    -o-object-fit: contain;
    object-fit: contain;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
}

.mentors-section .mentor-card .mentor-name {
    margin-top: 25px;
    width: 100%;
    color: #fff;
    text-align: center;
    font-weight: 700;
}

.mentors-section .mentor-card:hover .mentor-image {
    background: #A4D100;
}

.program-section {
    padding: 40px 0;
}

.program-section .program-rows {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.program-section .program-rows .program-row {
    width: 100%;
    padding: 10px 0;
}

.program-section .program-rows .program-row:last-child {
    border-bottom: none;
}

@media (min-width: 768px) {
    .program-section .program-rows .program-row {
        padding: 16px;
    }
}

.program-row-bg {
    background-color: rgba(108, 117, 125, 0.1);
    border-radius: 16px;
}

.program-row-border {
    border-bottom: 1px solid rgba(108, 117, 125, 0.1);
}

.program-section .container .section-heading .title, .location-section .container .section-heading .title {
    color: #A4D100;
}

.program-section .program-rows .program-row .col-12 {
    padding: 0;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
}

.program-section .program-rows .program-row .program-interval {
    font-weight: 700;
    color: #242324;
    font-size: 18px;
}

@media (min-width: 992px) {
    .program-section .program-rows .program-row .program-interval {
        font-size: 20px;
    }
}

.program-section .program-rows .program-row .program-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
    color: #242324;
}

.program-section .program-rows .program-row .program-content .program-title {
    font-size: 18px;
    font-weight: 700;
}

.program-section .program-rows .program-row .program-content .program-title.break,
.program-section .program-rows .program-row .program-interval.break {
    color: #A4CD39;
}

@media (min-width: 992px) {
    .program-section .program-rows .program-row .program-content .program-title {
        font-size: 20px;
    }
}

.program-section .program-rows .program-row.content-false .program-interval {
    color: #A4D100;
}

.program-section .program-rows .program-row.content-false .program-content {
    color: #A4D100;
}

.address-section {
    width: 100%;
    padding: 0;
    position: relative;
}

.address-section .address-info {
    width: 100%;
    background-color: #A4D100;
    padding: 20px 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

@media (min-width: 768px) {
    .address-section .address-info {
        padding: 40px 0;
    }
    .program-section .container, .master-classes-section .section-heading {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

@media (min-width: 992px) {
    .address-section .address-info {
        background-color: rgba(164, 209, 0, 0.7);
        position: absolute;
        top: 0;
        left: 0;
        z-index: 20;
    }
}

.address-section .address-info .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
}

@media (min-width: 768px) {
    .address-section .address-info .container {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.address-section .address-info .container .title {
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
}

@media (min-width: 768px) {
    .address-section .address-info .container .title {
        font-size: 34px;
    }
}

@media (min-width: 992px) {
    .address-section .address-info .container .title {
        font-size: 42px;
    }
}

.address-section .address-info .container .info {
    max-width: 500px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

@media (min-width: 768px) {
    .address-section .address-info .container .info {
        font-size: 22px;
    }
}

@media (min-width: 992px) {
    .address-section .address-info .container .info {
        font-size: 26px;
    }
}

.address-section .address-info .container .info .icon {
    display: block;
    width: 30px;
    height: 45px;
    -o-object-fit: contain;
    object-fit: contain;
}

@media (min-width: 768px) {
    .address-section .address-info .container .info .icon {
        width: 35px;
        height: 50px;
    }
}

.address-section .map {
    width: 100%;
    position: relative;
}

.address-section .map img {
    width: 100%;
    height: auto;
    -o-object-fit: contain;
    object-fit: contain;
}

.master-classes-section {
    width: 100%;
    background-color: #333333;
    padding: 40px 0;
}

.master-classes-section .row {
    width: 100%;
    margin: auto;
}

.master-classes-section .row .col-12 {
    margin-bottom: 30px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.masterclass-card {
    width: 100%;
    max-width: 320px;
    height: 320px;
    border-radius: 20px;
    background-color: #fff;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: flex-end;
    position: relative;
}

.masterclass-card .mc-select-button {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border: 1px solid #A4D100;
    color: #fff;
    font-size: 14px;
}

.masterclass-card.active .mc-select-button {
    background-color: #A4D100;
}

.masterclass-card .card-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 20px;
    transition: all 0.3s;
    background: linear-gradient(183.01deg, rgba(51, 51, 51, 0) 39.96%, #A1CC3A 95.22%);
    opacity: 0;
    z-index: 0;
}

.masterclass-card .image {
    max-width: 100%;
    z-index: 1;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: flex-end;
}

.masterclass-card .image img {
    border-radius: 20px;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.masterclass-card .card-layer-2 {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 20px;
    transition: all 0.3s;
    background: linear-gradient(178.91deg, rgba(51, 51, 51, 0) 39.07%, #FFF 132.36%);
    z-index: 2;
}

.masterclass-card .card-content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 3;
    border-radius: 20px;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 15px;
}

@media (min-width: 576px) {
    .masterclass-card .card-content {
        padding: 16px 8px;
    }
}

.masterclass-card .card-content .participiants {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
    color: #000;
    font-weight: 700;
    font-size: 12px;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.masterclass-card .card-content .participiants span {
    width: 35px;
    height: 35px;
    border-radius: 10px;
    background-color: #A4D100;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    list-style: 16px;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.masterclass-card .card-content .title {
    font-weight: 800;
    color: #000;
    font-size: 20px;
    max-width: 115px;
    line-height: 1.3;
}

.masterclass-card .card-content .sponsor {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: #000;
}

.masterclass-card .card-content .sponsor span:nth-child(1) {
    font-size: 8px;
    font-weight: 700;
}

.masterclass-card .card-content .sponsor span:nth-child(2) {
    font-size: 12px;
}

.masterclass-card .card-content .subtitle {
    width: 100%;
    color: #000;
    font-weight: 700;
    font-size: 12px;
}

.masterclass-card .card-content .bottom {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background-color: #A4D100;
    padding: 14px 18px;
    border-radius: 12px;
}

.masterclass-card .card-content .bottom .register-button {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 3px;
    color: #000;
    font-weight: 700;
    font-size: 19px;
}

.masterclass-card .card-content .bottom .register-button img {
    display: block;
    width: 12px;
    height: 12px;
    -o-object-fit: contain;
    object-fit: contain;
}

.masterclass-card .card-content .bottom .register-button img:nth-child(2) {
    display: none;
}

.masterclass-card .card-content .bottom .price {
    font-weight: 700;
    color: #FFF;
    font-size: 22px;
}

.masterclass-card:hover .card-layer {
    opacity: 1;
}

.masterclass-card:hover .card-layer-2 {
    opacity: 0;
}

.masterclass-card:hover .bottom .register-button img:nth-child(1) {
    display: none;
}

.masterclass-card:hover .bottom .register-button img:nth-child(2) {
    display: block;
}

/*========================PARTNER SECTION==========================*/
.partner-section {
    padding: 40px 0;
}

@media (min-width: 768px) {
    .partner-section {
        padding: 60px 0;
    }
}

.partner-section .section-heading .title {
    color: #A4D100;
}

.partner-section .partner-wrapper {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.partner-section .partner-logo {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 60px;
}

.partner-section .partner-logo img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

#platinium_partners .partner-logo {
    width: 250px;
    height: 100px;
}


#platinium_partners .partner-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comment-section {
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 40px 0;
}

@media (min-width: 768px) {
    .comment-section {
        padding: 60px 0;
    }
}

.comment-section .section-heading .title {
    color: #A4D100;
}

.comment-section .row .col-12 {
    padding: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.comment-section .video {
    width: 100%;
    max-width: 460px;
    height: 255px;
}

.comment-section .video iframe {
    width: 100%;
    height: 100%;
}

.comment-section .comments-wrapper {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 30px;
}

.comment-section .comments-wrapper .slide-buttons {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.comment-section .comments-wrapper .slide-buttons .slide-button {
    cursor: pointer;
    width: 25px;
    height: 25px;
    border: 1px solid #fff;
    border-radius: 5px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 12px;
}

.comment-section .comments-wrapper .comments-swiper {
    width: 100%;
    height: 500px;
}

@media (min-width: 1200px) {
    .comment-section .comments-wrapper .comments-swiper {
        height: 400px;
    }
}

@media (max-width: 576px) {
    .comment-section .comments-wrapper .comments-swiper {
        height: 340px;
    }
}

.comment-section .comments-wrapper .comments-swiper .swiper-slide {
    justify-content: flex-start;
    align-items: flex-start;
    opacity: 0.6;
}

.comment-section .comments-wrapper .comments-swiper .swiper-slide-active {
    opacity: 1;
}

.comment-section .comments-wrapper .comments-swiper .comment-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    color: #fff;
}

.comment-section .comments-wrapper .comments-swiper .comment-wrapper .text {
    font-size: 14px;
    font-weight: 700;
    color: #fff !important;
    background-color: transparent !important;
}

@media (min-width: 576px) {
    .comment-section .comments-wrapper .comments-swiper .comment-wrapper .text {
        font-size: 16px;
    }
}

@media (min-width: 1200px) {
    .comment-section .comments-wrapper .comments-swiper .comment-wrapper .text {
        font-size: 18px;
    }
}

.comment-section .comments-wrapper .comments-swiper .comment-wrapper .text * {
    color: #fff !important;
    background-color: transparent !important;
}

.comment-section .comments-wrapper .comments-swiper .comment-wrapper .author {
    font-size: 18px;
    font-weight: 600;
}

@media (min-width: 576px) {
    .comment-section .comments-wrapper .comments-swiper .comment-wrapper .author {
        font-size: 22px;
    }
}

/*====================HOME IMAGE GALLERY SECTION======================*/
.gallery-images-section {
    padding: 0;
    margin: 0;
}

.gallery-images-section .gallery-image {
    height: 250px !important;
}

.gallery-images-section .gallery-image img {
    height: 250px !important;
    -o-object-fit: cover;
    object-fit: cover;
}

.discount-modal {
    width: 95%;
    max-width: 1400px;
    max-height: 85vh;
    min-height: 300px;
    border-radius: 15px;
    background-color: #fff;
    z-index: 9989;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 10px;
    opacity: 0;
    animation: modal 0.5s ease forwards;
    overflow: auto;
}

.discount-modal::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

.discount-modal-header {
    width: 100%;
    background-color: #A4D100;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 20px 10px;
}

@media (min-width: 576px) {
    .discount-modal-header {
        padding: 20px;
    }
}

.discount-modal-header .title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}

@media (min-width: 768px) {
    .discount-modal-header .title {
        font-size: 24px;
    }
}

@media (min-width: 992px) {
    .discount-modal-header .title {
        font-size: 28px;
    }
}

.discount-modal-header .close-button {
    min-width: 30px;
    min-height: 30px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    color: #A4D100;
    border-radius: 50%;
}

.discount-modal-body {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 20px 10px;
}

@media (min-width: 576px) {
    .discount-modal-body {
        padding: 20px;
    }
}

.discount-modal-body .tickets {
    width: 100%;
}

.discount-modal-body .tickets .ticket-card {
    width: 100%;
    border-bottom: 1px solid #333333;
    padding: 15px 0;
}

.discount-modal-body .tickets .ticket-card .col-8 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
    padding: 0;
    padding-right: 10px;
}

.discount-modal-body .tickets .ticket-card .col-4 {
    padding: 0;
    padding-left: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    align-items: flex-end;
    gap: 10px;
}

.discount-modal-body .tickets .ticket-card .ticket-title {
    font-size: 20px;
    font-weight: 700;
    color: #000;
}

@media (min-width: 768px) {
    .discount-modal-body .tickets .ticket-card .ticket-title {
        font-size: 26px;
    }
}

.discount-modal-body .tickets .ticket-card .ticket-content {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

@media (min-width: 768px) {
    .discount-modal-body .tickets .ticket-card .ticket-content {
        gap: 20px;
    }
}

.discount-modal-body .tickets .ticket-card .ticket-content .ticket-badge {
    font-weight: 700;
    color: #A4D100;
    text-transform: uppercase;
}

@media (min-width: 768px) {
    .discount-modal-body .tickets .ticket-card .ticket-content .ticket-badge {
        font-size: 20px;
    }
}

.discount-modal-body .tickets .ticket-card .ticket-select-btn {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border: 1px solid #A4D100;
    color: #fff;
    font-size: 14px;
}

.discount-modal-body .tickets .ticket-card .ticket-price {
    font-size: 22px;
    font-weight: 700;
    color: #A4D100;
    text-align: end;
}

.discount-modal-body .tickets .ticket-card.active {
    border-bottom-color: #A4D100;
}

.discount-modal-body .tickets .ticket-card.active .ticket-select-btn {
    background-color: #A4D100;
}

.discount-modal-body .mc-heading {
    font-weight: 700;
    color: #000;
    font-size: 24px;
    margin: 20px 0;
}

@media (min-width: 768px) {
    .discount-modal-body .mc-heading {
        font-size: 28px;
    }
}

@media (min-width: 992px) {
    .discount-modal-body .mc-heading {
        font-size: 32px;
    }
}

.discount-modal-body .mc-row .col-12 {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0;
}

@media (min-width: 768px) {
    .discount-modal-body .mc-row .col-12 {
        padding: 0 10px;
    }
}

.discount-modal-body form {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.discount-modal-body form .modal-result {
    font-size: 18px;
    font-family: 600;
}

.discount-modal-body form button {
    width: 100%;
    max-width: 320px;
    padding: 15px;
    background-color: #A4D100;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    color: #fff;
    border-radius: 10px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 18px;
}

.section-bg {
    background: linear-gradient(110deg, #a4d100 50%, #333 50% 100%);
    height: 230px;
}

.section-bg .section-title {
    font-size: 35px;
    color: #fff;
    padding-top: 50px;
    font-weight: 600;
    margin-bottom: 0;
}

.section-bg .right-img {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 50px;
}

.poster-contest-section {
    padding: 0;
}

.main-content {
    font-family: "Inter", sans-serif;
    padding-top: 1.5rem;
    font-size: 16px;
    line-height: 24.38px
}

.main-content ol {
    padding: .3rem 0 1.3rem 1.3rem;
}

.main-content ol li {
    line-height: 24.38px
}

.main-content ol li::marker {
    font-weight: 600;
}

.main-content .contest-inner {
    padding-bottom: 3rem;
    font-weight: 400;
}

.main-content ul {
    padding: 0;
}

.main-content ul li {
    position: relative;
    padding: .5rem 1rem;
    list-style-type: none;
}

.main-content ul:not(.presentation-list) li::before {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    background-color: #A1CC3A;
    border-radius: 50%;
    left: 0;
    top: 15px;
}

.main-content .contest-price .price-item {
    font-family: 'Inter', sans-serif;
    background-color: #A3CD3A;
    font-size: 2rem;
    font-weight: 600;
    padding: 2rem 0;
    text-align: center;
    color: #fff;
    border-radius: 1rem;
    margin: 0 1rem 2.5rem 0;
    cursor: pointer;
}


.main-content .contest-footer .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
}

.main-content .contest-footer .footer-bottom .left-img {
    max-width: 420px;
    max-height: 340px;
}

@media (max-width: 767px) {
    .section-bg .section-title {
        font-size: 23px;
    }
}

@media (min-width: 768px) and (max-width: 992px) {
    .section-bg .section-title {
        font-size: 28px;
    }
}

@media (max-width: 992px) {
    .section-bg {
        height: 200px;
    }
}

.portfolio-section {
    background-color: #A4D100;
    
    h5 {
        background-color: #A4D100;
    }
    
    .swiper-button-next, .swiper-button-prev {
        color: white;
    }
    
    .swiper-button-next {
        right: 0;
    }
    
    .swiper-button-prev {
        left: 0;
    }
}

.baku-title {
    color: #A4D100;
}

.location-section .btn-success {
    background-color: #A4D100 !important;
    border: none;
    padding: 6px 70px;
}

.contest-condition li {
    list-style: none;
}

.presentation-list li {
    list-style: inline;
    
    &::before {
        content: "-";
    }
}

.cursor-pointer {
    cursor: pointer;
}


/*# sourceMappingURL=styles.css.map */