*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	list-style: none;
}

body{
	overflow: scroll;
	overflow-x: hidden;
}

html{
	scroll-behavior: smooth;
}

::-webkit-scrollbar{
	width:5px;
}

::-webkit-scrollbar-track{
	background: white;
}

::-webkit-scrollbar-thumb{
	background: #0C3935;
	border-radius: 2px;
}

/* ====================================================
   FIXED HEADER
   ==================================================== */
.header_fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* HEADER CONTAINER */
.header_div {
    width: 100%;
    background-color: #0C3935;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    box-sizing: border-box;
}

/* LOGOS */
.logo_box img {
    width: 190px;
    height: auto;
    padding-left: 20px;
}

.r_logo_box img {
    width: 230px;
    height: auto;
    padding-left: 20px;
}

/* MENU - HORIZONTAL BY DEFAULT */
.menu_div ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    gap: 35px;
}

.menu_div ul li a {
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    font-family: centaur;
    font-weight: 200;
}

.menu_div ul li a:hover {
    color: #F4EBD0;
}

/* ====================================================
   RESPONSIVE: MOBILE MENU VERTICAL
   ==================================================== */
@media (max-width: 768px) {

    /* Keep 3 items in one line (logos + menu) */
    .header_div {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 10px 15px;
    }

    /* Shrink logos */
    .logo_box img { width: 120px; }
    .r_logo_box img { width: 130px; }

    /* Menu vertical in center column */
    .menu_div ul {
        flex-direction: column;   /* vertical menu */
        gap: 10px;
        text-align: center;
    }

    .menu_div ul li a {
        font-size: 16px;
    }
}

@media (max-width: 576px) {

      .header_div {
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
        padding: 10px 15px;
    }

     /* Shrink logos */
    .logo_box img { width: 100px;margin-left: -30px;}
    .r_logo_box img { width: 100px;margin-right: -10px; }

     .menu_div ul li a {
        font-size: 16px;
    }
}

/*header end*/


/*body start*/

/* VIDEO WRAPPER */

/* ===========================
   VIDEO SECTION
=========================== */
.video_box {
    position: relative;
    width: 100%;
    min-height: 100vh;  /* allows section to grow */
    overflow: hidden;
    margin-top: 120px;
}

/* Background video */
#myVideo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(90%) brightness(100%);
    z-index: -1;
}

/* ===========================
   CONTENT AREA (FIXED)
=========================== */
.content {
    position: relative;   /* FIXED: allows auto height */
    width: 100%;
    height: auto;
    padding: 60px 20px;
    z-index: 2;
}

/* ===========================
   LEFT CONTENT
=========================== */
.content_head_box {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
}

.content_head_box h1 {
    color: #FFE192;
    font-family: centaur;
    font-size: 70px;
    font-weight: bold;
}

.content_head_box h2 {
    color: #F4EBD0;
    font-family: centaur;
    font-size: 50px;
    font-weight: 400;
}

.content_head_box h3 {
    color: #F4EBD0;
    font-family: centaur;
    font-size: 35px;
    font-weight: 400;
}

/* ===========================
   RIGHT FORM
=========================== */
.form_box {
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: flex-start; /* FIX: aligns correctly */
}

/* Contact form container */
.contact-form-container {
    background-color: #0C3935;
    padding: 25px;
    border-radius: 8px;
    width: 100%;
    max-width: 480px;
    height: auto;     /* FIX: no more clipping */
}

/* Title */
.contact-form-container h2 {
    color: #FFE192;
    font-size: 24px;
    margin-bottom: 15px;
    font-family: centaur;
}

/* Form fields */
.form-group {
    margin-bottom: 1rem;
}

label {
    font-weight: bold;
    color: #FFE192;
    font-family: centaur;
    font-size: 14px;
}

input, textarea, select {
    width: 100%;
    padding: 0.7rem;
    border: 1px solid #FFE192;
    border-radius: 4px;
    background-color: #0C3935;
    color: #F4EBD0;
    font-size: 14px;
    font-family: centaur;
}

/* Submit Button */
.submit-button {
    background-color: #FFE192;
    color: #0C3935;
    border: none;
    padding: 0.8rem;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    font-family: centaur;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #e5c875;
}

/* ===========================
   RESPONSIVE BREAKPOINTS
=========================== */

/* Large Screens */
@media (min-width: 1400px) {
    .content_head_box h1 { font-size: 80px; }
    .content_head_box h2 { font-size: 55px; }
}

/* Tablets */
@media (max-width: 992px) {
    .content {
        padding: 40px 20px;
    }

    .content_head_box h1 { font-size: 50px; }
    .content_head_box h2 { font-size: 36px; }
    .content_head_box h3 { font-size: 30px; color: #F4EBD0;}

      .video_box{
        margin-top: 115px;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .content {
        padding: 20px;
    }

    .content_head_box h1 { font-size: 42px; }
    .content_head_box h2 { font-size: 30px; }
     .content_head_box h3 { font-size: 25px; color: #F4EBD0;} 
    .contact-form-container {
        max-width: 100%;
        width: 100%;
    }
    .video_box{
        margin-top: 115px;
    }
}


/*journey css*/

/* ===========================
   JOURNEY SECTION
=========================== */

/* ===========================
   JOURNEY SECTION
=========================== */

/* ===========================
   JOURNEY SECTION
=========================== */

/* ===========================
   JOURNEY SECTION
=========================== */
.journey_main_box {
    background-color: #0C3935;
    padding-bottom: 50px;
}

.journey_main_box h1 {
    color: #FFE192;
    text-align: center;
    padding-top: 50px;
    font-family: centaur;
    letter-spacing: 1px;
    font-size: 55px;
    font-weight: 400;
}

.journey_main_box p {
    color: #fff;
    text-align: center;
    font-family: centaur;
    font-weight: 400;
    font-size: 19px;
    padding-bottom: 50px;
}

/* ===========================
   BOX WRAPPER
=========================== */
.jou_pic_box {
    width: 100%;
    text-align: center;
    margin: 0 auto 40px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ========== FIXED HEIGHT FOR ALL BOXES ========== */
.jou_pic_box img,
.jou_pic_box video {
    width: 100%;
    height: 420px;           /* desktop height */
    object-fit: cover;
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
    display: block;
    margin: 0 auto;
}

/* ===========================
   TEXT UNDER IMAGES/VIDEOS
=========================== */
.jou_pic_box h3 {
    color: #FFE192;
    text-align: center;
    padding-top: 10px;
    font-family: centaur;
    font-size: 22px;
    font-weight: 400;
}

.jou_pic_box p {
    color: #fff;
    text-align: center;
    font-family: centaur;
    font-size: 20px;
    margin-top: 5px;
}

/* ===========================
   RESPONSIVE BREAKPOINTS
=========================== */

/* Tablet (medium screens) */
@media (max-width: 992px) {

    .jou_pic_box img,
    .jou_pic_box video {
        height: 330px;
        border-radius: 40% 40% 0 0;
    }

    .journey_main_box h1 {
        font-size: 45px;
    }

    .journey_main_box p {
        font-size: 17px;
    }

    .jou_pic_box h3 {
        font-size: 20px;
    }

    .jou_pic_box p {
        font-size: 16px;
    }

    .row {
        justify-content: center;
    }

    .col-md-3,
    .col-md-4 {
        display: flex;
        justify-content: center;
        margin-bottom: 20px;
    }
}

/* Mobile screens */
@media (max-width: 576px) {

    .journey_main_box h1 {
        font-size: 32px;
        padding-top: 30px;
    }

    .journey_main_box p {
        font-size: 16px;
        padding-bottom: 30px;
    }

    .jou_pic_box {
        margin: 0 auto 20px auto;
        width: 95%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* Images and videos have SAME width & height */
    .jou_pic_box img,
    .jou_pic_box video {
        width: 100%;           /* full parent width */
        max-width: 100%;       /* enforce same width */
        height: 250px;         /* mobile height */
        object-fit: cover;
        border-radius: 25% 25% 0 0;
        display: block;
        margin: 0 auto;        /* center horizontally */
    }

    .row {
        justify-content: center;
    }

    .col-md-3,
    .col-md-4 {
        display: flex;
        justify-content: center;
        margin-bottom: 20px;
    }

    .jou_pic_box h3 {
        font-size: 18px;
    }

    .jou_pic_box p {
        font-size: 14px;
    }
}







/* --- BASE STYLES --- */

/* Main container */

/* ---------------- SPA MAIN BOX ---------------- */
/* Section container */
.spa_main_box {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

/* Video background */
#spaVideo {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -1;
}

/* Row container */
.spa_content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
}

/* Text (Massage / Spa / Sauna) */
.spa_text {
    color: #fff;
    font-family: centaur, serif;
    font-size: 72px;
    font-weight: 400;
}

/* The lotus icons */
.spa_icon {
    width: 90px;
    height: 90px;
    filter: brightness(100%);
}

/* -------- RESPONSIVE -------- */

@media (max-width: 992px) {
    .spa_text {
        font-size: 52px;
    }
    .spa_icon {
        width: 70px;
        height: 70px;
    }
    .spa_content {
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .spa_content {
        gap: 25px;
        flex-wrap: wrap; /* <-- added */
    }
    .spa_text {
        font-size: 36px;
        text-align: center;
    }
    .spa_icon {
        width: 50px;
        height: 50px;
    }
}




/*director css*/

.director_main_box{
	width: 100%;
	height: auto;
	background-color: #0C3935;
	padding-bottom: 50px;
}

.director_main_box h1{
	text-align: center;
	font-family: centaur;
	word-spacing: 3px;
	letter-spacing: 1px;
	font-size: 67px;
	font-weight: 400;
	font-style: normal;
	color: #fff;
	padding-top: 80px;
}

.director_main_box h2{
	font-family: centaur;
	word-spacing: 3px;
	letter-spacing: 1px;
	font-size: 27px;
	font-weight: 400;
	font-style: normal;
	color: #FFE192;
	text-align: center;
	padding-top: 50px;
	text-align: center;
}

.director_main_box p{
	font-family: centaur;
	word-spacing: 3px;
	letter-spacing: 1px;
	font-size: 22px;
	font-weight: 350;
	font-style: normal;
	color: #fff;
	text-align: center;
}

.nandtta_founder_img{
	float: right;
	height: 550px;
}

.infulencer_box{
	width: 100%;
	height: auto;
	padding: 10px;
	display: flex;
}

.infu_img{
	width: 45%;
	height: 350px;
	border-radius: 5%;
	padding: 0px 10px 0px 10px;
}

.infu_content_box{
	width: 55%;
}

.infulencer_box img{
	width: 100%;
	height: 370px;
	border-radius: 5%;
}

.infulencer_box h5{
	font-family: centaur;
	word-spacing: 3px;
	letter-spacing: 1px;
	font-size: 20px;
	font-weight: 400;
	font-style: normal;
	color: #FFE192;
}

.infulencer_box p{
	font-family: centaur;
	font-size: 16px;
	font-weight: 400;
	font-style: normal;
	color: #fff;
	padding: 20px 0px 0px 20px;
	text-align: center;
}

/* package */

/* ===========================
   PACKAGE SECTION
=========================== */
.package_main_box {
    width: 100%;
    height: auto;
    background-color: #F4EBD0;
    padding-bottom: 100px;
}

.package_row {
    padding-top: 120px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

/* Package Box */
.package_box {
    width: 90%;
    max-width: 500px;
    height: auto;
    background-color: #0C3935;
    border-top-left-radius: 45%;
    border-top-right-radius: 45%;
    padding: 20px;
    margin: 0 auto 30px auto;
}

.package_box h1 {
    font-family: centaur;
    word-spacing: 3px;
    letter-spacing: 1px;
    font-size: 40px;
    font-weight: 400;
    color: #F4EBD0;
    padding-top: 80px;
    text-align: center;
}

.package_box h2 {
    font-family: centaur;
    word-spacing: 3px;
    letter-spacing: 1px;
    font-size: 28px;
    font-weight: 400;
    color: #F4EBD0;
    text-align: center;
}

.package_box div {
    width: 85%;
    height: auto;
    background-color: #FFE192;
    border-radius: 10%;
    margin: 30px auto;
    padding: 10px 0;
    margin-bottom: 100px;
}

.package_box h3 {
    font-family: centaur;
    letter-spacing: 1px;
    font-size: 31px;
    font-weight: 400;
    color: #0C3935;
    margin-bottom: 5px;
}

.package_box h4 {
    font-family: centaur;
    letter-spacing: 1px;
    font-size: 24px;
    font-weight: 400;
    color: #0C3935;
    text-decoration: line-through;
    margin-bottom: 5px;
}

.package_box h5 {
    font-family: centaur;
    letter-spacing: 1px;
    font-size: 45px;
    font-weight: bold;
    color: #0C3935;
    margin-bottom: 10px;
}

.package_box p {
    font-family: centaur;
    letter-spacing: 2px;
    font-size: 17px;
    font-weight: bold;
    color: #F4EBD0;
    text-align: center;
    margin-top: 10px;
}

/* ===========================
   CONTACT FORM
=========================== */
.contact-form-container {
    background-color: #0C3935;
    padding: 30px;
    border-radius: 10px;
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
}

.contact-form-container h2 {
    color: #FFE192;
    font-family: centaur;
    font-size: 24px;
    text-align: center;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

label {
    font-weight: bold;
    color: #FFE192;
    font-family: centaur;
    font-size: 14px;
}

input, textarea, select {
    width: 100%;
    padding: 10px;
    border: 1px solid #FFE192;
    border-radius: 5px;
    background-color: #0C3935;
    color: #F4EBD0;
    font-family: centaur;
    font-size: 14px;
}

.submit-button {
    background-color: #FFE192;
    color: #0C3935;
    border: none;
    padding: 12px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s;
    font-family: centaur;
}

/* ===========================
   RESPONSIVE
=========================== */

/* Tablets */
@media (max-width: 992px) {
    .package_row {
        flex-direction: column;
        padding-top: 60px;
    }
    .package_box{
        width:100%;
        /* max-width: 400px; */
    }

    /* .package_box,
    .contact-form-container {
       
    } */
    .contact-form-container_2{
        width: 100%;
        margin-bottom: 30px;
    }

    .package_box h1 {
        font-size: 35px;
        padding-top: 60px;
    }

    .package_box h2 {
        font-size: 24px;
    }

    .package_box h3 {
        font-size: 26px;
    }

    .package_box h4 {
        font-size: 20px;
    }

    .package_box h5 {
        font-size: 24px;
    }

    .package_box p {
        font-size: 16px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .package_box,
    .contact-form-container {
        width: 95%;
    }

    .package_box h1 {
        font-size: 22px; /* reduced from 28px */
        padding-top: 30px; /* reduce top padding */
    }

    .package_box h2 {
        font-size: 18px; /* reduced from 20px */
    }

    .package_box h3 {
        font-size: 20px;
    }

    .package_box h4 {
        font-size: 16px;
    }

    .package_box h5 {
        font-size: 18px;
    }

    .package_box p {
        font-size: 14px;
    }
}


/*footer css*/

/* ===========================
   FOOTER MAIN BOX
=========================== */
.footer_main_box {
    width: 100%;
    background-color: #0F201F;
    padding: 50px 15px 30px 15px;
    box-sizing: border-box;
}

/* ===========================
   FOOTER ROW / COLUMNS
=========================== */
.footer_main_box .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* horizontal center on desktop */
    margin: 0 -15px;
}

.footer_main_box .col-md-1,
.footer_main_box .col-md-2,
.footer_main_box .col-md-3 {
    padding: 0 15px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column; /* make content vertical inside each column */
    align-items: center;    /* center content horizontally */
}

/* FOOTER LOGO */
.footer_logo_box {
    padding-bottom: 20px;
    text-align: center;
}

.footer_logo_box img {
    max-width: 160px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.footer_logo_box p {
    font-family: centaur;
    font-size: 16px;
    color: #fff;
    margin-top: 10px;
    line-height: 1.5;
}

/* OPENING HOURS / CONTACT / LINKS */
.openingh_logo_box {
    padding-bottom: 20px;
    text-align: center;
}

.openingh_logo_box h6 {
    font-family: centaur;
    font-size: 20px;
    color: #F4EBD0;
    font-weight: bold;
    margin-bottom: 10px;
}

.openingh_logo_box p {
    font-family: centaur;
    font-size: 14px;
    color: #fff;
    line-height: 1.5;
    margin: 0 auto;
    white-space: pre-line; /* keeps line breaks clean */
}

/* ===========================
   RESPONSIVE FIXES
=========================== */

/* Tablets (medium screens) */
@media (max-width: 992px) {
    .footer_logo_box img {
        max-width: 140px;
    }

    .footer_logo_box p {
        font-size: 14px;
    }

    .openingh_logo_box h6 {
        font-size: 18px;
    }

    .openingh_logo_box p {
        font-size: 13px;
    }
}

/* Mobile (small screens) */
@media (max-width: 576px) {
    .footer_main_box .row {
        flex-direction: column; /* stack all columns vertically */
        align-items: center;
        text-align: center;
    }

    .footer_main_box .col-md-1,
    .footer_main_box .col-md-2,
    .footer_main_box .col-md-3 {
        width: 100%;
        padding: 10px 0;
    }

    /* Reduce spacing */
    .footer_logo_box,
    .openingh_logo_box {
        padding-bottom: 15px;
    }

    /* Adjust font sizes */
    .footer_logo_box p {
        font-size: 13px;
        line-height: 1.4;
    }

    .openingh_logo_box h6 {
        font-size: 16px;
    }

    .openingh_logo_box p {
        font-size: 12px;
        line-height: 1.4;
    }
}




/*devloper css*/

.devlop_main_box{
	width: 100%;
	height: auto;
	background-color: black;
}

.term_box ul{
	list-style: none;
	color: #fff;
	font-family: centaur;
	letter-spacing: 1px;
	font-size: 15px;
	font-weight: 400;
	font-style: normal;
	display: flex;
	padding-top: 15px;
}

.term_box li{
	text-decoration: none;
	display: inline;
	margin-right: 30px;
}

.term_box a,.devlop_box a{
	text-decoration: none;
	color: #fff;
}

.term_box a:hover,.devlop_box a:hover{
	color: #fff;
}

.devlop_box ul{
	list-style: none;
	color: #fff;
	font-family: centaur;
	letter-spacing: 1px;
	font-size: 15px;
	font-weight: 400;
	font-style: normal;
	display: flex;
	padding-top: 15px;
	float: right;
}

.devlop_box li{
	text-decoration: none;
	display: inline;
	margin-right: 30px;
}


/* ---------------------------------------- */
/*          📱 RESPONSIVE FIX START         */
/* ---------------------------------------- */


/* ============ TABLET ============ */
@media (max-width: 992px) {

	.spa_main_box {
		height: 450px;
	}

	.spa_main_img {
		height: 450px;
	}

	.spa_item_box_1,
	.spa_item_box_2 {
		height: 450px;
	}

	.spa_item_box_1 h1,
	.spa_item_box_2 h1 {
		font-size: 48px;
	}

	.spa_image,
	.spa_image_2 {
		width: 70px;
		height: 70px;
	}
}


/* ============ MOBILE ============ */
@media (max-width: 768px) {

	.spa_main_box {
		flex-direction: column;
		height: auto;
		padding: 0;
	}

	.spa_main_img {
		height: 420px;
		position: relative;
	}

	/* Stack all text in the center of the photo */
	.spa_item_box_1,
	.spa_item_box_2 {
		position: relative;
		width: 100%;
		height: auto;
		padding: 20px 0;
		justify-content: center;
		gap: 20px;
	}

	.spa_item_box_1 {
		margin-top: -350px; /* floats text over the image */
	}

	.spa_item_box_2 {
		margin-top: 10px;
	}

	.spa_item_box_1 h1,
	.spa_item_box_2 h1 {
		font-size: 40px;
	}

	.spa_image,
	.spa_image_2 {
		width: 60px;
		height: 60px;
	}
}


/* ============ SMALL PHONE ============ */
@media (max-width: 480px) {

	.spa_main_img {
		height: 350px;
	}

	.spa_item_box_1 h1,
	.spa_item_box_2 h1 {
		font-size: 32px;
	}

	.spa_image,
	.spa_image_2 {
		width: 50px;
		height: 50px;
	}

	.spa_item_box_1 {
		margin-top: -300px;
	}

	.logo_box img{
		width: 100px;
	}

	.r_logo_box img{
		width: 110px;
	}

	/*.content_head_box h1{
		margin-top: 50px;
	}*/
}


/*pay now floting buttton css*/

.whatsapp_chat_btn {
	width: 80px;
	height: 80px;
	background-color: #FFE192;
	border-radius: 50%;
    position: fixed;
    bottom: 40px;
    right: 25px;
    z-index: 10000000;
   	display: flex;
   	justify-content: center;
   	align-items: center;
   	border: 2px solid #fff;
   	box-shadow: 1px 0px 1px 2px #fff;
}

.whatsapp_chat_btn a{
	text-decoration: none;
	color:#0C3935;
}

.whatsapp_chat_btn h5{
	color:#0C3935;
    margin: 0 auto;
    font-family: centaur;
    font-weight: bold;
}


/* Responsive Typography */


@media (max-width: 768px) {
    h1 {
        font-size: 28px;
    }
    h2 {
        font-size: 18px;
    }

    .infulencer_box{
    	display: flex;
    	flex-direction: column;
    	justify-content: center;
    	align-items: center;

    }
    .infu_img{
    	width: 70%;
    }
    .infu_content_box{
    	width: 70%;
    	padding-top: 40px;
    }
    .infu_content_box h1,p{
    	text-align: center;
    	padding: 0;
    }

.devlop_box ul{
	float: left;
}

/*.logo_box img{
	width: 120px;
}

.r_logo_box img{
	width: 140px;
}*/

.content {
	top: 80%;
	height: auto;
}


.journey_main_box h1{
	font-size: 40px;
}

.journey_main_box p{
	font-size: 16px;
}
.jou_pic_box{
	width: 70%;
}

.jou_pic_box img {
	width: 80%;
}



.director_main_box h1{
	font-size: 40px;
}

.director_main_box h2{
	font-size: 24px;
}

.director_main_box p{
	font-size: 18px;
}


.package_row .package_box{
	margin: 10px auto;
}

.nandatta_img_box{
	display: flex;
	justify-content: center;
}

.contact-form-container_2{
	padding-top: 30px;
}

.nandtta_founder_img{
	padding-right: 10px;
}

}


/*thankyou page css*/

/* VIDEO CONTAINER */


.video_section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;           /* keep video inside */
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0 50px;
    margin-top: 120px;
}

/* FULL WIDTH + FULL HEIGHT + TOP VISIBLE */
.video_bg {
    position: absolute;
    top: 0;
    left: 0;

    width: 100vw;               /* FULL WIDTH FIX */
    height: 100vh;              /* FULL HEIGHT FIX */

    object-fit: cover;          /* fills screen */
    object-position: top center;/* KEEP TOP VISIBLE */
    z-index: -1;
}

/* TEXT */



.thankyou_cont_box{
	width: 100%;
	height:auto;
	background-color:#0C3935;
}
.thankyou_cont_box h1{
	font-family: centaur;
	letter-spacing: 1px;
	font-size: 80px;
	font-weight: 400;
	font-style: normal;
	color: #FFE192;
	font-weight: bold;
	padding-top: 60px;
}
.thankyou_cont_box p{
	font-family: centaur;
	letter-spacing: 1px;
	font-size: 60px;
	font-weight: 400;
	font-style: normal;
	color: #FFE192;
	font-weight: lighter;
	margin-top: -20px;
}

.thankyou_cont_box button {
    width: 220px;
    height: 50px;
    background-color: #FFE192;
    border-radius: 30px;
    color: #0C3935;
    font-family: centaur;
    font-size: 20px;
    margin-bottom: 20px;
}


.button_box{
	width: 30%;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	padding-bottom: 60px;
}

@media (max-width: 768px) {
	
    .video_section{
        margin-top: 60px;
    }

	.thankyou_cont_box h1{
		font-size: 40px;
	}

	.thankyou_cont_box p{
		font-size: 30px;
	}
	.button_box{
		width: 50%;
		display: flex;
		flex-direction: column;
		align-items: center;
	}
}
