@import url('https://fonts.googleapis.com/css2?family=Epilogue:ital,wght@0,100..900;1,100..900&family=Manrope:wght@200..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

:root {
    --font-manrope: "Manrope", sans-serif;
    --font-epilogue: "Epilogue", sans-serif;
    --primaryColor: #1881e4;
    --whiteColor: #fff;
    --white: #fff;
    --black: #080213;
    --bg-sfondo: linear-gradient(180deg, rgba(8, 2, 19, 0.80) 0%, rgba(8, 2, 19, 0.00) 100%), #080213;
    --border-color1: rgba(8, 2, 19, 0.20);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-manrope);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    background: #E3E1E6;
    color: #080213;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-weight: 700;
    font-family: var(--font-epilogue);
}

p,
figure,
label {
    margin: 0;
    opacity: 0.8;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

small {
    font-size: inherit;
}

a {
    display: inline-block;
    text-decoration: none;
    color: inherit;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
}

a:hover {
    text-decoration: none;
}

ul.options,
.footer-top-right ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

input,
button {
    background-color: transparent;
    border: 1px solid transparent;
    outline: none;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
}

input[type=number] {
    -moz-appearance: textfield;
    -webkit-appearance: textfield;
    appearance: textfield;
}

select {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url(images/select-input-arrow.png);
    background-repeat: no-repeat;
    background-size: 15px;
    background-position: calc(100% - 15px) 50%;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}

::selection {
    color: var(--whiteColor);
    background: var(--primaryColor);
}

::-webkit-selection {
    color: var(--whiteColor);
    background: var(--primaryColor);
}

::-moz-selection {
    color: var(--whiteColor);
    background: var(--primaryColor);
}

/*======= header-area design =======*/

.header {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    padding-top: 24px;
    z-index: 100;
}

.header-nav {
    width: 100%;
    max-width: 1264px;
    margin-inline: auto;
    padding: 16px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.60);
    backdrop-filter: blur(7px);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 32px;
}

.custom-select {
    position: relative;
}

.select-box {
    background: transparent;
    padding: 10px 35px 10px 10px;
    cursor: pointer;
    position: relative;
    color: var(--black);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0.64px;
}

.select-box i {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.3s;
}

.select-box.active i {
    transform: translateY(-50%) rotate(180deg);
}

.options {
    list-style: none;
    padding: 0;
    margin: 0;
    border: 1px solid #ccc;
    display: none;
    position: absolute;
    width: fit-content;
    background: #fff;
    z-index: 10;
    right: 0;
}

.options li {
    padding: 10px;
    cursor: pointer;
    font-size: 16px;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0.64px;
}

.options li:hover {
    background: #f1f1f1;
}

.nav-wrapper .nav-links {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0.64px;
}

a:hover {
    opacity: 0.6;
    transition: 0.3s;
}

.nav-btn {
    padding: 8px 20px;
    border-radius: 4px;
    border: 1px solid var(--black);
    background: var(--black);
    color: var(--whiteColor);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0.64px;
}

.menu-togger .close-icon {
    display: none;
}

.mobile-menu {
    position: fixed;
    right: -101%;
    top: 0;
    width: 100%;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--black);
    color: var(--whiteColor);
    z-index: 90;
    transition: 0.3s;
}

.mobile-menu .nav-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--whiteColor);
}

.menu-togger.active .close-icon {
    display: block;
}

.menu-togger.active .humburger-icon {
    display: none;
}

.menu-togger {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
}

.mobile-menu.menu-active {
    right: 0;
}

.menu-show {
    height: 100dvh;
    overflow: hidden;
}

/*=========== header area end hare ========== */
/*========= hero area start hare =========== */

.hero-area {
    position: relative;
    z-index: 2;
    background-color: #080213;
}

.hero-bg-video {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        radial-gradient(111.78% 50% at 50% 50%, rgba(8, 2, 19, 0.00) 0%, rgba(8, 2, 19, 0.80) 100%),
        linear-gradient(0deg, rgba(8, 2, 19, 0.40) 0%, rgba(8, 2, 19, 0.40) 100%);
    background-blend-mode: normal, color-burn;
}

.hero-wrapper {
    padding-top: 160px;
    padding-bottom: 120px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
    text-align: center;
    color: #fff;
}

.hero-wrapper h1 {
    color: var(--white, #FFF);
    text-align: center;
    font-family: var(--font-epilogue);
    font-size: 80px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 3.2px;
    text-transform: uppercase;
    max-width: 1024px;
}

.hero-wrapper p {
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    letter-spacing: 0.96px;
    opacity: 1;
    max-width: 840px;
}

.hero-wrapper a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0.64px;
    text-transform: uppercase;
}

.container.hero {
    position: relative;
    z-index: 2;
}

/*======= hero end hare ======= */
/*======= enhance area ========= */

.enhace-area {
    position: relative;
}

.enhace-wrapper {
    position: relative;
    padding-block: 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.enhace-wrap {
    position: relative;
    padding-block: 80px;
    display: grid;
    gap: 16px;
}

.ehnace-image img, .ehnace-image video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ehnace-content {
    padding: 80px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ehnace-content h2 {
    font-family: var(--font-epilogue);
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    text-transform: uppercase;
}

.ehnace-content p {}

.software .ehnace-image {
    position: relative;
}

.software .ehnace-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

.software .ehnace-image .video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(123, 57, 235, 0.40) 0%, rgba(123, 57, 235, 0.40) 100%);
    mix-blend-mode: multiply;
    pointer-events: none;
    z-index: 1;
}

.software .ehnace-image .photo-pattern {
    position: relative;
    z-index: 2;
}

.enhace-area::before {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: var(--border-color1);
    position: absolute;
    left: 0;
    top: 80px;
}

.enhace-area::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: var(--border-color1);
    position: absolute;
    left: 0;
    bottom: 80px;
}

.enhace-wrapper::before {
    content: '';
    display: block;
    width: 2px;
    height: 100%;
    background: var(--border-color1);
    position: absolute;
    left: 0;
    bottom: 0;
}

.enhace-wrapper::after {
    content: '';
    display: block;
    width: 2px;
    height: 100%;
    background: var(--border-color1);
    position: absolute;
    right: 0;
    bottom: 0;
}

.enhace-wrap::before {
    content: '';
    display: block;
    width: 2px;
    height: 100%;
    background: var(--border-color1);
    position: absolute;
    left: 0;
    bottom: 0;
}

.enhace-wrap::after {
    content: '';
    display: block;
    width: 2px;
    height: 100%;
    background: var(--border-color1);
    position: absolute;
    right: 0;
    bottom: 0;
}

/*========= enhace end ======= */
/*======= upgrade start ======== */

.upgrade-area {
    background: var(--bg-sfondo);
}

.upgrade-wrapper {
    display: flex;
    padding: 160px 104px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    color: #fff;
    border: 2px solid rgba(229, 227, 232, 0.40);
}

.upgrade-wrapper h2 {
    color: var(--white, #FFF);
    text-align: center;
    font-family: var(--font-epilogue);
    font-size: 56px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    /* 56px */
    text-transform: uppercase;
}

.upgrade-wrapper p {
    opacity: 0.6;
}

/*======== upgrade end ======= */
/*===== our solution start ====== */

.our-solution-area {
    position: relative;
}

.our-solution-wrapper {
    position: relative;
    padding: 160px 104px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.our-solution-area::before {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: var(--border-color1);
    position: absolute;
    left: 0;
    top: 80px;
}

.our-solution-area::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: var(--border-color1);
    position: absolute;
    left: 0;
    bottom: 80px;
}

.our-solution-wrapper::before {
    content: '';
    display: block;
    width: 2px;
    height: 100%;
    background: var(--border-color1);
    position: absolute;
    left: 0;
    bottom: 0;
}

.our-solution-wrapper::after {
    content: '';
    display: block;
    width: 2px;
    height: 100%;
    background: var(--border-color1);
    position: absolute;
    right: 0;
    bottom: 0;
}

.our-solution-top {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.our-solution-top h2 {
    color: var(--black);
    font-family: var(--font-epilogue);
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    text-transform: uppercase;
}

.our-solution-top p {
    max-width: 606px;
}

.our-solution-top a {
    color: var(--black);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0.64px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
}

.solution-category {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.single-solution-items {
    display: flex;
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    border-radius: 4px;
    background: var(--black);
    color: #fff;
}

.single-solution-items .icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: var(--black);
    text-align: center;
    font-family: var(--font-epilogue);
    font-size: 21.25px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    clip-path: polygon(25% 0, 100% 0, 100% 100%, 0 100%, 0 25%);
    text-transform: uppercase;
}

.single-solution-items h3 {
    font-family: var(--font-epilogue);
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}

/*======= our solution end ======= */
/*======== context start ========== */

.context-area {
    /* background: url(images/cbrn-context.png) no-repeat; */
    background: url(images/cbrn-context.webp) no-repeat;
    background-size: cover;
    background-position: center;
}

.context-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 160px 80px;
    gap: 40px;
    border-right: 2px solid #E5E3E8;
    border-left: 2px solid #E5E3E8;
}

.context-left {
    display: flex;
    padding: 40px;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.60);
    backdrop-filter: blur(7px);
}

.content-left-top {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.content-left-top span {
    color: rgba(8, 2, 19, 0.60);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.content-left-top h2 {
    color: var(--black);
    font-family: var(--font-epilogue);
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    text-transform: uppercase;
}

.context-left a {
    color: var(--black);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0.64px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
}

.context-area {
    position: relative;
}

.context-area::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(198, 255, 51, 0.60) 0%, rgba(198, 255, 51, 0.60) 100%);
    mix-blend-mode: multiply;
    pointer-events: none;
    z-index: 1;
}

.context-area .container {
    position: relative;
    z-index: 2;
}

/*========= context end ========= */
/*======= footer start  ======== */

.footer-area {
    position: relative;
    background: var(--bg-sfondo);
    color: var(--whiteColor);
}

.footer-wrapper {
    position: relative;
    padding-top: 80px;
    border-inline: 2px solid rgba(229, 227, 232, 0.40);
}

.footer-top {
    display: flex;
    padding: 120px 80px;
    align-items: flex-start;
    gap: 16px;
    justify-content: space-between;
}

.footer-top-left {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 736px;
}

.sponinoff-card {
    display: flex;
    width: 259px;
    padding: 12px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.20);
    background: rgba(255, 255, 255, 0.01);
    backdrop-filter: blur(3px);
}

.sponinoff-card span {
    color: rgba(255, 255, 255, 0.60);
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0.56px;
}

.footer-top-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 32px;
    text-align: right;
}

.footer-top-right ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-top-right ul a {
    font-weight: 700;
    text-decoration: underline;
}

.footer-top-right .follow-us {
    display: flex;
    align-items: center;
    gap: 10px;
}

.follow-us span {
    opacity: 0.8;
    white-space: nowrap;
}

.footer-btm {
    padding-inline: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 80px;
}

.footer-btm a {
    font-weight: 700;
    text-decoration: underline;
}

.footer-area::before {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: rgba(229, 227, 232, 0.40);
    position: absolute;
    left: 0;
    top: 80px;
}

.footer-area::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: rgba(229, 227, 232, 0.40);
    position: absolute;
    left: 0;
    bottom: 80px;
}

/* footer end  */

/*=========================
 SOLUTION PAGE 
========================= */

/* hero area  */

.solution-hero-area {
    /* background: var(--bg-sfondo); */
    background: url(images/footer-bg-mb.png) no-repeat;
    color: var(--whiteColor);
}

.solution-hero-wrapper {
    padding-top: 160px;
    padding-bottom: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    text-align: center;
}

.solution-hero-wrapper h1 {
    text-align: center;
    font-family: var(--font-epilogue);
    font-size: 72px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 2.88px;
    text-transform: uppercase;
    max-width: 815px;
}

.solution-hero-wrapper p {
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    letter-spacing: 0.96px;
    max-width: 815px;
}

.solution-hero-btm {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.solution-hero-wrapper .single-solution-items {
    background: var(--whiteColor);
    color: var(--black);
}

.solution-hero-wrapper .single-solution-items .icon {
    background: var(--black);
    color: var(--whiteColor);
}

.solution-hero-wrapper .solution-category {
    width: 100%;
    max-width: 1024px;
}

.icon-black {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black);
    color: var(--whiteColor);
    text-align: center;
    font-family: var(--font-epilogue);
    font-size: 21.25px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    text-transform: uppercase;
    clip-path: polygon(25% 0, 100% 0, 100% 100%, 0 100%, 0 25%);
}

.title-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.title-card span {
    color: var(--black);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    opacity: 0.6;
}

.content-card ul {
    list-style: disc;
    padding-left: 20px;
    opacity: 0.8;
}

.action-links {
    color: var(--black);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0.64px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
}

.software-inner-wp {
    grid-column: span 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 2px solid rgba(8, 2, 19, 0.20);
    margin-top: 48px;
}

.single-software-item {
    display: flex;
    padding: 40px;
    flex-direction: column;
    gap: 16px;
}

.single-software-item h3 {
    font-family: var(--font-epilogue);
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    text-transform: uppercase;
}

.single-software-item:nth-child(2) {
    border-right: 2px solid rgba(8, 2, 19, 0.20);
    border-left: 2px solid rgba(8, 2, 19, 0.20);
}

.ehnace-image {
    position: relative;
}

.photo-pattern {
    position: absolute;
    left: 50%;
    bottom: -40px;
    height: fit-content !important;
    max-width: 528px;
    transform: translateX(-50%);
    z-index: 2;
    width: 90% !important;
}

/*======= vehicle area ======== */

.vehicle-area {
    background: url(images/vehicle-bg.webp) no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 2;
    /* backdrop-filter: blur(10px); */
}

.bg-blur-effect {
    /* backdrop-filter: blur(10px); */
}

.vehicle-wrapper {
    padding-block: 80px;
    position: relative;
    border-inline: 2px solid var(--whiteColor);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.vehicle-right {
    display: flex;
    padding: 120px 80px;
}

.vehicle-wrapper .ehnace-content {
    background: #fff;
}

.vehicle-area::before {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    position: absolute;
    left: 0;
    top: 80px;
    z-index: 2;
}

.vehicle-area::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    position: absolute;
    left: 0;
    bottom: 80px;
}

/*============ CBRN CONTEXT PAGE ============ */

/* hero area  */

.cbrn-hero-area {
    background: url(images/cbrn-context-hero.webp) no-repeat;
    background-size: cover;
    background-position: center;
    background-position: 65%;
}

.cbrn-hero-wrapper {
    padding-top: 160px;
    padding-bottom: 120px;
}

.cbrn-hero-wrapper {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.cbrn-hero-wrapper h1 {
    color: var(--white);
    font-family: var(--font-epilogue);
    font-size: 72px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 2.88px;
    text-transform: uppercase;
    max-width: 815px;
}

.cbrn-hero-wrapper p {
    color: var(--white);
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    letter-spacing: 0.96px;
    max-width: 815px;
    opacity: 1;
}


.icon-style {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.icon-black.cut-top-right {
    clip-path: polygon(75% 0, 100% 25%, 100% 100%, 0 100%, 0 0);
}

.icon-black.cut-bottom-left {
    clip-path: polygon(100% 0, 100% 100%, 25% 100%, 0 75%, 0 0);
}

.icon-black.cut-bottom-right {
    clip-path: polygon(100% 0, 100% 75%, 75% 100%, 0 100%, 0 0);
}

.hsvc .ehnace-image img {
    max-height: 640px;
    object-fit: cover;
}

/* tranning comparison area  */

.training-comparison {
    position: relative;
}

.training-com-wrapper {
    padding-block: 160px;
    padding-inline: 80px;
    border-inline: 2px solid var(--border-color1);
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.training-com-wrapper h2 {
    color: var(--black, #080213);
    text-align: center;
    font-family: var(--font-epilogue);
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    text-transform: uppercase;
}

.training-inner-wp {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.traditional-training {
    display: flex;
    padding: 48px 40px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    background: var(--white);
}

.traditional-training ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.traditional-training ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.8;
}

.traditional-training h4 {
    font-family: var(--font-epilogue);
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    text-transform: uppercase;
}

.almost-real-training {
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    background: url(images/footer-bg-mb.png) no-repeat;
    background-size: cover;
    background-position: top;
    color: var(--white);
}

.almost-real-training ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.almost-real-training ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.8;
}

.almost-real-training h4 {
    font-family: var(--font-epilogue);
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    text-transform: uppercase;
}

.training-comparison::before {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: var(--border-color1);
    position: absolute;
    left: 0;
    top: 80px;
}

.training-comparison::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: var(--border-color1);
    position: absolute;
    left: 0;
    bottom: 80px;
}

.almost-real-training ul li span {
    flex: 1;
}

.flexibility .ehnace-image img {
    max-height: 507px;
}

/* research area  */

.research-area {
    position: relative;
    background: var(--black);
    color: var(--white);
}

.research-wrapper {
    padding-block: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
    border-right: 2px solid rgba(229, 227, 232, 0.40);
    border-left: 2px solid rgba(229, 227, 232, 0.40);
    padding-inline: 40px;
}

.research-wrapper-top {
    width: 100%;
    max-width: 816px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.research-wrapper-top h2 {
    font-family: var(--font-epilogue);
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    text-transform: uppercase;
}

/* .research-brands {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 973px;
    gap: 40px;

    padding-inline: 20px;
} */

.research-brands {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.research-brands img {
    width: 120px;
    height: 80px;
    object-fit: contain;
    flex-shrink: 0;
}

.research-area::before {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: rgba(229, 227, 232, 0.40);
    position: absolute;
    left: 0;
    top: 120px;
}

.research-area::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: rgba(229, 227, 232, 0.40);
    position: absolute;
    left: 0;
    bottom: 120px;
}

.bw {
    filter: grayscale(100%);
}

/*==================
 CONTACT US PAGE 
===================== */

.contact-form-area {
    position: relative;
}

.contact-wrapper {
    padding-top: 160px;
    padding-bottom: 120px;
    border-inline: 2px solid var(--border-color1);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-block-left {
    display: flex;
    padding: 80px 104px;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    flex: 1 0 0;
    align-self: stretch;
}

.contact-inner-block {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 24px;
}

.contact-inner-block h2 {
    font-family: var(--font-epilogue);
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    text-transform: uppercase;
}

.contact-form-block {
    padding: 80px 40px;
}

.contact-form-block form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.single-input select {
    width: 100%;
    border: none;
    background: transparent;
    color: inherit;
    font-family: var(--font-manrope);
    font-size: 18px;
    cursor: pointer;
}

.single-input select option[value=""][disabled] {
    color: rgba(8, 2, 19, 0.4); /* stesso stile dei placeholder */
}

.group-input {
    display: flex;
    gap: 16px;
}

.single-input {
    padding: 8px 16px;
    border-radius: 2px;
    border: 1px solid rgba(8, 2, 19, 0.20);
    background: rgba(8, 2, 19, 0.04);
    flex: 1;
}

.single-input input,
.single-input textarea {
    background: transparent;
    border: none;
    width: 100%;
}

.terms-check {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    color: #2d2d2d;
    user-select: none;
}

.terms-check input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    height: 20px;
    width: 20px;
    background-color: transparent;
    border: 1.5px solid #9e9e9e;
    border-radius: 5px;
    margin-right: 10px;
    position: relative;
    flex-shrink: 0;
}

.terms-check:hover input~.checkmark {
    border-color: #2d2d2d;
}

.terms-check input:checked~.checkmark {
    border-color: #2d2d2d;
    background-color: transparent;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid #2d2d2d;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.terms-check input:checked~.checkmark:after {
    display: block;
}

.privacy-link {
    text-decoration: underline;
}

.submit-btn button {
    display: flex;
    padding: 8px 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 2px;
    background: var(--black);
    color: #fff;
}

.submit-btn button:hover {
    opacity: 0.6;
}

.contact-form-area::before {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: var(--border-color1);
    position: absolute;
    left: 0;
    top: 160px;
}

.contact-form-area::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: var(--border-color1);
    position: absolute;
    left: 0;
    bottom: 120px;
}

/* contact image  */

.contact-image-area {
    position: relative;
}

.contact-image-wrapper {
    padding-top: 120px;
    padding-bottom: 160px;
    border-inline: 2px solid var(--border-color1);
}

.contact-image-area::before {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: var(--border-color1);
    position: absolute;
    left: 0;
    top: 120px;
}

.contact-image-area::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: var(--border-color1);
    position: absolute;
    left: 0;
    bottom: 160px;
}

.contact-image {
    padding: 80px 104px;
}

.contact-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 4px;
}

.header {
    transition: all 0.4s ease;
    z-index: 200;
}

/* Fixed state */
.header.header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    transform: translateY(-100%);
    animation: slideDown 0.4s ease forwards;
}

/* keyframe animation */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.options a {
    white-space: nowrap;
}