* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

body {
    background: var(--bg-color);
    color: var(--text-color);
}
section {
    min-height: 100vh;
    padding: 10rem 9% 2rem;
}

.container {
    height: 100vh;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

:root {
    --bg-color: #E5E1DA;
    --second-bg-color: #FBF9F1;
    --text-color: #000000;
    --main-color: #92C7CF;
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 9%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: var(--main-color);
}

.header.sticky {
    background: var(--main-color);
}

.input-box .input-field {
    width: 48.5%;
}

.contact form .input-box .input-field .error,
.contact form .textarea-field .error {
    border-color: red;
}

form .textarea-field .error-txt {
    margin-top: -10px;
}

.field .error-txt {
    font-size: 14.5px;
    color: red;
    text-align: left;
    display: none;
    margin: -5px 0 10px;
}

.field.error .error-txt {
    display: block;
    color: red;
    padding-top: 10px;
}

#subject {
    display: none;
}

.logo {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-color);
}

.home-img {
    width: 100%;
    height: 100%;
    padding-left: 350px;
    margin-left: 500px;
    transform: rotate(15deg);
}

.navbar a {
    font-size: 1.7rem;
    font-weight: 500;
    color: var(--text-color);
    margin-left: 3.5rem;
    transition: .3s;
}

.navbar a:hover,
.navbar a.active {
    color: var(--bg-color);
}

#menu-icon {
    font-size: 3.6rem;
    color: var(--bg-color);
    cursor: pointer;
    display: none;
}

a {
    text-decoration: none;
}

.prices {
    margin-top: 50px;
    width: 700px;
    height: 250px;
    border-collapse: collapse;
    border: solid 1px var(--text-color);
    text-align: center;
    font-size: 16px;
    padding: 5px;
    margin: 0 auto;

}

#price {
    background-color: var(--second-bg-color);
}

.priseDiv {
    text-align: center;
}

.priseDiv p {
    padding-bottom: 50px;
    font-size: 16px;
    white-space: pre-line;
}

.price-content {
    background-color: #AAD7D9;
}

.whiteList {
    background-color: white;
}

.priceImg {
    padding-top: 200px;
}

section {
    min-height: 100vh;
    padding: 10rem 9% 2rem;
}

.home {
    display: flex;
    align-items: center;
    padding: 0 9%;
    background: url(sky1.jpg) no-repeat center/cover;
    background-size: cover;
    background-position: center;
}

.home-content {
    max-width: 60rem;
    z-index: 99;
}

.home-content h1 {
    font-size: 5.6rem;
    font-weight: 700;
    line-height: 1.3;
}

.home-content h1 span {
    color: var(--text-color);
}

.home-content .text-animate {
    position: relative;
    width: 32.8rem;
}

.home-content .text-animate h1 {
    font-size: 6.0rem;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: .7px var(--main-color);
    background-image: linear-gradient(var(--main-color), var(--main-color));
    background-repeat: no-repeat;
    -webkit-background-clip: text;
    background-position: -33rem 0;
    animation: homeBgText 3s linear infinite;
    animation-delay: 2s;
}

.home-content .text-animate h1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    border-right: 2px solid var(--main-color);
    animation: homeCursorText 3s linear infinite;
    animation-delay: 2s;
}

.home-content p {
    font-size: 1.6rem;
    margin: 2rem 0 4rem;
}

.btn-box {
    position: relative;
    display: flex;
    justify-content: space-between;
    width: 34.5rem;
    height: 5rem;
}

.btn-box .btn {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 15rem;
    height: 100%;
    background: var(--main-color);
    border: .2rem solid var(--main-color);
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: .1rem;
    color: var(--second-bg-color);
    z-index: 1;
    overflow: hidden;
    transition: .5s;
    margin-top: 10px;
}

.btn-box .btn:hover {
    color: var(--main-color);
}

.btn-box .btn:nth-child(2) {
    background: transparent;
    color: var(--main-color);
}

.btn-box .btn:nth-child(2):hover {
    color: var(--bg-color);
}

.btn-box .btn:nth-child(2)::before {
    background: var(--main-color);
}

.btn-box .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--bg-color);
    z-index: -1;
    transition: .5s;
}

.btn-box .btn:hover::before {
    width: 100%;
}

.about {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 2rem;
    background: var(--second-bg-color);
    padding-bottom: 6rem;
}

.heading {
    font-size: 5rem;
    margin-bottom: 3rem;
    text-align: center;
}

span {
    color: var(--main-color);
}

.about-img {
    position: relative;
    width: 25rem;
    height: 25rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-img img {
    width: 90%;
    border-radius: 50%;
    border: .2rem solid var(--main-color);
}

.about-img .circle-spin {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border-top: .2rem solid var(--second-bg-color);
    border-bottom: .2rem solid var(--second-bg-color);
    border-left: .2rem solid var(--main-color);
    border-right: .2rem solid var(--main-color);
    animation: aboutSpinner 8s linear infinite;
}

.about-content {
    text-align: center;
}

.about-content h3 {
    font-size: 2.6rem;
}

.about-content p {
    font-size: 1.6rem;
    margin-right: 180px;
    margin-left: 180px;
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 20px;
}

.btn-box.btns {
    display: inline-block;
    width: 15rem;
}

.btn-box.btns a::before {
    background: var(--second-bg-color);
}

.contact {
    min-height: auto;
    padding-bottom: 7rem;
    background: var(--bg-color);
}

.contact form {
    max-width: 70rem;
    margin: 0 auto;
    text-align: center;
}

.contact form .input-box {
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.contact form .input-box .input-field {
    position: relative;
    width: 49%;
    margin-top: 30px;
    background: white;
}

.contact form .input-box .input-field input,
.contact form .textarea-field textarea {
    width: 100%;
    height: 100%;
    padding: 1.5rem;
    font-size: 1.6rem;
    color: var(--text-color);
    background: transparent;
    border: .2rem solid var(--main-color);
}

.contact form .input-box .input-field input::placeholder,
.contact form .textarea-field textarea::placeholder {
    color: var(--text-color);
}

.contact form .input-box .input-field input:focus~.focus,
.contact form .input-box .input-field input:valid~.focus,
.contact form .textarea-field textarea:focus~.focus,
.contact form .textarea-field textarea:valid~.focus {
    width: 100%;
}

.contact form .textarea-field {
    position: relative;
    display: grid;
    background: white;
    margin-top: 10px;
    margin-bottom: 20px;
}

.contact form .textarea-field .error-txt {
    background: var(--bg-color);
    margin-top: -.5px;
    margin-bottom: -2px;
}

.contact form .textarea-field textarea {
    resize: none;
}

.contact form .btn-box.btns .btn {
    cursor: pointer;
}

.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 2rem 9%;
    background: var(--second-bg-color);
}

.footer-text p {
    font-size: 1.6rem;
}

.footer-iconTop a {
    position: relative;
}

.footer-iconTop a {
    position: relative;
    display: inline-block;
    justify-content: center;
    align-items: center;
    padding: .8rem;
    background: var(--main-color);
    border-radius: .6rem;
    border: .2rem solid var(--main-color);
    border-radius: .6rem;
    z-index: 1;
    overflow: hidden;
}

.footer-iconTop a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--second-bg-color);
    z-index: -1;
    transition: .5s;
}

.footer-iconTop a:hover::before {
    width: 100%;
}

.footer-iconTop a i {
    font-size: 2.4rem;
    color: var(--second-bg-color);
    transition: .5s;
}

.footer-iconTop a:hover i {
    color: var(--main-color);
}

.videos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 2rem;
    background: var(--bg-color);
    padding-bottom: 6rem;
}


@media (max-width: 1100px) {
    html {
        font-size: 120%;
    }
 
    .contact form{
        display: flex;
        flex-direction: column;
    }

    .home-content h1 {
        display: flex;
        flex-direction: column;
    }

    .home.sci {
        display: flex;
        flex-direction: column;
    }

    .home--sci a {
        width: 38%;
        height: 38px;
    }
}

@media (max-width: 991px) {
    .header {
        padding: 2rem 4%;
    }
    .btn-box .btn {
        width: 150%;
        height: 150%;
        font-size: 45px;
        margin-left: 260px;
    }

    .textarea-field .error-txt {
        font-size: 27px;
        padding-top: 20px;
    }

    .field .error-txt {
        font-size: 20px;
    }

    .error-txt {
        margin: 50px;
    }
    section {
        padding: 10rem 4% 2rem;
    }

    .home {
        padding: 0 4%;
    }

    .footer {
        padding: 2rem 4%;
        flex-direction: column-reverse;
    }

    .videos {
        flex-direction: column;
    }

    .home img {
        font-size: 150px;
        align-items: start;
        margin-left: -70px;
        margin-top: 40px;
    }
 
    #menu-icon {
        display: block;
        font-size: 130px;
    }

    .navbar {
        position: absolute;
        top: 100%;
        left: -100%;
        width: 100%;
        padding: 1rem 4%;
        background: var(--bg-color);
        box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .2);
        z-index: 1;
        transition: .25s ease;
        transition-delay: .25s;
    }

    .navbar.active {
        left: 0;
        transition-delay: 0s;
    }

    .navbar .active-nav {
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: var(--second-bg-color);
        border: .1rem solid rgba(0, 0, 0, .2);
        z-index: -1;
        transition: .25s ease;
        transition-delay: 0s;
    }

    .navbar.active .active-nav {
        left: 0;
        transition-delay: .25s;
    }

    .navbar a {
        display: block;
        font-size: 2rem;
        margin: 3rem 0;
        transform: translateX(-20rem);
        transition: .25s ease;
        transition-delay: 0s;
        font-size: 40px;
    }

 

    .navbar.active a {
        transform: translateX(0);
        transition-delay: .25s;
    }

    .price-content,
    .whiteList {
        font-size: 40px;
        height: 100px;
        width: 110px;
        padding: 20px;
    }
    .contact form .input-box .input-field {
        width: 100%;
    }


    .footer p {
        margin-top: 2rem;
        text-align: center;
    }
}

@media (max-width: 462px) {
    .header {
        background: var(--bg-color);
    }

    .price th {
        font-size: 80px;
    }

    .home-content h1 {
        font-size: 5.2rem;
    }

    .videos {
        flex-direction: column;
    }

    .home {
        justify-content: center;
    }

    .home-content {
        display: flex;
        align-items: center;
        flex-direction: column;
        text-align: center;
    }

    .home-content h1 {
        font-size: 5rem;
    }
}


@keyframes homeBgText {

    0%,
    10%,
    100% {
        background-position: -33rem 0;
    }

    65%,
    85% {
        background-position: 0 0;
    }
}

@keyframes homeCursorText {

    0%,
    10%,
    100% {
        width: 0;
    }

    65%,
    78%,
    85% {
        width: 100%;
        opacity: 1;
    }

    75%,
    81% {
        opacity: 0;
    }
}

@keyframes aboutSpinner {
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }

    50% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}