body {
    padding: 0;
    margin: 0;
    font-family: 'Editor';
}

p, a, span, h2 {
    color: #ece4d6;
    font-family: 'Editor';
}

h2 {
    font-family: 'Editor';
    font-weight: 400;
    font-size: 20px;
    letter-spacing: 0.2px;
}

input {
    border: none;
    background: transparent;
    outline: none;
}

input::placeholder {
    font-style: italic;
    color: #ece4d6;
    font-family: 'Editor';
}

/* For password fields */
input:-internal-autofill-previewed[type="password"],
input:-internal-autofill-selected[type="password"] {
  background-color: transparent !important;
  background-image: none !important;
  color: inherit !important;
}

button {
    background-color: transparent;
    border: none;
    cursor: pointer;
}

/* fonts */
@font-face {
    font-family: 'Editor';
    src: url('../assets/fonts/Editor-Regular.eot');
    src: url('../assets/fonts/Editor-Regular.eot?#iefix') format('embedded-opentype'),
        url('../assets/fonts/Editor-Regular.woff2') format('woff2'),
        url('../assets/fonts/Editor-Regular.woff') format('woff'),
        url('../assets/fonts/Editor-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Editor-bold';
    src: url('../assets/fonts/Editor-Bold.eot');
    src: url('../assets/fonts/Editor-Bold.eot?#iefix') format('embedded-opentype'),
        url('../assets/fonts/Editor-Bold.woff2') format('woff2'),
        url('../assets/fonts/Editor-Bold.woff') format('woff'),
        url('../assets/fonts/Editor-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

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

.landing-wrapper {
    height: 100vh;
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.landing-wrapper {
    overflow: hidden;
}

.landing-contents {
    padding: 80px 30px;

}

.text-content {
    margin-top: 75px;
    font-size: 10px;
    line-height: 14px;
    letter-spacing: 0.24px;
}

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

.landing-contents img {
    width: 100%;
}

.footer {
    display: flex;
    text-align: center;
    flex-wrap: wrap;
    text-align: center;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    padding-bottom: 50px;
}

.icons {
    display: flex;
    gap: 0;
}

.icons img {
    width: 25px;
}

.footer a {
    text-decoration: none;
    color: #ece4d6;
    cursor: pointer;
}

.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: end;
}

.main-content embed {
    margin-bottom: 20px;
}

.main-content .para {
    font-size: 12px;
    line-height: 16px;
    margin-bottom: 30px;
    letter-spacing: 0.24px;
}

.main-content form {
    margin-bottom: 17px;
    position: relative;
}

.main-content form input {
    width: 100%;
    border-bottom: 1px solid #d29368;
    padding-bottom: 4px;
    color: #ece4d6;
    font-family: 'Graphik';
    font-size: 12px;
    letter-spacing: 0.12px;
    line-height: 16px;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    transition: background-color 5000s ease-in-out 0s !important;
    color: #ece4d6 !important;
    -webkit-text-fill-color: #ece4d6!important;
}

.bot-para {
    font-size: 8px;
    font-style: italic;
    line-height: 14px;
    display: block;
    letter-spacing: 0.24px;
    line-height: 12px;
}

.footer {
    font-size: 12px;
    letter-spacing: 0.24px;
}

.after-content.show-item {
    opacity: 1;
    visibility: visible;
    display: flex;
}

.footer form {
    position: relative;
    height: 41px;
    width: 100%;
    width: 301px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    z-index: -1;
    transition: all .8s ease-in-out;
}

.footer form.active-state-form {
    opacity: 1;
    z-index: 3;
}

.footer-form {
    width: 100%;
}

.form-boder {
    position: absolute;
    left: 0;
}

.footer form button {
    position: absolute;
    right: 20px;
    top: 55%;
    transform: translate(0,-50%);
    z-index: 5;
}

.footer form input {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 0 30px;
    color: #ece4d6 !important;
}

.footer .submit-button {
    position: absolute;
    left: 50%;
    transform: translate(-50%,0);
    transition: all .7s ease-in-out;
    opacity: 1;
}

.footer .submit-button.active-state-btn {
    z-index: -1;
    opacity: 0;
}

.paper-plane-image {
    max-width: 80px;
}

#flyingImage {
    position: absolute;
    top: -100px;
    left: -500px;
}

@keyframes flyAnimation {
    0% {
        top: -100px;
        left: -500px;
    }
    100% {
        top: 70%;
        left: 110%;
        transform: translate(-50%, -50%);
    }
}

.startAnimation {
    animation: flyAnimation 4s ease-in-out forwards;
}

@media(min-width: 768px) {
    .footer {
        flex-direction: row;
        justify-content: space-between;
        padding: 50px 0;
        position: absolute;
        bottom: 0;
        width: 100%;
    }

    .footer > div {
        width: 25%;
    } 

   .icons {
        justify-content: flex-end;
    } 

    .landing-wrapper {
        justify-content: center;
    }

    .text-content {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
        font-size: 12px;
        line-height: 16px;
    }

    .landing-contents {
        padding: 0;
    }

    .main-content {
        max-width: 400px;
    }   

    .first-footer-item {
        text-align: left;line-height:30px;
    }

    .landing-contents img {
        max-width: 424px;
    }

    .footer > div {
        padding: 0 25px
    }

    .paper-plane-image {
        max-width: 150px;
    }
    
}

/* @media screen and (orientation:landscape) {
    .footer {
       position: relative;
    }

    .landing-wrapper {
        height: 100%;
    }

    .landing-contents {
        padding-top: 50px;
    }
 } */

@media(min-width: 1025px) {
    .text-content {
        margin-top: 120px;
        margin-bottom: -130px;
        font-size: 15px;
        line-height: 19px; 
    }

    .icons img {
        width: 30px;
    }

    .footer {
        align-items: end;
        padding-bottom: 25px;
    }

    .paper-plane-image {
        max-width: 212px;
    }
}

@media(min-width: 1200px) {
    .landing-contents {
        margin-top: -100px;
    }
}