* {
  margin: 0;
  padding: 0;
}

header {
  width: 100%;
  height: 100%;
  position: relative;
}

header .text-container {
  position: absolute;
  top: 40%;
  left: 0;
  width: 100%;
  z-index: 10;
}

ol > li,
ul > li,
.text {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  padding: 10px 20px;
}

.text .tamil {
  font-family: "Baloo Thambi 2", system-ui;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
}

.center {
  text-align: center;
}
li {
  margin: 0;
}
ol > li,
ul > li {
  font-size: 12px;
  line-height: 12px;
}
.font-small {
  font-size: 14px;
}

.font-medium {
  font-size: 20px;
}

.font-large {
  font-size: 28px;
}

.font-vlarge {
  font-size: 40px;
}


.text.small-lh {
  line-height: 14px;
}

.text.med-lh {
  line-height: 20px;
}

.text.large-lh {
  line-height: 28px;
}


.text.vlarge-lh {
  line-height: 40px;
}

.text.font-white {
  color: #ffffff;
}

header .dotted-black-overlay {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.2);
  background-image: radial-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 0);
  background-size: 15px 15px;
  background-position: -19px -19px;
  /* opacity: 0.2; */
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: right;
  align-items: center;
}

.scroll {
	width: 35px;
	height: 35px;
  margin: 50px auto;
	border: 2px solid #fff;
	border-radius: 50%;
	position: relative;
	animation: down 1.5s infinite;
	-webkit-animation: down 1.5s infinite;
  opacity: 1;
	&::before {
		content: '';
		position: absolute;
		top: 8px;
		left: 10px;
		width: 12px;
		height: 12px;
		border-left: 2px solid #fff;
  	border-bottom: 2px solid #fff;
		transform: rotate(-45deg);
	}
}

@keyframes down {
	0% {
		transform: translate(0);
	}
	20% {
		transform: translateY(15px);
	}
	40% {
		transform: translate(0);
	}
}

@-webkit-keyframes down {
	0% {
		transform: translate(0);
	}
	20% {
		transform: translateY(15px);
	}
	40% {
		transform: translate(0);
	}
}


header .images-container {
  width: 100%;
  height: 90vh;
  display: flex;
  flex-direction: row;
  position: relative;
}

header .images-container .timer {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 0;
  height: 5px;
  background-color: rgba(0, 0, 0, 0.6);
  animation: run-timer 6400ms ease infinite forwards;
  animation-delay: 100ms;
}

@keyframes run-timer {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

.image {
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  width: 0;
  min-width: 0;
  height: 90vh;
  opacity: 0;
}

.image.active {
  opacity: 1;
  width: 100%;
  min-width: 100%;
}

.image-one {
  background-image: url("./assets/image-one.jpg");
  background-size: cover;
  background-position: center;
  height: 100vh; /* Increase the height as needed */
}

.move-down {
  margin-top: 90px; /* Adjust the value as needed */
}

header .logo-container {
  width: 100%;
  height: 10vh;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
  position: relative;
}

header .logo-container img.logo {
  position: absolute;
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: auto;
  width: 500px;
}

@media only screen and (max-width: 750px) {
  header .images-container {
    height: 40vh;
  }
  .image {
    background-size: contain;
    background-position: unset;
    height: 40vh;
  }
  header .logo-container img.logo {
    width: 400px;
  }
}

.text-shadow {
  text-shadow: 0px 2px 2px rgba(255, 255, 255, 0.4);
}

.main-container, .pricing-plans {
  margin: 50px auto;
  width: 100%;
  height: auto;
}

.divider {
  display: flex;
  justify-content: center;
  align-items: center;
}

footer {
  background-color: #eee;
  width: max-content;
  border-top-right-radius: 100px;
  padding: 10px 40px 10px 10px !important;
}
.powered-by-section {
  margin-top: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.partner-card {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.powered-by-section > div > p {
  text-align: center;
  font-size: 10px;
  font-weight: 700;
}
.powered-by-logo {
  width: 70px;
  height: auto;
  margin: 0 10px;
}
.powered-by-logo-ht {
  height: 70px;
  width: auto;
}
.terms-and-conds-section {
  margin-top: 50px;
}
.terms-and-conds-section .terms-heading{
  font-weight: 700;
}
.terms-and-conds-section .terms-text {
  max-width: 600px;
  margin: 0 auto;
}
.maps-iframe {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px auto;
}
.liquid-container {
  max-width: 900px;
  margin: 0 auto;
}
#read-more-less-btn {
  background-color: #eee;
  border: 0;
  border-radius: 20px;
  cursor: pointer;
}

.video-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto; /* Center the container */
}

.sponsors-section {
}