/* @import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap'); */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400&display=swap');
@font-face {
    font-family: Andale;
    src: url("../fonts/AndaleMono.ttf") format("truetype");
}

@font-face {
    font-family: Bavicka;
    src: url("../fonts/Bavicka.otf") format("opentype");
}

@font-face {
    font-family: Oxygen;
    src: url("../fonts/Oxygen-Light.ttf") format("truetype");
}

@font-face {
    font-family: Baskerville;
    src: url("../fonts/baskerville.ttf") format("truetype");
}

* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

#EMAIL, #ARTISTE,
canvas {
    display: none;
}

html,
body,
div,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}


body {
    background-color: black;
}

main {
    width: 100%;
    height: 100%;
    position: fixed;
}

section {
    width: 100%;
    height: 100%;
}

section.form,
section.outro {
    display: none;
}

select {
    display:none;
}

.btn-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    gap: 30px;
}

.btn-container  a {
    border: 1px solid white;
    color: black;
    background-color: white;
    cursor: pointer;
    border-radius: 0px;
    padding: 12px 27px;
    transition: all 450ms ease;
    font-size: 14px;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    font-weight: bolder;
    display: block;
    opacity:0;
    pointer-events:none;
}

.btn-container  a.active {
    opacity: 1;
    pointer-events: auto; 
    transition: all 650ms ease;
}

.btn-container  a:hover {
    background-color:transparent;
    color:white;
}

.btn-container a.btn-link-preco {
    background-color: black;
    color: white;
}

.btn-container a.btn-link-preco:hover {
    background-color: white;
    color: black;
}

.intro {
    position: relative;
}

.bkg-img {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.bkg-img img {
    width: 100%;
    object-fit: cover;
    height: 100%;
}

.intro-txt {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    flex-direction: column;
    border: 0px;
    transform: translateY(-100px);
}

.heading {
    width: 40vw;
}

.defs-intro-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position:relative;
    opacity:0;
}

.subtitle {
    color: white;
    margin-top: -32px;
    font-size: 22px;
    text-align: left;
    line-height: 26px;
    margin-left: 5px;
    font-family: 'Bebas Neue', cursive;
}

.subtitle .char {
    opacity: 0;
}

h1 {
    color: white;
    font-size: 72px;
    font-family: 'Baskerville', sans-serif;
    line-height: 122px;
    display: flex;
    gap: 12px;
}

h1 span:nth-child(3) {
    margin-left: 5px;
}

h1 span:nth-child(4) {
    margin-left: -7px;
    margin-right: 4px;
}

h1 .char2 {
    opacity: 0;
    transform: scale(1.2);
    transform-origin: left center;
}

.bkg-black {
    width: 100%;
    height: 100%;
    background-color: black;
    position: absolute;
    overflow: hidden;
    z-index: 3;
}

h1.splitting .char {

    animation: slide-in .6s cubic-bezier(.5, 0, .5, 1) both;
    animation-delay: calc(3ms * var(--char-index) + 1000ms);
    will-change: transform;
}

.def-item-intro {
    color: white;
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 40vw;
    position:absolute;
    top: 40px;
    align-items: flex-start;
    /* align-items: center; */
    /* opacity: 0; */
}

.def-item-intro .char {
    /* transform: translateY(5em); */
    /* opacity: 0; */
    will-change:transform;
}

.def-item-intro.animating .char {
    animation: slide-up 10s ease both;
    animation-delay: calc(30ms * var(--char-index));;
    will-change: transform;
    transform-origin: top left;
}




.def-item-intro .definition {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 27px;
    flex-grow:0;
}

.def-item-intro .def-name {
    /* align-self: center; */
    flex-shrink: 0;
    display: block;
    font-size: 16px;
    line-height:26px;
}

.def-item-intro .def-name span {
    display: inline-block;
    flex-shrink:0;
}

.text-area-container {
    position:relative; 
}

.text-area-container span {
    font-size: 11px;
    position: absolute;
    bottom: -13px;
    left: 0px;
    display: block;
    opacity: 0;
    transition: opacity 450ms ease; 
}

.text-area-container span.visible {
    opacity: 1;
}

/* 

.def-item.animating .char {
    animation: slide-up .6s ease both;
    animation-delay: calc(3ms * var(--char-index) + 1000ms );
} */

.logo-landy {
    width: 150px;
    position: absolute;
    bottom: 40%;
    overflow: hidden;
}

.logo-landy svg {
    transform: translateY(100px);
    transition: transform 450ms ease;
    /* animation: fade-up 1.2s 0.7s cubic-bezier(.5, 0, .5, 1) both; */
}


.defs-intro {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 5;
    color: white;
    display: grid;
    font-family: 'Andale', sans-serif;
    font-size: 16px;
    line-height: 20px;
    display: grid;
    grid-auto-columns: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-areas:
        ". Area . . ."
        ". Area . Area-2 Area-2"
        ". Area-3 Area-3 Area-3 Area-3"
        "Area-4 Area-4 . . Area-5"
        ". . Area-6 Area-6 .";
    -ms-grid-columns: 1fr 0px 1fr 0px 1fr 0px 1fr 0px 1fr 0px 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    -ms-grid-rows: auto 0px auto 0px auto 0px auto 0px auto;
    grid-template-rows: auto auto auto auto auto;
}

.def-item:nth-child(1) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
    grid-area: Area-3;
    -ms-grid-row-align: center;
    align-self: center;
    -ms-grid-column-align: center;
    justify-self: center;
}

.def-item:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    grid-area: Area;
    -ms-grid-row-align: end;
    align-self: end;
}

.def-item:nth-child(3) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
    grid-area: Area-2;
    -ms-grid-column-align: end;
    justify-self: end;
}

.def-item:nth-child(4) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
    grid-area: Area-4;
    -ms-grid-column-align: center;
    justify-self: center;
}

.def-item:nth-child(5) {
    -ms-grid-row: 5;
    -ms-grid-column: 3;
    grid-area: Area-5;
    -ms-grid-column-align: end;
    justify-self: end;
}

.def-item:nth-child(6) {
    -ms-grid-row: 9;
    -ms-grid-column: 5;
    -ms-grid-column-span: 3;
    grid-area: Area-6;
}

.def-name,
.slider-content-author {
    font-family: 'Bavicka', sans-serif;
    letter-spacing: 2px;
    font-size: 12px;
    line-height: 20px;
    box-sizing:border-box;
}

.defs-intro div.def-item {
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60%;
    text-align: center;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    perspective: 400px;
    flex-direction: column;
    gap: 20px;
    font-family: 'Inter';
    font-weight: 300;
}

.defs-intro div>div {
    width: 26vw;
}

.def-item {
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0% 100%);
    opacity: 0;
    transform: translateY(100px) scale(1.2);
}

.def-item .definition {
    font-size: 15px;
    line-height: 19px;
}


div.form {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    /* background-color: black; */
    z-index: 6;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    pointer-events: none;
}

div.form-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

div.form form {
    display: flex;
    position: relative;
    color: white;
    flex-direction: column;
    gap: 20px;
    width: 37vw;
    pointer-events: auto;
    /* height: 0px; */
}

div.form form input:not(.submit):not(.checkbox) {
    background-color: transparent;
    border: 1px solid rgba(250, 250, 250, 0.7);
    padding: 8px 10px 10px;
    color: white;
    font-size: 16px;
    border-radius: 0px;
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}

div.form form input:focus {
    outline: none;
}

.arrow-nav {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    margin-top: 20px;
}

.arrow-nav svg {
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    opacity: 0.3;
    transition: opacity 450ms ease;
    pointer-events: none;
}

.arrow-nav svg.active {
    pointer-events: auto;
    cursor: pointer;
    opacity: 1;
}

.arrow-nav .next {
    transform: rotate(180deg);
}

.form-step-1 .arrow-nav {
    justify-content: flex-end;
}

.form-end .arrow-nav {
    margin-top: 0px;
}


.form-step {
    height: 0px;
    opacity: 0;
    transform: translateY(20%);
    pointer-events:none;
}

/* .form-step-1 {
    margin-top: 20px;

} */

.form-step-2 {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-step.hidden {
    height: 0px;
    opacity: 0;
}

.form-step.visible {
    height: auto;
    opacity: 1;
    transition: all 1000ms ease;
    transform: translateY(0%);
    pointer-events:auto;
}

.form-end {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;

}

.form-title {
    color: white;
    font-size: 26px;
    line-height: 34px;
    text-align: center;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    font-weight: 300;margin-bottom: 24px;
    text-align:center;
    align-self: center;
}

.form-title span {
    font-family: 'Baskerville', sans-serif;
    letter-spacing: 2px;
    margin-left: 4px;
    font-size: 32px;
}

/* .line-2 {
    margin-top: -17px;
} */

.radio-btns {
    display: flex;
    align-items: center;
    gap: 20px;
}

.radio-btns-item {
    position:relative;
}

.radio-btns-container p {
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 18px;
}

input[type="radio"] { 
    position: absolute;
    width:100%;
    height:100%;
    padding: 0px;
    margin: 0px;
    opacity: 0;
}

.radio-btns-container label {
    position:relative;
    padding-left: 22px;
    font-size: 14px;
    line-height: 18px;
}

input[type="radio"] + label::before { 
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    border-radius: 0px;
    border: 1px solid rgba(250, 250, 250, 0.7);
    left: 0px;
    opacity: 1;
}

input[type="radio"] + label::after {
    content: '';
    position: absolute;
    width: 13px;
    height: 13px;
    border-radius: 0px;
    background-color: rgba(250, 250, 250, 0.7);
    top: 2px;
    left: 2px;
    opacity: 0;
    transition: opacity 450ms ease;
}

input[type="radio"]:checked + label::after {
    opacity: 1;
}

input::placeholder {
    color:white;
}

.input_group {
    display: flex;
    gap: 35px;
}

.input_group input {
    flex-grow: 1;
}

input.submit {
    border: 1px solid white;
    color: black;
    background-color: white;
    cursor: pointer;
    border-radius: 0px;
    padding: 12px 27px;
    transition: all 450ms ease;
    font-size: 14px;
}

input.submit:hover {
    background-color: transparent;
    color: white;
}

textarea {
    border: 1px solid rgba(250, 250, 250, 0.7);
    background-color: transparent;
    resize: none;
    height: 200px;
    color: white;
    font-size: 16px;
    padding: 10px 10px;
    border-radius: 0px;
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    width: 100%;
    box-sizing: border-box;
    font-family: 'Inter';
    transition: all 2000ms ease;
}

textarea:placeholder {
    color: white;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
}

textarea:focus {
    outline: none;
}

.consent-content {
    font-size: 14px;
    line-height: 18px;
    position: relative;
    cursor: pointer;
}

.consent-content .checkbox {
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 0px;
    backdrop-filter: unset;
    margin: 0px;
    opacity: 0;
}

.consent-content span {
    position: relative;
    padding-left: 30px;
}

.consent-content span::before {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    border-radius: 0px;
    border: 1px solid rgba(250, 250, 250, 0.7);
    left: 0px;
    opacity: 1;
}

.consent-content span::after {
    content: '';
    position: absolute;
    width: 13px;
    height: 13px;
    border-radius: 0px;
    background-color: rgba(250, 250, 250, 0.7);
    top: 2px;
    left: 2px;
    opacity: 0;
    transition: opacity 450ms ease;
}

.consent-content .checkbox:checked+span::after {
    opacity: 1;
}

.outro {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    /* background-color: black; */
    z-index: 7;
    visibility: hidden;
    pointer-events: none;
    transition: all 650ms ease;
    opacity: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.outro.visible {
    visibility: visible;
    pointer-events: auto;
    opacity: 1;
}

.outro h2 {
    color: white;
    font-size: 24px;
    line-height: 45px;
    text-align: center;
    overflow: hidden;
    font-family: 'Baskerville', sans-serif;
    font-size: 46px;
    line-height: 50px;
    opacity: 0;
    transform: translateY(50%) scale(1.5);
    position: absolute;
    text-transform:uppercase;
}

.outro.visible h2 {
    opacity: 1;
    transition: all 1000ms ease 1000ms;
    transform: translateY(0%) scale(1);
}

.outro.visible h2.hidden {
    opacity: 0;
    transition: all 450ms ease 0ms;
}

.slider-container {
    width: 60vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    /* max-height: 50%; */
    opacity: 0;
}

.slider-container.active {
    opacity: 1;
    transition: opacity 1200ms ease;
}

.swiper-slide.slide-quote {
    padding: 30px;
    box-sizing: border-box;
    height: auto;
    display: flex;

}

.swiper-slide.slide-quote .slider-content {
    opacity: 0;
    transform: translateY(50%) scale(1.3);
}

.swiper-slide.slide-quote.swiper-slide-active .slider-content {
    opacity: 1;
    transition: transform 1000ms ease, opacity 1600ms ease;
    transform: translateY(0%) scale(1);
}

.swiper-navigation {
    display: flex;
    height: 50px;
    justify-content: space-between;
    align-items: center;
    width: 20%;
    margin-top: 20px;
}

.slider-content {
    color: white;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    width: 100%;
    height: auto;
    justify-content: center;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after,
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
    content: unset !important;
}

.swiper-button-next.btn-next,
.swiper-button-prev.btn-prev {
    width: 40px;
    height: 40px;
    position: relative;
    top: unset;
}

.slider-content-txt {
    font-size: 27px;
    line-height: 36px;
    font-family: 'Inter';
    font-weight: 300;
    text-align: center;
}

.slider-content-author {
    font-size: 18px;
    line-height: 42px;
    margin-top: 20px;
}

.next-slide {
    transform: rotate(180deg);
}

.swiper {
    max-width: 100%;
}

.def-image-to-share-block .img-behind {
    position: absolute;
    width: 100% !important;
    height: 100% !important;
}

.def-image-to-share-block {
    width: 225px !important;
    height: 400px !important;
}

main.legals {
    display: flex;
    flex-direction: column;
    padding: 4vw 8vw;
    box-sizing: border-box;
    background-color:white;
    align-items:center;
    font-size: 15px;
    line-height: 20px;
    font-family: 'Inter', sans-serif;
    position: relative;
}

.legals-content-block strong {
    font-weight:bold;
}

main.legals h1 {
    color: black;
    font-family: 'Inter', sans-serif;
    text-align: center;
    font-size: 36px;
    line-height: 46px;
    margin: 40px 0px;
    justify-content: center;
}

main.legals h2 {
    margin: 30px 0px 10px;
    font-size: 16px;
    line-height: 24px;
}

main.legals a {
    color:black;
    font-weight:bolder;
}

main.legals ul {
    list-style-type: disc;
    padding-left: 40px;
    margin: 20px 0px;
}

main.legals p {
    margin: 10px 0px;
}

.legals-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.legals-content-block {
    min-height: 65vh;
}

main.legals .underline-p {
    text-decoration:underline;
}

footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2vw 4vw;
    color:white;
}

footer .footer-logo {
    width: 100px;
}

.footer-list {
    display: flex;
    gap: 50px;
}

.radio-btns-container a {
    color:white;
}

body.home footer {
    position: absolute;
    width: 100%;
    box-sizing: border-box;
    bottom: 0px;
    opacity: 0;
    pointer-events: none;
}

footer a {
    color:white;
    text-decoration: none;
    font-weight:bolder;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
}

footer .footer-logo img {
    max-width: 100%;
    object-fit: contain;
}

@keyframes slide-in {
    from {
        transform: translateY(1.5em);
        opacity: 0;
    }
}

@keyframes slide-up {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fade-up {
    to {
        transform: translateY(0);
    }
}

.loader {
    position: absolute;
    bottom: 2.7px;
    opacity: 0;
    width: 97%;
    z-index: 5;
}

.circle {
    width: 30px;
    height: 30px;
    border: 6px rgba(250,250,250, 0.4) solid;
    border-top: 6px white solid;
    border-radius: 50%;
    animation: spin-circle .8s infinite linear;
  }

.progress-block {
    width: 100%;
    background-color: rgba(250,250,250,0.1);
    border-radius:15px;
    position:relative;
}

.progress-bar {
    width: 1%;
    height: 5px;
    background-color: white;
    text-align: center;
    line-height: 30px;
    color: white;
    border-radius:15px;
    transition: width 450ms ease;

}

.progress-bar-txt {
    position: absolute;
    color: rgba(250,250,250,0.4);
    top: -5px;
    right: -41px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
}
  
  @keyframes spin-circle {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }

@media (max-width: 1200px) {
    .swiper-navigation {
        width: 11vw;
    }

    .slider-content-txt {
        font-size: 27px;
        line-height: 32px;
    }

    .slider-content-author {
        font-size: 15px;
        line-height: 30px;
    }

    .slider-container {
        width: 60vw;
    }


    .def-item-intro, .heading {
        width: 65vw;
    }

    /* .def-item-intro .definition {
        text-align:center;
    } */
}

@media (max-width: 1024px) {
    div.form form {
        width: 100%;
    }

    .form-title h2 {
        font-size: 28px;
        line-height: 50px;
    }

    .form-title {
        width: 100%;
        margin-bottom: 20px;
    }

    div.form-container {
        width: 53%;
    }

    textarea {
        font-size: 18px;
    }

    .consent-content {
        font-size: 16px;
    }

    div.form form input:not(.submit):not(.checkbox) {
        font-size: 18px;
    }

    .consent-content span::after {
        top: 3px;
    }

    .loader {
        width: 95%;
        bottom: 1px;
    }

    .progress-bar-txt {
        right: -44px;
        top:-3px;
    }

    .progress-bar {
        height: 10px;
    }

}

@media (max-width: 991px) {
    div.form-container {
        width: 75%;
    }

    .logo-landy {
        bottom: 42%;
    }


    .defs-intro {
        grid-template-areas:
            ". Area . . ."
            ". Area . Area-2 Area-2"
            ". Area-3 Area-3 Area-3 Area-3"
            "Area-4 Area-4 . . Area-5"
            ". Area-6 Area-6 Area-6 Area-6";
    }

    .swiper-navigation {
        width: 20vw;
        margin-top: 50px;
    }

    .slider-container {
        width: 80vw;
    }

    .outro h2 {
        font-size: 38px;
    }

    .def-image-to-share-block {
        width: 315px !important;
        height: 546px !important;
    }

    main.legals {
        padding: 8vw;
    }

    main.legals h1 {
        font-size: 28px;
        line-height: 40px;
        margin-top: 30px;
    }

    .legals-content-block {
        min-height: 72vh;
    }

    footer .footer-logo {
        width: 80px;
    }

    .loader {
        width: 94%;
    }
}

@media (max-width: 767px) {
    div.form form {
        width: 90%;
    }

    .input_group {
        flex-direction: column;
    }

    .form-title h2 {
        font-size: 18px;
        line-height: 32px;
    }

    .form-title {
        width: 100%;
        margin-bottom: 20px;
    }

    h1 {
        font-size: 46px;
        line-height: 78px;
        gap:10px;
    }

    h1 span:nth-child(3) {
        margin-left: 0px;
    }

    h1 span:nth-child(4) {
        margin-left: -4px;
        margin-right: 0px;
    }

    .defs-intro {
        box-sizing: border-box;
        font-size: 12px;
        line-height: 15px;
    }

    .defs-intro div>div {
        width: auto;
    }

    .logo-landy {
        width: 80px;
        bottom: 44%;
    }

    .defs-intro {
        grid-template-areas:
            "Area Area Area-3 Area-3"
            "Area-2 Area-2 Area-2 Area-2"
            "Area-4 Area-4 Area-4 Area-4"
            "Area-5 Area-5 Area-6 Area-6";
        -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
        -ms-grid-rows: auto auto auto auto;
        grid-template-rows: auto auto auto auto;
    }

    .def-item .definition {
        font-size: 14px;
        line-height: 18px;
    }

    .defs-intro div.def-item {
        padding: 20px;
        gap: 10px;
    }

    .def-name,
    .slider-content-author {
        font-size: 14px;
        line-height: 20px;
    }

    div.form-container {
        width: 100%;
    }

    .line-2 {
        margin-top: -6px;
    }

    .input_group, .form-step-2 {
        gap: 18px;
    }

    .swiper-navigation {
        width: 125px;
        margin-top: 30px;
    }

    .slider-content-txt {
        font-size: 18px;
        line-height: 23px;
    }

    .slider-container {
        width: 95vw;
    }

    .outro h2 {
        font-size: 20px;
        line-height: 26px;
        max-width: 92%;
    }

    .def-item-intro, .heading {
        width: 80vw;
    }

    .def-item-intro .definition {
        font-size: 17px;
        line-height: 24px;
    }

    .subtitle {
        margin-top: -19px;
        font-size: 16px;
        text-align: left;
        line-height: 20px;
        margin-left: 1px;
    }

    .def-item-intro .def-name {
        font-size:14px;
    }

    .def-image-to-share-block {
        width: 56.41vw !important;
        height: 100.256vw !important;
    }

    .btn-container {
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
    }

    main.legals {
        font-size: 14px;
        line-height: 19px;
    }

    footer {
        padding: 5vw 4vw;
    }

    .footer-list {
        gap:40px;
    }

    footer .footer-logo {
        width: 65px;
    }

    footer a {
        font-size: 11px;
    }

    .circle {
        width: 25px;
        height:25px;
        border: 4px rgba(250,250,250, 0.4) solid;
        border-top: 4px white solid;
    }

    .loader {
        width: 87%;
        /* align-self: flex-start;
        left: 20px; */
    }
    .progress-bar{
        height:8px;
    }
}