/* -----------------------------------------------------------------  */

/* home about us section starts  */

.home-about-us-section {
	width: 100%;
	height: auto;
	padding-bottom: 20px;
}

.home-about-us-content {
	padding-top: 60px;
}

.home-about-us-header h2 {
	font-size: 50px;
	font-weight: bold;
	text-align: center;
	color: #04245c;
}

.home-about-us-body {
	display: flex;
	gap: 115px;
}

.home-about-us-body-left-top p {
	color: #767676;
}

.home-about-us-body-left-top h2 {
	color: #04245c;
	font-size: 39px;
	font-weight: bold;
}

/* Tick points layout */
.tick-points {
	display: flex;
	justify-content: space-between;
	gap: 40px;
	margin-top: 25px;
}

.tick-points ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.tick-points li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 17px;
	margin-bottom: 15px;
	color: #767676;
}

.tick-points li img {
	width: 23px;
	height: 23px;
}

/* Buttons style */
.about-buttons {
	margin-top: 30px;
	display: flex;
	align-items: center;
	gap: 20px;
}

.btn-discover {
	background-color: red;
	color: white;
	padding: 12px 20px;
	border-radius: 5px;
	font-weight: bold;
	text-decoration: none;
	transition: 0.3s;
}

.btn-discover:hover {
	background-color: darkred;
}

.btn-call {
	font-size: 20px;
	color: #04245c;
	padding: 12px 20px;
	border-radius: 5px;
	font-weight: bold;
	display: flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	transition: 0.3s;
}

.btn-call img {
	width: 34px;
	height: 34px;
}

/* Responsive  */
/* About Us Section Responsive Styles */
@media (max-width: 1200px) {
	.home-about-us-section {
		height: auto;
		padding: 60px 0;
	}

	.home-about-us-body {
		gap: 60px;
	}

	.home-about-us-body-left-top h2 {
		font-size: 34px;
	}

	.tick-points {
		gap: 30px;
	}
}

@media (max-width: 992px) {
	.home-about-us-body {
		flex-direction: column;
		gap: 40px;
	}

	.home-about-us-body-right {
		order: -1;
		text-align: center;
	}

	.home-about-us-body-right img {
		max-width: 100%;
		height: auto;
	}

	.home-about-us-header h2 {
		font-size: 42px;
	}

	.tick-points {
		flex-direction: column;
		gap: 15px;
	}

	.about-buttons {
		justify-content: center;
	}
}

@media (max-width: 768px) {
	.home-about-us-header h2 {
		font-size: 36px;
	}

	.home-about-us-header img {
		max-width: 80%;
	}

	.home-about-us-body-left-top h2 {
		font-size: 30px;
	}

	.tick-points li {
		font-size: 16px;
	}

	.about-buttons {
		flex-direction: column;
		gap: 15px;
	}

	.btn-discover,
	.btn-call {
		width: 100%;
		text-align: center;
		justify-content: center;
	}
	.home-about-us-content {
		padding-top: 0px;
	}
}

@media (max-width: 576px) {
	.home-about-us-header h2 {
		font-size: 32px;
	}

	.home-about-us-body-left-top h2 {
		font-size: 26px;
	}

	.tick-points li {
		font-size: 15px;
		margin-bottom: 10px;
	}

	.tick-points li img {
		width: 20px;
		height: 20px;
	}

	.btn-call {
		font-size: 18px;
	}

	.btn-call img {
		width: 28px;
		height: 28px;
	}
}
/* Responsive  */
/* home about us section starts  */

/* Modal Form Select 2 CSS  */
.select2-container--default .select2-selection--single {
	border-radius: 15px !important;
	padding: 5px 10px !important;
	height: 37px !important;
}
/* Modal Form Select 2 CSS  */

/* Toggle Button CSS  */
/* Toggle Switch Wrapper */
.switch {
	position: relative;
	display: inline-block;
	width: 50px;
	height: 25px;
}

/* Hide the default checkbox */
.switch input {
	opacity: 0;
	width: 0;
	height: 0;
}

/* The slider */
.slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #8e8e8e;
	transition: 0.4s;
	border-radius: 34px;
}

/* Slider knob */
.slider::before {
	position: absolute;
	content: "";
	height: 20px;
	width: 22px;
	left: 3px;
	bottom: 3px;
	background-color: #04245c;
	transition: 0.4s;
	border-radius: 50%;
}

/* When checked */
.switch input:checked + .slider {
	background-color: white; /* Blue */
}

/* Move the knob */
.switch input:checked + .slider::before {
	transform: translateX(22px);
}
/* Toggle Button CSS  */
/* -----------------------------------------------  */
/* Alertify CSS  */
.alertify-notifier .ajs-message.ajs-error {
	color: white;
}

.alertify-notifier .ajs-message.ajs-success {
	color: white;
	background-color: rgb(75, 181, 67);
}
/* Alertify CSS  */
