@import url("configure.css");
.btn {
    border-radius: 8px;
    background: var(--primary-101, #345988);
    padding: 16px;
    width: 100%;
    max-width: 340px;
    color: var(--Gray-0, #fff);
    font-size: 18px;
    font-weight: 700;
    line-height: 100%; /* 18px */
    text-align: center;
    -webkit-transition: background-color 0.2s ease, -webkit-transform 0.2s ease;
    transition: background-color 0.2s ease, -webkit-transform 0.2s ease;
    transition: transform 0.2s ease, background-color 0.2s ease;
    transition: transform 0.2s ease, background-color 0.2s ease,
        -webkit-transform 0.2s ease;
}
.header-logo, .footer-logo{
    color: #fff;
    font-size: 2rem;
}
.position-relative {
    position: relative;
}
.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1000;
    background: none;
    border: none;
    font-size: 28px;
    font-weight: bold;
    color: #000; 
    cursor: pointer;
    line-height: 1;
    padding: 0;
    transition: transform 0.2s ease;
}

.close-btn:hover {
    transform: rotate(90deg);
    color: #06b2c8;
}


.btn.about-bg-btn {
    color: var(--primary-101, #345988);
    background: var(--Gray-0, #fff);
}

.btn:hover {
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
}

.btn:active {
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
    background: var(--primary-200, #27466b);
    color: var(--Gray-0, #fff);
}

.header {
    position: relative;
}
.header .video {
    max-width: 100vw;
    width: 100%;
}
.header-logo {
    position: absolute;
    top: 20px;
    left: 40px;
    width: 100%;
    max-width: 190px;
}

.intro-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 28px;
    padding: 20px;
}
.intro-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 8px;
    max-width: 440px;
}
.intro-title {
    color: var(--Gray-100, #1c1c1c);
    font-size: 24px;
    font-weight: 700;
    line-height: 150%;
}

.intro-map {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.map {
    width: 100%;
}
.map img {
    min-width: 100%;
    height: auto;
}

.about-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.about-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #eef8ef;
}
.about-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    color: var(--primary-101, #345988);
    font-size: 18px;
    font-weight: 400;
    line-height: 150%; /* 27px */
}
.about-text h2 {
    font-size: 24px;
    font-weight: 700;
}
.about-bg {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 40px 20px;
    background: url(../images/content-bg.png) center no-repeat;
    background-size: cover;
    width: 100%;
}
.about-bg-title {
    color: var(--Gray-0, #fff);
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    line-height: 150%; /* 36px */
}

.stats-content {
    padding: 40px 0;
}
.stats-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 12px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 20px;
    height: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.stats-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
    color: #000;
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    line-height: 150%; /* 27px */
}
.stats-text h2 {
    font-size: 52px;
    font-weight: 700;
    line-height: 140%; /* 72.8px */
}
.stats-img {
    max-width: 180px;
}
.stats-btn {
    padding: 12px;
    border-radius: 4px;
    background: var(--primary-101, #345988);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.stats-btn-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    padding: 10px 30px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.safe-content {
    background: #bdf1fe;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.safe-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    color: var(--primary-101, #345988);
    font-size: 18px;
    font-weight: 400;
    line-height: 150%; /* 27px */
}
.safe-text h2 {
    font-size: 24px;
    font-weight: 700;
}

.footer {
    background: var(--primary-101, #345988);
}
.footer-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
    text-align: center;
    font-size: 12px;
    font-weight: 400;
    line-height: 150%;
    padding: 30px 0;
}
.footer-logo {
    max-width: 230px;
}

.active-country.no.map {
    fill: #569aef;
}
.active-country.no.stroke {
    stroke: #345988;
}
.active-country.no.name {
    fill: #345988;
}
.active-country.gb.map {
    fill: #2074dd;
}
.active-country.gb.stroke {
    stroke: #345988;
}
.active-country.gb.name {
    fill: #345988;
}
.active-country.ie.map {
    fill: #569aef;
}
.active-country.ie.stroke {
    stroke: #345988;
}
.active-country.ie.name {
    fill: #345988;
}
.active-country.fi.map {
    fill: #2f48eb;
}
.active-country.fi.stroke {
    stroke: #345988;
}
.active-country.fi.name {
    fill: #345988;
}
.active-country.se.map {
    fill: #2074dd;
}
.active-country.se.stroke {
    stroke: #345988;
}
.active-country.se.name {
    fill: #345988;
}
.active-country.dk.map {
    fill: #569aef;
  }
  .active-country.dk.stroke {
    stroke: #345988;
  }
  .active-country.dk.name {
    fill: #345988;
  }
  .active-country.is.map {
    fill: #569aef;
  }
  .active-country.is.stroke {
    stroke: #345988;
  }
  .active-country.is.name {
    fill: #345988;
  }

.event-alternative-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}
.event-alternative-btn {
    max-width: none;
}

.event {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
    overflow-y: scroll;
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    align-items: center;
    position: fixed;
    inset: 0;
    z-index: 50;
}
.event.show {
    display: grid;
    -webkit-animation: fadeIn 0.5s ease-in-out;
    animation: fadeIn 0.5s ease-in-out;
}
.event-content {
    width: 100%;
}
.event-map {
    border-radius: 12px;
    background: var(--Gray-0, #fff);
    max-width: 700px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 24px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 20px;
    width: 100%;
}
.event-map svg {
    width: 100%;
}
.event-map-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
}
.event-map-title {
    color: #000;
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    line-height: 150%; /* 48px */
}
.event-alternative {
    border-radius: 12px;
    background: var(--Gray-0, #fff);
    max-width: 420px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 24px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 20px;
    width: 100%;
}
.event-animation {
    border-radius: 12px;
    background: #fff;
    width: 100%;
    max-width: 720px;
    overflow: hidden;
}
.event-form {
    border-radius: 12px;
    background: #fff;
    width: 100%;
    max-width: 430px;
    padding: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 32px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.event-form-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
    color: var(--Gray-100, #1c1c1c);
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    line-height: 150%; /* 36px */
}
.event-form-text p {
    width: 100%;
    text-align: end;
    font-size: 12px;
    font-weight: 400;
}

.event-block {
    display: none;
    margin: 0 auto;
}

.event-block.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-animation: fadeIn 0.5s ease-in-out;
    animation: fadeIn 0.5s ease-in-out;
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
/* ------ */
.country-radio {
    display: none;
}
.custom-checkbox {
    position: relative;
    display: inline-block;
    padding-left: 34px;
    cursor: pointer;
    font-size: 16px;
    color: #000;
    font-size: 18px;
    font-weight: 700;
    line-height: 150%;
}
.checkmark {
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 28px;
    width: 28px;
    background-color: none;
    border: 1px solid #646464;
    border-radius: 50%;
    -webkit-transition: background-color 0.3s, border 0.3s;
    transition: background-color 0.3s, border 0.3s;
}
.country-radio:checked + .checkmark {
    background-color: #345988;
}
.country-radio:checked + .checkmark:after {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0 !important;
    left: 0 !important;
    border-radius: 50%;
    border: 3px solid #fff;
    transform: none !important;
}
/* ----- */
.mobile {
    display: block;
}

.pc {
    display: none;
}

@media (min-width: 768px) {
    .intro-map{
        padding-top: 60px;
    }
    .mobile {
        display: none;
    }
    .pc {
        display: block;
    }
    .event-map {
        gap: 0;
    }
    .safe-content {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
    }
    .safe-img {
        min-width: 50%;
    }
    .about-wrapper {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }
    .about-img {
        width: 50%;
    }
    .intro-content {
        position: relative;
    }
    .intro-wrapper {
        position: absolute;
    }
}
@media (min-width: 1000px) {
    .stats-btn-wrapper {
        display: none;
    }
}
