#book-now-inner-container {
    padding-block: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(
            rgba(0, 0, 0, 0.6) 100%,
            rgba(0, 0, 0, 0.6) 100%
        ),
        url("https://cdn.britannica.com/32/142132-050-BEE32264/Paragliding.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

#book-now-inner-container #book-now-section-form {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
#book-now-inner-container #book-now-section-form h2 {
    color: white;
    text-transform: uppercase;
    font-size: 43px;
    font-weight: 700;
    margin-bottom: 50px;
}
#book-now-inner-container #book-now-section-form p {
    color: white;
    font-size: 18px;
    font-weight: 400;
}
#book-now-inner-container #book-now-section-form form {
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 25px 20px;
    border-radius: 10px;
    gap: 40px;
}
#book-now-inner-container #book-now-section-form form div {
    position: relative;
}
#book-now-inner-container #book-now-section-form form div span {
    position: absolute;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    top: 12px;
    left: 35px;
    transition: 0.4s ease;
    z-index: 0;
}
#book-now-inner-container #book-now-section-form form div input:focus ~ span,
#book-now-inner-container #book-now-section-form form div input:valid ~ span {
    top: -11px;
    left: 30px;

    background: white;
    padding: 0 3px;
    border-radius: 8px;

    z-index: 11;

    scale: 0.7;
}
#book-now-inner-container #book-now-section-form form input {
    padding: 0 6px;
    padding-left: 35px;
    position: relative;
    outline: none;
    box-shadow: 0 5px 19px rgba(205, 203, 203, 0.591);
    border: 1px solid grey;
    height: 50px;
    background: transparent;
    border-radius: 8px;
    z-index: 1;
    width: 300px;
}
#book-now-inner-container #book-now-section-form form > div:last-child {
    background: rgb(4, 0, 125);
    border-radius: 4px;
}
#book-now-inner-container #book-now-section-form form > div svg {
    height: 20px;
    width: 20px;
    position: absolute;
    top: 16px;
    left: 10px;
    fill: grey;
}
#book-now-inner-container #book-now-section-form form button {
    height: 59px;
    width: 138px;
    font-weight: 800;
    background: #496cfe;
    color: white;
    border-radius: 4px;
    border: none;
    outline: none;
    padding: 2px 18px;
    transition: 0.4s;

    transform: translate(-4px, -4px);
}
#book-now-inner-container #book-now-section-form form button:hover {
    transform: translate(0px, 0px);
    background: blue;
}
#book-now-inner-container #book-now-section-form form button.submittingForm {
    transform: translate(0px, 0px);
    background: rgb(229, 255, 80);
}
#book-now-inner-container
    #book-now-section-form
    form
    button.submitFormSuccessfully {
    background: rgb(17, 204, 0);
}
#book-now-inner-container #book-now-section-form form button.formNotSubmitted {
    background: red;
}
#book-now-inner-container #book-now-section-form button img {
    -o-object-position: center;
       object-position: center;
    height: 100%;
}
#book-now-inner-container #book-now-section-images {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}
#book-now-inner-container #book-now-section-images div {
    display: flex;
    justify-content: center;
    position: relative;
    align-items: center;
    transition: 0.4s;
    cursor: pointer;
}
#book-now-inner-container #book-now-section-images div span {
    display: flex;
    justify-content: center;
    position: absolute;
    bottom: 6%;
    font-size: 32px;
    font-weight: 700;
    color: white;
    text-shadow: 0 0 20px black;
    align-items: center;
}

#book-now-inner-container #book-now-section-images img {
    width: 250px;
    height: 250px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 20px;
    border: 2px solid rgba(0, 0, 255, 0.571);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.516);
}
#book-now-inner-container #book-now-section-images div:hover {
    scale: 0.9;
}

@media only screen and (max-width: 1120px) {
    #book-now-inner-container {
        flex-direction: column-reverse;
        gap: 50px;
    }
    #book-now-inner-container #book-now-section-images {
        width: 100%;
        gap: 50px;
    }
    #book-now-inner-container #book-now-section-images img {
        width: 350px;
        height: 350px;
    }
}
@media only screen and (max-width: 920px) {
    #book-now-inner-container {
        padding-block: 60px;
    }
    #book-now-inner-container #book-now-section-form h2 {
        font-size: 38px;
        margin-bottom: 40px;
    }
    #book-now-inner-container #book-now-section-form p {
        font-size: 16px;
    }
    #book-now-inner-container #book-now-section-images {
        gap: 30px;
    }
    #book-now-inner-container #book-now-section-images img {
        width: 300px;
        height: 300px;
    }
}
@media only screen and (max-width: 720px) {
    #book-now-inner-container {
        padding-block: 50px;
    }
    #book-now-inner-container #book-now-section-form h2 {
        font-size: 34px;
    }
    #book-now-inner-container #book-now-section-form p {
        font-size: 15px;
    }
    #book-now-inner-container #book-now-section-images {
        gap: 20px;
    }
    #book-now-inner-container #book-now-section-images img {
        width: 250px;
        height: 250px;
    }
}
@media only screen and (max-width: 620px) {
    #book-now-inner-container #book-now-section-images img {
        width: 230px;
        height: 230px;
    }
    #book-now-inner-container #book-now-section-form h2 {
        font-size: 30px;
    }
    #book-now-inner-container #book-now-section-form p {
        font-size: 14px;
    }
}
@media only screen and (max-width: 520px) {
    #book-now-inner-container #book-now-section-images img {
        width: 200px;
        height: 200px;
    }
    #book-now-inner-container #book-now-section-form h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }
    #book-now-inner-container #book-now-section-form form {
        padding: 26px 10px;
        flex-wrap: wrap;
    }
    #book-now-inner-container #book-now-section-form form div {
        width: 90%;
    }
    #book-now-inner-container #book-now-section-form form input {
        width: 100%;
    }
    #book-now-inner-container #book-now-section-form form button {
        width: 100%;
    }
    #book-now-inner-container #book-now-section-form p {
        font-size: 13px;
    }
}
@media only screen and (max-width: 420px) {
    #book-now-inner-container {
        padding-block: 40px;
    }
    #book-now-inner-container #book-now-section-images img {
        width: 90%;
        height: auto;
    }
    #book-now-inner-container #book-now-section-form h2 {
        font-size: 26px;
        margin-bottom: 25px;
    }
    #book-now-inner-container #book-now-section-form p {
        font-size: 12px;
    }
    #book-now-inner-container #book-now-section-form form div {
        width: 100%;
    }
    #book-now-inner-container #book-now-section-images div span {
        font-size: 26px;
    }
}
@media only screen and (max-width: 320px) {
    #book-now-inner-container {
        padding-block: 30px;
    }
    #book-now-inner-container #book-now-section-form h2 {
        font-size: 22px;
        margin-bottom: 20px;
    }
    #book-now-inner-container #book-now-section-form p {
        font-size: 11px;
        padding: 0 5px;
    }
    #book-now-inner-container #book-now-section-images div span {
        font-size: 22px;
    }
    #book-now-inner-container #book-now-section-form form input {
        height: 45px;
    }
    #book-now-inner-container #book-now-section-form form button {
        height: 50px;
    }
}

