:root {
  --navy: #082f57;
  --navy-2: #0d3b69;
  --navy-3: #061f3c;
  --green: #16864d;
  --green-2: #25a464;
  --mint: #dff3e7;
  --ink: #10253f;
  --muted: #5f6f82;
  --line: #d8e2e9;
  --paper: #ffffff;
  --paper-soft: #f6f9fa;
  --shadow: 0 20px 60px rgba(8, 47, 87, 0.12);
  --radius: 22px;
  --container: 1180px;
  --font-body: "Inter", system-ui, sans-serif;
  --font-display: "Montserrat", "Inter", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}



/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(8,47,87,.08);
}

.nav-wrap {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  height: 80px;
}

.brand-mark {
  position: relative;
  width: 48px;
  height: 48px;
  display: inline-block;
}

.brand-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 29px;
  height: 16px;
  border: 4px solid var(--navy);
  border-radius: 50%;
  transform-origin: center;
}

.ring-a { transform: translate(-50%, -50%) rotate(45deg); }
.ring-b { transform: translate(-50%, -50%) rotate(135deg); }
.ring-c { transform: translate(-50%, -50%) rotate(0deg); border-color: var(--green); }
.ring-d { transform: translate(-50%, -50%) rotate(90deg); border-color: var(--green); }


.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .02em;
}


.logo{
  height: 80%;
}

.main-nav > a {
  position: relative;
  padding: 8px 0;
}

.main-nav > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: width .25s ease;
}

.main-nav > a:hover::after {
  width: 100%;
}


.language-dropdown {
  position: relative;
  display: inline-block;
  font-family: Arial, sans-serif;
}

.language-btn {
  width: 80px;
  height: 37px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 20px;

  border: 2px solid #d7e0e9;
  border-radius: 13px;

  background: #0c3765;
  color: #fff;

  font-size: 12px;
  font-weight: 700;

  cursor: pointer;
  gap: 10px;
}

.language-arrow {
  transition: transform 0.25s ease;
}

.language-dropdown.active .language-arrow {
  transform: rotate(180deg);
}

.language-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;

  width: 90px;

  background: #fff;
  border: 2px solid #d7e0e9;
  border-radius: 16px;

  overflow: hidden;

  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);

  transition: 0.2s ease;

  z-index: 100;
}

.language-dropdown.active .language-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-menu button {
  width: 100%;
  height: 48px;

  border: none;
  background: #fff;

  color: #56657a;

  font-size: 12px;
  font-weight: 700;

  cursor: pointer;
}

.language-menu button:hover {
  background: #f1f5f9;
  color: #0c3765;
}




.menu-toggle {
  display: none;
  border: 0;
  background: none;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 5px 0;
  background: var(--navy);
  transition: .25s ease;
}

/* Buttons */
.btn {
  border: 0;
  border-radius: 8px;
  min-height: 46px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .02em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--green), #0e713f);
  color: white;
  box-shadow: 0 10px 24px rgba(22,134,77,.23);
}

.btn-outline {
  border: 1px solid var(--green);
  color: var(--green);
  background: white;
}

.btn-green {
  color: white;
  background: var(--green);
}

.btn-lg {
  min-height: 54px;
  padding-inline: 26px;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 96px 0;
}





/* section 1 */


/* Hero */
.hero {
  position: relative;
  min-height: 640px;
  overflow: hidden;

  
    min-height: 650px;

    background-image: url("../images/mountains.png");
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: 65% auto;
}

.hero::before {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  right: -130px;
  top: -120px;
  border: 1px solid rgba(8,47,87,.06);
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 34px rgba(8,47,87,.018),
    inset 0 0 0 70px rgba(22,134,77,.018),
    inset 0 0 0 110px rgba(8,47,87,.018);
}

.hero-grid {
  position: relative;
  z-index: 3;
  min-height: 640px;
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  align-items: center;
  gap: 40px;
}

.hero-copy {
  padding: 72px 0 110px;
}

.eyebrow {
  margin: 0 0 10px;
  font-size: 13px;
  color: var(--green);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.eyebrow.light {
  color: #9fe3b8;
}

.hero h1 {
  margin: 0;
  font: 800 clamp(46px, 6vw, 76px)/1.01 var(--font-display);
  letter-spacing: -3px;
  text-transform: uppercase;
  color: var(--navy);
}

.hero h1 span,
.hero h1 em {
  display: block;
}

.hero h1 em {
  color: var(--green);
  font-style: normal;
}

.title-rule {
  width: 330px;
  height: 1px;
  margin: 24px 0 18px;
  background: linear-gradient(90deg, var(--green) 0 46%, transparent 46% 54%, var(--green) 54%);
  position: relative;
}

.title-rule span {
  position: absolute;
  width: 9px;
  height: 9px;
  left: 50%;
  top: 50%;
  background: white;
  border: 2px solid var(--green);
  transform: translate(-50%, -50%) rotate(45deg);
}

.title-rule.compact {
  width: 150px;
  margin: 14px 0 24px;
}

.centered .title-rule {
  margin-left: auto;
  margin-right: auto;
}

.hero-tagline {
  margin: 0 0 14px;
  color: var(--green);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 500;
}

.hero-lead {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}






















/* =====================================
   APPLICATION STATISTICS
===================================== */

.application-stats {
    position: relative;
    overflow: hidden;

    padding: 65px 20px 70px;

    background:
        url("../images/fon.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    border-bottom: 1px solid #e8ecef;
}


.application-stats__container {
    max-width: 1100px;
    margin: 0 auto;
}


/* =====================================
   HEADER
===================================== */

.application-stats__heading {
    max-width: 700px;

    margin: 0 auto 40px;

    text-align: center;
}


.application-stats__eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 12px;
}


.application-stats__eyebrow p {
    margin: 0;

    color: #16864d;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 1px;
}


.application-stats__eyebrow span {
    width: 42px;
    height: 1px;

    background: #16864d;
}


.application-stats__diamond {
    width: 8px;
    height: 8px;

    margin: 7px auto 20px;

    background: #16864d;

    transform: rotate(45deg);
}


.application-stats__heading h2 {
    margin: 0;

    font-size: 38px;
    line-height: 1.1;

    font-weight: 800;

    color: #082f57;
}


.application-stats__heading h2 strong {
    color: #16864d;
}


.application-stats__heading > p {
    margin: 15px auto 0;

    color: #536477;

    font-size: 15px;
}


/* =====================================
   STATS GRID
===================================== */

.application-stats__grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 14px;
}


/* =====================================
   STAT CARD
===================================== */

.application-stat {
    min-height: 140px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    padding: 22px 15px;

    background:
        rgba(255, 255, 255, 0.86);

    border:
        1px solid rgba(8, 47, 87, 0.11);

    border-radius: 7px;

    box-shadow:
        0 8px 25px rgba(7, 45, 80, 0.05);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}


.application-stat:hover {
    transform: translateY(-4px);

    border-color:
        rgba(22, 134, 77, 0.35);

    box-shadow:
        0 13px 30px rgba(7, 45, 80, 0.09);
}


/* NUMBER */

.application-stat strong {
    margin-bottom: 7px;

    font-size: 40px;
    line-height: 1;

    color: #16864d;

    font-weight: 800;

    font-variant-numeric:
        tabular-nums;
}


/* LABEL */

.application-stat span {
    color: #082f57;

    font-size: 13px;
    line-height: 1.45;

    font-weight: 500;
}


/* =====================================
   APPLICATION DEADLINE
===================================== */

.application-deadline {
    margin-top: 22px;

    min-height: 105px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 38px;

    padding: 20px 35px;

    border-radius: 8px;

    background:
        linear-gradient(
            110deg,
            #082f57,
            #0b416f
        );

    box-shadow:
        0 12px 30px rgba(8, 47, 87, 0.14);
}


/* label */

.application-deadline__label {
    color: white;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 0.5px;
}


/* timer */

.application-deadline__counter {
    display: flex;
    align-items: baseline;

    gap: 8px;
}


.application-deadline__counter strong {
    font-size: 42px;
    line-height: 1;

    color: #41b873;

    font-weight: 800;

    font-variant-numeric:
        tabular-nums;
}


.application-deadline__counter span {
    color:
        rgba(255, 255, 255, 0.75);

    font-size: 12px;
}


/* APPLY BUTTON */

.application-deadline__button {
    min-height: 46px;

    padding: 0 22px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 13px;

    border-radius: 5px;

    background: #16864d;

    color: white;

    font-size: 12px;
    font-weight: 700;

    text-decoration: none;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}


.application-deadline__button:hover {
    background: #119054;

    transform: translateY(-2px);
}


/* =====================================
   TABLET
===================================== */

@media (max-width: 800px) {

    .application-stats__grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .application-deadline {
        flex-wrap: wrap;

        gap: 18px 30px;
    }

}


/* =====================================
   MOBILE
===================================== */

@media (max-width: 520px) {

    .application-stats {
        padding:
            55px 15px;
    }


    .application-stats__heading h2 {
        font-size: 32px;
    }


    .application-stats__grid {
        gap: 10px;
    }


    .application-stat {
        min-height: 120px;

        padding: 18px 8px;
    }


    .application-stat strong {
        font-size: 32px;
    }


    .application-stat span {
        font-size: 11px;
    }


    .application-deadline {
        flex-direction: column;

        text-align: center;

        padding: 25px 20px;

        gap: 14px;
    }


    .application-deadline__counter strong {
        font-size: 38px;
    }

}





.countdown-section {
    width: 100%;
    height: 100%;
    padding: 40px 20px 48px;

}

.countdown-container {
    max-width: 900px;
    margin: 0 auto;
}


/* =========================
   TITLE
========================= */

.countdown-title {
    text-align: center;
    margin-bottom: 22px;
}

.countdown-title h2 {
    margin: 0;

    font-family: Arial, sans-serif;
    font-size: 17px;
    font-weight: 700;

    letter-spacing: 0.3px;

    color: #0b3158;
}


/* decorative line */

.countdown-line {
    width: 105px;
    height: 12px;

    margin: 5px auto 0;

    display: flex;
    align-items: center;
    justify-content: center;
}

.countdown-line span {
    display: block;

    width: 42px;
    height: 1px;

    background: #17804c;
}

.countdown-line i {
    display: block;

    width: 8px;
    height: 8px;

    margin: 0 6px;

    border: 2px solid #17804c;

    background: white;

    transform: rotate(45deg);
}


/* =========================
   TIMER
========================= */

.countdown {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.countdown-item {
    width: 132px;
    height: 92px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, 0.96);

    border: 1px solid #dce2e5;
    border-radius: 5px;

    box-shadow:
        0 5px 18px rgba(7, 45, 80, 0.025);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.countdown-item:hover {
    transform: translateY(-3px);

    border-color: rgba(23, 128, 76, 0.4);

    box-shadow:
        0 10px 25px rgba(7, 45, 80, 0.08);
}


/* numbers */

.countdown-item strong {
    display: block;

    margin-bottom: 3px;

    font-family: Arial, sans-serif;

    font-size: 42px;
    font-weight: 700;

    line-height: 1;

    color: #17804c;

    font-variant-numeric: tabular-nums;
}


/* labels */

.countdown-item span {
    font-family: Arial, sans-serif;

    font-size: 11px;
    font-weight: 500;

    color: #0b3158;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 650px) {

    .countdown-section {
        padding: 30px 15px 35px;
    }

    .countdown {
        display: grid;
        grid-template-columns: repeat(2, 1fr);

        max-width: 340px;
        margin: 0 auto;

        gap: 10px;
    }

    .countdown-item {
        width: 100%;
        height: 90px;
    }

    .countdown-item strong {
        font-size: 36px;
    }
}


/* very small phones */

@media (max-width: 360px) {

    .countdown-item {
        height: 82px;
    }

    .countdown-item strong {
        font-size: 31px;
    }

    .countdown-item span {
        font-size: 10px;
    }
}










.forum-info {
  position: relative;
  width: 100%;

  /* было 160px */
  min-height: 120px;

  display: flex;
  align-items: center;
  overflow: hidden;

  background:
    #032a4e;
}

.forum-info__container {
  position: relative;
  z-index: 2;

  width: min(1180px, calc(100% - 80px));
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.forum-info__item {
  display: flex;
  align-items: center;

  /* было 22px */
  gap: 10px;

  color: #fff;
}

/* Уменьшаем иконки */

.forum-info__icon svg {
  width: 34px;
  height: 3%;
}

/* Основной текст */

.forum-info__title {
  margin-bottom: 5px;

  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;

  color: #fff;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Второстепенный текст */

.forum-info__subtitle {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;

  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  white-space: nowrap;
}

/* Разделители */

.forum-info__divider {
  width: 1px;

  /* было 72px */
  height: 52px;

  margin: 0 22px;

  flex-shrink: 0;

  background: rgba(255, 255, 255, 0.35);
}

/* Орнамент */

.forum-info__ornament {
  position: absolute;
  z-index: 1;

  top: 50%;

  width: 110px;
  height: auto;

  opacity: 0.3;

  pointer-events: none;
  user-select: none;
}

.forum-info__ornament--left {
  left: 0;
  transform: translateY(-50%);
}

.forum-info__ornament--right {
  right: 0;
  transform: translateY(-50%) scaleX(-1);
}

/* Адаптив */

@media (max-width: 1200px) {
  .forum-info__container {
    width: calc(100% - 50px);
  }

  .forum-info__item {
    gap: 14px;
  }

  .forum-info__title {
    font-size: 17px;
  }

  .forum-info__subtitle {
    font-size: 13px;
  }

  .forum-info__icon svg {
    width: 50px;
    height: 50px;
  }

  .forum-info__divider {
    margin: 0 15px;
  }
}

@media (max-width: 900px) {
  .forum-info {
    padding: 35px 20px;
  }

  .forum-info__container {
    width: 100%;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
  }

  .forum-info__divider {
    display: none;
  }

  .forum-info__item {
    justify-content: flex-start;
  }
}

@media (max-width: 600px) {
  .forum-info__container {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .forum-info__title {
    font-size: 16px;
  }

  .forum-info__subtitle {
    font-size: 13px;
  }

  .forum-info__ornament {
    width: 120px;
    opacity: 0.22;
  }
}







.organized {
    width: 100%;
    padding: 38px 20px 70px;
    background-image: url("../images/fon.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.organized .container {
    max-width: 1280px;
    margin: 0 auto;
}

.organized__title {
    text-align: center;
    margin-bottom: 42px;
}

.organized__title h2 {
    margin: 0 0 10px;
    color: #08264b;
    font-size: 24px;
    font-weight: 700;
    font-family: Arial, sans-serif;
}

.organized__title-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}

.organized__title-line span {
    width: 90px;
    height: 2px;
    background: #b7ddd2;
}

.organized__title-line i {
    width: 9px;
    height: 9px;
    border: 3px solid #23956e;
    transform: rotate(45deg);
}

.organized__items {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 65px;
}

.organized__item {
    width: 330px;
    height: 120px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.organized__item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.organized__divider {
    width: 1px;
    height: 120px;
    background: #d2d2d2;
    flex-shrink: 0;
}

/* Планшеты */
@media (max-width: 1000px) {
    .organized__items {
        gap: 30px;
    }

    .organized__item {
        width: 260px;
        height: 100px;
    }

    .organized__divider {
        height: 100px;
    }
}

/* Телефоны */
@media (max-width: 700px) {
    .organized {
        padding: 35px 20px 45px;
    }

    .organized__items {
        flex-direction: column;
        gap: 25px;
    }

    .organized__divider {
        width: 70%;
        height: 1px;
    }

    .organized__item {
        width: 100%;
        max-width: 320px;
        height: 100px;
    }

    .organized__title {
        margin-bottom: 30px;
    }

    .organized__title h2 {
        font-size: 20px;
    }
}





/* Agenda */
.agenda {
  background:
    linear-gradient(90deg, rgba(255,255,255,.96), rgba(255,255,255,.96)),
    url("../images/cadtf-poster.png") center/cover no-repeat;
}

.agenda-layout {
  display: grid;
  grid-template-columns: 230px 1fr 330px;
  gap: 22px;
  align-items: stretch;
  margin-top: 42px;
}

.agenda-tabs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.agenda-tab {
  padding: 22px;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
  color: var(--navy);
  transition: .2s ease;
}

.agenda-tab span {
  display: block;
  font: 800 24px/1 var(--font-display);
  color: var(--green);
  margin-bottom: 7px;
}

.agenda-tab small {
  color: var(--muted);
}

.agenda-tab.is-active {
  color: white;
  background: var(--navy);
  border-color: var(--navy);
  transform: translateX(6px);
}

.agenda-tab.is-active small {
  color: rgba(255,255,255,.7);
}

.agenda-panel {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.agenda-content {
  display: none;
}

.agenda-content.is-active {
  display: block;
}

.agenda-content article {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 20px;
  padding: 28px;
  border-bottom: 1px solid var(--line);
}

.agenda-content article:last-child {
  border-bottom: 0;
}

.agenda-content time {
  color: var(--green);
  font-weight: 800;
}

.agenda-content h3 {
  margin: 0 0 4px;
  color: var(--navy);
  font-size: 17px;
}

.agenda-content p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.register-card {
  height: 400px;
  padding: 34px;
  color: white;
  border-radius: 16px;
  background:
    radial-gradient(circle at 90% 10%, rgba(37,164,100,.26), transparent 35%),
    linear-gradient(145deg, #07305a, #0a437a);
  box-shadow: var(--shadow);

}

.register-card h3 {
  margin: 0 0 16px;
  font: 800 28px/1.18 var(--font-display);
}

.register-card p:not(.eyebrow) {
  color: rgba(255,255,255,.74);
  font-size: 14px;
  margin-bottom: 24px;
}








.speakers {
    padding: 90px 20px;


    background-image: url("../images/timer-fon.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;

    /* background:
        radial-gradient(
            circle at 50% 20%,
            rgba(22, 128, 76, 0.03),
            transparent 50%
        ),
        #ffffff; */

    overflow: hidden;
}


.speakers::after {
    content: "";
    position: absolute;

    right: 0;
    bottom: 0;

    width: 300px;
    height: 300px;



    pointer-events: none;
    z-index: 0;
}

.speakers__container {
    max-width: 1240px;
    margin: 0 auto;
}


/* HEADER */

.speakers__header {
    max-width: 760px;

    margin: 0 auto 50px;

    text-align: center;
}


.speakers__eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 14px;
}


.speakers__eyebrow p {
    margin: 0;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 1.2px;

    color: #16804c;
}


.speakers__eyebrow span {
    width: 42px;
    height: 1px;

    background: #16804c;
}


.speakers__diamond {
    width: 8px;
    height: 8px;

    margin: 8px auto 22px;

    background: #16804c;

    transform: rotate(45deg);
}


.speakers__header h2 {
    margin: 0;

    font-size: clamp(38px, 5vw, 55px);
    line-height: 1.08;

    letter-spacing: -1.5px;

    color: #082f57;
}


.speakers__header h2 strong {
    color: #16804c;
}


.speakers__header > p {
    margin: 20px auto 0;

    max-width: 650px;

    color: #526275;

    font-size: 16px;
    line-height: 1.6;
}


/* SLIDER */

.speakers-slider {
    position: relative;

    display: flex;
    align-items: center;

    gap: 18px;
}


.speakers-track-wrapper {
    width: 100%;

    overflow: hidden;
}


.speakers-track {
    display: flex;

    gap: 22px;

    transition: transform 0.5s ease;
}


/* SPEAKER CARD */

.speaker-card {
    flex: 0 0 calc((100% - 66px) / 4);

    min-width: 0;

    overflow: hidden;

    background: white;

    border: 1px solid rgba(8, 47, 87, 0.09);

    border-radius: 14px;

    box-shadow:
        0 12px 35px rgba(8, 47, 87, 0.07);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.speaker-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 20px 45px rgba(8, 47, 87, 0.12);
}


/* PHOTO */

.speaker-card__photo {
    position: relative;

    height: 310px;

    overflow: hidden;

    background: #edf3f5;
}


.speaker-card__photo img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.5s ease;
}


.speaker-card:hover img {
    transform: scale(1.04);
}


/* green CADTF corner */

.speaker-card__corner {
    position: absolute;

    right: 0;
    bottom: 0;

    width: 100px;
    height: 100px;
    background-image: url("../images/art.png");

    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: contain;

    pointer-events: none;
    z-index: 0;

    .speakers::after {
    content: "";
    position: absolute;

    right: 0;
    bottom: 0;

    width: 300px;
    height: 300px;

    
}
    
}




/* CONTENT */

.speaker-card__content {
    min-height: 155px;

    padding: 22px 22px 24px;
}


.speaker-card__content h3 {
    margin: 0 0 7px;

    font-size: 20px;
    line-height: 1.25;

    color: #082f57;
}


.speaker-card__position {
    margin: 0 0 5px;

    font-size: 13px;
    line-height: 1.45;

    color: #526275;
}


.speaker-card__company {
    margin: 0;

    font-size: 13px;
    font-weight: 700;

    color: #16804c;
}


/* ARROWS */

.speakers-arrow {
    flex: 0 0 48px;

    width: 48px;
    height: 48px;

    border-radius: 50%;

    border: 1px solid rgba(8,47,87,.16);

    background: white;

    color: #082f57;

    font-size: 21px;

    cursor: pointer;

    transition: 0.25s ease;
}


.speakers-arrow:hover {
    background: #16804c;

    color: white;

    border-color: #16804c;

    transform: scale(1.05);
}


/* PROGRESS */

.speakers-progress {
    width: 180px;
    height: 2px;

    margin: 35px auto 0;

    background: rgba(8,47,87,.12);

    overflow: hidden;
}


.speakers-progress span {
    display: block;

    width: 50%;
    height: 100%;

    background: #16804c;

    transition: transform 0.4s ease;
}


/* TABLET */

@media (max-width: 950px) {

    .speaker-card {
        flex-basis: calc((100% - 22px) / 2);
    }

}


/* MOBILE */

@media (max-width: 600px) {

    .speakers {
        padding: 65px 15px;
    }


    .speakers-slider {
        gap: 8px;
    }


    .speaker-card {
        /*
           Немного видно следующую карточку.
           Это подсказывает пользователю,
           что список листается.
        */
        flex-basis: 86%;
    }


    .speaker-card__photo {
        height: 330px;
    }


    .speakers-arrow {
        position: absolute;

        z-index: 5;

        top: 145px;

        width: 42px;
        height: 42px;

        background: rgba(255,255,255,.92);

        box-shadow:
            0 5px 18px rgba(8,47,87,.14);
    }


    .speakers-arrow--prev {
        left: 8px;
    }


    .speakers-arrow--next {
        right: 8px;
    }

}





























.forum-matters {
    position: relative;
    overflow: hidden;

    padding: 90px 20px 100px;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #fbfcfd 100%
        );
}


/* =========================
   CONTAINER
========================= */

.forum-matters__container {
    position: relative;
    z-index: 2;

    max-width: 1240px;
    margin: 0 auto;
}


/* =========================
   HEADING
========================= */

.forum-matters__heading {
    max-width: 820px;
    margin: 0 auto 55px;

    text-align: center;
}


.forum-matters__eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 12px;
}


.forum-matters__eyebrow p {
    margin: 0;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 1.2px;

    color: #16804c;
}


.forum-matters__eyebrow span {
    width: 42px;
    height: 1px;

    background: #16804c;
}


.forum-matters__diamond {
    width: 8px;
    height: 8px;

    margin: 9px auto 26px;

    border: 2px solid #16804c;

    background: white;

    transform: rotate(45deg);
}


.forum-matters__heading h2 {
    margin: 0;

    font-size: clamp(36px, 5vw, 58px);
    line-height: 1.05;

    font-weight: 800;

    letter-spacing: -2px;

    color: #0a2e57;
}


.forum-matters__heading h2 strong {
    color: #16804c;
}


.forum-matters__subtitle {
    max-width: 700px;

    margin: 24px auto 0;

    font-size: 18px;
    line-height: 1.6;

    color: #3e4b5c;
}


/* =========================
   GRID
========================= */

.forum-matters__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;

    width: 100%;
}


/* make last row centered */

.matter-card:nth-child(5) {
    grid-column: 2;
}


/* =========================
   CARD
========================= */

.matter-card {
    min-height: 320px;

    padding: 30px 26px 28px;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;

    background: rgba(255, 255, 255, 0.96);

    border: 1px solid #e2e6ea;

    border-radius: 16px;

    box-shadow:
        0 12px 35px rgba(7, 45, 80, 0.07);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
    
    flex: 0 0 calc((100% - 72px) / 4);
    max-width: calc((100% - 72px) / 4);
}


.matter-card:hover {
    transform: translateY(-8px);

    border-color: rgba(22, 128, 76, 0.35);

    box-shadow:
        0 20px 45px rgba(7, 45, 80, 0.12);
}


/* =========================
   ICON
========================= */

.matter-card__icon {
    width: 112px;
    height: 112px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 25px;

    border-radius: 50%;

    font-size: 56px;

    background:
        radial-gradient(
            circle,
            rgba(29, 155, 88, 0.16),
            rgba(29, 155, 88, 0.07)
        );
}


/* =========================
   TEXT
========================= */

.matter-card h3 {
    margin: 0 0 5px;

    font-size: 20px;
    line-height: 1.3;

    font-weight: 700;

    color: #0a2e57;
}


.matter-card p {
    margin: 0;

    max-width: 240px;

    font-size: 16px;
    line-height: 1.55;

    color: #0e2b50;
}


/* =========================
   DECORATIVE LINE
========================= */

.matter-card__line {
    margin-top: auto;
    padding-top: 28px;

    display: flex;
    align-items: center;
    justify-content: center;
}


.matter-card__line span {
    width: 62px;
    height: 1px;

    background: #17904f;
}


.matter-card__line i {
    width: 9px;
    height: 9px;

    margin: 0 7px;

    background: #16804c;

    transform: rotate(45deg);
}


/* =========================
   BACKGROUND DECOR
========================= */

.forum-matters__decor {
    position: absolute;

    pointer-events: none;

    opacity: 0.05;
}


.forum-matters__decor--left {
    width: 300px;
    height: 500px;

    left: -90px;
    top: 20px;

    background:
        repeating-radial-gradient(
            circle at center,
            #0a2e57 0 2px,
            transparent 2px 18px
        );
}


.forum-matters__decor--right {
    width: 360px;
    height: 360px;

    right: -100px;
    top: 0;

    background:
        linear-gradient(
            90deg,
            transparent 48%,
            #16804c 49%,
            #16804c 51%,
            transparent 52%
        ),
        linear-gradient(
            transparent 48%,
            #16804c 49%,
            #16804c 51%,
            transparent 52%
        );

    background-size: 50px 50px;

    transform: rotate(45deg);
}


/* =========================
   TABLET
========================= */

@media (max-width: 1000px) {

    .forum-matters__grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .matter-card:nth-child(5) {
        grid-column: auto;
    }


    .matter-card:last-child {
        grid-column: 1 / -1;

        width: calc(50% - 12px);

        justify-self: center;
    }

    .matter-card {
        flex: 0 0 calc((100% - 24px) / 2);
        max-width: calc((100% - 24px) / 2);
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 620px) {

    .forum-matters {
        padding:
            70px 16px 75px;
    }


    .forum-matters__heading {
        margin-bottom: 40px;
    }


    .forum-matters__heading h2 {
        font-size: 36px;
        letter-spacing: -1px;
    }


    .forum-matters__subtitle {
        font-size: 16px;
    }


    .forum-matters__grid {
        grid-template-columns: 1fr;
    }


    .matter-card:last-child {
        grid-column: auto;

        width: 100%;
    }


    .matter-card {
        flex: 0 0 100%;
        max-width: 100%;
    }


    .matter-card__icon {
        width: 95px;
        height: 95px;

        font-size: 48px;
    }
}









/* ===================================
   EXPERIENCE CENTRAL ASIA
=================================== */

.experience {
    position: relative;
    overflow: hidden;

    padding: 85px 20px 75px;

    background:
        radial-gradient(
            circle at 50% 40%,
            rgba(22, 128, 76, 0.025),
            transparent 55%
        ),
        #ffffff;
}


/* ===================================
   CONTAINER
=================================== */

.experience__container {
    position: relative;
    z-index: 2;

    max-width: 1100px;
    margin: 0 auto;
}


/* ===================================
   HEADER
=================================== */

.experience__header {
    max-width: 900px;

    margin: 0 auto 42px;

    text-align: center;
}


/* small green title */

.experience__eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 15px;
}


.experience__eyebrow p {
    margin: 0;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 0.8px;

    color: #16804c;
}


.experience__eyebrow span {
    display: block;

    width: 45px;
    height: 1px;

    background: #16804c;
}


/* diamond */

.experience__diamond {
    width: 8px;
    height: 8px;

    margin: 7px auto 22px;

    background: #16804c;

    transform: rotate(45deg);
}


/* main title */

.experience__header h2 {
    margin: 0;

    font-size: clamp(38px, 5vw, 58px);
    line-height: 1.1;

    font-weight: 800;

    letter-spacing: -1.5px;

    color: #0b2e59;
}


.experience__header h2 strong {
    color: #16804c;
}


/* description */

.experience__description {
    max-width: 850px;

    margin: 20px auto 0;

    font-size: 17px;
    line-height: 1.65;

    color: #253b5b;
}


/* ===================================
   LIST
=================================== */

.experience__list {
    display: flex;
    flex-direction: column;

    gap: 10px;
}


/* ===================================
   CARD
=================================== */

.experience-card {
    position: relative;

    min-height: 125px;

    display: grid;

    grid-template-columns:
        150px
        1px
        1fr;

    align-items: center;

    gap: 38px;

    padding: 18px 45px;

    background: rgba(255, 255, 255, 0.96);

    border: 1px solid rgba(8, 47, 87, 0.06);

    border-radius: 10px;

    box-shadow:
        0 8px 28px rgba(8, 47, 87, 0.07);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


/* hover */

.experience-card:hover {
    transform: translateY(-3px);

    border-color: rgba(22, 128, 76, 0.25);

    box-shadow:
        0 14px 35px rgba(8, 47, 87, 0.11);
}


/* ===================================
   ICON
=================================== */

.experience-card__icon {
    width: 82px;
    height: 82px;

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    font-size: 43px;

    background:
        radial-gradient(
            circle,
            rgba(22, 128, 76, 0.12),
            rgba(22, 128, 76, 0.06)
        );
}


/* ===================================
   VERTICAL DIVIDER
=================================== */

.experience-card__divider {
    width: 1px;
    height: 90px;

    background: rgba(22, 128, 76, 0.55);
}


/* ===================================
   CARD CONTENT
=================================== */

.experience-card__content {
    padding-right: 20px;
}


.experience-card__content h3 {
    margin: 0 0 5px;

    font-size: 20px;
    line-height: 1.3;

    font-weight: 700;

    color: #082f57;
}


.experience-card__content p {
    max-width: 800px;

    margin: 0;

    font-size: 16px;
    line-height: 1.6;

    color: #173454;
}


/* ===================================
   BOTTOM TEXT
=================================== */

.experience__bottom {
    margin-top: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 18px;
}


.experience__bottom p {
    margin: 0;

    text-align: center;

    font-size: 16px;
    line-height: 1.5;

    color: #183757;
}


.experience__bottom-line {
    display: flex;
    align-items: center;
}


.experience__bottom-line span {
    display: block;

    width: 50px;
    height: 1px;

    background: #16804c;
}


.experience__bottom-line i {
    display: block;

    width: 7px;
    height: 7px;

    background: #16804c;

    transform: rotate(45deg);
}


/* ===================================
   BACKGROUND ORNAMENT
=================================== */

.experience::before,
.experience::after {
    content: "";

    position: absolute;

    width: 330px;
    height: 650px;

    top: 100px;

    opacity: 0.035;

    pointer-events: none;

    background:
        repeating-radial-gradient(
            circle at center,
            #16804c 0 2px,
            transparent 2px 20px
        );
}


.experience::before {
    left: -250px;
}


.experience::after {
    right: -250px;
}


/* ===================================
   TABLET
=================================== */

@media (max-width: 800px) {

    .experience {
        padding: 70px 18px;
    }


    .experience-card {
        grid-template-columns:
            100px
            1px
            1fr;

        gap: 25px;

        padding: 20px 28px;
    }


    .experience-card__icon {
        width: 72px;
        height: 72px;

        font-size: 37px;
    }


    .experience-card__divider {
        height: 75px;
    }

}


/* ===================================
   MOBILE
=================================== */

@media (max-width: 600px) {

    .experience {
        padding:
            65px 15px 60px;
    }


    .experience__header {
        margin-bottom: 35px;
    }


    .experience__eyebrow span {
        width: 25px;
    }


    .experience__eyebrow p {
        font-size: 11px;
    }


    .experience__header h2 {
        font-size: 36px;

        letter-spacing: -1px;
    }


    .experience__description {
        font-size: 15px;
    }


    /* cards */

    .experience-card {
        display: flex;
        flex-direction: column;

        align-items: center;

        gap: 14px;

        padding: 28px 22px;

        text-align: center;
    }


    .experience-card__icon {
        width: 78px;
        height: 78px;

        margin: 0;

        font-size: 40px;
    }


    /* vertical line becomes horizontal */

    .experience-card__divider {
        width: 70px;
        height: 1px;
    }


    .experience-card__content {
        padding: 0;
    }


    .experience-card__content h3 {
        font-size: 19px;
    }


    .experience-card__content p {
        font-size: 14px;
    }


    /* bottom */

    .experience__bottom {
        margin-top: 30px;

        gap: 10px;
    }


    .experience__bottom p {
        max-width: 270px;

        font-size: 14px;
    }


    .experience__bottom-line span {
        width: 25px;
    }

}






/* =========================================
   PARTICIPATION PACKAGES
========================================= */

.packages {
    position: relative;
    overflow: hidden;

    padding: 95px 20px;

    background-image: url("../images/fon.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}


.packages__container {
    max-width: 1240px;
    margin: 0 auto;
}


/* =========================================
   HEADER
========================================= */

.packages__header {
    max-width: 800px;
    margin: 0 auto 55px;

    text-align: center;
}


.packages__eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 13px;
}


.packages__eyebrow span {
    width: 42px;
    height: 1px;

    background: #16864d;
}


.packages__eyebrow p {
    margin: 0;

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 1.1px;

    color: #16864d;
}


.packages__diamond {
    width: 8px;
    height: 8px;

    margin: 8px auto 23px;

    background: #16864d;

    transform: rotate(45deg);
}


.packages__header h2 {
    margin: 0;

    font-size: clamp(38px, 5vw, 58px);
    line-height: 1.07;

    letter-spacing: -1.7px;

    color: #082f57;
}


.packages__header h2 strong {
    color: #16864d;
}


.packages__header > p {
    max-width: 650px;

    margin: 20px auto 0;

    color: #617183;

    font-size: 16px;
    line-height: 1.6;
}


/* =========================================
   SCHOLARSHIP BLOCK
========================================= */

.package {
    padding: 38px;

    border-radius: 22px;

    background:
        linear-gradient(
            135deg,
            #082f57,
            #0a416f
        );

    box-shadow:
        0 24px 65px rgba(8, 47, 87, 0.16);
}


.package__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;

    gap: 30px;

    margin-bottom: 35px;
}


.package__badge {
    display: inline-block;

    margin-bottom: 12px;

    color: #72d99a;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.2px;
}


.package__top h3 {
    margin: 0 0 9px;

    color: white;

    font-size: 30px;
}


.package__top p {
    max-width: 600px;

    margin: 0;

    color:
        rgba(255,255,255,.65);

    font-size: 14px;
    line-height: 1.6;
}


.package__price {
    text-align: right;
}


.package__price span {
    display: block;

    color:
        rgba(255,255,255,.55);

    font-size: 11px;
}


.package__price strong {
    color: #4cca7b;

    font-size: 42px;
}


/* =========================================
   SCHOLARSHIP CARDS
========================================= */

.scholarship-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;
}


.scholarship-card {
    position: relative;

    padding: 28px;

    border:
        1px solid rgba(255,255,255,.12);

    border-radius: 15px;

    background:
        rgba(255,255,255,.07);

    backdrop-filter: blur(10px);
}


.scholarship-card--featured {
    border-color:
        rgba(76,202,123,.6);

    background:
        linear-gradient(
            180deg,
            rgba(38,155,90,.20),
            rgba(255,255,255,.06)
        );
}


.scholarship-card__label {
    display: inline-block;

    margin-bottom: 15px;

    color: #65d88e;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1px;
}


.scholarship-card h4 {
    margin: 0 0 12px;

    color: white;

    font-size: 21px;
}


.scholarship-card__intro {
    min-height: 72px;

    margin: 0 0 22px;

    color:
        rgba(255,255,255,.62);

    font-size: 13px;
    line-height: 1.55;
}


.scholarship-card ul,
.package-card ul {
    padding: 0;
    margin: 0;

    list-style: none;
}


.scholarship-card li {
    display: grid;

    grid-template-columns:
        18px 1fr;

    gap: 9px;

    margin-bottom: 10px;

    color:
        rgba(255,255,255,.8);

    font-size: 12px;
    line-height: 1.45;
}


.scholarship-card li span {
    color: #52cd81;
    font-weight: 800;
}


/* =========================================
   OTHER PACKAGE GRID
========================================= */

.package-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 22px;

    margin-top: 30px;
}


/* =========================================
   PACKAGE CARD
========================================= */

.package-card {
    position: relative;

    display: flex;
    flex-direction: column;

    padding: 34px;

    border: 1px solid #dfe6eb;
    border-radius: 18px;

    background: white;

    box-shadow:
        0 12px 35px rgba(8,47,87,.06);

    transition:
        transform .28s ease,
        box-shadow .28s ease,
        border-color .28s ease;
}


.package-card:hover {
    transform: translateY(-5px);

    border-color:
        rgba(22,134,77,.35);

    box-shadow:
        0 20px 45px rgba(8,47,87,.11);
}


.package-card--featured {
    border-color:
        rgba(22,134,77,.4);
}


.package-card__popular {
    position: absolute;

    top: 0;
    right: 30px;

    padding: 8px 14px;

    border-radius:
        0 0 8px 8px;

    background: #16864d;

    color: white;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: .8px;
}


/* HEAD */

.package-card__head {
    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-bottom: 23px;
}


.package-card__icon {
    width: 55px;
    height: 55px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background:
        rgba(22,134,77,.09);

    color: #16864d;

    font-size: 24px;
}


.package-card__price {
    color: #16864d;

    font-size: 36px;
    font-weight: 800;
}


.package-card h3 {
    margin: 0 0 10px;

    color: #082f57;

    font-size: 24px;
}


.package-card > p {
    min-height: 70px;

    margin: 0;

    color: #657589;

    font-size: 14px;
    line-height: 1.6;
}


.package-card__divider {
    width: 100%;
    height: 1px;

    margin: 24px 0;

    background: #e6ebef;
}


/* LIST */

.package-card ul {
    flex: 1;
}


.package-card li {
    display: grid;

    grid-template-columns:
        18px 1fr;

    gap: 9px;

    margin-bottom: 11px;

    color: #334c64;

    font-size: 13px;
    line-height: 1.45;
}


.package-card li span {
    color: #16864d;

    font-weight: 800;
}


/* BUTTON */

.package-card__button {
    min-height: 52px;

    margin-top: 25px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 11px;

    border-radius: 8px;

    background: #16864d;

    color: white;

    text-decoration: none;

    font-size: 12px;
    font-weight: 800;

    transition:
        transform .2s ease,
        background .2s ease;
}


.package-card__button:hover {
    transform: translateY(-2px);

    background: #107442;
}


.package-card__button--outline {
    border: 1px solid #16864d;

    background: white;

    color: #16864d;
}


.package-card__button--outline:hover {
    background: #16864d;

    color: white;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 950px) {

    .scholarship-grid {
        grid-template-columns: 1fr;
    }


    .scholarship-card__intro {
        min-height: auto;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

    .packages {
        padding:
            70px 15px;
    }


    .package {
        padding:
            28px 20px;
    }


    .package__top {
        flex-direction: column;
    }


    .package__price {
        text-align: left;
    }


    .package-grid {
        grid-template-columns: 1fr;
    }


    .package-card {
        padding:
            28px 22px;
    }


    .package-card > p {
        min-height: auto;
    }

}





























/* ==================================
   FAQ
================================== */

.faq {
    position: relative;
    overflow: hidden;

    padding: 90px 20px 100px;


    background-image: url("../images/timer-fon.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;

    /* background:
        radial-gradient(
            circle at 50% 20%,
            rgba(20, 128, 75, 0.025),
            transparent 45%
        ),
        #f9fbfc; */
}


.faq__container {
    position: relative;
    z-index: 2;

    max-width: 1050px;
    margin: 0 auto;
}


/* ==================================
   HEADER
================================== */

.faq__header {
    max-width: 800px;

    margin: 0 auto 50px;

    text-align: center;
}


.faq__eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 14px;
}


.faq__eyebrow p {
    margin: 0;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 1.3px;

    color: #16804c;
}


.faq__eyebrow span {
    width: 45px;
    height: 1px;

    background: #16804c;
}


.faq__diamond {
    width: 8px;
    height: 8px;

    margin: 7px auto 23px;

    background: #16804c;

    transform: rotate(45deg);
}


.faq__header h2 {
    margin: 0;

    font-size: clamp(38px, 5vw, 56px);
    line-height: 1.05;

    font-weight: 800;

    letter-spacing: -1.7px;

    color: #082f57;
}


.faq__header h2 strong {
    color: #16804c;
}


.faq__header > p {
    max-width: 650px;

    margin: 22px auto 0;

    font-size: 16px;
    line-height: 1.65;

    color: #526275;
}


/* ==================================
   FAQ LIST
================================== */

.faq__list {
    display: flex;
    flex-direction: column;

    gap: 11px;
}


/* ==================================
   ITEM
================================== */

.faq-item {
    overflow: hidden;

    background: rgba(255, 255, 255, 0.96);

    border: 1px solid rgba(8, 47, 87, 0.09);

    border-radius: 12px;

    box-shadow:
        0 7px 24px rgba(8, 47, 87, 0.045);

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}


.faq-item:hover {
    border-color: rgba(22, 128, 76, 0.25);
}


.faq-item.active {
    border-color: rgba(22, 128, 76, 0.38);

    box-shadow:
        0 12px 30px rgba(8, 47, 87, 0.08);
}


/* ==================================
   QUESTION
================================== */

.faq-question {
    width: 100%;

    min-height: 82px;

    display: grid;

    grid-template-columns:
        55px
        1fr
        40px;

    align-items: center;

    gap: 20px;

    padding: 18px 28px;

    border: none;
    outline: none;

    background: transparent;

    cursor: pointer;

    text-align: left;
}


/* number */

.faq-number {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;

    border-radius: 50%;

    background: rgba(22, 128, 76, 0.09);

    color: #16804c;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 0.5px;

    transition:
        background 0.3s ease,
        color 0.3s ease;
}


.faq-item.active .faq-number {
    background: #16804c;
    color: white;
}


/* question title */

.faq-title {
    font-size: 18px;
    line-height: 1.4;

    font-weight: 700;

    color: #082f57;
}


/* ==================================
   PLUS ICON
================================== */

.faq-icon {
    position: relative;

    width: 34px;
    height: 34px;

    border-radius: 50%;

    border: 1px solid rgba(22, 128, 76, 0.35);

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}


.faq-icon::before,
.faq-icon::after {
    content: "";

    position: absolute;

    top: 50%;
    left: 50%;

    width: 12px;
    height: 2px;

    background: #16804c;

    transform:
        translate(-50%, -50%);

    transition: transform 0.3s ease;
}


.faq-icon::after {
    transform:
        translate(-50%, -50%)
        rotate(90deg);
}


.faq-item.active .faq-icon {
    background: #16804c;
}


.faq-item.active .faq-icon::before,
.faq-item.active .faq-icon::after {
    background: white;
}


.faq-item.active .faq-icon::after {
    transform:
        translate(-50%, -50%)
        rotate(0deg);
}


/* ==================================
   ANSWER
================================== */

.faq-answer {
    display: grid;

    grid-template-rows: 0fr;

    transition:
        grid-template-rows 0.4s ease;
}


.faq-item.active .faq-answer {
    grid-template-rows: 1fr;
}


.faq-answer__inner {
    overflow: hidden;

    padding:
        0 100px 0 103px;

    color: #43566d;

    transition:
        padding 0.4s ease;
}


.faq-item.active .faq-answer__inner {
    padding:
        0 100px 28px 103px;
}


.faq-answer__inner p {
    margin: 0 0 11px;

    font-size: 15px;
    line-height: 1.75;
}


.faq-answer__inner p:last-child {
    margin-bottom: 0;
}


/* green line inside open answer */

.faq-answer__inner::before {
    content: "";

    display: block;

    width: 50px;
    height: 1px;

    margin-bottom: 16px;

    background: #16804c;
}


/* ==================================
   BACKGROUND DECOR
================================== */

.faq::before {
    content: "";

    position: absolute;

    left: -100px;
    top: 150px;

    width: 300px;
    height: 500px;

    opacity: 0.035;

    background:
        repeating-radial-gradient(
            circle,
            #082f57 0 2px,
            transparent 2px 20px
        );
}


.faq::after {
    content: "";

    position: absolute;

    right: -180px;
    bottom: -120px;

    width: 400px;
    height: 400px;

    opacity: 0.04;

    border: 50px solid #16804c;

    transform: rotate(45deg);
}


/* ==================================
   TABLET
================================== */

@media (max-width: 800px) {

    .faq {
        padding: 70px 18px;
    }


    .faq-question {
        grid-template-columns:
            48px
            1fr
            35px;

        gap: 15px;

        padding: 18px 20px;
    }


    .faq-answer__inner {
        padding:
            0 70px 0 83px;
    }


    .faq-item.active .faq-answer__inner {
        padding:
            0 70px 25px 83px;
    }

}


/* ==================================
   MOBILE
================================== */

@media (max-width: 600px) {

    .faq {
        padding:
            65px 14px 70px;
    }


    .faq__header {
        margin-bottom: 35px;
    }


    .faq__header h2 {
        font-size: 35px;
    }


    .faq__header > p {
        font-size: 14px;
    }


    .faq__eyebrow span {
        width: 28px;
    }


    .faq-question {
        grid-template-columns:
            38px
            1fr
            30px;

        gap: 12px;

        min-height: 72px;

        padding: 15px;
    }


    .faq-number {
        width: 36px;
        height: 36px;

        font-size: 10px;
    }


    .faq-title {
        font-size: 15px;
    }


    .faq-icon {
        width: 30px;
        height: 30px;
    }


    .faq-answer__inner,
    .faq-item.active .faq-answer__inner {
        padding-left: 65px;
        padding-right: 20px;
    }


    .faq-item.active .faq-answer__inner {
        padding-bottom: 22px;
    }


    .faq-answer__inner p {
        font-size: 14px;
        line-height: 1.65;
    }

}















































/* Responsive */
@media (max-width: 1080px) {
  .main-nav {
    gap: 15px;
    font-size: 12px;
  }

  .nav-register {
    display: none;
  }

  .facts-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fact:nth-child(2) {
    border-right: 0;
  }

  .fact:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255,255,255,.2);
  }

  .about {
    background: linear-gradient(180deg, white 0 41%, #0a3765 41% 100%);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-copy {
    padding-right: 0;
  }

  .agenda-layout {
    grid-template-columns: 190px 1fr;
  }

  .register-card {
    grid-column: 1 / -1;
  }

  .partner-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 820px) {
  .nav-wrap {
    height: 74px;
  }

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 52;
  }

  .main-nav {
    position: fixed;
    left: 0;
    right: 0;
    top: 74px;
    padding: 26px 24px 32px;
    display: grid;
    gap: 6px;
    background: white;
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: .28s ease;
    box-shadow: 0 20px 40px rgba(8,47,87,.12);
  }

  .main-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav > a {
    padding: 11px 2px;
  }

  .nav-register {
    display: inline-flex;
    margin-top: 10px;
  }

  .lang-switch {
    width: max-content;
    margin-top: 8px;
  }

  .hero,
  .hero-grid {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 78px 0 30px;
  }

  .hero h1 {
    font-size: clamp(42px, 11vw, 66px);
    letter-spacing: -2px;
  }

  .hero-emblem-wrap {
    padding: 0 0 150px;
    height: 260px;
  }

  .hero-emblem {
    width: 220px;
    height: 220px;
    transform: scale(.78);
  }

  .mountains {
    left: 0;
    height: 220px;
  }

  .organizer-grid {
    grid-template-columns: 1fr;
  }

  .organizer-card {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .organizer-card:last-child {
    border-bottom: 0;
  }

  .pillars {
    grid-template-columns: repeat(2, 1fr);
  }

  .pillar {
    min-height: 240px;
  }

  .pillar:nth-child(2) {
    border-right: 0;
  }

  .pillar:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255,255,255,.13);
  }

  .agenda-layout {
    grid-template-columns: 1fr;
  }

  .agenda-tabs {
    flex-direction: row;
  }

  .agenda-tab {
    flex: 1;
  }

  .agenda-tab.is-active {
    transform: translateY(-4px);
  }

  .speaker-grid {
    grid-template-columns: 1fr;
  }

  .poster-grid {
    grid-template-columns: 1fr;
  }

  .partner-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-inner {
    min-height: 330px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 72px 0;
  }

  .brand-word small {
    display: none;
  }

  .brand-word strong {
    font-size: 25px;
  }

  .brand-mark {
    transform: scale(.9);
    transform-origin: left center;
  }

  .hero-copy {
    padding-top: 56px;
  }

  .hero h1 {
    font-size: 43px;
  }

  .hero-tagline {
    font-size: 18px;
  }

  .title-rule {
    width: 220px;
  }

  .facts-grid {
    grid-template-columns: 1fr;
  }

  .fact {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.2);
  }

  .fact:last-child {
    border-bottom: 0;
  }

  .pillars {
    grid-template-columns: 1fr;
  }

  .pillar {
    border-right: 0 !important;
    border-bottom: 1px solid rgba(255,255,255,.13) !important;
  }

  .pillar:last-child {
    border-bottom: 0 !important;
  }

  .agenda-tabs {
    flex-direction: column;
  }

  .agenda-content article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .speaker-card {
    grid-template-columns: 70px 1fr;
  }

  .speaker-avatar {
    width: 70px;
    height: 84px;
  }

  .partner-row {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom .container {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 18px 0;
  }

  .register-form {
    padding: 34px 20px 24px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}


@media (max-width: 768px) {
    .hero {
        background-size: auto 45%;
        background-position: center bottom;
        padding-bottom: 280px;
    }

    .hero-content {
        width: 100%;
    }
}


















/* =========================================
   FOOTER
========================================= */

.footer {
    position: relative;
    overflow: hidden;

    width: 100%;

    background:
        linear-gradient(
            135deg,
            #062b50 0%,
            #07365f 55%,
            #06436a 100%
        );

    color: #ffffff;
}


/* subtle decoration */

.footer::after {
    content: "";

    position: absolute;

    right: -100px;
    bottom: -180px;

    width: 400px;
    height: 400px;

    border: 60px solid rgba(255, 255, 255, 0.025);

    transform: rotate(45deg);

    pointer-events: none;
}


.footer__container {
    position: relative;
    z-index: 2;

    max-width: 1240px;

    margin: 0 auto;

    padding:
        55px 25px 22px;
}


/* =========================================
   MAIN
========================================= */

.footer__main {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 40px;

    padding-bottom: 42px;
}


/* =========================================
   LOGO
========================================= */

.footer__logo {
    display: inline-flex;
    align-items: center;
}


.footer__logo img {
    display: block;

    width: 190px;
    height: auto;

    object-fit: contain;
}


/* =========================================
   SOCIALS
========================================= */

.footer__socials {
    display: flex;

    align-items: center;

    gap: 22px;
}


.footer__socials-title {
    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1.3px;

    color:
        rgba(255, 255, 255, 0.65);
}


.footer__social-links {
    display: flex;

    align-items: center;

    gap: 10px;
}


.footer__social-links a {
    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    border:
        1px solid rgba(255, 255, 255, 0.25);

    border-radius: 50%;

    color: #ffffff;

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;

    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}


.footer__social-links a:hover {
    background: #16864d;

    border-color: #16864d;

    transform: translateY(-3px);
}


/* =========================================
   BOTTOM
========================================= */

.footer__bottom {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;

    padding-top: 20px;

    border-top:
        1px solid rgba(255, 255, 255, 0.12);
}


.footer__bottom p {
    margin: 0;

    font-size: 11px;
    line-height: 1.5;

    color:
        rgba(255, 255, 255, 0.55);
}


/* =========================================
   GREEN BOTTOM DECORATION
========================================= */

.footer::before {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;
    height: 3px;

    background: #16864d;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {

    .footer__container {
        padding:
            45px 20px 20px;
    }


    .footer__main {
        flex-direction: column;

        align-items: flex-start;

        gap: 30px;

        padding-bottom: 32px;
    }


    .footer__logo img {
        width: 165px;
    }


    .footer__socials {
        flex-direction: column;

        align-items: flex-start;

        gap: 12px;
    }


    .footer__bottom {
        flex-direction: column;

        align-items: flex-start;

        gap: 8px;
    }

}