*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Plus Jakarta Sans", sans-serif;
}

:root {
  --primary-dark: #272B3A;
  --accent-red: #be963e;
  --accent-red-transparent: #FC5C3C0D;
  --background-dark: #272B3A; /* Same as primary-dark */
}

h3{
    font-size: 26px;
}

h4{
    font-size: 28px;
}

p{
    font-style: 14px;
}

.fs-12{
    font-size: 12px;
}

.fs-18{
    font-size: 18px;
}

.fs-16{
    font-size: 16px;
}

.fs-22{
    font-size: 22px;
}

.fs-24{
    font-size: 24px;
}



.fs-28{
    font-size: 28px;
}

.fs-30{
    font-size: 30px;
}

.fs-32{
    font-size: 32px;
}

button.submit{
    all: unset;
    padding: 12px 80px;
    background-color: var(--accent-red);
    color: #fff;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    font-size: 16px;
}


.is-invalid {
  border: 1px solid red !important;
}

.error {
  color: red;
  font-size: 12px;
  margin-top: 4px;
}

/* Fixed Form */

/* footer form Section starts */

body.modal-open {
  overflow: hidden;
}



.fixed-form{
    position: fixed;
    width: 100%;
    height: 100vh;

    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);

    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000000cc;

    z-index: 1000;
    transition: all ease 0.5s;
}

.fixed-form.hidden{
    transform: translate(-50%, -50%) scale(0);
}

.fixed-form form{
    width: 30%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    align-items: flex-start;

    background-color: #152131;
    padding: 30px;
    border-radius: 20px;

    margin: 0 auto;
    position: relative;

}

.fixed-form form .close-form{
    position: absolute;
    right: 15px;
    top: 15px;
    filter: invert();

    cursor: pointer;
}

.fixed-form form .close-form img{
    width: 25px;
}

.fixed-form form .input-container{
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 10px;
}

.fixed-form form .input-container label{
    color: #B8C8E6;
}

.fixed-form form input{
    border: 1px solid #B5B9C0;
    border-radius: 8px;
    background-color: transparent;
    color: #fff;
    padding: 16px 13px;
}

.fixed-form form button{
    padding: 16px 13px;
    text-align: center;
}

.footer-form form input::placeholder{
    color: #B8C8E6;
}


@media (max-width: 990px) {

    h4{
        font-size: 22px;
    }

    .fs-18 {
        font-size: 14px;
    }

    .fixed-form form{
        width: 95%;

    }

    button.submit{
        padding: 12px 0px;
        width: 100%;
        text-align: center;
    }
}

/* footer form Section ends */

/* Fixed Form */
