@import url('https://fonts.googleapis.com/css2?family=Lora&family=Urbanist:wght@400;700&display=swap');
/* General Styles */
:root {
  --primary-color: #04446c;
  --secondary-color: #f6c809;
  --secondary-hover-color: #E8743F;
  --third-color: #000;
  --fourth-color: #B55DFD;
  --fifth-color: #000;
  --sixth-color: #1C2A2A;
  --background-color: #f4f4f4;
  --text-color: #000;
}

*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	outline: 0;
	-webkit-tap-highlight-color: transparent;
}
html {
    overflow-anchor: none;
}
body {
    font-family: "Urbanist", Arial, sans-serif;
    margin: 0;
    padding: 0;
	color: var(--text-color);
	font-size: 14px;
	text-align: center;
    background-color: var(--background-color);
}
h1,h2,h3,h4,h5,h6{
	color: #000;
    font-family: "Urbanist", Arial, sans-serif;
	font-weight: bold;
	line-height: 1.5;
}
h1{
	font-size: 50px;
	font-weight: normal;
}
h2{
	font-size: 40px;
	font-weight: normal;
}
h3{
	font-size: 30px;
	font-weight: normal;
}
h4{
	font-size: 20px;
}
h5{
	font-size: 18px;
}
h6{
	font-size: 16px;
}
p{
	margin: 10px auto;
	line-height: 2;
}
hr {
	display: block;
	margin: 0px auto;
	width: 100%;
	max-width: 1200px;
	border: none;
	border-bottom: 1px solid #aaa;
}
label{
	display: block;
	font-weight: bold;
}
input[type=text],
input[type=email],
input[type=password],
input[type=tel],
input[type=search],
input[type=number],
select,
textarea {
	width: 100%;
	padding: 10px 0;
	margin: 0px 0;
	border: none;
	border-bottom: 1px solid #aaa;
	border-radius: 0px;
	font-size: 14px;
	line-height: 1.5;
	background: none;
	transition: border-color 0.3s ease-in-out;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=password]:focus,
input[type=tel]:focus,
input[type=number]:focus,
select:focus,
textarea:focus {
	border-color: #007BFF;
	outline: none;
}
textarea {
	font-family: Arial;
	height: 120px;
	resize: none;
}
input[type=date]{
	margin-top: 3px;
	padding: 10px;
	border: 1px solid #aaa;
}
.error-message {
	color: red;
	display: none;
	margin-top: 5px;
}

/* Customize the label (the container) */
.checkboxcontainer1 {
	margin: 10px 20px 10px 0;
  display: inline-block;
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  font-weight: normal;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.checkboxcontainer1 input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkboxcontainer1 .checkmark {
  position: absolute;
	top: -2px;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}

/* On mouse-over, add a grey background color */
.checkboxcontainer1:hover input ~ .checkmark {
	top: -2px;
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.checkboxcontainer1 input:checked ~ .checkmark {
	top: -2px;
  background-color: #2196F3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkboxcontainer1 .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.checkboxcontainer1 input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.checkboxcontainer1 .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.radiocontainer1 {
	margin: 10px 20px 10px 0;
  display: inline-block;
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  font-weight: normal;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
/* Hide the browser's default radio button */
.radiocontainer1 input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
/* Create a custom radio button */
.radiocontainer1 .checkmark {
  position: absolute;
	top: -2px;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
  border-radius: 50%;
}
/* On mouse-over, add a grey background color */
.radiocontainer1:hover input ~ .checkmark {
	top: -2px;
  background-color: #ccc;
}
/* When the radio button is checked, add a blue background */
.radiocontainer1 input:checked ~ .checkmark {
	top: -2px;
  background-color: #2196F3;
}
/* Create the indicator (the dot/circle - hidden when not checked) */
.radiocontainer1 .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
/* Show the indicator (dot/circle) when checked */
.radiocontainer1 input:checked ~ .checkmark:after {
  display: block;
}
/* Style the indicator (dot/circle) */
.radiocontainer1 .checkmark:after {
  top: 9px;
  left: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
}
.checkbox-label1 {
	margin: 10px 5px 0 0;
	display: inline-block;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background-color 0.3s ease-in-out;
}
.checkbox-label1 input {
	display: none;
}
.checkbox-label1 span {
	padding: 7px 14px;
	display: block;
	text-align: center;
	font-weight: normal;
	background-color: #eee;
	border-radius: 5px;
	transition: color, background-color 0.2s ease-in-out;
}
.checkbox-label1 input:checked + span {
	color: #fff;
	background-color: #2196F3;
}
.radio-label1 {
	margin: 10px 5px 0 0;
	display: inline-block;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background-color 0.3s;
}
.radio-label1 input {
	display: none;
}
.radio-label1 span {
	padding: 7px 14px;
	display: block;
	text-align: center;
	font-weight: normal;
	background-color: #eee;
	border-radius: 5px;
	transition: color, background-color 0.2s ease-in-out;
}
.radio-label1 input:checked + span {
	color: #fff;
	background-color: #2196F3;
}
.custom-select{
	position: relative;
}
.custom-select select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.passwordwrapper1{
	position: relative;
	display: block;
}
.passwordwrapper1 i{
	position: absolute;
	right: 0px;
	top: 50%;
	transform: translateY(-50%);
	cursor: pointer;
	padding: 10px !important;
	font-size: 16px !important;
	background: none !important;
}
/* Fix: Add arrow only when the container has a select field */
.custom-select:has(select)::after {
	content: "▼";
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 14px;
	color: #555;
	pointer-events: none;
}

a{
	color: var(--text-color);
	text-decoration: none;
}
a.underline{
	text-decoration: underline;
}
u.underline1{
	color: var(--secondary-color);
	font-weight: bold;
	text-decoration: underline solid var(--secondary-color) 10%;
	text-underline-offset: 20%;
}
u.underline2{
	text-decoration: underline solid #fff 30%;
}
.stars {
	color: var(--secondary-color);
	margin: 10px 0;
	text-align: left;
}
/* The switch - the box around the slider */
.switch1 {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
  vertical-align: middle;
}
/* Hide default HTML checkbox */
.switch1 input {
  opacity: 0;
  width: 0;
  height: 0;
}
/* The slider */
.switch1 .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}
.switch1 .slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}
.switch1 input:checked + .slider {
  background-color: #2196F3;
}
.switch1 input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}
.switch1 input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}
/* Rounded sliders */
.switch1 .slider.round {
  border-radius: 34px;
}

.switch1 .slider.round:before {
  border-radius: 50%;
}

.button1, .button2{
	display: inline-block;
	color: #000;
	font-size: 16px;
	font-weight: bold;
	text-decoration: none;
    background-color: var(--secondary-color);
    padding: 12px 30px;
	width: auto;
	line-height: 1.5;
	vertical-align: middle;
    border-radius: 5px;
	border: none;
	cursor: pointer;
	box-shadow: 2px 2px 2px rgba(0,0,0,0.1);
    transition: color 0.3s, background-color 0.3s;
}
.button1:hover{
    background-color:var(--secondary-color);
}
.button1.big{
	font-size: 20px;
    padding: 20px;
}
.button2{
	color: #fff;
    background-color: #25D366;
}
.button2:hover{
	
}
.button1 i,
.button2 i{
	margin-right: 10px;
}
.button1.share{
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 1000;
	padding: 0;
	width: 50px;
	height: 50px;
	color: #fff;
	line-height: 50px;
	text-align: center;
	background: var(--primary-color);
	border-radius: 999px;
	box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
	display: none;
}
.button1.share i{
	margin-right: 0px;
}

@keyframes shine {
	0% {
		left: -100%;
	}
	20% {
		left: 100%;
	}
	100% {
		left: 100%;
	}
}
.shine1 {
	position: relative;
	overflow: hidden;
	display: inline-block; /* Or block, depending on your layout */
}
.shine1::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		120deg,
		transparent,
		rgba(255, 255, 255, 0.6),
		transparent
	);
	animation: shine 3s linear infinite;
}

.clear{
	clear: both;
}
.desktoponly {display: block;}
.mobileonly {display: none;}
.white{
	color: #fff;
}
.gray{
	color: #777;
}
.primarycolor{
	color: var(--primary-color);
}
.secondarycolor{
	color: var(--secondary-color);
}
.red{
	color: red;
}
.small{
	font-size: 12px;
}
.tag1,
.tag2,
.tag3{
	position: absolute;
	top: 0px;
	left: 10px;
	background-color: #FF1493;
	color: #fff;
	font-size: 20px;
	font-weight: bold;
	padding: 5px 10px;
	border-radius: 0 0 5px 5px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.tag2{
	background-color: #32CD32;
}
.tag3{
	background-color: #4169E1;
}
ul.liststyle1 {
	list-style: none;
	padding: 0;
	width: 100%;
	margin: auto;
	text-align: left;
}
ul.liststyle1 li {
	display: flex;
	align-items: flex-start; /* Align items at the top */
	padding: 5px 0px;
}
ul.liststyle1 .icon {
	width: 30px; /* Fixed width */
	text-align: left;
	flex-shrink: 0; /* Prevents shrinking */
}
ul.liststyle1 .icon i {
	color: var(--secondary-color);
	font-size: 18px;
	margin-top: 2px;
}
ul.liststyle1 .text {
	flex-grow: 1;
}
ul.liststyle2 {
	list-style: none;
	padding: 0;
	width: 100%;
	margin: auto;
	text-align: left;
}
ul.liststyle2 li {
	display: flex;
	align-items: flex-start; /* Align items at the top */
	padding: 10px 10px;
	border: 1px solid #ccc;
	border-bottom: 0;
}
ul.liststyle2 li:last-child {
	border-bottom: 1px solid #ccc;
}
ul.liststyle2 .icon {
	width: 30px; /* Fixed width */
	color: var(--primary-color);
	font-weight: bold;
	text-align: left;
	flex-shrink: 0; /* Prevents shrinking */
}
ul.liststyle2 .icon i {
	font-size: 18px;
	margin-top: 2px;
}
ul.liststyle2 .text {
	flex-grow: 1;
}
ul.liststyle2 li:nth-child(even) {
	background-color: #f9f9f9;
}
ul.liststyle2 li:nth-child(odd) {
	background-color: #ffffff;
}

ul.liststyle3 {
	list-style: none;
	padding: 0;
	width: 100%;
	margin: auto;
	text-align: left;
}
ul.liststyle3 li {
	display: block;
	padding: 10px 10px;
	margin-bottom: 10px;
	background-color: #ffffff;
	border: 0px solid #ccc;
	border-left: 3px solid var(--secondary-color);
}
ul.liststyle3 li:last-child {
	margin-bottom: 0px;
}
.whatsapp-cta {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: #25d366;
	color: white;
	display: none;
	justify-content: space-between;
	align-items: center;
	padding: 12px 20px;
	z-index: 9999;
	text-decoration: none;
	font-size: 16px;
	transform: translateY(100%);
    transition: transform 0.3s ease;
}
.whatsapp-cta:hover {
	background-color: #1ebe5d;
}
.whatsapp-cta.show {
	transform: translateY(0);
}
.whatsapp-cta span {
	font-weight: 600;
}
.whatsapp-cta .cta-left,
.whatsapp-cta .cta-right {
	display: flex;
	align-items: center;
}
.whatsapp-cta .cta-right {
	font-weight: bold;
	font-size: 16px;
}

#cover-white,
#cover-blue {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  transition: transform 0.5s ease;
}
#cover-white {
  background: white;
  transform: translateY(0%);
}
#cover-blue {
  background: var(--primary-color); /* Change to your brand color if needed */
  transform: translateY(0%);
  z-index: 999;
}
#cover-white.slide-up {
  transform: translateY(-100%);
}
#cover-blue.slide-up {
  transform: translateY(-100%);
}
#main-content-container {
  opacity: 0;
  transition: opacity 0.5s ease 0s;
}
#main-content-container.visible {
  opacity: 1;
}

header {
	float: left;
    display: block;
	width: 100%;
	height: 70px;
    padding: 15px 0px;
	position: fixed;
	left: 0;
	top: 0;
    background-color: #fff;
    color: #000;
	vertical-align: middle;
	box-shadow: 2px 2px 2px rgba(0,0,0,0.1);
	z-index: 101;
}
header .headerinner {
	display: block;
	margin: 0 auto;
	width: 100%;
	max-width: 1240px;
	padding: 0 20px;
}
header .logo {
	float: left;
    display: inline-block;
    margin: 7px 0 0;
    font-family: "Lora", Arial, sans-serif;
}
header .logo a {
	color: #000;
	font-size: 21px;
	font-weight: normal;
	line-height: 0;
	text-decoration: none;
}
header .logo a .tagline{
    margin: 0;
	color: #555;
	font-size: 12px;
}
header .logo img{
    width: 150px;
	height: auto;
}
header .logo h1 {
    margin: 0;
	color: #fff;
	font-size: 24px;
	font-weight: normal;
	line-height: 40px;
	cursor: pointer;
}
header .logo h1 a {
	color: #fff;
	text-decoration: none;
}
nav {
	position: fixed;
	top: 15px;
	right: 150px;
    display: inline-block;
	z-index: 102;
}
@media (min-width: 1200px) {
nav {
	right: calc(((100% - 1200px)/2) + 130px);
}
}
nav ul {
    list-style: none;
	margin-top: 14px;
    padding: 0;
}
nav ul li {
    display: inline-block;
    margin-left: 20px;
}
nav ul li a,
nav ul li button {
    color: #000;
	font-size: 16px;
	font-weight: bold;
    text-decoration: none;
	border: none;
	cursor: pointer;
}
nav ul > li > a{
	position: relative;
	padding: 10px 0;
	font-size: 14px;
	border-bottom: 2px solid transparent;
	text-transform: uppercase;
    transition: border 0.3s ease-in-out;
}
nav ul > li > a.active{
	border-bottom: 2px solid var(--secondary-color);
}
nav ul > li > a.donate{
	padding: 10px;
	color: #fff;
	background: var(--secondary-color);
	border: 2px solid var(--secondary-color);
	border-radius: 5px;
}
nav + div{
	margin-top: 70px!important;
}
section {
	clear: both;
	display: block;
	float: none;
}
.bannercontainer1{
	display: block;
	float: left;
	width: 100%;
	margin: 0;
	padding: 50px 0;
	background-size: cover;
	background-position: center;
	position: relative;
	z-index: 1;
}
.bannercontainer1 > div{
	text-align: left;
	width: 70%;
	margin-left: calc((100% - 1200px)/2);
	padding: 30px 50px 50px;
	background-color: rgba(0, 0, 0, 0);
}
.bannercontainer1::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.2));
    z-index: -1;
}
.bannercontainer1 .heading{
	color: white;
	font-size: 36px;
	line-height: 1.5;
}
.bannercontainer1 p{
	margin: 20px 0 10px;
	color: #ddd;
	font-size: 16px;
	line-height: 1.7;
}

.bannercontainer2{
	position: relative;
	display: block;
	float: left;
	width: 100%;
	margin: 0;
	padding: 50px 0;
	overflow: hidden;
}
.bannercontainer2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.2));
    z-index: 1;
}

.bannercontainer2 video{
	position: absolute;
	top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: 100%;
    height: auto;
	background: #000;
	object-fit: cover; /* Ensures video covers the screen */
    z-index: -1;
}
.bannercontainer2 > div{
	position: relative;
    z-index: 1;
	display: block;
	float: none;
	text-align: left;
	width: 70%;
	margin-left: calc((100% - 1200px)/2);
	clear: both;
	padding: 55px 50px;
	background-color: rgba(0, 0, 0, 0);
}
.bannercontainer2 .heading{
	color: white;
	font-size: 55px;
	line-height: 1.1;
}
.bannercontainer2 .heading .big{
	font-size: 144px;
}
.bannercontainer2 p{
	margin: 20px 0 10px;
	color: #ddd;
	font-size: 16px;
	line-height: 1.7;
}
.bannercontainer3{
	display: block;
	float: left;
	width: 100%;
	margin: 0;
	padding: 30px 0;
	background-size: cover;
	background-position: center;
	position: relative;
	z-index: 1;
}
.bannercontainer3::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	backdrop-filter: blur(20px);
    z-index: -1;
}
.bannercontainer3 > div{
	display: inline-block;
	text-align: center;
	max-width: 90%;
	margin: 0 auto;
	padding: 10px 50px;
	background-color: rgba(0, 0, 0, 0.5);
}
.bannercontainer3 .heading{
	color: white;
	font-size: 30px;
	line-height: 1.5;
}
.bannercontainer4{
	display: block;
	float: left;
	width: 100%;
	margin: 0;
	padding: 0;
	background-size: cover;
	background-position: center;
	position: relative;
	z-index: 1;
}
.bannercontainer4 .hero {
	position: relative;
	width: 100%;
	padding: 0px 0;
	overflow: hidden;
	background: #000;
}
.bannercontainer4 .heroslide {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	opacity: 0;
	transition: opacity 1.5s ease-in-out;
}
.bannercontainer4 .heroslide.active {
	opacity: 1;
	z-index: 1;
}
.bannercontainer4 .hero-content {
	position: relative;
	z-index: 3;
	text-align: left;
	width: 1200px;
	max-width: 1200px;
	margin: 0 auto;
	padding: 70px 50px;
	text-align: center;
	align-items: center;
	color: white;
}
.bannercontainer4::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7));
	backdrop-filter: blur(0px);
    z-index: 2;
}
.bannercontainer4 .heading{
	color: white;
    font-family: "Urbanist", Arial, sans-serif;
	font-size: 70px;
	font-weight: normal;
	line-height: 1.2;
	text-align: center;
}
.bannercontainer4 p{
	margin: 20px 0 10px;
	color: #ddd;
	font-size: 16px;
	line-height: 1.7;
	text-align: center;
}

.usercarouselcontainer{
	margin-top: 40px;
}
.usercarouselcontainer .usercarousel {
	position: relative;
	display: inline-block;
	width: 120px;
	height: 34px;
	vertical-align: top;
	overflow: hidden;
}
.usercarouselcontainer .textcontainer {
	display: inline-block;
	height: 34px;
	font-size: 14px;
	font-weight: bold;
	line-height: 34px;
	vertical-align: top;
}
.usercarousel .circle {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	position: absolute;
	top: 0px;
	transition: all 0.5s ease;
	transform: scale(1);
	opacity: 1;
	overflow: hidden;
	border: 2px solid #fff;
}
.usercarousel .circle > img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Position classes */
.usercarousel .pos0 { left: 0px; }
.usercarousel .pos1 { left: 20px; }
.usercarousel .pos2 { left: 40px; }
.usercarousel .pos3 { left: 60px; }
.usercarousel .pos4 { left: 80px; }
.usercarousel .offscreen { left: 60px; transform: scale(0); opacity: 0; }

/* Colors */
.usercarousel .red { background-color: #ff6b6b; }
.usercarousel .blue { background-color: #6bc5ff; }
.usercarousel .green { background-color: #81ff6b; }
.usercarousel .purple { background-color: #d36bff; }
.usercarousel .yellow { background-color: #ffd36b; }
.usercarousel .mint { background-color: #6bffc1; }
.usercarousel .violet { background-color: #c36bff; }
.button-container1 {
	display: flex;
	max-width: 600px;
	margin: 10px auto;
}
.button-container1 a{
	flex: 1;
}
.button-container1 a:first-child {
	margin-right: 10px;
}

.full-wrapper {
	display: block;
	float: left;
	width: 100%;
	padding: 50px 0;
	text-align: center;
	line-height: 1.5;
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	position: relative;
	z-index: 1;
}
.full-wrapper.colorbg {
	background: var(--primary-color);
}
.full-wrapper.paddingtopzero {
	padding-top: 20px;
}
.tinteffect{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--primary-color);
	opacity: 0.7;
	z-index: -1;
}
.tinteffect2{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	backdrop-filter: blur(20px);
	z-index: -1;
}
.stats-container {
	display: flex;
	justify-content: center;
	text-align: center;
	flex-wrap: wrap;
	width: 100%;
	max-width: 1240px;
	padding: 0 0px;
	margin: 0 auto;
	color: #fff;
}
.stats-container .stat-block {
	flex: 1;
	max-width: 500px;
	margin: 10px;
	padding: 20px;
}
.stats-container .stat-number {
	font-size: 40px;
	font-weight: normal;
}
.stats-container .stat-text {
	font-size: 16px;
}
.stats-container i {
	margin-bottom: 10px;
	font-size: 30px;
	padding: 20px;
	color: #000;
	background: var(--secondary-color);
	border-radius: 5px;
}

.blockcontainer1 {
	display: grid;
	margin: 0 auto;
	width: 100%;
	max-width: 1240px;
	padding: 20px 20px 0;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 20px;
}
.blockcontainer1 .block {
	text-decoration: none;
	color: black;
	border: 1px solid #ccc;
	padding: 20px;
	border-radius: 5px;
	transition: 0.3s;
	display: flex;
	background-color: #fff;
	justify-content: space-between;
	align-items: center;
    transition: color 0.3s, background-color 0.3s;
}
.blockcontainer1 .block:hover {
	background-color: var(--fourth-color);
}
.blockcontainer1 .block h2 {
	margin: 0;
	font-size: 18px;
	text-align: left;
}
.blockcontainer1 .block p {
	margin: 10px 0 0;
	font-size: 14px;
	color: #555;
	text-align: left;
	line-height: 1.5;
}
.blockcontainer1 .block .arrow {
	width: 40px;
	text-align: right;
	font-size: 20px;
	color: black;
	align-self: flex-center;
}

.blockcontainer1 .block2 {
	text-decoration: none;
	color: black;
	border: 1px solid #ccc;
	padding: 20px;
	border-radius: 10px;
	transition: 0.3s;
	display: grid;
	grid-template-columns: 60px auto 20px;
	background-color: #fff;
    transition: color 0.3s, background-color 0.3s;
}
.blockcontainer1 .block2 h5 {
	margin: 0;
	font-size: 16px;
	text-align: left;
}
.blockcontainer1 .block2 p {
	margin: 0px 0 0;
	font-size: 14px;
	color: #555;
	line-height: 1.5;
	text-align: left;
}
.blockcontainer1 .block2 .image{
	position: relative;
	top: 5px;
	left: 0;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	overflow: hidden;
}
.blockcontainer1 .block2 .image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.blockcontainer1 .block2 .text {
	width: auto;
	margin-left: 15px;
}
.blockcontainer1 .block2 .arrow {
	margin-left: 10px;
	font-size: 20px;
	color: var(--primary-color);
	text-align: right;
}
.blockcontainer2 {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	width: 100%;
	max-width: 1200px;
	padding: 20px 0px;
	margin: auto;
}
.blockcontainer2 .block {
	position: relative;
	flex: 1;
	min-width: 300px;
	height: 250px;
	color: white;
	text-decoration: none;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	padding: 20px;
	background-size: 100%;
	background-position: center;
	transition: background-size 0.5s ease;
	border-radius: 5px;
	overflow: hidden;
}
.blockcontainer2 .block:hover {
	background-size: 105%;
}
.blockcontainer2 .block::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
}
.blockcontainer2 .block span {
	position: relative;
	font-size: 18px;
	text-align: left;
	z-index: 2;
	max-width: 90%;
}
.blockcontainer2 .block .menu-btn3 {
	position: absolute;
	right: 10px;
	top: 10px;
	width: 40px;
	height: 40px;
	font-size: 16px;
	color: #fff;
	line-height: 40px;
	background: rgba(0, 0, 0, 0.5);
	border-radius: 50%;
	text-align: center;
	cursor: pointer;
}

.blockcontainer3 {
	display: block;
	width: 100%;
	max-width: 1240px;
	padding: 20px 20px 10px;
	margin: auto;
	color: #fff;
}

.full-wrapper.pricing-container{
	margin-bottom: 40px;
	padding: 0 0 0px;
	white-space: nowrap;
	/* scrollbar-width: thin;
	scrollbar-color: var(--secondary-color) #f0f0f0;
	scroll-behavior: smooth; */
}

.testimonial-container1 {
	display: flex;
	gap: 20px;
	justify-content: center;
	text-align: center;
	margin: 0 auto;
	width: 100%;
	max-width: 1240px;
	padding: 20px 20px 20px;
}
.testimonial-container1 .testimonial {
	background: #fff;
	border-radius: 5px;
	padding: 20px;
	max-width: 350px;
	flex: 1;
	min-width: 200px;
	text-align: center;
	border: 1px solid #ccc;
}
.testimonial-container1 .testimonial-header {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-bottom: 10px;
	margin-bottom: 20px;
	border-bottom: 1px solid #ccc;
}
.testimonial-container1 .testimonial img {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	margin-bottom: 10px;
	border: 1px solid #ccc;
}
.testimonial-container1 .testimonial .author {
	font-weight: bold;
	font-size: 18px;
	color: #333;
}
.testimonial-container1 .testimonial .role {
	font-size: 14px;
	color: #777;
}
.testimonial-container1 .stars {
	color: var(--secondary-color);
	margin: 10px 0;
}
.testimonial-container1 .testimonial p {
	font-size: 16px;
	color: #555;
	margin: 5px 0;
}
.testimonial-container1 .testimonial .read-more {
	color: var(--secondary-color);
	font-weight: bold;
	text-decoration: none;
}
.testimonial-container1 .testimonial video{
	width: 100%;
	height: auto;
	margin-bottom: 10px;
}
.testimonial-container1.horizontal {
	width: 100%;
	max-width: 1200px;
	padding: 20px 0px 20px;
}
.horizontal{
	overflow-x: auto;
	white-space: nowrap;
	flex-wrap: nowrap;
	justify-content: left;
}
.horizontal p {
	white-space: normal;
}
.testimonial-container1.horizontal .testimonial {
	max-width: auto;
	width: 350px;
	flex: auto;
	min-width: auto;
	flex-shrink: 0; /* Prevents shrinking */
	scroll-snap-align: start;
}
.blockcontainer4 {
	display: flex;
	gap: 20px;
	overflow-x: auto; /* Enables horizontal scrolling */
	overflow-y: hidden;
	position: relative;
	width: 100%;
	height: 250px;
	max-width: 1200px;
	padding: 20px 0px;
	margin: 0 auto;
	white-space: nowrap; /* Prevents wrapping */
}
.blockcontainer4 .block {
	width: 200px;  /* Fixed width */
	height: 200px; /* Fixed height */
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 20px;
	flex-shrink: 0; /* Prevents shrinking */
	position: relative;
}
.blockcontainer4 img {
	width: 100%;
	height: 100%;
	object-fit: cover; /* Ensures images fit inside blocks */
	border-radius: 10px;
	box-shadow: 2px 2px 2px rgba(0,0,0,0.1);
	transition: box-shadow 0.2s ease-in-out;
}
.blockcontainer4 .block:hover img {
	box-shadow: 2px 2px 25px rgba(0,0,0,0.5);
}

.blockcontainer5 {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: center;
	align-items: center;
	width: 100%;
	max-width: 1200px;
	padding: 0px 0px 20px;
	margin: 0 auto;
}
.blockcontainer5 .left,
.blockcontainer5 .right {
	flex: 1;
	min-width: 250px;
	padding: 0px 0px;
}
.blockcontainer5 .left {
	max-width: 700px;
	text-align: left;
}
.blockcontainer5 .highlight {
	font-weight: bold;
}
.blockcontainer5 .stats {
	display: flex;
	gap: 20px;
	margin: 20px auto 0;
}
.blockcontainer5 .stat {
	margin: 0px auto;
	text-align: center;
}
.blockcontainer5 .right img {
	max-width: 100%;
	max-height: 400px;
}
.blockcontainer6 {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start; /* Aligns items at the top */
	gap: 20px;
	width: 100%;
	max-width: 1200px;
	padding: 20px 0px 0px;
	margin: 0 auto;
}
.blockcontainer6 .block {
	flex: 1;
	min-width: 240px;
	min-height: 150px;
	background: white;
	padding: 20px;
	align-items: flex-end;
	justify-content: center;
	text-align: center;
	border-radius: 5px;
	border: 1px solid #ccc;
	position: relative;
}
.blockcontainer6 .block i {
	margin-bottom: 10px;
	font-size: 30px;
	padding: 20px;
	background: var(--fourth-color);
	border-radius: 5px;
}
.blockcontainer6 .block .imgcont {
	display: block;
	width: 100%;
	min-height: 150px;
	aspect-ratio: 16/9;
	margin-bottom: 10px;
	overflow: hidden;
}
.blockcontainer6 .block img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.blockcontainer6 iframe{
	width: 100%;
	min-height: 200px;
	aspect-ratio: 16/9;
}
.blockcontainer6 .block h4 {
	margin-top: 20px;
}
.blockcontainer6 .block h6 {
	margin-top: 10px;
	text-align: center;
}
.blockcontainer6 img.smallimg {
	width: 100%;
	max-width: 150px;
	height: auto;
	margin: 10px 10px;
}
.blockcontainer6.alignleft{
	justify-content: left;
}
.blockcontainer6.alignleft p{
	text-align: left;
	width: 100%;
}
.blockcontainer6.alignleft img {
	width: 100%;
	height: auto;
}

.blockcontainer7 {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	align-items: flex-start; /* Aligns items at the top */
	align-items: stretch; /* Ensures all items stretch to the same height */
	gap: 20px;
	width: 100%;
	max-width: 1200px;
	padding: 20px 0px 0px;
	margin: 0 auto;
}
.blockcontainer7 .block {
	flex: 1;
	position: relative;
	min-width: 240px;
	min-height: 150px;
	background: white;
	padding: 20px;
	align-items: flex-end;
	justify-content: center;
	border-radius: 5px;
	border: 1px solid #ccc;
}
.blockcontainer7 .block .imgcont {
	width: 100%;
	min-height: 150px;
	aspect-ratio: 4/3;
	margin-bottom: 10px;
	overflow: hidden;
}
.blockcontainer7 .block i {
	margin-bottom: 10px;
	font-size: 30px;
	padding: 20px;
	background: var(--fourth-color);
	border-radius: 5px;
}
.blockcontainer7 .block img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.blockcontainer7 .block h4 {
	margin: 20px 0 0;
}
.blockcontainer7 .block p {
	margin: 0;
}
.blockcontainer7 .block iframe{
	width: 100%;
	aspect-ratio: 16/9;
}
.blockcontainer7 .loginbannerblock {
	flex: 1;
	position: sticky;
	top: 0;
	min-width: 240px;
	min-height: 150px;
	background-size: cover;
	background-position: center;
	object-fit: contain;
	overflow: hidden;
}
.blockcontainer7 .loginbannerblock img{
	width: 100%;
	height: auto;
}
.blockcontainer8 {
	width: 100%;
	max-width: 1200px;
	padding: 20px 0px 0px;
	margin: 0 auto;
}
.blockcontainer8 .row {
	display: flex;
	flex-wrap: wrap;
	align-items: top;
	justify-content: space-between;
}
.blockcontainer8 .left,
.blockcontainer8 .right {
	width: 100%;
	padding: 20px 0;
	box-sizing: border-box;
}
.blockcontainer8 .left {
	text-align: left;
	order: 2;
}
.blockcontainer8 .right {
	order: 1;
}
.blockcontainer8 .left img,
.blockcontainer8 .right img {
	width: 100%;
	height: auto;
}
.blockcontainer8 iframe{
	width: 100%;
	height: auto !important;
	min-height: 200px;
	aspect-ratio: 16/9;
}
@media (min-width: 768px) {
.blockcontainer8 .left,
.blockcontainer8 .right {
	flex: 1;
	max-width: 50%;
	padding: 50px 20px;
}
.blockcontainer8 .row:nth-child(odd) .left {
	order: 1;
}
.blockcontainer8 .row:nth-child(odd) .right {
	order: 2;
}
.blockcontainer8 .row:nth-child(even) .left {
	order: 2;
}
.blockcontainer8 .row:nth-child(even) .right {
	order: 1;
}
.blockcontainer8 .left {
	text-align: left;
}
}

.blockcontainer9 {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	width: 100%;
	max-width: 1200px;
	padding: 20px 0px 0px;
	margin: 0 auto;
}
.blockcontainer9 .column {
	flex: 1;
	padding: 20px 0;
	min-width: 240px; /* Ensures it doesn't get too small */
	max-width: 50%;
}
.blockcontainer9 .left {
	text-align: center
}
.blockcontainer9 .right {
	text-align: center;
}
.blockcontainer9 .column img{
	width: 100%;
	margin: 0 atuo;
}
.blockcontainer9 .alignleft {
	text-align: left
}

.blockcontainer10 {
	display: grid;
	margin: 0 auto;
	width: 100%;
	max-width: 1240px;
	padding: 0px 0px 0;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 10px;
}
.blockcontainer10 .block2 {
	text-decoration: none;
	color: black;
	border: 1px solid #ccc;
	padding: 10px 20px;
	border-radius: 5px;
	transition: 0.3s;
	display: grid;
	grid-template-columns: 40px auto 20px;
	background-color: #fff;
    transition: color 0.3s, background-color 0.3s;
}
.blockcontainer10 .block2:hover {
	
}
.blockcontainer10 .block2 h5 {
	margin: 0;
	font-size: 16px;
	text-align: left;
}
.blockcontainer10 .block2 p {
	margin: 0px 0 0;
	font-size: 14px;
	color: #555;
	line-height: 1.5;
	text-align: left;
}
.blockcontainer10 .block2 .icon{
	position: relative;
	top: 5px;
	left: 0;
	width: 100%;
	height: 45px;
	text-align: center;
	overflow: hidden;
}
.blockcontainer10 .block2 .text {
	width: auto;
	margin-left: 15px;
}
.blockcontainer10 .block2 .arrow {
	margin-left: 10px;
	font-size: 20px;
	color: black;
	text-align: right;
}
.map-container1 iframe{
	margin-top: 0px;
	width: 100%;
	height: 300px;
}
.full-wrapper.map-container2{
	width: 100%;
	height: 450px;
	padding: 0;
	margin: 0;
}
.full-wrapper.map-container2 iframe{
	width: 100%;
	height: 100%;
}
.caption-block{
	position: relative;
}
.caption-block .caption{
	position: absolute;
	bottom: 6px;
	left: 0;
	display: block;
	width: 100%;
	padding: 10px 20px;
	color: #fff;
	background-color: rgba(0, 0, 0, 0.7);
}

.faq-container2 {
    width: 100%;
	max-width: 1200px;
	padding: 20px 20px 0;
    margin: 20px auto 20px;
	line-height: 1.5;
}
.faq-container2 .faq-item {
    margin-bottom: 10px;
	padding: 10px 20px;
    background-color: #fff;
	border: 1px solid #ccc;
	border-radius: 10px;
}
.faq-container2 .faq-item:last-child {
    margin-bottom: 0px;
}
.faq-container2 .faq-question {
    font-size: 18px;
    font-weight: bold;
    padding: 15px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
	text-align: left;
}
.faq-container2 .faq-answer {
    padding: 0;
    font-size: 16px;
    color: #000;
	text-align: left;
	max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}
.faq-container2 .faq-answer > div{
	padding: 0px 0 20px;
}
.faq-container2 .toggle-icon {
    font-size: 20px;
    font-weight: bold;
	width: 20px;
	text-align: center;
}

.timeline {
	position: relative;
	max-width: 1200px;
	margin: 30px auto 30px;
}
.timeline::after {
	content: '';
	position: absolute;
	width: 6px;
	background-color: var(--secondary-color);
	top: 0;
	bottom: 0;
	left: 50%;
	margin-left: -3px;
}
.timeline-item {
	padding: 20px;
	position: relative;
	background: white;
	width: 45%;
	text-align: left;
	border-radius: 8px;
	box-shadow: 2px 2px 2px rgba(0,0,0,0.1);
}
.timeline-item:nth-child(odd) {
	left: 50%;
	transform: translateX(-100%);
}
.timeline-item:nth-child(even) {
	left: 50%;
}
.timeline-item::after {
	content: '';
	position: absolute;
	width: 20px;
	height: 20px;
	background-color: var(--secondary-color);
	border-radius: 50%;
	top: 24px;
	right: -10px;
}
.timeline-item:nth-child(odd)::after {
	left: auto;
	right: -10px;
}
.timeline-item:nth-child(even)::after {
	left: -10px;
}
.timeline-item h3 {
	margin-bottom: 10px;
	color: var(--primary-color);
	line-height: 1.5;
}

.socialcontainer1 {
	width: 100%;
	max-width: 1240px;
	padding: 0px 20px;
    margin: 20px auto 20px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
}
.socialcontainer1 .social-link {
	display: flex;
	align-items: center;
	text-decoration: none;
	font-size: 14px;
	text-transform: uppercase;
	background: #fff;
	padding: 10px;
	border-radius: 8px;
	width: 100%;
	max-width: 220px;
	text-align: left;
	position: relative;
	overflow: hidden;
	transition: 0.3s ease-in-out;
}
.socialcontainer1 .social-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.6),
    transparent
  );
  transition: left 0.6s ease-in-out;
}
.socialcontainer1 .social-link:hover::before {
  left: 100%;
}
.socialcontainer1 .social-link i {
	width: 40px;
	height: 40px;
	margin-right: 15px;
    color: var(--third-color);
}
.socialcontainer1 .social-text {
	display: flex;
	flex-direction: column;
}
.socialcontainer1 .social-name {
	font-weight: bold;
}

.table-container1 {
	width: 100%;
	font-size: 16px;
	overflow-x: auto;
}
.table-container1 table {
	width: 100%;
	border-collapse: collapse;
}
.table-container1 th,
.table-container1 td {
	border: 1px solid #ccc;
	padding: 10px;
	text-align: left;
}
.table-container1 th {
}
.table-container1 tr:nth-child(even) {
	background-color: #f9f9f9;
}
.table-container1 tr:nth-child(odd) {
	background-color: #ffffff;
}

#copyMessage {
      display: inline-block;
      margin-left: 10px;
      color: green;
      font-weight: bold;
      opacity: 0;
      transition: opacity 0.3s ease;
    }
#copyMessage.show {
  opacity: 1;
}

.form-container1 {
	background: white;
	border-radius: 5px;
	border: 1px solid #ccc;
	width: 100%;
	max-width: 1200px;
	padding: 20px 20px;
    margin: 20px auto 20px;
	text-align: left;
}
.form-container1 .heading{
	margin: 0px 0 20px;
	padding: 5px 10px 5px 10px;
	background: #eee;
}
.form-container1 .form-row {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 15px;
	gap: 20px;
}
.form-container1 .form-group {
	flex: 1;
	padding: 0px;
	position: relative;
}
/* 
.form-container1 .form-group label {
	display: block;
	font-weight: bold;
	margin-bottom: 5px;
}
.form-container1 .form-group input,
.form-container1 .form-group select,
.form-container1 .form-group textarea {
	width: 100%;
	padding: 8px;
	border: 1px solid #ccc;
	border-radius: 5px;
	font-size: 16px;
}
 */
/* Full-width row */
.form-container1 .full-width {
	flex: 100%;
}
/* Responsive Design */
@media (max-width: 600px) {
.form-container1 .form-row {
	flex-direction: column;
}
}
.image-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 columns on mobile */
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0px;
}
.image-gallery a{
	margin: 0 auto;
	max-width: 300px;
	aspect-ratio: 4/3;
	overflow: hidden;
	border-radius: 0px;
}
.image-gallery img {
  width: 100%;
  height: 100%; 
  object-fit: cover;
}

/* Responsive adjustments for larger screens */
@media (min-width: 768px) {
  .image-gallery {
    grid-template-columns: repeat(4, 1fr); /* 3 columns on tablets */
  }
}

@media (min-width: 1024px) {
  .image-gallery {
    grid-template-columns: repeat(6, 1fr); /* 4 columns on desktops */
  }
}
/* Footer Styles */
footer.footer1 {
    display: block;
	float: left;
	width: 100%;
    padding: 50px 0;
    background-color: var(--fifth-color);
    color: white;
	vertical-align: top;
}
footer.footer1 .footerinner {
	display: flex;
	margin: 0 auto;
	width: 100%;
	max-width: 1240px;
	padding: 0 20px;
}
footer.footer1 .footer-left {
	float: left;
	display: inline-block;
	flex: 1;
	text-align: left;
}
footer.footer1 .footer-left a {
	display: inline-block;
    color: white;
    text-decoration: underline;
	margin-left: 10px;
}
footer.footer1 .footer-left a:last-child {
	
}
footer.footer1 .footer-right {
	float: right;
	display: inline-block;
	margin-left: 20px;
	margin-right: 0px;
    text-align: right;
}
.social-icons1 {
    display: flex;
    list-style: none;
    padding: 0;
    text-align: center;
    justify-content: center;
}
.social-icons1 li {
    margin: 0;
}
.social-icons1 a {
	margin: 0 5px;
    color: white;
    text-decoration: none;
}
.social-icons1.set2{
	float: right;
	text-align: left;
	padding: 0px 0 0px;
	border: 0;
}
.social-icons1.set2 li{
	display: inline-block;
	margin: 10px 0 0px;
	width: auto;
}
.social-icons1.set2 a{
	display: inline-block;
	margin: 0px 0px 0 10px;
	padding: 0px;
	color: #000;
	overflow: hidden;
}
.social-icons1.set2 a i{
	margin: 0px 10px 0 0;
	padding: 5px;
	font-size: 14px;
	color: #000;
	border-radius: 3px;
	background: var(--secondary-color);
}

/* scroll reveal effect */
.sr-fade-in {
	opacity: 0;
	transform: translateY(20px);
	transition: all 0.6s ease-out;
}
.sr-fade-in.active {
	opacity: 1;
	transform: none;
}

.sr-scale-up {
	opacity: 0;
	transform: scale(0.8);
	transition: all 0.6s ease-out;
}
.sr-scale-up.active {
	opacity: 1;
	transform: scale(1);
}

.sr-slide-in-left {
	opacity: 0;
	transform: translateX(-100px);
	transition: all 0.6s ease-out;
}
.sr-slide-in-left.active {
	opacity: 1;
	transform: translateX(0);
}

.sr-slide-in-right {
	opacity: 0;
	transform: translateX(100px);
	transition: all 0.6s ease-out;
}
.sr-slide-in-right.active {
	opacity: 1;
	transform: translateX(0);
}

.sr-slide-in-top {
	opacity: 0;
	transform: translateY(-100px);
	transition: all 0.6s ease-out;
}
.sr-slide-in-top.active {
	opacity: 1;
	transform: translateY(0);
}

.sr-slide-in-bottom {
	opacity: 0;
	transform: translateY(100px);
	transition: all 0.6s ease-out;
}
.sr-slide-in-bottom.active {
	opacity: 1;
	transform: translateY(0);
}

.alignleft {
	text-align: left!important;
}
.aligncenter {
	text-align: center!important;
}

/* Responsive Design */
@media (max-width: 1000px) {
.desktoponly {display: none;}
.mobileonly {display: block;}
.button1.fullsize,
.button2.fullsize{
	display: block;
	width: 100%;
	text-align: center;
}
.button1,
.button2{
	text-align: center;
}
u.underline1.nounderlineonmobile{
	text-decoration: none;
}
.whatsapp-cta {
	display: flex;
}
header{
	position: relative;
	height: auto;
	padding-bottom: 10px;
}
header .headerinner{
	width: 100%;
}
header .logo{
	
}
header .logo h1 {
	font-size: 24px;
	height: 50px;
}
nav{
	position: sticky;
	top: 0px;
	left: 0;
	right: 0;
	width: 100%;
	height: 45px;
	padding: 0 20px;
	background: var(--primary-color);
	display: flex;
	overflow-x: auto;
	white-space: nowrap;
	justify-content: left;
}
nav::-webkit-scrollbar {
	height: 0;
	display: none;
}
nav ul li {
    margin: 0px auto;
}
nav ul li.mobhide {
    display: none;
}
nav ul li a{
	margin-right: 18px;
    padding: 12px 0px;
	font-weight: normal;
	color: #fff;
}
nav + div{
	margin-top: 0px!important;
}
.bannercontainer1{
	padding: 50px 20px;
	text-align: center;
}
.bannercontainer1 > div{
	float: none;
	width: 100%;
	margin: 0 auto;
	padding: 30px 0px 50px;
}
.bannercontainer1 .heading{
	font-size: 24px;
}
.bannercontainer1 p{
	font-size: 14px;
	line-height: 1.7;
}
.bannercontainer2{
	padding: 50px 20px;
	text-align: center;
}
.bannercontainer2 > div{
	float: none;
	width: 100%;
	margin: 0 auto;
	padding: 30px 0px
}
.bannercontainer2 .heading{
	font-size: 30px;
}
.bannercontainer2 .heading .big{
	font-size: 60px;
}
.bannercontainer2 p{
	font-size: 14px;
	line-height: 1.7;
}
.bannercontainer4 .hero-content {
	width: 100%;
	margin-left: 0;
	padding: 90px 20px 100px;
}
.bannercontainer4 .heading{
	font-size: 40px;
	line-height: 1.5;
}

.full-wrapper {
	padding: 50px 20px 50px;
}

.social-icons1.set2 li{
	margin: 7px 0 0px;
}
.blockcontainer6.alignleft{
	margin-bottom: 20px;
}
.blockcontainer6.alignleft img {
	width: 100%;
	height: auto;
}
.blockcontainer7 .loginbannerblock {
	display: none;
}
.faq-container2 {
	padding: 20px 0px 0;
}
#scrollToTopBtn {
	display: none !important;
}
/* Scrollbar styles for better UX */
.customscrollbar::-webkit-scrollbar {
	height: 0px; /* Scrollbar thickness */
}
}

/* Responsive Design */
@media (max-width: 768px) {
header .logo h1 {
    
}
.stats-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 1fr 1fr;
}
.stats-container .stat-block {
	margin: 0;
}
.stats-container .stat-block:nth-child(1) {
	border-bottom: 1px solid #555;
	border-right: 1px solid #555;
}
.stats-container .stat-block:nth-child(2) {
	border-bottom: 1px solid #555;
}
.stats-container .stat-block:nth-child(3) {
	border-right: 1px solid #555;
}

.blockcontainer1 {
	padding: 20px 0px 0;
}
.blockcontainer5{
	flex-direction: column;
	text-align: center;
}
.blockcontainer5 .left,
.blockcontainer5 .right {
	padding: 0px;
}
.blockcontainer5 .left {
	margin-bottom: 20px;
}
.blockcontainer5 .stats {
	justify-content: center;
}
.blockcontainer6 {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.blockcontainer6 .block {
	width: 100%;
}
.blockcontainer6.alignleft{
	align-items: start;
}
.blockcontainer9 {
	flex-direction: column;
	width: 100%;
	max-width: 100%;
}
.blockcontainer9 .column {
	max-width: 100%;
}
.testimonial-container1 {
	flex-direction: column;
	align-items: center;
	padding: 20px 0;
}
.testimonial-container1 .testimonial {
	max-width: 100%;
}
.testimonial-container1.horizontal{
	flex-direction: row;
	align-items: normal;
}
.testimonial-container1.horizontal .testimonial {
	max-width: 240px;
}
.socialcontainer1 {
	gap: 0;
}
.socialcontainer1 .social-link {
	width: auto;
	padding: 0 5px;
	background: none;
	border: 0;
}
.socialcontainer1 .social-link i {
	margin: 0;
    color: #fff;
	width: auto;
}
.socialcontainer1 .social-text {
	display: none;
}

.timeline::after {
	left: 15px;
}
.timeline-item {
	width: calc(100% - 30px);
	left: 15px;
	border-radius: 0 8px 8px 0;
	transform: none !important;
}
.timeline-item:nth-child(odd) {
	margin-top: 20px;
	left: 17px;
}
.timeline-item:nth-child(even) {
	margin-top: 20px;
	left: 17px;
}
.timeline-item::after {
	left: -12px !important;
	right: auto !important;
}
.form-container1 .heading{
	text-align: center;
}
.social-icons1 {
    display: block;
}
.social-icons1 li {
    float: left;
}
.social-icons1 a {
	margin: 0;
	margin-right: 10px;
}
.social-icons1.set2 {
    display: flex;
}
.social-icons1.set2 li {
    float: none;
}
.sidemenu .social-icons1 {
    display: block;
}
/* Footer Styles */
footer.footer1 {
    display: block;
	margin-top: 0px;
	padding-bottom: 70px;
}
footer.footer1 .footerinner {
	display: block;
}
footer.footer1 .footer-left {
	display: block;
	width: 100%;
	text-align: center;
}
footer.footer1 .footer-left a {
	
}
footer.footer1 .footer-right {
	float: left;
	display: block;
	margin: 0px auto;
	width: 100%;
	text-align: center;
}
	
}

/* Responsive Design */
@media (max-width: 600px) {
.bannercontainer4 .hero-content {
	text-align: left;
}
.bannercontainer4 .heading{
	text-align: left;
}
.bannercontainer4 p{
	text-align: left;
}
}

/* Responsive Design */
@media (max-width: 400px) {

header .logo h1 {
	font-size: 18px;
	line-height: 36px
}
nav{
	padding: 0 10px;
	justify-content: left;
}
.button-container1 .button1,
.button-container1 .button2{
	font-size: 14px;
	padding-left: 10px;
	padding-right: 10px;
}
.button-container1 .button1 i,
.button-container1 .button2 i{
	margin-right: 10px;
}
}
