body {
    height: var(--window-height);
    width: 100%;
    overflow: hidden;
    background: -o-linear-gradient(to bottom, #080319, #09031b, #0a031e, #0b0420, #0c0423, #150524, #1c0624, #230623, #2e071d, #360a16, #3a100e, #3b1904);
    background: -moz-linear-gradient(to bottom, #080319, #09031b, #0a031e, #0b0420, #0c0423, #150524, #1c0624, #230623, #2e071d, #360a16, #3a100e, #3b1904);
    background: -webkit-linear-gradient(to bottom, #080319, #09031b, #0a031e, #0b0420, #0c0423, #150524, #1c0624, #230623, #2e071d, #360a16, #3a100e, #3b1904);
    background: linear-gradient(to bottom, #080319, #09031b, #0a031e, #0b0420, #0c0423, #150524, #1c0624, #230623, #2e071d, #360a16, #3a100e, #3b1904);
}

input,
textarea {
    font-family: 'Poppins', sans-serif;
}

.flex {
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    -ms-flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.planet {
    height: 50vh;
    position: fixed;
    top: 38%;
    right: 10%;
    aspect-ratio: 1 / 1;
    -o-transform: scale(12.5) translate(calc(45vw / -12.5 + 8.5%), 49.5%) rotate(63deg);
    -ms-transform: scale(12.5) translate(calc(45vw / -12.5 + 8.5%), 49.5%) rotate(63deg);
    -moz-transform: scale(12.5) translate(calc(45vw / -12.5 + 8.5%), 49.5%) rotate(63deg);
    -webkit-transform: scale(12.5) translate(calc(45vw / -12.5 + 8.5%), 49.5%) rotate(63deg);
    transform: scale(12.5) translate(calc(45vw / -12.5 + 8.5%), 49.5%) rotate(63deg);
}

.main {
    position: relative;
    height: 100%;
    width: 100%;
}

.container {
    width: 95%;
    height: 90%;
    margin: auto;
}


/*// HEADER //*/

#header.hide {
    top: -20%;
    -o-transition: all 0.7s 0.2s cubic-bezier(0.51, 0.05, 0.27, 0.72);
    -moz-transition: all 0.7s 0.2s cubic-bezier(0.51, 0.05, 0.27, 0.72);
    -webkit-transition: all 0.7s 0.2s cubic-bezier(0.51, 0.05, 0.27, 0.72);
    transition: all 0.7s 0.2s cubic-bezier(0.51, 0.05, 0.27, 0.72);
}

/*// Contact Intro //*/


#contact-intro {
    max-width: 1800px;
    justify-content: space-between;
    z-index: 5;
}

.intro {
    width: max-content;
    height: max-content;
    max-width: 98%;
    justify-content: flex-start;
    margin: auto auto auto 0;
    color: white;
    font-size: clamp(2rem, 5vw, 4.5rem);
    font-weight: 200;
    line-height: 1.2;
    text-align: center;
}

.intro span:last-of-type>div>span {
    background-image: -o-linear-gradient(to top left, #9F4109, #925700);
    background-image: -moz-linear-gradient(to top left, #9F4109, #925700);
    background-image: -webkit-linear-gradient(to top left, #9F4109, #925700);
    background-image: linear-gradient(to top left, #9F4109, #925700);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-repeat: no-repeat;
    background-origin: content-box;
    clip-path: inset(1px);
}

.intro h1 {
    color: white;
    font-size: clamp(2rem, 4.5vw, 4.5rem);
    font-weight: 200;
    line-height: 1;
}

.contact-options {
    -ms-flex-direction: column;
    flex-direction: column;
    height: 80%;
    width: 40%;
    margin-top: auto;
}


/*// THE FORM //*/

#form-window {
    position: absolute;
    bottom: 50%;
    left: 50%;
    width: 100%;
    height: var(--window-height);
    background: var(--prime-color);
    padding: 2rem 4rem;
    -o-transform: translate(-50%, -100%);
    -ms-transform: translate(-50%, -100%);
    -moz-transform: translate(-50%, -100%);
    -webkit-transform: translate(-50%, -100%);
    transform: translate(-50%, -100%);
    -o-transition: all 2.5s cubic-bezier(.7, 0, .2, 1);
    -moz-transition: all 2.5s cubic-bezier(.7, 0, .2, 1);
    -webkit-transition: all 2.5s cubic-bezier(.7, 0, .2, 1);
    transition: all 2.5s cubic-bezier(.7, 0, .2, 1);
    overflow: hidden;
    z-index: 1111;
}

#form-window.active {
    -o-transform: translate(-50%, 50%);
    -ms-transform: translate(-50%, 50%);
    -moz-transform: translate(-50%, 50%);
    -webkit-transform: translate(-50%, 50%);
    transform: translate(-50%, 50%);
}

#form-close {
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 5%;
    top: 6%;
    width: 70px;
    aspect-ratio: 1 / 1;
    background-color: transparent;
    font-size: var(--p-bigger);
    color: white;
    cursor: pointer;
    z-index: 1111;
}

#form-close span {
    display: block;
    width: 50px;
    height: 2px;
    background-color: white;
}

#form-close span:nth-of-type(1) {
    -o-transform: translateX(17px) rotate(45deg);
    -ms-transform: translateX(17px) rotate(45deg);
    -moz-transform: translateX(17px) rotate(45deg);
    -webkit-transform: translateX(17px) rotate(45deg);
    transform: translateX(17px) rotate(45deg);
}

#form-close span:last-of-type {
    -o-transform: translateX(-17px) rotate(-45deg);
    -ms-transform: translateX(-17px) rotate(-45deg);
    -moz-transform: translateX(-17px) rotate(-45deg);
    -webkit-transform: translateX(-17px) rotate(-45deg);
    transform: translateX(-17px) rotate(-45deg);
}


.form-container {
    width: 50%;
    max-width: 900px;
    height: 75%;
    margin-top: auto;
}

.tab-descr,
.form-tab {
    flex-direction: column;
    align-items: flex-start;
    color: white;
    z-index: 11111;
}

/* Form Description  Tabs*/

*.must {
    position: relative;
}

*.must::before {
    position: absolute;
    content: "";
    right: -11px;
    top: 0;
    width: 5px;
    aspect-ratio: 1 / 1;
    background: var(--prime-gradiant1);
    border-radius: 50%;
}

.form-descr {
    width: 50%;
    max-width: 900px;
    height: 77%;
    margin-top: auto;
    position: relative;
}

.tab-descr {
    justify-content: space-between;
    margin-top: auto;
    -o-animation: fade 0.6s cubic-bezier(.7, 0, .2, 1) forwards;
    -moz-animation: fade 0.6s cubic-bezier(.7, 0, .2, 1) forwards;
    -webkit-animation: fade 0.6s cubic-bezier(.7, 0, .2, 1) forwards;
    animation: fade 0.6s cubic-bezier(.7, 0, .2, 1) forwards;
}

.tab-descr.active {
    -o-animation: descrSlideIn 0.8s cubic-bezier(.7, 0, .2, 1) both;
    -moz-animation: descrSlideIn 0.8s cubic-bezier(.7, 0, .2, 1) both;
    -webkit-animation: descrSlideIn 0.8s cubic-bezier(.7, 0, .2, 1) both;
    animation: descrSlideIn 0.8s cubic-bezier(.7, 0, .2, 1) both;
}

.tab-descr.hide {
    display: none;
}

@-o-keyframes descrSlideIn {
    from {
        -o-transform: translateX(-20%);
        transform: translateX(-20%);
        opacity: 0;
    }

    to {
        -o-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
}

@-moz-keyframes descrSlideIn {
    from {
        -moz-transform: translateX(-20%);
        transform: translateX(-20%);
        opacity: 0;
    }

    to {
        -moz-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
}

@-webkit-keyframes descrSlideIn {
    from {
        -webkit-transform: translateX(-20%);
        transform: translateX(-20%);
        opacity: 0;
    }

    to {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes descrSlideIn {
    from {
        transform: translateX(-20%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}


@-o-keyframes fade {
    0% {
        -o-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }

    50% {
        -o-transform: translateX(-5%);
        transform: translateX(-5%);
        opacity: 0.5;
    }

    100% {
        -o-transform: translateX(-10%);
        transform: translateX(-10%);
        opacity: 0;
    }
}

@-moz-keyframes fade {
    0% {
        -moz-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }

    50% {
        -moz-transform: translateX(-5%);
        transform: translateX(-5%);
        opacity: 0.5;
    }

    100% {
        -moz-transform: translateX(-10%);
        transform: translateX(-10%);
        opacity: 0;
    }
}

@-webkit-keyframes fade {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }

    50% {
        -webkit-transform: translateX(-5%);
        transform: translateX(-5%);
        opacity: 0.5;
    }

    100% {
        -webkit-transform: translateX(-10%);
        transform: translateX(-10%);
        opacity: 0;
    }
}

@keyframes fade {
    0% {
        transform: translateX(0);
        opacity: 1;
    }

    50% {
        transform: translateX(-5%);
        opacity: 0.5;
    }

    100% {
        transform: translateX(-10%);
        opacity: 0;
    }
}

.tab-descr p {
    font-size: var(--font-size-xxl);
    font-weight: 300;
    max-width: 19ch;
}

.tab-descr span:not(p span) {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
}

/*// FORM TABS //*/

.form-tab {
    position: relative;
    justify-content: flex-start;
    width: 100%;
    -o-animation: tabFadeOut 0.6s cubic-bezier(.7, 0, .2, 1) backwards;
    -moz-animation: tabFadeOut 0.6s cubic-bezier(.7, 0, .2, 1) backwards;
    -webkit-animation: tabFadeOut 0.6s cubic-bezier(.7, 0, .2, 1) backwards;
    animation: tabFadeOut 0.6s cubic-bezier(.7, 0, .2, 1) backwards;
}

.form-tab.active {
    -o-animation: tabSlideIn 0.8s cubic-bezier(.7, 0, .2, 1) both;
    -moz-animation: tabSlideIn 0.8s cubic-bezier(.7, 0, .2, 1) both;
    -webkit-animation: tabSlideIn 0.8s cubic-bezier(.7, 0, .2, 1) both;
    animation: tabSlideIn 0.8s cubic-bezier(.7, 0, .2, 1) both;
}

.form-tab.hide {
    display: none;
}

@-o-keyframes tabSlideIn {
    from {
        -o-transform: translateX(20%);
        transform: translateX(20%);
        opacity: 0;
    }

    to {
        -o-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
}

@-moz-keyframes tabSlideIn {
    from {
        -moz-transform: translateX(20%);
        transform: translateX(20%);
        opacity: 0;
    }

    to {
        -moz-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
}

@-webkit-keyframes tabSlideIn {
    from {
        -webkit-transform: translateX(20%);
        transform: translateX(20%);
        opacity: 0;
    }

    to {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes tabSlideIn {
    from {
        transform: translateX(20%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@-o-keyframes tabFadeOut {
    0% {
        -o-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }

    50% {
        -o-transform: translateX(5%);
        transform: translateX(5%);
        opacity: 0.5;
    }

    100% {
        -o-transform: translateX(10%);
        transform: translateX(10%);
        opacity: 0;
    }
}

@-moz-keyframes tabFadeOut {
    0% {
        -moz-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }

    50% {
        -moz-transform: translateX(5%);
        transform: translateX(5%);
        opacity: 0.5;
    }

    100% {
        -moz-transform: translateX(10%);
        transform: translateX(10%);
        opacity: 0;
    }
}

@-webkit-keyframes tabFadeOut {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }

    50% {
        -webkit-transform: translateX(5%);
        transform: translateX(5%);
        opacity: 0.5;
    }

    100% {
        -webkit-transform: translateX(10%);
        transform: translateX(10%);
        opacity: 0;
    }
}

@keyframes tabFadeOut {
    0% {
        transform: translateX(0);
        opacity: 1;
    }

    50% {
        transform: translateX(5%);
        opacity: 0.5;
    }

    100% {
        transform: translateX(10%);
        opacity: 0;
    }
}


.form-tab label {
    font-size: var(--font-size-base);
    margin-bottom: 0.25rem;
}

.form-tab input,
.form-tab textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid #ffffff47;
    padding: 0.3rem 0.6rem;
    margin-bottom: 1rem;
    color: white;
    font-size: var(--font-size-sm);
}

.form-tab textarea {
    font-size: var(--font-size-sm);
    width: 100%;
}

/* CUSTOME LABEL */

.label-container {
    position: relative;
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    align-items: center;
    height: 2rem;
    width: max-content;
    cursor: pointer;
}

#first-tab label {
    font-size: var(--font-size-md);
    margin-bottom: var(--font-size-md);
}

.label-container input:checked~.check-circle::after {
    -o-transform: translate(-50%, -50%) scale(1);
    -ms-transform: translate(-50%, -50%) scale(1);
    -moz-transform: translate(-50%, -50%) scale(1);
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
}

.label-container input {
    position: absolute;
    opacity: 0;
    height: 0;
    width: 0;
    cursor: pointer;
}

.check-circle {
    position: relative;
    height: 1.5rem;
    aspect-ratio: 1 / 1;
    border: 1px solid var(--second-color);
    background: transparent;
    border-radius: 50%;
    margin-right: 1rem;
}

.check-circle::after {
    content: "";
    position: absolute;
    width: 50%;
    height: 50%;
    top: 50%;
    left: 50%;
    -o-transform: translate(-50%, -50%) scale(0);
    -ms-transform: translate(-50%, -50%) scale(0);
    -moz-transform: translate(-50%, -50%) scale(0);
    -webkit-transform: translate(-50%, -50%) scale(0);
    transform: translate(-50%, -50%) scale(0);
    border-radius: 50%;
    background: var(--prime-gradiant1);
    -o-transition: all 0.5s cubic-bezier(.7, 0, .2, 1);
    -moz-transition: all 0.5s cubic-bezier(.7, 0, .2, 1);
    -webkit-transition: all 0.5s cubic-bezier(.7, 0, .2, 1);
    transition: all 0.5s cubic-bezier(.7, 0, .2, 1);
}

.commu-wrapper {
    font-size: var(--p-bigger);
    height: max-content;
    justify-content: flex-start;
}

.contact-dets {
    -ms-flex-direction: column;
    flex-direction: column;
    width: max-content;
    height: max-content;
    align-items: flex-start;
}

.contact-dets>span {
    font-size: var(--p-medium);
}

#copy-options {
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: max-content;
    height: max-content;
    margin: 0.5rem 0;
}

#copy-options .label-container:first-of-type {
    margin-right: 2rem;
}

/* FORM BUTTONS */

.prev-next {
    position: absolute;
    height: max-content;
    width: max-content;
    bottom: 0%;
    right: 0%;
}

.prev-next button {
    position: relative;
    border: 1px solid #555353;
    padding: 1rem clamp(1.5rem, 10vw, 4rem);
    border-radius: 2rem;
    font-size: var(--p-medium);
    color: white;
    background: transparent;
    cursor: pointer;
    overflow: hidden;
    margin-right: 0.5rem;
}

/*// LANDSCAPE MODE WITH SMALL SCREENS //*/

@media screen and (min-width:600px) and (max-width: 900px) {
    .options {
        -ms-flex-direction: column;
        flex-direction: column;
        align-items: flex-start;
    }

    #form-window {
        padding: 1rem;
    }

    .form-tab input,
    .form-tab textarea {
        padding: 0.3rem 0.2rem;
    }

    .prev-next {
        right: 0;
        bottom: 1%;
    }
}

@media screen and (orientation: portrait) {
    /* INTRO */

    .talk-slider {
        margin-top: auto;
    }

    .planet {
        top: 16%;
        right: 50%;
        height: 35vh;
        aspect-ratio: 1 / 1;
        -o-transform: scale(6.5) translate(10%, 70%) rotate(62deg);
        -ms-transform: scale(6.5) translate(10%, 70%) rotate(62deg);
        -moz-transform: scale(6.5) translate(10%, 70%) rotate(62deg);
        -webkit-transform: scale(6.5) translate(10%, 70%) rotate(62deg);
        transform: scale(6.5) translate(10%, 70%) rotate(62deg);
    }

    #contact-intro {
        flex-direction: column;
        justify-content: center;
        position: absolute;
        bottom: 10%;
        left: 5%;
        width: 90%;
        height: 80%;
        margin: 17% auto auto auto;
    }

    .intro {
        font-size: clamp(1rem, 6vh, 6rem);
        margin: auto auto 0 auto;
    }

    .contact-options {
        height: 50%;
        width: clamp(300px, 90%, 500px);
        margin-bottom: auto;
    }

    .options {
        width: max-content;
        height: max-content;
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-options a,
    .contact-options button {
        min-width: 85%;
    }

    /* THE FORM */

    #form-window {
        padding: 0;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    #form-window.active {
        -o-transform: translate(-50%, 50%);
        -ms-transform: translate(-50%, 50%);
        -moz-transform: translate(-50%, 50%);
        -webkit-transform: translate(-50%, 50%);
        transform: translate(-50%, 50%);
    }

    #form-window label {
        font-size: var(--p-bigger);
    }

    #form-window input,
    #form-window textarea {
        padding: 0.8rem .8rem;
    }

    #form-close {
        top: 2%;
        right: 5%;
    }

    .form-container {
        width: 95%;
        height: 60%;
        margin: auto 0 27% 0;
        align-items: center;
        display: flex;
        justify-content: center;
    }

    .form-descr {
        position: absolute;
        bottom: 5%;
        left: 5%;
        height: 75%;
        width: 90%;
        max-height: 1000px;
    }

    .tab-descr p,
    .tab-descr span {
        font-size: clamp(1.5rem, 6vw, 5rem);
        max-width: 50ch;
    }

    .form-tab {
        position: absolute;
        justify-content: center;
        bottom: 5%;
        height: 70%;
        width: 80%;
    }

    .prev-next {
        font-size: var(--p-bigger);
        right: -10%;
    }

    .footer {
        z-index: 6;
    }

}


/* SPECIAL PORTRAIT MODE STYLES */

@media screen and (min-width:700px) {
    #form-close {
        right: 5%;
        top: 3%;
    }

    #contact-intro {
        width: 95%;
        left: 2.5%;
        bottom: 5%;
    }

    .intro {
        margin: auto auto 4rem auto;
    }
}

@media screen and (min-width:800px) {
    #first-tab label {
        margin-bottom: 4rem;
    }
}