@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Source+Serif+Pro:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Castoro&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Source+Code+Pro&display=swap");

/* Default styles */

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	outline: 0;
	text-decoration: none;
	background: none;
	border: none;
	transition: 200ms ease;
}
*:hover {
	transition: 200ms ease-in-out;
}
body {
	margin: 0;
	font-family: "DM Sans", sans-serif;
}
a {
		color: inherit;
	text-decoration:  none !important;
}
button {
	cursor: pointer;
	font: inherit;
}
input {
	font: inherit;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 500;
	font-family: "Castoro", serif;
}
p {
	line-height: 1.5;
}

.code {
	font-family: "Source Code Pro", monospace;
	font-weight: 400;
	line-height: unset;
}

/* Header styles */
.header {
	padding: 5px 40px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid rgba(0, 0, 0, 0.14);
	background-color: #fff;
	box-shadow: 0 0 1px 0 rgb(0 0 0 / 11%);
	position: sticky;
	top: 0;
	z-index: 5;
}
.header .logo-wrapper {
	width: 60px;
}
.header .logo-wrapper img {
	width: 100%;
	cursor: pointer;
}
.header .logo-wrapper img:hover {
	opacity: 0.9;
}
.header .desktop-menu {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.header .desktop-menu .dropdown-container {
	position: relative;
	margin-right: 10px;
}
.header .desktop-menu .dropdown-container .toggle {
	display: flex;
	align-items: center;
	cursor: pointer;
	font-weight: 500;
	padding: 20px;
}
.header .desktop-menu .dropdown-container:hover .contents {
	display: block;
}

.header .desktop-menu .dropdown-container .contents {
	position: absolute;
	top: 80%;
	width: fit-content;
	left: 50%;
	margin-left: -125px;
	display: none;
	padding: 20px 25px;
	border: 1px solid rgba(0, 0, 0, 0.14);
	background-color: #fff;
	box-shadow: 0 0 1px 0 rgb(0 0 0 / 11%);
	border-radius: 18px;
}

.header .desktop-menu .dropdown-container .contents p {
	margin-bottom: 15px;
	cursor: pointer;
	white-space: nowrap;
}
.header .desktop-menu .dropdown-container .contents p:hover {
	color: #0ca3c4;
}

.header .desktop-menu .cta a {
	padding: 8px 30px;
	border-radius: 10px;
	background-color: #26b4d4;
	color: #fff;
}

.header .desktop-menu .cta a:hover {
	background-color: #0ca3c4;
}
.header .mobile-menu,
.header .mobile-toggle {
	display: none;
}

@media screen and (max-width: 992px) {
	.header .desktop-menu {
		display: none;
	}
	.header .mobile-menu,
	.header .mobile-toggle {
		display: block;
	}
	.header .mobile-toggle button {
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.header .mobile-toggle button svg {
		font-size: 30px;
	}
	.header .mobile-menu.show {
		right: 0;
		transition: 500ms ease-in-out;
	}
	.header .mobile-menu {
		top: 75px;
		right: -110%;
		width: 100%;
		height: calc(100vh - 75px);
		position: fixed;
		z-index: 6;
		background-color: #fff;
		transition: 500ms ease-in-out;
	}
	.header .mobile-menu .dropdown-container,
	.header .mobile-menu .cta {
		margin-bottom: 15px;
	}
	.header .mobile-menu .cta {
		margin-top: 30px;
	}

	.header .mobile-menu .dropdown-container .toggle {
		display: flex;
		align-items: center;
		width: 100%;
		justify-content: space-between;
		font-size: 18px;
		padding: 20px 60px;
	}
	.header .mobile-menu .dropdown-container .toggle:hover {
		color: #0ca3c4;
		background-color: #f7f8f9;
		transition: 50ms ease-in-out;
	}
	.header .mobile-menu .dropdown-container .contents {
		padding: 25px 60px;
		font-size: 18px;
		background-color: #f5f6f8;
		display: none;
	}
	.header .mobile-menu .dropdown-container .contents.show {
		display: block;
	}
	.header .mobile-menu .dropdown-container .contents p {
		margin-bottom: 20px;
	}
	.header .mobile-menu .dropdown-container .contents p:last-child {
		margin-bottom: 0;
	}
	.header .mobile-menu .cta {
		padding-left: 60px;
		padding-right: 60px;
	}
	.header .mobile-menu .cta a {
		padding: 20px;
		border-radius: 13px;
		background-color: #26b4d4;
		color: #fff;
		width: 100%;
		font-size: 18px;
		display: block;
		text-align: center;
	}

	.header .mobile-menu .cta a:hover {
		background-color: #0ca3c4;
	}
}

@media screen and (max-width: 768px) {
	.header .mobile-menu {
		padding: 25px 0;
	}
	.header {
		padding: 5px 30px;
	}
}
@media screen and (max-width: 425px) {
	.header .mobile-menu .dropdown-container .toggle {
		padding: 20px 35px;
	}
	.header .mobile-menu .dropdown-container .contents {
		padding: 25px 35px;
	}
}

.toggle.link:hover {
	color: #0ca3c4;
}

/* Footer styles */

footer {
	background-color: rgba(0, 0, 0, 0.85);
	color: #fff;
}
.footer {
	max-width: 1200px;
	margin: auto;
	padding: 20px 0 100px;
}
.footer-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 0;
}
.footer-header img {
	width: 140px;
}
.footer-header .input input,
.footer-header .input button {
	padding: 12px;
	border-radius: 10px;
	display: inline-block;
}
.footer-header .input input {
	width: 200px;
	background-color: #fff;
	margin-right: 20px;
}

.footer-header .input button {
	background: #cf1817;
	color: #fff;
	padding: 12px 18px;
}

.footer-header {
	border-bottom: 0.5px solid #f4f5f5bb;
	margin-bottom: 40px;
}

.footer .middle {
	display: flex;
	padding: 10px 20px;
	justify-content: space-between;
	margin-bottom: 60px;
}
.footer .middle .info-container {
	display: flex;
	justify-content: space-between;
	width: 63%;
}
.footer .middle .info-container .info .title {
	font-weight: 600;
	margin-bottom: 10px;
}
.footer .middle .info-container .info .item {
	color: #f4f5f5bb;
	cursor: pointer;
	margin-bottom: 5px;
}
.footer .middle .info-container .info .item:hover {
	color: #fff;
}
.footer .middle .social-container {
	display: flex;
	width: 22%;
	justify-content: space-between;
	align-items: flex-start;
}
.footer .copyright {
	padding-left: 10px;
	font-size: 14px;
	color: #f4f5f5bb;
}
@media screen and (max-width: 1024px) {
	.footer {
		padding: 20px 40px 100px;
	}
}
@media screen and (max-width: 768px) {
	.footer .middle {
		display: block;
	}
	.footer .middle .info-container {
		display: block;
		text-align: center;
		width: 100%;
	}
	.footer .middle .info-container .info {
		margin-bottom: 30px;
	}
	.footer .middle .social-container {
		width: 45%;
		margin: auto;
	}
}
@media screen and (max-width: 425px) {
	.footer-header {
		flex-direction: column;
		justify-content: center;
	}
	.footer-header .input {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	.footer-header .input input {
		margin: 0;
		margin-bottom: 20px;
	}
	.footer-header .input button {
		width: fit-content;
	}
	.footer .middle .social-container {
		width: 100%;
		justify-content: space-around;
	}
}

/* zroc home styles */

.home-container {
	margin: auto;
}
.home-section {
	padding: 60px 85px 80px;
	max-width: 1200px;
	margin: auto;
}

.first-section {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.first-section .info-wrapper h1 {
	font-size: 70px;
	line-height: 75px;
	letter-spacing: -0.4px;
	font-weight: 600;
	position: relative;
	margin-bottom: 40px;
	margin-top: 30px;
}
.first-section .info-wrapper h1 span {
	color: #0ba4c3;
	background-repeat: no-repeat;
	background-size: 300px 100px;
}
.first-section .info-wrapper h1 img {
	position: absolute;
	left: -18px;
	bottom: -14px;
	width: 156px;
	height: 94px;
}
.first-section .info-wrapper p {
	font-size: 18px;
	margin-bottom: 40px;
}
.first-section .info-wrapper p span {
	font-weight: 600;
}
.first-section .info-wrapper button,
.first-section .info-wrapper a {
	padding: 15px 30px;
	width: 280px;
	border-radius: 10px;
	background-color: #26b4d4;
	color: #fff;
	font-size: 18px;
	display: block;
	text-align: center;
}

.first-section .info-wrapper button:hover,
.first-section .info-wrapper a:hover {
	background-color: #0ba4c3;
}
.first-section .img-wrapper,
.first-section .info-wrapper {
	width: 47%;
}
.first-section .img-wrapper img {
	width: 100%;
	object-fit: cover;
}

.second-section {
	background-color: #f7f7f7;
	max-width: unset;
}

.second-section h2 {
	text-align: center;
	font-size: 45px;
	max-width: 700px;
	margin: auto;
	line-height: 50px;
	margin-bottom: 100px;
}
.second-section .scroller {
	/* display: flex;
	justify-content: space-between; */
	max-width: 1200px;
	margin: auto;
	align-items: center;
}
.second-section .scroller .arrow {
	padding: 0 10px;
}
.second-section .scroller .arrow .wrapper {
	border: 1px solid rgba(0, 0, 0, 0.14);
	background-color: #fff;
	box-shadow: 0 0 1px 0 rgb(0 0 0 / 11%);
	height: 30px;
	width: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 100%;
	cursor: pointer;
}
.second-section .scroller .arrow .wrapper:hover {
	transform: scale(1.11);
}
.second-section .scroller .arrow .wrapper svg {
	font-size: 18px;
}
.second-section .scroller .reviews {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	/* overflow: auto;
	-ms-overflow-style: none;
	scrollbar-width: none; */
}
.second-section .scroller .reviews::-webkit-scrollbar {
	display: none;
}
.second-section .scroller .reviews .card {
	width: 31%;
	padding: 20px;
	border-radius: 10px;
	background-color: #fff;
	box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.14);
}
.second-section .scroller .reviews .card img {
	width: 60px;
	height: 60px;
	object-fit: cover;
	border-radius: 500px;
	margin-bottom: 5px;
}
.second-section .scroller .reviews .card p {
	margin-bottom: 8px;
	line-height: 1.5;
}
.second-section .scroller .reviews .card h3 {
	color: #0ba4c3;
	text-align: right;
	font-size: 18px;
}

.third-section {
}
.home-section h2 {
	text-align: center;
	font-size: 45px;
	max-width: 700px;
	margin: auto;
	line-height: 50px;
	margin-bottom: 100px;
}
.home-section h2 span {
	color: #0ba4c3;
}

.third-section .card-wrapper {
	display: grid;
	margin: 0px auto;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
	padding: 0px 110px;
}
.third-section .card-wrapper .card {
	border: 1px solid rgba(0, 0, 0, 0.14);
	background-color: #fff;
	box-shadow: 0 0 1px 0 rgb(0 0 0 / 11%);
	border-radius: 10px;
	overflow: hidden;
}
.third-section .card-wrapper .card .img-wrapper {
	width: 100%;
	height: 220px;
}

.third-section .card-wrapper .card .img-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.third-section .card-wrapper .card .img-wrapper.contain img {
	object-fit: contain;
}

.third-section .card-wrapper .card .text-wrapper {
	padding: 25px 20px 20px;
}
.third-section .card-wrapper .card .text-wrapper h3 {
	font-size: 21px;
	margin-bottom: 10px;
}
.third-section .card-wrapper .card .text-wrapper p {
	line-height: 1.5;
	font-size: 15px;
}
.fourth-section {
	max-width: unset;
	padding-right: 15px;
	padding-left: 15px;
}
.fourth-section h2 {
	text-align: center;
	font-size: 45px;
	max-width: 700px;
	margin: auto;
	line-height: 50px;
	margin-bottom: 50px;
}
.fourth-section .img-wrapper {
	display: flex;
	justify-content: center;
}
.fourth-section .logo-tray {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 15px;
}

.fourth-section .logo-tray .logo {
	width: 170px;
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.fourth-section .logo-tray .logo:hover img {
	transform: scale(1.09);
	transition-duration: 370ms;
}
.fourth-section .logo-tray .logo img {
	width: 120px;
	height: 100%;
	object-fit: contain;
	transition-duration: 370ms;
}

.fifth-section {
	background-color: #26b4d426;
	max-width: unset;
}
.fifth-section h2 {
	margin-bottom: 30px;
}
.home-section .sub-title {
	max-width: 700px;
	margin: auto;
	text-align: center;
	font-size: 18px;
	margin-bottom: 50px;
	line-height: 1.5;
}
.home-section .sub-title span {
	font-weight: 600;
}

.fifth-section .check-list {
	max-width: 600px;
	margin: auto;
}
.fifth-section .check-list .item {
	display: flex;
	margin-bottom: 15px;
}
.fifth-section .check-list .item.last {
	margin-bottom: 20px;
}
.fifth-section .check-list .item svg {
	margin-right: 10px;
	color: #0ba4c3;
}
.fifth-section .check-list .item p {
	font-size: 18px;
	line-height: 1.5;
}
.fifth-section .check-list .item p span {
	font-weight: 600;
	display: block;
	margin-bottom: 5px;
}
.fifth-section .check-list p button,
.fifth-section .check-list p a {
	border-bottom: 1px solid #1b212c;
}
.fifth-section .check-list p button:hover,
.fifth-section .check-list p a:hover {
	border-color: #0ba4c3;
	color: #0ba4c3;
}
.fifth-section .check-list .last-item {
	font-size: 18px;
	text-align: center;
}
.seventh-section h2 {
	margin-bottom: 50px;
}
.seventh-section .sub-title {
	margin-bottom: 30px;
}
.seventh-section button,
.seventh-section a {
	font-weight: 600;
	border-bottom: 1px solid #1b212c;
	font-size: 18px;
	display: block;
	margin: auto;
	margin-bottom: 40px;
}
.seventh-section button:hover,
.seventh-section a:hover {
	border-color: #0ba4c3;
	color: #0ba4c3;
}

.seventh-section .card-wrapper {
	display: grid;
	margin: 0px auto;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 15px;
	margin-bottom: 40px;
}
.seventh-section .card-wrapper .card {
	border: 1px solid rgba(0, 0, 0, 0.14);
	background-color: #fff;
	box-shadow: 0 0 1px 0 rgb(0 0 0 / 11%);
	border-radius: 10px;
	overflow: hidden;
}
.seventh-section .card-wrapper .card:hover {
	box-shadow: 3px 3px 19px -8px rgb(0 0 0 / 27%);
}
.seventh-section .card-wrapper .card .img-wrapper {
	width: 100%;
	height: 200px;
	padding: 30px;
	background-color: darkred;
}
.seventh-section .card-wrapper .card .img-wrapper.two {
	background-color: darkblue;
}
.seventh-section .card-wrapper .card .img-wrapper.three {
	background-color: purple;
}
.seventh-section .card-wrapper .card .img-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}
.seventh-section .card-wrapper .card .img-wrapper.cover img {
	object-fit: cover;
}
.seventh-section .card-wrapper .card .text-wrapper {
	padding: 20px;
	text-align: center;
	height: 427px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.seventh-section .card-wrapper .card .text-wrapper p.title {
	font-size: 21px;
	font-weight: 600;
}
.seventh-section .card-wrapper .card .text-wrapper p {
	margin-bottom: 30px;
}
.seventh-section .card-wrapper .card .text-wrapper p span {
	font-weight: 600;
	font-size: 16px;
}
.seventh-section .card-wrapper .card .text-wrapper p span.code {
	font-weight: unset;
	font-size: 14px;
	line-height: unset;
	display: block;
}
.seventh-section .card-wrapper .card .text-wrapper button,
.seventh-section .card-wrapper .card .text-wrapper a {
	font-weight: unset;
	border: none;
	padding: 8px 30px;
	border-radius: 10px;
	background-color: #26b4d4;
	color: #fff;
	font-size: 16px;
	margin-bottom: 10px;
	display: inline-block;
}
.seventh-section .card-wrapper .card .text-wrapper button:hover,
.seventh-section .card-wrapper .card .text-wrapper a:hover {
	background-color: #0ba4c3;
}

.seventh-section .last-text {
	text-align: center;
	font-size: 18px;
}
.seventh-section .last-text a {
	display: unset;
}
.seventh-section .last-text span {
	border-bottom: 1px solid #1b212c;
	font-weight: 600;
}
.seventh-section .last-text span:hover {
	border-color: #0ba4c3;
	color: #0ba4c3;
	cursor: pointer;
}
.eight-section h2 {
	margin-bottom: 30px;
}
.eight-section .sub-title span {
	font-weight: unset;
	border-bottom: 1px solid #1b212c;
	cursor: pointer;
}
.eight-section .sub-title span:hover {
	border-color: #0ba4c3;
	color: #0ba4c3;
}
.nine-section h2 {
	margin-bottom: 50px;
}

.nine-section .card-wrapper {
	display: grid;
	margin: 0px auto;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 15px;
	margin-bottom: 40px;
}

.nine-section .card-wrapper .card {
	border: 1px solid rgba(0, 0, 0, 0.14);
	background-color: #fff;
	box-shadow: 0 0 1px 0 rgb(0 0 0 / 11%);
	border-radius: 10px;
	overflow: hidden;
	cursor: pointer;
}
.nine-section .card-wrapper .card:hover {
	box-shadow: 3px 3px 19px -8px rgb(0 0 0 / 27%);
}
.nine-section .card-wrapper .card .img-wrapper {
	width: 100%;
	height: 200px;
	padding: 0px;
	background-color: #26b4d426;
}
.nine-section .card-wrapper .card .img-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}
.nine-section .card-wrapper .card .text-wrapper {
	padding: 16px 25px 10px;
}
.nine-section .card-wrapper .card .text-wrapper p {
	font-size: 21px;
	font-weight: 500;
}

.ten-section {
	max-width: unset;
	background-color: #26b4d426;
}
.ten-section h2 {
	margin-bottom: 50px;
}
.ten-section .card-wrapper {
	display: grid;
	margin: 0px auto;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 25px;
	margin-bottom: 40px;
	max-width: 1040px;
	padding: 0 20px;
}
.ten-section .card-wrapper .card {
	border: 1px solid rgba(0, 0, 0, 0.14);
	background-color: #fff;
	box-shadow: 0 0 1px 0 rgb(0 0 0 / 11%);
	border-radius: 10px;
	overflow: hidden;
	cursor: pointer;
}
.ten-section .card-wrapper .card:hover {
	box-shadow: 3px 3px 19px -8px rgb(0 0 0 / 27%);
}
.ten-section .card-wrapper .card .img-wrapper {
	width: 100%;
	height: 200px;
	padding: 0px;
	background-color: #fff;
}
.ten-section .card-wrapper .card .img-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}
.ten-section .card-wrapper .card .text-wrapper {
	padding: 20px 25px;
	height: 251px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.ten-section .card-wrapper .card .text-wrapper .title {
	font-weight: 600;
	font-size: 20px;
	margin-bottom: 10px;
	line-height: 23px;
}
.ten-section .card-wrapper .card .text-wrapper .info {
	margin-bottom: 30px;
}
.ten-section .card-wrapper .card .text-wrapper button,
.ten-section .card-wrapper .card .text-wrapper a {
	padding: 15px 30px;
	width: 100%;
	border-radius: 10px;
	background-color: #26b4d4;
	color: #fff;
	font-size: 18px;
	text-align: center;
}
.ten-section .card-wrapper .card .text-wrapper button:hover,
.ten-section .card-wrapper .card .text-wrapper a:hover {
	background-color: #0ba4c3;
}

.eleven-section h2 {
	margin-bottom: 50px;
}
.eleven-section .card-wrapper {
	display: grid;
	margin: 0px auto;
	grid-template-columns: 1fr 1fr 1fr;
	grid-gap: 15px;
	gap: 25px;
	margin-bottom: 40px;
	padding: 0 35px;
}
/* .eleven-section .card-wrapper .card {
	position: relative;
}
.eleven-section .card-wrapper .card a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
} */
.eleven-section .card-wrapper .card .img-wrapper {
	width: 100%;
	height: 230px;
	padding: 0px;
	border-radius: 19px;
	overflow: hidden;
	margin-bottom: 25px;
	background-color: #26b4d4;
	cursor: pointer;
}
.eleven-section .card-wrapper .card .img-wrapper:hover {
	opacity: 0.9;
}
.eleven-section .card-wrapper .card .img-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.eleven-section .card-wrapper .card h3 {
	font-size: 24px;
	cursor: pointer;
	width: 98%;
	margin: auto;
}
.eleven-section .card-wrapper .card h3:hover {
	color: #0ba4c3;
}
.last-section {
	max-width: unset;
	background-color: #0ba4c3;
	color: #fff;
	padding: 120px 85px;
}

.last-section h2 {
	font-size: 70px;
	line-height: 70px;
	max-width: unset;
	margin-bottom: 30px;
}

.last-section .btn-wrapper {
	display: flex;
	justify-content: center;
}
.last-section .btn-wrapper button,
.last-section .btn-wrapper a {
	padding: 15px 30px;
	width: 280px;
	border-radius: 10px;
	background-color: #fff;
	color: #fff;
	font-size: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.last-section .btn-wrapper button span,
.last-section .btn-wrapper a span {
	font-size: 20px;
	color: #1b212c;
	font-weight: 500;
}
.last-section .btn-wrapper button svg,
.last-section .btn-wrapper a svg {
	margin-left: 10px;
	width: 30px;
}

.last-section .btn-wrapper button:hover svg .st0,
.last-section .btn-wrapper a:hover svg .st0,
.last-section .btn-wrapper button:hover span,
.last-section .btn-wrapper a:hover span {
	fill: #26b4d4;
	color: #26b4d4;
}

@media screen and (max-width: 1024px) {
	.first-section .img-wrapper {
		width: 40%;
	}
	.first-section .info-wrapper {
		width: 55%;
	}
	.third-section .card-wrapper {
		padding: 0 15px;
	}
	.last-section {
		padding: 120px 55px;
	}
	.last-section h2 {
		font-size: 60px;
	}
}

@media screen and (max-width: 992px) {
	.home-section {
		padding: 70px 85px 80px;
	}
	.first-section {
		display: block;
		padding: 80px 100px 80px;
	}
	.first-section .info-wrapper {
		width: 60%;
		margin-bottom: 90px;
	}
	.first-section .img-wrapper {
		width: 76%;
		margin: auto;
	}
	.seventh-section .card-wrapper {
		display: block;
	}
	.seventh-section .card-wrapper .card {
		margin-bottom: 50px;
	}
	.seventh-section .card-wrapper .card br {
		display: block; /* makes it have a width */
		content: ""; /* clears default height */
		margin-top: 14px; /* change this to whatever height you want it */
	}
	.seventh-section .card-wrapper .card .text-wrapper p {
		margin-bottom: 20px;
	}
	.seventh-section .card-wrapper .card .text-wrapper {
		height: unset;
	}
	.ten-section .card-wrapper {
		display: block;
		padding: 0 160px;
	}
	.ten-section .card-wrapper .card {
		margin-bottom: 20px;
	}
	.ten-section .card-wrapper .card .text-wrapper {
		display: block;
		height: unset;
	}
	.eleven-section {
		padding-left: 60px;
		padding-right: 60px;
	}
	.eleven-section .card-wrapper {
		padding: 0 10px;
	}
	.last-section {
		padding: 120px 55px;
	}
}

@media screen and (max-width: 768px) {
	.home-section {
		padding: 70px 40px 80px;
	}
	.home-section h2 {
		margin-bottom: 75px;
	}
	.first-section .info-wrapper {
		width: 85%;
		margin-bottom: 90px;
	}
	.home-section.first-section {
		padding: 80px 110px 80px;
	}
	.first-section .img-wrapper {
		width: 100%;
	}
	.second-section .scroller .reviews {
		display: block;
	}
	.second-section .scroller .reviews .card {
		margin-right: 20px;
		margin-bottom: 30px;
		width: 100%;
	}
	.seventh-section {
		padding-right: 80px;
		padding-left: 80px;
	}
	.eight-section h2 {
		margin-bottom: 50px;
	}
	.fifth-section h2,
	.seventh-section h2,
	.eight-section h2,
	.nine-section h2 {
		margin-bottom: 30px;
	}
	.eight-section .sub-title {
		width: 80%;
	}
	.nine-section {
		padding-right: 80px;
		padding-left: 80px;
	}
	.nine-section .card-wrapper {
		grid-template-columns: 1fr 1fr;
	}
	.last-section h2 {
		font-size: 52px;
		margin-bottom: 30px;
	}
	.fourth-section .img-wrapper img {
		width: 90%;
	}
}

@media screen and (max-width: 425px) {
	.home-section,
	.home-section.first-section,
	.home-section.third-section {
		padding: 70px 30px;
	}
	.home-section.second-section {
		padding: 70px 10px;
	}
	.first-section .info-wrapper {
		width: 100%;
	}
	.first-section .info-wrapper h1 {
		font-size: 42px;
		margin: 0;
		line-height: normal;
		margin-bottom: 25px;
	}
	.first-section .info-wrapper h1 img {
		display: none;
	}
	.first-section .info-wrapper button,
	.first-section .info-wrapper a {
		width: 100%;
	}
	.first-section .info-wrapper p {
		margin-bottom: 20px;
	}
	.home-section h2 {
		font-size: 42px;
		margin-bottom: 42px;
	}
	.second-section h2 {
		padding-right: 20px;
		padding-left: 20px;
	}
	.second-section .scroller .reviews .card {
		padding: 15px;
	}
	.second-section .scroller .reviews .card p {
		font-size: 15px;
	}
	.second-section .scroller .arrow .wrapper {
		height: 23px;
		width: 23px;
	}
	.second-section .scroller .arrow .wrapper svg {
		font-size: 15px;
	}
	.second-section .scroller .arrow {
		padding: 0 5px;
	}
	.third-section .card-wrapper {
		display: block;
		padding: 0;
	}
	.third-section .card-wrapper .card {
		margin-bottom: 25px;
	}
	.third-section h2 {
		margin-bottom: 55px;
	}
	.seventh-section button,
	.seventh-section a {
		border: none;
	}
	.seventh-section button span,
	.seventh-section a span {
		border-bottom: 1px solid #1b212c;
	}
	.seventh-section .card-wrapper .card .text-wrapper button,
	.seventh-section .card-wrapper .card .text-wrapper a {
		text-decoration: none;
	}
	.eight-section .sub-title {
		width: 100%;
	}
	.nine-section .card-wrapper {
		display: block;
	}
	.nine-section .card-wrapper .card {
		margin-bottom: 30px;
	}
	.ten-section .card-wrapper {
		padding: 0;
	}
	.eleven-section .card-wrapper {
		display: block;
	}
	.eleven-section .card-wrapper .card {
		margin-bottom: 50px;
	}
	.home-section h2 {
		line-height: normal;
	}
	.fourth-section .img-wrapper img {
		width: 100%;
	}
}

/* for svg */
.css-vubbuv {
	user-select: none;
	width: 1em;
	height: 1em;
	display: inline-block;
	fill: currentcolor;
	flex-shrink: 0;
	transition: fill 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
	font-size: 1.5rem;
}

/* For Customer Page */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

.customer-container {
	padding: 0 0 0;
	/* font-family: "Montserrat", sans-serif; */
}
.customer-container h2,
.customer-container h3,
.customer-container h1 {
	/* font-family: "Montserrat", sans-serif; */
}
.customer-container p {
	color: #3b434f;
}
.customer-container .section.first {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 200px;
	padding-left: 110px;
	padding-right: 110px;
}
.customer-container .section.first .text-wrapper {
	width: 47%;
}
.customer-container .section h2 {
	margin-bottom: 20px;
	font-size: 40px;
	letter-spacing: -0.2px;
}
.customer-container .section.first .text-wrapper p span {
color: #0ba4c3;
}	
.customer-container .section.first .text-wrapper p {
	line-height: 1.8;
	color: #3b434f;
	margin-bottom: 10px;
}
.customer-container .section.first .img-wrapper {
	height: 300px;
	width: 550px;
	position: relative;
	cursor: pointer;
	box-shadow: 0px 11px 18px 1px rgb(0 55 63 / 20%);
}
.customer-container .section.first .img-wrapper:hover svg {
	opacity: 1;
	transition: 200ms ease-in-out;
}
.customer-container .section.first .img-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
}
.customer-container .section.first .img-wrapper svg {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 90px;
	opacity: 0.6;
	transition: 200ms ease-in-out;
}

.customer-container .section.second {
	text-align: center;
	margin-bottom: 130px;
	padding-left: 110px;
	padding-right: 110px;
}
.customer-container .section.second h2 {
	margin-bottom: 10px;
}
.customer-container .section.second .sub-title {
	margin-bottom: 80px;
}

.customer-container .section.second .wrapper {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
}
.customer-container .section.second .wrapper .item {
	width: 47%;
}
.customer-container .section.second .wrapper p {
	line-height: 1.8;
}
.customer-container .section.second .wrapper h3 {
	width: 125px;
	height: 125px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #a21728;
	border-radius: 100%;
	font-size: 28px;

	color: #fff;
	margin: auto;
	margin-bottom: 30px;
}

.customer-container .section.second .wrapper .item.second h3 {
	background-color: #e4a900;
}
.customer-container .section.second .wrapper .item.third h3 {
	background-color: #4aa560;
}

 
.customer-container .section.second .wrapper .item p span {
	color: #0ba4c3;
}
.customer-container .section.third {
	background-color: #edf0f6;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 50px 60px 40px 90px;
	margin: 0 110px 130px 110px;
}
.customer-container .section.third .img-wrapper {
	height: 320px;
	width: 480px;
}
.customer-container .section.third .img-wrapper img {
	height: 100%;
	width: 100%;
	object-fit: contain;
}
.customer-container .section.third .text-wrapper {
	width: 49%;
}
.customer-container .section.third .text-wrapper h3 {
	font-weight: 800;
	margin-bottom: 20px;
	font-size: 21px;
	text-transform: uppercase;
	font-family: "Montserrat", sans-serif;
}
.customer-container .section.third .text-wrapper p {
	line-height: 1.8;
	margin-bottom: 20px;
}
.customer-container .section.third .text-wrapper button,
.customer-container .section.third .text-wrapper a {
	padding: 18px 60px;
	color: #fff;
	font-weight: 600;
	background-color: #26b4d4;
	border-radius: 500px;
	display: inline-block;
}

.customer-container .section.fourth {
	background-color: #0ba4c3;
	padding: 80px 110px;
	color: #fff;
	text-align: center;
	margin-bottom: 100px;
	background-size: contain;
}
.customer-container .section.fourth h2 {
	font-size: 54px;
	margin-bottom: 10px;
}
.customer-container .section.fourth p {
	color: #fff;
	margin-bottom: 40px;
	font-size: 18px;
}

.customer-container .section.fourth button,
.customer-container .section.fourth a {
	padding: 18px 60px;
	color: #fff;
	font-weight: 600;
	border: 1px solid #fff;
	border-radius: 500px;
	display: inline-block;
}

.customer-container .section.fourth button:hover,
.customer-container .section.fourth a:hover {
	color: rgb(235, 235, 235);
	border-color: rgb(235, 235, 235);
}

.customer-container .section.fifth {
	padding-left: 110px;
	padding-right: 110px;
	margin-bottom: 130px;
}
.customer-container .section.fifth h2 {
	text-align: center;
	margin-bottom: 50px;
}
.customer-container .section.fifth .dropdown-container .dropdown {
	width: 80%;
	margin: auto;
	border: 1px solid rgba(0, 0, 0, 0.125);
	border-radius: 7px;

	margin-bottom: 30px;
}
.customer-container .section.fifth .dropdown-container .dropdown .toggle {
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	font-size: 18px;
	font-weight: 600;
	letter-spacing: -0.2px;
	border-bottom: 1px solid rgba(0, 0, 0, 0);
	padding: 15px 40px 15px;
}
.customer-container .section.fifth .dropdown-container .dropdown .toggle p {
	line-height: normal;
}
.customer-container .section.fifth .dropdown-container .dropdown .toggle .icon {
	display: flex;
}
.customer-container
	.section.fifth
	.dropdown-container
	.dropdown
	.toggle
	.icon
	svg {
	transition: 200ms ease-in-out;
}
.customer-container
	.section.fifth
	.dropdown-container
	.dropdown
	.toggle
	.icon.rotate
	svg {
	transition: 200ms ease-in-out;
	transform: rotate(180deg);
}

.customer-container .section.fifth .dropdown-container .dropdown .content {
	font-weight: 500;
	letter-spacing: -0.2px;
	height: 0;
	transition: 200ms ease-in-out;
	overflow: hidden;
	padding: 0 40px;
}
.customer-container .section.fifth .dropdown-container .dropdown .content.show {
	height: auto;
	padding: 20px 40px;
	transition: 200ms ease-in-out;
}
.customer-container .section.fifth .dropdown-container .dropdown .toggle.show {
	border-bottom-color: rgba(0, 0, 0, 0.125);
	background-color: #26b4d426;
}
.customer-container
	.section.fifth
	.dropdown-container
	.dropdown
	.toggle.toggle.show
	p {
	color: #0ca3c4;
}
.customer-container .section.fifth .dropdown-container .dropdown .content p {
	margin-bottom: 20px;
	line-height: 1.8;
}
.customer-container
	.section.fifth
	.dropdown-container
	.dropdown
	.content
	button,
.customer-container .section.fifth .dropdown-container .dropdown .content a {
	padding: 15px 30px;
	font-weight: 500;
	border-radius: 10px;
	background-color: #26b4d4;
	color: #fff;
	display: inline-block;
}

.customer-container .section.sixth {
	margin-bottom: 0;
}
.customer-container .section.sixth h2 {
	margin-bottom: 40px;
}
/* LightBox Css */

.lightbox-container {
	display: none;
	align-items: center;
	justify-content: center;
	background-color: rgb(0 55 63 / 20%);
	position: fixed;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.75);
	width: 100%;
	height: 100%;
	z-index: 10;
}
.lightbox-container.show {
	display: flex;
}
.lightbox-container .close-button {
	position: fixed;
	top: 30px;
	right: 30px;
}
.lightbox-container .close-button svg {
	color: #fff;
	font-size: 28px;
}

@media screen and (max-width: 1024px) {
	.customer-container .section.first,
	.customer-container .section.second,
	.customer-container .section.fourth,
	.customer-container .section.fifth {
		padding-left: 60px;
		padding-right: 60px;
		margin-bottom: 120px;
	}
	.customer-container .section.sixth {
		margin-bottom: 0;
	}
	.customer-container .section.third {
		margin-right: 60px;
		margin-left: 60px;
		padding: 30px;
	}
	.customer-container .section.third .img-wrapper,
	.customer-container .section.third .text-wrapper {
		width: 47%;
	}
	.customer-container {
		padding: 0 0 0;
	}
	.customer-container .section.first .img-wrapper {
		height: 280px;
		width: 400px;
	}
	.customer-container .section.first .text-wrapper {
		width: 50%;
	}
	.customer-container .section.second .wrapper .item {
		width: 30%;
	}
}

@media screen and (max-width: 768px) {
	.customer-container {
		padding: 0 0 0;
	}
	.customer-container .section.first {
		display: block;
	}
	.customer-container .section.first .text-wrapper {
		width: 100%;
		margin-bottom: 50px;
	}
	.customer-container .section.first .img-wrapper {
		width: 100%;
		height: 350px;
	}
	.customer-container .section.second .sub-title {
		margin-bottom: 50px;
	}
	.customer-container .section.fifth .dropdown-container .dropdown {
		width: 100%;
	}
}
@media screen and (max-width: 425px) {
	.customer-container {
		padding: 0 0 0;
	}
	.customer-container .section.first,
	.customer-container .section.second,
	.customer-container .section.fourth,
	.customer-container .section.fifth {
		padding-left: 20px;
		padding-right: 20px;
		margin-bottom: 100px;
	}
	.customer-container .section.first .img-wrapper {
		height: 250px;
	}
	.customer-container .section.second .sub-title {
		line-height: 1.8;
	}
	.lightbox-container iframe {
		width: 350px;
		height: 250px;
	}
	.customer-container .section.second .wrapper {
		display: block;
	}
	.customer-container .section.second .wrapper .item {
		width: 100%;
		margin-bottom: 40px;
	}
	.customer-container .section.third {
		padding-top: 20px;
		padding-bottom: 90px;
		padding-left: 20px;
		padding-right: 20px;
		margin: 0;
		display: block;
	}

	.customer-container .section.third .text-wrapper,
	.customer-container .section.third .img-wrapper {
		width: 90%;
		margin: auto;
	}
	.customer-container .section.fourth h2 {
		font-size: 36px;
	}
	.customer-container .section.fourth p {
		margin-bottom: 30px;
	}
	.customer-container .section.fifth h2 {
		font-size: 28px;
	}
	.customer-container .section.fifth .dropdown-container .dropdown .toggle,
	.customer-container .section.fifth .dropdown-container .dropdown .content,
	.customer-container
		.section.fifth
		.dropdown-container
		.dropdown
		.content.show {
		padding-left: 20px;
		padding-right: 20px;
	}
	.customer-container .section.fifth .dropdown-container .dropdown .toggle {
		font-size: 16px;
		font-weight: 500;
	}
	.customer-container .section.sixth {
		margin-bottom: 0;
	}
}

/* Accelerator page styles */
.acc-container .first-section .info-wrapper h3 {
	font-size: 28px;
}
.acc-container .fifth-section {
	background: none;
	/* max-width: 1200px; */
	padding: 0;
	align-items: stretch;
	padding-bottom: 60px;
}
.acc-container .first-section .info-wrapper {
	background-color: #26b4d426;
	padding-left: 180px;
	/* border-bottom-right-radius: 60px; */
	border-top-right-radius: 180px;
	display: flex;
	align-items: center;
}
.acc-container .first-section .img-wrapper svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 90px;
    opacity: 0.6;
    transition: 200ms ease-in-out;
    color:white;
} 
.acc-container .first-section .img-wrapper {
	padding: 60px 200px 0 0;
    position: relative;
    cursor: pointer;
}
.acc-container .first-section .info-wrapper p {
	margin-bottom: 0;
}
.acc-container .fifth-section .check-list .item p {
	margin-bottom: 0;
}
.acc-container .fifth-section .check-list .item {
	margin-bottom: 20px;
}
.acc-container .fifth-section .check-list {
	margin-bottom: 30px;
}
.acc-container .first-title {
	margin-bottom: 0;
}

.acc-container .first-section .info-wrapper .first-main-sub-title {
	margin-bottom: 35px;
}
.acc-container .first-section .info-wrapper .sub-title-first {
	margin-bottom: 30px;
}
.acc-container .first-section .info-wrapper .sub-title-first span {
	background-color: #26b4d4;
	color: white;
	padding: 4px;
	font-size: 14px;
	border-radius: 5px;
	margin-right: 5px;
}

.acc-container .first-section .info-wrapper button,
.acc-container .first-section .info-wrapper a {
	width: 230px;
}
.third-section .card-wrapper .card .img-wrapper.top {
	display: flex;
	justify-content: center;
}
.third-section .card-wrapper .card .img-wrapper.top img {
	object-position: top;
	width: 90%;
	margin: auto;
}
.acc-container.customer-container {
	font-family: unset;
}
.acc-container.customer-container h2,
.acc-container.customer-container h3,
.acc-container.customer-container h1 {
	font-family: "Castoro", serif;
}
.acc-container.customer-container .section.fifth h2 {
	margin-bottom: 3px;
	font-weight: 500;
	font-size: 45px;
}
.acc-container.customer-container .third-sub-title {
	text-align: center;
	font-size: 18px;
	margin-bottom: 50px;
}

.acc-container.customer-container
	.section.fifth
	.dropdown-container
	.dropdown
	.content
	p
	span,
.acc-container.customer-container
	.section.fifth
	.dropdown-container
	.dropdown
	.content
	p
	b {
	font-weight: 600;
}
.acc-container.customer-container
	.section.fifth
	.dropdown-container
	.dropdown
	.content
	p
	a {
	text-decoration: underline;
	color: #26b4d4;
}

@media screen and (max-width: 1024px) {
	.acc-container .first-section .img-wrapper {
		padding: 60px 0;
		padding-right: 60px;
	}
	.acc-container .first-section .info-wrapper {
		padding-left: 120px;
	}
}
@media screen and (max-width: 768px) {
	.acc-container .first-section .info-wrapper {
		padding: 0;
		background: none;
	}
}

@media screen and (max-width: 425px) {
	.acc-container.customer-container .section.fifth h2 {
		font-size: 36px;
	}
}

/* Learn Page styles */

.learn-container .home-section.first-section .info-wrapper h1 {
	font-weight: 500;
	margin-top: 0;
	line-height: 1.15;
	font-size: 56px;
}

.learn-container .first-section .info-wrapper button {
	width: 100%;
}

.learn-container .home-section.first-section .info-wrapper .top-sub-title {
	font-size: 18px;
	text-transform: uppercase;
	color: #26b4d4;
	font-weight: 600;
	margin-bottom: 25px;
}

.learn-second-section {
	background-color: #e6f9f7;
	padding: 60px 165px 80px;
}

.learn-second-section .check-list {
}
.learn-second-section .check-list .item {
	display: flex;
	margin-bottom: 15px;
}
.learn-second-section .check-list .item.last {
	margin-bottom: 20px;
}
.learn-second-section .check-list .item svg {
	margin-right: 10px;
	color: #0ba4c3;
}
.learn-second-section .check-list .item p {
	font-size: 18px;
	line-height: 1.5;
}
.learn-second-section .check-list .item p span {
	font-weight: 600;
	display: block;
	margin-bottom: 5px;
}
.learn-second-section .check-list p button {
	border-bottom: 1px solid #1b212c;
}
.learn-second-section .check-list p button:hover {
	border-color: #0ba4c3;
	color: #0ba4c3;
}
.learn-second-section .check-list .last-item {
	font-size: 18px;
	text-align: center;
}
.learn-second-section h1 {
	font-size: 52px;
	margin-bottom: 60px;
}
.learn-second-section .flex-container {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-gap: 80px;
}
.learn-second-section .flex-container .topic-based svg {
	font-size: 64px;
	margin-bottom: 15px;
	color: #26b4d4;
}
.learn-second-section .flex-container .topic-based h3 {
	font-size: 28px;
	font-weight: 400;
	margin-bottom: 50px;
}
.learn-second-section .flex-container .topic-based p {
	font-size: 18px;
}

.learn-third {
	background-color: #043d4a;
	color: #fff;
	padding: 60px 205px 80px;
}

.learn-third .wrapper {
	display: flex;
	padding: 40px 0;
	width: 100%;
	margin-bottom: 0;
}
.learn-third .wrapper .circle {
	margin-right: 100px;
	font-size: 28px;
	width: 60px;
	height: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #ec3944;
	border-radius: 400px;
}
.learn-third .wrapper .contents {
	flex: 1;
}
.learn-third .wrapper .contents .item.top {
	margin-bottom: 50px;
	border: none;
	padding: 0;
	height: 60px;
}
.learn-third .wrapper .contents .item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 30px;
}
.learn-third .wrapper .contents .item h3 {
	font-size: 28px;
}
.learn-third .wrapper .contents .item h3:hover {
	color: #0ca3c4;
}
.learn-third .wrapper .contents .item .status {
	background: #ec3944;
	display: flex;
	align-items: center;
	font-size: 14px;
	height: 20px;
	padding: 0 5px;
	border-radius: 5px;
}
.learn-third .wrapper .contents .item .status.free {
	background-color: #26b4d4;
}
.learn-third .wrapper .contents .item {
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	padding: 12px 10px;
	padding-top: 0;
}
.learn-third .wrapper .contents .item .title {
	display: flex;
	align-items: center;
	font-size: 20px;
}
.learn-third .wrapper .contents .item .title svg {
	margin-right: 10px;
}
.learn-third .wrapper .contents .item .desc {
	color: rgba(255, 255, 255, 0.7);
}

.learn-last {
	max-width: 1200px;
	text-align: center;
	padding: 60px 125px 80px;
	margin: auto;
}
.learn-last .top-title {
	color: #26b4d4;
	margin-bottom: 10px;
}
.learn-last h2 {
	font-size: 48px;
	margin-bottom: 65px;
}
.autors {
	display: flex;
	justify-content: space-between;
}

.autors .item {
	width: 46%;
	display: flex;
}

.autors .item img {
	width: 75px;
	height: 75px;
	border-radius: 500px;
	object-fit: cover;
	margin-right: 20px;
}

.autors .item .text {
	text-align: left;
}
.autors .item .text h3 {
	font-size: 25px;
	margin-bottom: 8px;
}

@media screen and (max-width: 768px) {
	.learn-third {
		padding: 60px 105px 80px;
	}
	.learn-last {
		padding: 60px;
	}
	.learn-second-section {
		padding: 60px;
	}
}
@media screen and (max-width: 768px) {
	.learn-second-section .flex-container {
		display: block;
	}
	.learn-third .wrapper {
		display: block;
	}
	.learn-third .wrapper a {
		display: block;
	}
	.learn-third,
	.learn-last {
		padding: 70px 30px;
	}
	.learn-third .wrapper .circle {
		margin-bottom: 30px;
	}
	.autors {
		display: block;
	}
	.autors .item {
		display: block;
		width: 100%;
		margin-bottom: 30px;
	}
	.autors .item h3 {
		text-align: center;
	}
}
