*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


.video-container{
    position: relative;
}
.video-container img{
    width: 100%;
}
.text-wrap{
  position: absolute;
  right: 40px;
  bottom: 10%;
}
.text-wrap h5{
    color: #a68520;
    font-size: 22px;
}
.text-wrap h4{
    color: #000;
    font-size: 35px;
    margin-bottom: 10px;
}
.text-wrap .btn{
  border: 1px solid #a68520;
  border-radius: 10px;
  padding: 7px 25px;
  font-size: 20px;
  color: #fff;
  transition: .5s ease;
  cursor: pointer;
  background-color: transparent;
  background-color: #a68520;
}
.text-wrap .btn:hover{
    background-color: #a68520;
    color: #fff;
}



/* MODAL BACKGROUND */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

/* MODAL BOX */
/* MODAL BACKGROUND */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;

    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

/* MODAL ACTIVE */
.modal.active {
    opacity: 1;
    pointer-events: auto;
}

/* MODAL CONTENT ANIMATION */
.modal-content {
    background-color: #a68520;
    width: 90%;
    max-width: 500px;
    padding: 20px;
    border-radius: 12px;
    color: #fff;
    position: relative;

    transform: scale(0);
    transition: transform 0.35s ease;
}

/* SCALE UP WHEN ACTIVE */
.modal.active .modal-content {
    transform: scale(1);
}

.modal-content .modal-body{
    padding: 15px;
    border: 2px solid #fff;
    border-radius: 10px;
}
.modal-content .modal-body h2{
    position: relative;
    display: table;
    width: auto;
   margin: 0 auto 22px auto;
}
.modal-content .modal-body h2::after{
    position: absolute;
    content: '';
    height: 2px;
    width: 28%;
    background-color: #fff;
    left: 50%;
    bottom: -3px;
    transform: translate(-50%, 0%);
}
.modal-content .modal-body input::placeholder, 
.modal-content .modal-body textarea::placeholder{
    color: #fff;
    font-size: 15px;
}
.modal-content .modal-body input:focus, 
.modal-content .modal-body textarea:focus{
    outline: 0;
}

/* CLOSE BUTTON */
.close-btn {
    position: absolute;
    right: 3px;
    top: 3px;
    font-size: 18.5px;
    cursor: pointer;
    border: 1px solid #fff;
    height: 21px;
    width: 21px;
    display: grid;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.close-btn:hover{
    background-color: #fff;
    color: #000;
}

/* FORM */
.modal-content h2 {
    text-align: center;
    margin-bottom: 25px;
}

.modal-content input,
.modal-content textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #ccc;
    margin-bottom: 14px;
    padding: 10px 5px;
    color: #fff;
    font-size: 15px;
    font-family: "Poppins", sans-serif; 
    font-size: 15px;          
    font-weight: 400;         
    line-height: 1.4; 
}

.modal-content textarea {
    resize: none;
    height: 80px;
}

/* CAPTCHA */
.captcha-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.captcha {
    background: #e8f6ff;
    color: red;
    padding: 6px 10px;
    font-weight: bold;
    width: 52%;
    text-align: center;
    border-radius: 5px;
}

/* SUBMIT BUTTON */
.submit-btn {
    width: 100%;
    padding: 12px;
    border-radius: 30px;
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
    cursor: pointer;
    margin-top: 20px;
    font-weight: 500;
    font-size: 16px;
    transition: .4s linear;
}
.submit-btn:hover{
    background-color: #fff;
    color: #000;
}


@media(max-width: 992px){
    .desktop{
        display: none;
    }
    .mobile{
       display: block;
    }

    .text-wrap {
        position: absolute;
        left: 7px;
        /* bottom: 10%; */
    }
    .text-wrap h4{
     color: #fff;
     font-size: 22px;
     margin-bottom: 10px;
    }
    .text-wrap h5 {
     color: #fff;
     font-size: 14px;
    }
    .text-wrap .btn {
     border: 1px solid #a68520;
     border-radius: 7px;
     padding: 5px 15px;
     font-size: 15px;
     color: #fff;
    }
}
@media(min-width: 993px){
    .desktop{
        display: block;
    }
    .mobile{
       display: none;
    }
}

.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.modal.active {
    display: flex;
}
