* {
  margin: 0px;
  padding: 0px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  box-sizing: border-box;
  /* outline: 1px solid red; */
}
/* width */
::-webkit-scrollbar {
  width: 2px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* fonts */
/* Poppins - Black */
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}

/* Poppins - Black Italic */
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-BlackItalic.ttf") format("truetype");
  font-weight: 900;
  font-style: italic;
}

/* Poppins - Bold */
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

/* Poppins - Bold Italic */
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-BoldItalic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
}

/* Poppins - ExtraBold */
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}

/* Poppins - ExtraBold Italic */
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-ExtraBoldItalic.ttf") format("truetype");
  font-weight: 800;
  font-style: italic;
}

/* Poppins - ExtraLight */
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-ExtraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
}

/* Poppins - ExtraLight Italic */
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-ExtraLightItalic.ttf") format("truetype");
  font-weight: 200;
  font-style: italic;
}

/* Poppins - Italic (Regular Italic) */
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
}

/* Poppins - Light */
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}

/* Poppins - Light Italic */
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-LightItalic.ttf") format("truetype");
  font-weight: 300;
  font-style: italic;
}

/* Poppins - Medium */
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

/* Poppins - Medium Italic */
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-MediumItalic.ttf") format("truetype");
  font-weight: 500;
  font-style: italic;
}

/* Poppins - Regular */
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

/* Poppins - SemiBold */
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

/* Poppins - SemiBold Italic */
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-SemiBoldItalic.ttf") format("truetype");
  font-weight: 600;
  font-style: italic;
}

/* Poppins - Thin */
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
}

/* Poppins - Thin Italic */
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-ThinItalic.ttf") format("truetype");
  font-weight: 100;
  font-style: italic;
}

body {
  scroll-behavior: smooth;
  overflow-x: hidden;
  overflow-y: auto;
  font-family: "Poppins", sans-serif;
  /* font-weight: 400; */
}

a {
  text-decoration: none;
}

input {
  outline: none;
}

.border {
  border: 1px solid;
}

.w-100 {
  width: 100% !important;
}

.d-none {
  display: none;
}

input:disabled{
  background-color: rgba(175, 175, 175, 0.3) !important;
}


/* button */

.main-btn {
  color: white;
  text-align: center;
  text-transform: uppercase;
  padding: 12px 25px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.main-btn-line {
  position: absolute;
  background-color: white;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

/* Top Left horizontal */
.main-btn-line-one {
  top: 0;
  left: 0;
  width: 5%;
  height: 1px;
}

/* Top Right horizontal */
.main-btn-line-two {
  top: 0;
  right: 0;
  width: 5%;
  height: 1px;
}

/* Bottom Left horizontal */
.main-btn-line-three {
  bottom: 0;
  left: 0;
  width: 5%;
  height: 1px;
}

/* Bottom Right horizontal */
.main-btn-line-four {
  bottom: 0;
  right: 0;
  width: 5%;
  height: 1px;
}

/* Left Top vertical */
.main-btn-line-five {
  top: 0;
  left: 0;
  width: 1px;
  height: 30%;
}

/* Right Top vertical */
.main-btn-line-six {
  top: 0;
  right: 0;
  width: 1px;
  height: 30%;
}

/* Left Bottom vertical */
.main-btn-line-seven {
  bottom: 0;
  left: 0;
  width: 1px;
  height: 30%;
}

/* Right Bottom vertical */
.main-btn-line-eight {
  bottom: 0;
  right: 0;
  width: 1px;
  height: 30%;
}

.main-btn:hover .main-btn-line-one {
  width: 100%;
}

.main-btn:hover .main-btn-line-two {
  width: 0%;
}

.main-btn:hover .main-btn-line-three {
  width: 0%;
}

.main-btn:hover .main-btn-line-four {
  width: 100%;
}

.main-btn:hover .main-btn-line-five {
  height: 0%;
}

.main-btn:hover .main-btn-line-six {
  height: 100%;
}

.main-btn:hover .main-btn-line-seven {
  height: 100%;
}

.main-btn:hover .main-btn-line-eight {
  height: 0%;
}

.main-btn2 {
  color: white;
  text-align: center;
  text-transform: uppercase;
  padding: 25px 65px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.main-btn-line2 {
  position: absolute;
  background-color: white;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

/* Top Left horizontal */
.main-btn-line2-one {
  top: 0;
  left: 0;
  width: 6%;
  height: 3px;
}

/* Top Right horizontal */
.main-btn-line2-two {
  top: 0;
  right: 0;
  width: 6%;
  height: 3px;
}

/* Bottom Left horizontal */
.main-btn-line2-three {
  bottom: 0;
  left: 0;
  width: 6%;
  height: 3px;
}

/* Bottom Right horizontal */
.main-btn-line2-four {
  bottom: 0;
  right: 0;
  width: 6%;
  height: 3px;
}

/* Left Top vertical */
.main-btn-line2-five {
  top: 0;
  left: 0;
  width: 3px;
  height: 30%;
}

/* Right Top vertical */
.main-btn-line2-six {
  top: 0;
  right: 0;
  width: 3px;
  height: 30%;
}

/* Left Bottom vertical */
.main-btn-line2-seven {
  bottom: 0;
  left: 0;
  width: 3px;
  height: 30%;
}

/* Right Bottom vertical */
.main-btn-line2-eight {
  bottom: 0;
  right: 0;
  width: 3px;
  height: 30%;
}

.main-btn2:hover .main-btn-line2-one {
  width: 100%;
}

.main-btn2:hover .main-btn-line2-two {
  width: 0%;
}

.main-btn2:hover .main-btn-line2-three {
  width: 0%;
}

.main-btn2:hover .main-btn-line2-four {
  width: 100%;
}

.main-btn2:hover .main-btn-line2-five {
  height: 0%;
}

.main-btn2:hover .main-btn-line2-six {
  height: 100%;
}

.main-btn2:hover .main-btn-line2-seven {
  height: 100%;
}

.main-btn2:hover .main-btn-line2-eight {
  height: 0%;
}

/* main hero */

.hero {
  height: 100svh;

  height: 100dvh;
 
  width: 100%;
  position: relative;
  background: url(../Img/Blue.gif);
  background-size: cover;
  background-position: center center;
}

/* #bannerVideo {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 1;
} */
#desktopVideo {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 1;
  /* opacity: 0; */
}
#mobileVideo {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 1;
  /* opacity: 0; */
}

#heroContentBox {
  z-index: 2;
  position: absolute;
  top: 0;
  height: 100svh;

  height: 100dvh;
 
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  /* display: none; */
}

#header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 20px;
}

#header img:first-child {
  width: 130px;
}

#header img:last-child {
  width: 40px;
  cursor: pointer;
}

#centerContent {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  /* background-color: red; */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 20px;
  position: relative;
}

#footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 10px 20px;
  /* background-color: #2d3e8b; */
  /* From https://css.glass */
  /* background: rgba(255, 255, 255, 0.2); */
  /* border-radius: 16px; */
  /* box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3); */
}

.footerBg1 {
  background-color: #2d3e8b !important;
}

.footerBg2 {
  background-color: #251845 !important;
}

.footerBg3 {
  background-color: #05242a !important;
}

#footer .footerLg div {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

#footer .footerLg div:nth-child(2) {
  -webkit-box-flex: 2;
  -ms-flex: 2;
  flex: 2;
}

#footer div:first-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 3px;
}

#footer div img {
  width: 24px;
}

#footer div:first-child p {
  color: white;
  font-size: 12px;
}

#footer div:first-child p a {
  color: white;
  font-size: 10px;
}

#footer div:nth-child(2) p {
  color: white;
  text-align: center;
  font-size: 13px;
}

#footer div:last-child {
  text-align: end;
}

#heroContentBox > div {
  text-align: center;
}

#heroContentBox button {
  background-color: #2d3e8b;
  width: 282px;
  height: 40px;
  font-size: 16px;
  font-weight: 500;
  border: none;
  margin-top: 40px;
  color: white;
  cursor: pointer;
}

/* #contentBox1 {
  opacity: 0;
} */

#contentBox1 {
  display: none; /* hide initially */
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

#contentBox2 {
  display: none; /* hide initially */
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

#contentBox3 {
  display: none; /* hide initially */
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

/* dots */

.dots {
  margin-top: 15px;
  position: absolute;
  bottom: 10px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.dot {
  display: inline-block;
  width: 15px;
  height: 15px;
  margin: 0 5px;
  background: #ffffff;
  border-radius: 50%;
  cursor: pointer;
  -webkit-transition: background 0.3s;
  -o-transition: background 0.3s;
  transition: background 0.3s;
}

.dot.active {
  /* background: #333; */
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#081f31),
    to(#67319b)
  );
  background: -o-linear-gradient(left, #081f31 0%, #67319b 100%);
  background: linear-gradient(90deg, #081f31 0%, #67319b 100%);
}

#videoToggleBtn {
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

/* other slide text */

#contentBox2 {
  /* width: 80%; */
  width: 90%;
  margin: auto;
}

#contentBox2 div:first-child {
  margin-bottom: 60px;
}

#contentBox2 div:first-child p {
  font-size: 35px;
  color: white;
}

#contentBox2 div:last-child p {
  font-size: 28px;
  color: white;
}

#contentBox3 {
  /* width: 80%; */
  width: 90%;
  margin: auto;
}

#contentBox3 div:first-child {
  margin-bottom: 60px;
}

#contentBox3 div:first-child p {
  font-size: 35px;
  color: white;
}

#contentBox3 div:last-child p {
  font-size: 28px;
  color: white;
}

/* modal */
.modal,
.modal-backdrop {
  display: none;
  position: fixed;
  z-index: 1000;
}

.modal-backdrop {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

/* Modal base style */
.modal {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0.8);
  -ms-transform: translate(-50%, -50%) scale(0.8);
  transform: translate(-50%, -50%) scale(0.8);
  background: white;
  width: 75%;
  border-radius: 8px;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  -o-transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease,
    -webkit-transform 0.3s ease;
  opacity: 0;
  /* height: 80vh; */
  height: 515px;
}

/* Show classes (toggle with jQuery) */
.modal.show {
  -webkit-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  display: block;
}

.modal-backdrop.show {
  display: block;
}

/* Modal content */
.modal-content {
  padding: 15px;
  position: relative;
  height: 100%;
}

.modal-body {
  width: 100%;
  height: 100%;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
}

.modalForm .modal-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  /* align-items: center; */
}

.modalForm .left-body {
  background: url(../Img/modalBg.png);
  width: 380px;
  height: 100%;
  background-position: center center;
  border-radius: 10px;
}

.modalForm .right-body {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -ms-flex-item-align: self-start;
  -ms-grid-row-align: self-start;
  align-self: self-start;
}

.modalForm .left-body {
  padding: 35px;
}

.modalForm .left-body h1 {
  color: white;
  font-size: 21.63px;
  margin-bottom: 20px;
  font-weight: 600;
}

.modalForm .left-body p {
  color: #c9c9c9;
  font-size: 13px;
  font-weight: 400;
  margin-bottom: 40px;
}

.iconBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.iconBox img {
  width: 19px;
  height: 19px;
}

.iconBox:last-child img {
  -ms-flex-item-align: self-start;
  -ms-grid-row-align: self-start;
  align-self: self-start;
  margin-top: 5px;
}

.iconBox a {
  font-size: 12.36px;
  color: white;
}

.modalForm .right-body {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0px;
}

.modalForm .right-body > div {
  padding: 10px;
  width: calc(50% - 0px);
}

.modalForm .right-body > div > div {
  position: relative;
}

.modalForm .right-body > div p {
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 4px;
}

.modalForm .right-body > div input {
  width: 100%;
  outline: none;
  border: none;
  border-bottom: 0.77px solid #8d8d8d;
  height: 40px;
  /* border: 1px solid; */
}

.modalForm .right-body div:last-child {
  text-align: end;
}

.modalForm .right-body button {
  width: 165.33px;
  height: 41.72px;
  color: white;
  background-color: #3942a3;
  border: none;
  border-radius: 3.86px;
  cursor: pointer;
}

.modalForm .right-body .verifyBtn {
  padding: 2.5px 5px;
  font-size: 13px;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  border: 0.8px solid #3942a3;
  color: #3942a3;
  border-radius: 3.09px;
  cursor: pointer;
  background-color: white ;
}

.modalForm .right-body .resend {
  text-align: end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  font-size: 12px;
  padding: 3px 8px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: #3942a3;
}

.otp-verify {
  border: 0.8px solid #3942a3;
  color: #3942a3;
  border-radius: 3.09px;
  cursor: pointer;
  width: 100px;
  margin-left: auto;
  padding: 2.5px 5px;
  font-size: 14px;
  margin-top: 10px;
  text-align: center;
}

.digit-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.digit-input {
  width: 30px !important;
  height: 30px !important;
  font-size: 15px !important;
  text-align: center;
  border: 1px solid #3942a3 !important;
  border-radius: 5px;
  outline: none;
  -webkit-transition: border-color 0.3s ease;
  -o-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}

.digit-input:focus {
  border-color: #67319b;
}

.thanqModal {
  width: 60% !important;
  height: 444px !important;
}

.thanqModal img {
  width: 250px;
  margin-bottom: 30px;
}

.thanqModal .modal-body {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.thanqModal .modal-body .txt1 {
  font-size: 16px;
  font-weight: 500 !important;
  margin-bottom: 20px;
  padding: 0 40px;
}

.thanqModal .modal-body .txt2 {
  font-size: 14px;
  font-weight: 400;
  padding: 0 40px;
}

.error-message {
  font-size: 11px;
  color: red;
  text-align: end;
  display: block;
}

.errorMsg {
  font-size: 11px;
  color: red;
  text-align: end;
  display: block;
}

#loaderOverlay {
  display: none; /* hidden initially */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  z-index: 9999;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid #ccc;
  border-top: 5px solid #3942a3;
  border-radius: 50%;
  -webkit-animation: spin 1s linear infinite;
  animation: spin 1s linear infinite;
}

@-webkit-keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

#footer .footerSm {
  display: none;
}

.video-sm {
  display: none;
}

/* Tablet styles (up to 1024px) */
@media (max-width: 1024px) {
  #contentBox2 div:first-child {
    margin-bottom: 40px !important;
  }

  #contentBox2 div:first-child p {
    font-size: 30px !important;
  }

  #contentBox2 div:first-child p br {
    display: none !important;
  }

  #contentBox2 div:last-child p {
    font-size: 22px !important;
  }

  #contentBox3 div:first-child {
    margin-bottom: 40px !important;
  }

  #contentBox3 div:first-child p {
    font-size: 30px !important;
  }

  #contentBox3 div:first-child p br {
    display: none !important;
  }

  #contentBox3 div:last-child p {
    font-size: 22px !important;
  }

  .copyright-md p:first-child {
    font-size: 10px !important;
  }

  .copyright-md p:last-child {
    font-size: 8px !important;
  }

  .modal {
    width: 85% !important;
  }

  .modalForm .left-body {
    display: none !important;
  }
}

/* Mobile styles (up to 767px or 600px depending on your target) */
@media (max-width: 767px) {
  #contentBox2 div:first-child {
    margin-bottom: 40px !important;
  }

  #contentBox2 div:first-child p {
    font-size: 25px !important;
  }

  #contentBox2 div:first-child p br {
    display: none !important;
  }

  #contentBox2 div:last-child p {
    font-size: 18px !important;
  }

  #contentBox3 div:first-child {
    margin-bottom: 40px !important;
  }

  #contentBox3 div:first-child p {
    font-size: 25px !important;
  }

  #contentBox3 div:first-child p br {
    display: none !important;
  }

  #contentBox3 div:last-child p {
    font-size: 18px !important;
  }

  #footer .footerLg {
    display: none !important;
  }

  #footer {
    padding: 5px !important;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  #footer div img {
    width: 12px;
    height: auto;
  }

  #footer .footerSm {
    display: block !important;
  }

  .footerSm-btn .main-btn {
    padding: 10px 20px;
    font-size: 11px !important;
    font-weight: 600;
    margin-bottom: 10px;
  }

  #footer .copyright-sm {
    font-size: 10px !important;
    color: white !important;
    font-weight: 400 !important;
    margin-bottom: 2px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    text-align: start;
  }

  .copyright-sm section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: white;
    gap: 3px;
  }
  .copyright-sm section a {
    color: white;
    margin-top: 3px;
  }

  .main-btn2 {
    padding: 20px 44px !important;
  }

  /* #bannerVideo {
    top: -40px !important;
  } */
  #mobileVideo {
    top: -40px !important;
  }

  #footer div:last-child {
    text-align: start !important;
  }

  .modal {
    width: 90% !important;
    /* height: 715px !important; */
    /* height: -webkit-fit-content !important;
    height: -moz-fit-content !important; */
    /* height: fit-content !important; */
    /* max-height: 715px !important; */

    height: auto !important; /* Let content decide height */
    max-height: 90vh !important; /* Prevent modal from overflowing screen */
  }

  .modalForm .modal-body {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .modalForm .left-body {
    display: block !important;
    width: 100%;
    height: -webkit-fit-content !important;
    height: -moz-fit-content !important;
    height: fit-content !important;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    background-size: cover !important;
    background-position: center bottom !important;
  }

  .modalForm .left-body .modal-heading,
  .modal-subtitle {
    display: none;
  }

  .modalForm .left-body .iconBox {
    gap: 13px;
    margin-bottom: 4px;
  }

  .modalForm .left-body {
    padding: 10px 16px;
  }

  .modalForm .right-body > div {
    padding: 5px;
  }

  .modalForm .right-body > div:nth-child(3) {
    width: 100%;
  }

  .modalForm .right-body > div:nth-child(4) {
    width: 100%;
  }

  .close-btn {
    top: 11px;
    right: 21px;
  }

  #divEmailOTP {
    width: 100% !important;
  }

  #divPhoneOTP {
    width: 100% !important;
  }

  .digit-group {
    display: block;
    float: left;
  }

  .otp-verify {
    margin-top: 0;
  }

  .modalForm .right-body > div:first-child {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .modalForm .right-body > div:nth-child(2) {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .modalForm .right-body > div:nth-child(3) {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .modalForm .right-body > div:nth-child(4) {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }
  .modalForm .right-body > div:nth-child(5) {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
  .modalForm .right-body > div:nth-child(6) {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }
  .modalForm .right-body > div:nth-child(7) {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
  }
  .modalForm .right-body > div:last-child {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
  }

  .thanqModal img {
    width: 190px !important;
    margin-bottom: 30px !important;
  }

  #modal3 {
    height: 66% !important;
    max-height: 66% !important;
  }

  .thanqModal .modal-body .txt1 {
    font-size: 16px !important;
    font-weight: 500 !important;
    margin-bottom: 35px !important;
    padding: 0 40px !important;
  }
}

@media (max-width: 900px) {
  .video-sm {
    display: block !important;
  }
  .video-lg {
    display: none !important;
  }
}
