:root {
	--primary-font: "Inter", sans-serif;
}

*,
*::before,
*::after {
	box-sizing: border-box;
	padding: 0;
	margin: 0;
	outline: none;
}

/* Works on Firefox */
* {
	scrollbar-width: thin;
	scrollbar-color: red;
}

/* Works on Chrome, Edge, and Safari */
*::-webkit-scrollbar {
	width: 8px;
	padding: 10px;
}

*::-webkit-scrollbar-track {
	background: red;
}

*::-webkit-scrollbar-thumb {
	background-color: #000;
}

::-moz-selection {
	color: #fff;
	background: #000;
	text-shadow: none;
}

::selection {
	color: #fff;
	background: #000;
	text-shadow: none;
}

html {
	font-size: 62.5%;
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}

body {
	font-family: var(--primary-font);
	font-weight: 400;
	font-size: 1.8rem;
	line-height: 110%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: inherit !important;
	font-size: inherit !important;
	margin: 0;
}

ol,
ul,
li {
	list-style: none;
}

a {
	outline: none;
	color: inherit;
	background-color: transparent;
	text-decoration: none;
	transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

button,
input,
optgroup,
select,
textarea {
	font-family: inherit; /* 1 */
	font-size: 100%; /* 1 */
	line-height: 1.15; /* 1 */
	margin: 0; /* 2 */
}

main {
	display: block;
	margin-top: 4rem;
}

section {
	display: flex;
	flex-direction: column;
	width: 100%;
}

img {
	border-style: none;
}

.img-res {
	width: 100%;
	max-width: 100%;
	height: auto;
	border: 0;
	-ms-interpolation-mode: bicubic;
	vertical-align: bottom;
}

/* ! Global css */
.cnt {
	width: 100%;
	margin: 0 auto;
}

.cnt_wp {
	display: flex;
	width: 100%;
}

.cnt_wp_col {
	flex-direction: column;
}

.cnt_1575 {
	max-width: 157.5rem;
	width: 95%;
}

.cnt_1460 {
	max-width: 146rem;
	width: 95%;
}

.cnt_990 {
	max-width: 990px;
	width: 95%;
}

/* ! Header */
.header {
	position: fixed;
	height: 20rem;
	background: transparent;
	width: 100%;
	top: 0;
	z-index: 999;
	display: flex;
	flex-direction: column;
	transition: all 0.3s ease;
}
.header_top {
	height: 5rem;
	background: #fff;
	width: 100%;
	font-size: 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
}
.header_top a {
	text-decoration: underline;
	text-underline-offset: 2px;
}

.header_top a:hover {
	color: #23abe2;
}

.logo {
	width: 15.2rem;
	display: flex;
}

.logo a {
	display: block;
}

.header .cnt {
	height: 100%;
}

.header .cnt_wp {
	height: 100%;
	align-items: center;
	justify-content: space-between;
}

.header_nav {
	display: flex;
}

.header_nav ul {
	display: flex;
	gap: 5rem;
}

.header_nav ul li {
}

.header_nav ul li a {
	color: #fff;
	position: relative;
}

.header_nav ul li a::after {
	content: "";
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 100%;
	height: 2px;
	background: #10141c;
	opacity: 0;
	transition: all 0.3s ease-in-out;
}

.header_nav ul li a:hover::after {
	opacity: 1;
}

.header_nav ul li a:hover {
	color: #10141c;
}

.header_contact {
	display: flex;
}

.header_contact a {
	color: #fff;
	font-weight: 500;
	border-radius: 99px;
	background: #10141c;

	display: flex;
	width: 170px;
	height: 60px;
	justify-content: center;
	align-items: center;
	gap: 12px;
}

.header_contact a:hover {
	background: #23abe2;
}

.hamburger_menu {
	display: none;
}

.header.headerScroll {
	display: none;
}

@media (max-width: 1023px) {
	.header .cnt_wp {
		justify-content: flex-start;
	}

	.header_contact {
		margin-left: auto;
	}

	.hamburger_menu {
		width: 40px;
		height: 40px;
		background: #10141c;
		position: relative;
		border-radius: 100%;
		margin-left: 15px;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.ham {
		cursor: pointer;
		-webkit-tap-highlight-color: transparent;
		transition: transform 400ms;
		-moz-user-select: none;
		-webkit-user-select: none;
		-ms-user-select: none;
		user-select: none;
		width: 35px;
		position: absolute;
	}
	.hamRotate.active {
		transform: rotate(45deg);
	}
	.hamRotate180.active {
		transform: rotate(180deg);
	}
	.line {
		fill: none;
		transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
		stroke: #fff;
		stroke-width: 5.5;
		stroke-linecap: round;
	}
	.ham1 .top {
		stroke-dasharray: 40 139;
	}
	.ham1 .bottom {
		stroke-dasharray: 40 180;
	}
	.ham1.active .top {
		stroke-dashoffset: -98px;
	}
	.ham1.active .bottom {
		stroke-dashoffset: -138px;
	}

	.header_overlay {
		position: fixed;
		height: 100vh;
		background: #fff;
		top: 0;
		left: 0;
		width: 100%;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transition: all 0.3s ease-in-out;
		z-index: 998;
	}

	.header_overlay.active {
		opacity: 1;
		visibility: visible;
		pointer-events: all;
	}

	.header_nav {
		left: 0;
		position: fixed;
		margin: 0;
		width: 100%;
		top: 50%;
		transform: translateY(-50%);

		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transition: all 0.5s ease-in-out;
	}

	.header_nav.active {
		opacity: 1;
		visibility: visible;
		pointer-events: all;
	}

	.header_nav ul {
		display: flex;
		gap: 2rem;
		flex-direction: column;
		text-align: center;
		width: 100%;
	}

	.header_nav ul li a {
		font-size: 3rem;
		line-height: 4rem;
	}
}

/* ! Footer */
.footer {
	width: 100%;
	display: flex;
	justify-content: center;
}

.footer_wp {
	border-radius: 8px;
	background: linear-gradient(292deg, #fdfeff -11.79%, #15ab99 102.47%);
	width: 98.7%;
	display: flex;
	padding: 10rem 0;
}

.llp .footer_wp {
	background: linear-gradient(292deg, #fdfeff -11.79%, #144474 102.47%);
}

.footer_left {
	width: 23.6rem;
}

.footer_left a {
	display: block;
}

.footer_right {
	width: 40%;
	margin-left: auto;
	display: flex;
	flex-direction: column;
	margin-right: 5%;
	position:relative;
}

.footer_title {
	color: #fff;
	font-size: 7rem;
	font-weight: 300;
	line-height: 120%;
}

.footer_btn {
	display: flex;
	margin-top: 4rem;
}

.footer_btn a {
	color: #fff;
	font-size: 1.8rem;
	font-weight: 500;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2rem;
	padding: 0 15px 0 22px;
	height: 60px;
	min-width: 185px;
	border-radius: 99px;
	border: 1px solid #15ab99;
	background: #15ab99;
}

.llp .footer_btn a {
	border: 1px solid #144474;
	background: #144474;
}

.footer_btn a span {
	width: 34px;
	height: 34px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	border-radius: 100%;
	transition: all 0.3s ease-in-out;
}

.footer_contact {
	width: 100%;
	display: flex;
	margin-top: 7rem;
}

.footer_contact_left {
	display: flex;
	flex-direction: column;
	gap: 0.8rem;
}

.footer_contact_left li {
}

.footer_contact_left li a {
	color: #fff;
	font-size: 1.8rem;
	font-weight: 500;
	line-height: 130%;
}

.footer_contact_left li a:hover {
	color: #10141c;
}

.footer_contact_right {
	width: 55%;
	margin-left: auto;
	display: flex;
	gap: 6rem;
}

.footer_contact_right ul {
	display: flex;
	flex-direction: column;
	gap: 0.8rem;
}

.footer_contact_right a {
	color: #fff;
	font-size: 1.8rem;
	font-weight: 500;
	line-height: 120%;
	opacity: 0.8;
}

.footer_contact_right a:hover {
	opacity: 1;
	color: #10141c;
}

.footer_bot {
	display: flex;
	margin-top: 2rem;
}

.footer_social {
	display: flex;
	gap: 2rem;
}

.footer_copy {
	margin-left: auto;
	color: #fff;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 120%;
	opacity: 0.8;
}
/* ! hero */

.hero {
	align-items: center;
}

.hero_wp {
	border-radius: 8px;
	background: linear-gradient(292deg, #fdfeff -11.79%, #15ab99 102.47%);
	width: 98.7%;
	height: calc(100vh - 5rem);
	display: flex;
	position: relative;
	overflow: hidden;
	align-items: center;
}

.llp .hero_wp {
    background: #3c5e83;
    z-index: 1;
}

.hero_img {
	margin-left: auto;
	width: 58%;
	position: absolute;
	right: 0;
	bottom: 0;
	pointer-events: none;
    z-index: -1;
}

.llp .hero_img {
    width: 100%;
    bottom: -15%;
}

.hero_desc {
	display: flex;
	flex-direction: column;
	width: 50%;
	margin-top: 5rem;
}

.hero_title {
	color: #fff;
	font-size: 9rem;
	font-weight: 500;
	line-height: 100%;
}

.hero_txt {
	color: #fff;
	font-size: 2.8rem;
	line-height: 3.5rem;
	margin-top: 3.5rem;
	width: 80%;
	font-weight: 300;
}

.hero__btns {
	display: flex;
	gap: 2rem;
	margin-top: 8rem;
}

.btn_signup {
	display: flex;
	height: 60px;
	min-width: 240px;
	border-radius: 99px;
	background: #fff;
	color: #10141c;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	padding: 0 15px 0 22px;
	font-size: 1.8rem;
	font-weight: 500;
}

.btn_signup span {
	width: 34px;
	height: 34px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #10141c;
	border-radius: 100%;
	transition: all 0.3s ease-in-out;
}

.btn_signup:hover span {
	background: #23abe2;
}

.btn_signup:hover {
	color: #23abe2;
}

.btn_offers {
	color: #fff;
	font-size: 1.8rem;
	font-weight: 500;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2rem;
	padding: 0 15px 0 22px;
	height: 60px;
	min-width: 185px;
	border-radius: 99px;
	border: 1px solid #fff;
}

.btn_offers span {
	width: 34px;
	height: 34px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	border-radius: 100%;
	transition: all 0.3s ease-in-out;
}

.btn_offers:hover {
	background: #10141c;
	border: 1px solid #10141c;
}

/* ! introduction */
.introduction {
	padding: 12rem 0 9rem 0;
}

.introduction_sup {
	color: rgba(16, 20, 28, 0.25);
	text-align: center;
	font-size: 1.4rem;
	font-weight: 600;
	line-height: 2rem;
	margin-bottom: 2rem;
}

.introduction_title {
	color: #10141c;
	text-align: center;
	font-size: 5.8rem;
	font-weight: 500;
	line-height: 7rem;
	margin-bottom: 2.4rem;
}

.introduction_txt {
	color: rgba(16, 20, 28, 0.65);
	text-align: center;
	font-size: 2rem;
	line-height: 3rem;
	padding: 0 5%;
}

.introduction_bot {
	display: flex;
	flex-direction: column;
	width: 100%;
}

.introduction_sep {
	display: flex;
	width: 100%;
	text-align: center;
	justify-content: center;
	padding: 3rem 0 2rem;
}

.introduction_sep span {
	display: flex;
	width: 1px;
	height: 35px;
	background: #15ab99;
}

.introduction_btn {
	display: flex;
	justify-content: center;
}

.introduction_btn a {
	color: #fff;
	font-size: 1.8rem;
	font-weight: 500;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2rem;
	padding: 0 15px 0 22px;
	height: 60px;
	min-width: 185px;
	border-radius: 99px;
	border: 1px solid #15ab99;
	background: #15ab99;
}

.introduction_btn a span {
	width: 34px;
	height: 34px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	border-radius: 100%;
	transition: all 0.3s ease-in-out;
}

.introduction_btn a:hover {
	background: #10141c;
	border: 1px solid #10141c;
}

.introduction_stxt {
	color: #10141c;
	text-align: center;
	font-size: 2.4rem;
	font-weight: 500;
	line-height: 3rem;
	margin-top: 2rem;
}

/* ! offers */
.offers {
	padding: 14rem 0 0rem 0;
	align-items: center;
}

.offers_wp {
	width: 98.7%;
	border-radius: 8px;
	background: linear-gradient(
		180deg,
		rgba(128, 157, 172, 0) 0%,
		rgba(128, 157, 172, 0.1) 100%
	);
	display: flex;
	position: relative;
	padding-bottom: 15rem;
}

.offers_line {
	position: absolute;
	left: 50%;
	top: -15rem;
	width: 55%;
	transform: translateX(-50%);
	display: flex;
	justify-content: center;
	max-width: 120rem;
}

.offers_line svg {
	width: 100%;
	display: block;
}

.offers_title_sup {
	color: rgba(16, 20, 28, 0.25);
	text-align: center;
	font-size: 1.4rem;
	font-weight: 600;
}

.offers_title {
	color: #10141c;
	text-align: center;
	font-size: 5rem;
	font-weight: 500;
	line-height: 6rem;
}

.offers_boxes {
	display: flex;
	width: 100%;
	flex-direction: column;
	margin-top: 7.5rem;
}

.llp .offers_box .photo {
    border-radius: .8rem;
    overflow: hidden;
}

.offers_boxes_main {
	background: #fff;
	border-radius: 8px;
	box-shadow: 0px 4px 30px 2px rgba(0, 0, 0, 0.05);
	padding: 2.5rem 2rem 4rem 2rem;
	position: relative;
	margin-bottom: 4rem;
}

.offers_main_tags {
	display: flex;
	gap: 2rem;
	position: absolute;
	top: -17px;
	width: 100%;
	padding: 0 2rem;
}

.offers_tag {
	color: #fff;
	text-align: center;
	font-size: 1.4rem;
	font-weight: 600;
	padding: 5px 18px;
	background: #10141c;
	width: auto;
	border-radius: 15px;
	display: flex;
}

.offers_tag:nth-child(2) {
	background: #23abe2;
}

.offers_main_top {
	width: 100%;
	border-radius: 8px;
	background: rgba(35, 171, 226, 0.1);
	padding: 3rem 2.5rem 2.5rem 2.5rem;
	display: flex;
	flex-direction: column;
}

.offers_main_top_firstrow {
	display: flex;
	width: 100%;
}

.offers_main_top_firstrow-left {
	width: 30%;
	display: flex;
	flex-direction: column;
}

.offers_main_top_title {
	color: #10141c;
	font-size: 3rem;
	font-weight: 600;
	line-height: 3rem;
}

.offers_main_top_txt {
	color: #10141c;
	font-size: 1.6rem;
	font-weight: 300;
	margin-top: 1rem;
}

.offers_main_top_firstrow-right {
	width: 70%;
	margin-left: auto;
	color: #10141c;
	font-size: 2rem;
	line-height: 2.6rem;
}

.offers_main_top_firstrow-right strong {
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.offers_main_top_secondrow {
	display: flex;
	width: 100%;
	margin-top: 2rem;
	align-items: flex-end;
}

.offers_main_top_secondrow-left {
	width: 30%;

	color: #10141c;
	font-size: 2.4rem;
	font-weight: 600;
	line-height: 2.6rem;
}

.offers_main_top_secondrow-left strong {
	font-size: 3.5rem;
	line-height: 3.5rem;
}

.offers_main_top_secondrow-right {
	width: 70%;
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.offers_main_top_secondrow-right > div {
	border-radius: 22px;
	background: #10141c;

	color: #fff;
	font-size: 1.5rem;
	font-weight: 500;
	padding: 12px 18px;
}

.offers_main_top_secondrow-right strong {
	font-weight: 800;
}

.offers_accordion {
	width: 100%;
	display: flex;
	margin-top: 3rem;
	margin-bottom: 4rem;
}

.accordion {
	width: 100%;
	display: flex;
	flex-direction: column;
}

.accordion-item {
	padding: 1rem 0;
}

.accordion-header {
	cursor: pointer;
	transition: all 0.3s ease-in-out;
	position: relative;
	display: flex;
	align-items: center;
	border-radius: 8px;
	background: #f3f6f7;
	color: #10141c;
	font-size: 2rem;
	font-weight: 500;
	padding: 1.5rem 3rem;
}

.accordion-header::after {
	content: "";
	width: 30px;
	height: 30px;
	background: #fff url("../assets/images/svg/acc_top.png") center center
		no-repeat;
	margin-left: auto;
	border-radius: 100%;
	background-size: 10px;
}

.accordion-header.active::after {
	content: "";
	transform: rotate(180deg);
}

.accordion-header:hover {
	background: #23abe2;
	color: #fff;
}

.accordion-content {
	display: none;
	padding: 3rem 0;
}

.accordion-content_inner {
	width: 100%;
	display: flex;
	justify-content: space-between;
}

.accordion-content_col {
	width: 49%;
}

.accordion_table {
	width: 100%;
	display: flex;
	flex-direction: column;
}

.accordion_table_row {
	width: 100%;
	display: flex;
	padding: 1.5rem 3rem;
	border-radius: 8px;
}

.accordion_table_row:nth-child(even) {
	background: #f3f6f7;
}

.accordion_table_row:first-child {
	background: #fff;
}

.accordion_table_row > div:nth-child(1) {
	width: 25%;
}

.accordion_table_row > div:nth-child(2) {
	width: 75%;
}

.accordion_table_th {
	color: #23abe2;
	font-size: 1.6rem;
	font-weight: 500;
}

.accordion_table_td {
	color: #10141c;
	font-size: 1.6rem;
	font-weight: 400;
	letter-spacing: -0.8px;
}

.offers_btn {
	width: 100%;
	display: flex;
	justify-content: center;
}

.offers_btn a {
	width: 385px;
	height: 60px;
	border-radius: 99px;
	display: flex;
	background: #23abe2;
	color: #fff;
	font-size: 1.8rem;
	font-weight: 500;
	align-items: center;
	justify-content: center;
	gap: 2rem;
}

.offers_btn a:hover {
	background: #10141c;
}

.offers_btn a span {
	width: 34px;
	height: 34px;
	border-radius: 100%;
	display: flex;
	background: #fff;
	align-items: center;
	justify-content: center;
}

.fill_btn_arrow {
	fill: #23abe2;
	transition: all 0.3s ease-in-out;
}

.offers_remaining_boxes {
	display: 100%;
	display: flex;
}

.offers_box {
	width: 100%;
	height: 100%;
	border-radius: 8px;
	border: 1.5px solid #fff;
	background: #fff;
	box-shadow: 0px 4px 30px 2px rgba(0, 0, 0, 0.05);
	padding: 2.5rem 2rem 4rem 2rem;
	position: relative;
	display: flex;
	flex-direction: column;
}

.offers_box_2 .offers_tag:nth-child(2),
.offers_box_3 .offers_tag:nth-child(2) {
	background: #bdc906;
}

.offers_box_top {
	width: 100%;
	height: 19.3rem;
	border-radius: 8px;
	border: 1px solid #fff;
	background: #f8fae6;
	transition: all 0.3s ease-in-out;
	padding: 3rem 2.5rem 2.5rem 2.5rem;
	display: flex;
	flex-direction: column;
}

.offers_box_4 .offers_box_top {
	background: rgba(21, 171, 153, 0.1);
}

.offers_box_top_txt {
	display: flex;
	gap: 2rem;
	margin-top: 1.5rem;
	color: #10141c;
	font-size: 1.6rem;
	font-style: normal;
	font-weight: 400;
}

.offers_box_promo {
	color: #10141c;
	font-size: 2.4rem;
	font-weight: 600;
	line-height: 2.6rem;
	margin-top: auto;
}

.offers_box_promo strong {
	font-size: 3.5rem;
	line-height: 3.5rem;
}

.offers_box_2 .offers_btn,
.offers_box_3 .offers_btn,
.offers_box_4 .offers_btn {
	margin-top: auto;
}

.offers_box_2 .offers_btn a,
.offers_box_3 .offers_btn a {
	background: #bdc906;
}

.offers_box_2 .fill_btn_arrow,
.offers_box_3 .fill_btn_arrow {
	fill: #bdc906;
}

.offers_box_2 .offers_btn a:hover,
.offers_box_3 .offers_btn a:hover {
	background: #10141c;
}

.offers_box_4 .offers_tag:nth-child(2) {
	background: #15ab99;
}

.offers_box_4 .offers_btn a,
.offers_box_4 .offers_btn a {
	background: #15ab99;
}

.offers_box_4 .fill_btn_arrow,
.offers_box_4 .fill_btn_arrow {
	fill: #15ab99;
}

.offers_box_4 .offers_btn a:hover,
.offers_box_4 .offers_btn a:hover {
	background: #10141c;
}

.offers_box_content {
	padding: 3rem 1rem 4rem;
	display: flex;
	flex-direction: column;
}

.offers_box_content_title {
	color: #10141c;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 2.2rem;
}

.offers_box_content_list {
	display: flex;
	flex-direction: column;
	margin-top: 2rem;
}

.offers_box_content_list li {
	color: #10141c;
	font-size: 1.6rem;
	line-height: 2.2rem;
	padding: 2rem 2.5rem 2rem 2.5rem;
	position: relative;
	border-bottom: 1px solid rgba(16, 20, 28, 0.15);
}

.offers_box_content_list li:last-child {
	border-bottom: none;
}

.offers_box_content_list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 26px;
	width: 12px;
	height: 10px;
	background: url("../assets/images/svg/tick_light.png") center center no-repeat;
	background-size: 12px;
}

.offers_box_4 .offers_box_content_list li::before {
	content: "";
	background: url("../assets/images/svg/tick_dark.png") center center no-repeat;
	background-size: 12px;
}

.offers_swiper {
	width: 100%;
	height: 100%;
	padding: 2rem 0;
}

.offers_swiper .swiper-slide {
	flex-shrink: 0;
	width: 100%;
	height: auto;
}

/* ! partners */
.intro_logos {
	width: 100%;
	margin-top: 5rem;
	display: flex;
	justify-content: center;
}

.intro_logos .intro_logos_boxes {
	height: 168px;
	width: 168px;
	border: 1px solid #fff;
	background: #f2f5f7;
	border-radius: 100%;
	margin-left: -40px;
	display: flex;
}

.intro_logos .intro_logos_boxes a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}

.intro_logos .intro_logos_boxes:first-child {
	margin-left: 0;
}

.intro_logos_img {
	width: 90px;
	height: 90px;
}

.intro_logos_img img {
	filter: grayscale(1);
	opacity: 0.5;
	transition: all 0.3s ease-in-out;
}

.intro_logos .intro_logos_boxes a:hover img {
	filter: grayscale(0);
	opacity: 1;
}

.intro_products {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5%;
}

.intro_products--repeat {
    width: 30%;
    position: relative;
}

.intro_products--repeat .photo {
    width: 100%;
    position: relative;
}













/* ! forms */
.formsection {
	padding: 5rem 0;
}

.formsection_left {
	width: 49.21%;
	height: 90vh;
	border-radius: 8px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	padding: 5.5rem 6.5rem 6.5rem 6.5rem;
}

.llp .formsection_left {
    background-position: top;
    padding: 4.5rem 6.5rem 6.5rem 6.5rem;
}

.formsection_left_title {
	color: #fff;
	font-size: 4rem;
	font-weight: 500;
	line-height: 6rem;
}

.llp .formsection_left_title {
    color: #000;
    line-height: 110%;
}

.formsection_left_txt {
	color: #fff;
	font-size: 2rem;
	font-weight: 400;
	line-height: 2.8rem;
	margin-top: auto;
}

.formsection_left_txt span {
	text-decoration: underline;
	text-underline-offset: 4px;
}

/* ! forms umbraco */
.formsection_right {
	border-radius: 8px;
	background: #f5f7f8;
	width: 49.21%;
	margin-left: auto;
	padding: 4.5rem 7.5rem 2.5rem 7.5rem;
}

.formsection_right .umbraco-forms-fieldset {
	border: none;
}

.formsection_right .umbraco-forms-container {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.formsection_right .umbraco-forms-field {
	width: 100%;
	display: flex;
	flex-direction: column;
	position: relative;
}

.formsection_right .umbraco-forms-form .umbraco-forms-field input.text,
.formsection_right .umbraco-forms-form .umbraco-forms-field textarea {
	width: 100%;
	border-radius: 8px;
	border: 1px solid #e9e9e9;
	background: #fff;
	height: 5rem;
	padding: 1rem 2.5rem;
	color: rgba(16, 20, 28, 0.8);
	font-family: var(--primary-font);
	font-size: 1.8rem;
	font-weight: 300;
	line-height: 2rem;
	max-width: 100% !important;
}

.formsection_right .umbraco-forms-form .umbraco-forms-field textarea {
	height: 10.5rem;
}

.formsection_right .umbraco-forms-label {
	color: rgba(16, 20, 28, 0.5);
	font-size: 2rem;
	font-weight: 500;
	line-height: 2rem;
	margin-bottom: 1rem;
}

.formsection_right .umbraco-forms-navigation {
	width: 100%;
	display: flex;
	margin-top: 4rem;
}

.formsection_right .checkboxlist br {
	display: none;
}

.formsection_right .selectyouroffer .checkboxlist {
	width: 100%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 2rem;
}

.formsection_right .selectyouroffer .checkboxlist > div {
	width: 48%;
}

.formsection_right .selectyouroffer .checkbox_wp {
	display: flex;
}

.formsection_right .selectyouroffer .checkbox_wp input {
	width: 18px;
	height: 18px;
}

.formsection_right .selectyouroffer .checkbox_wp label {
	display: flex;
	flex-direction: column;
	width: 80%;

	color: #10141c;
	font-size: 1.8rem;
	font-weight: 600;
	line-height: 2rem;
	margin-left: 1.5rem;
	cursor: pointer;
}

.formsection_right .selectyouroffer .checkbox_wp label .offer-text {
	color: #10141c;
	font-size: 1.4rem;
	font-style: normal;
	font-weight: 400;
	line-height: 1.8rem;
	opacity: 0.4;
	margin-top: 0.4rem;
}

.formsection_right .selectyouroffer .umbraco-forms-field-wrapper {
	display: flex;
	margin-top: 1rem;
}

.formsection_right ::placeholder {
	color: rgba(16, 20, 28, 0.2);
	font-family: var(--primary-font);
	font-size: 1.8rem;
	font-weight: 300;
	line-height: 2rem;
}

.formsection_right .dataconsent .umbraco-forms-label {
	display: none;
}

.formsection_right .dataconsent input {
	width: 18px;
	height: 18px;
}

.formsection_right .dataconsent .umbraco-forms-field-wrapper {
	display: flex;
	gap: 1rem;
}

.formsection_right .umbraco-forms-navigation input {
	display: flex;
	height: 60px;
	min-width: 240px;
	border-radius: 99px;
	background: #15ab99;
	color: #fff;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	padding: 0 15px 0 22px;
	font-size: 1.8rem;
	font-weight: 500;
	border: none;
	transition: all 0.3s ease-in-out;
	cursor: pointer;
}

.llp .formsection_right .umbraco-forms-navigation input {
    background: #144474;
}

.formsection_right .umbraco-forms-navigation input:hover {
	background: #23abe2;
}

.llp .formsection_right .umbraco-forms-navigation input:hover {
	background: #23abe2;
}

.formsection_right .field-validation-error {
	bottom: -19px;
	position: absolute;
	font-size: 1rem;
	color: red;
	width: 100%;
	left: 0px;
}

/* ! testmonials */
.testimonials_wp {
	width: 100%;
	position: relative;
	padding-bottom: 6rem;
}

.swiper-pagination-bullet {
	width: 2.3rem;
	height: 2.3rem;
	border: 2px solid rgba(16, 20, 28, 0.3);
	background: transparent;
	padding: 10px;
	position: relative;
	opacity: 1;
}

.swiper-pagination-bullet::after {
	content: "";
	width: 1.5rem;
	height: 1.5rem;
	background: transparent;
	border-radius: 100%;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.swiper-pagination-bullet.swiper-pagination-bullet-active::after {
	background: #10141c;
}

.testimonials_quote {
	display: flex;
	justify-content: center;
	margin-top: 2rem;
}

.testimonials_quote span {
	width: 6.8rem;
	display: flex;
}

.testimonials_swiper {
	width: 100%;
	height: 100%;
	margin-top: 2rem;
}

.testimonials_box {
	width: 100%;
	display: flex;
	flex-direction: column;
}

.testimonials_box_txt {
	color: rgba(16, 20, 28, 0.65);
	text-align: center;
	font-size: 2.6rem;
	line-height: 4.5rem;
	margin-bottom: 4rem;
}

.testimonials_box_name h4 {
	color: #10141c;
	text-align: center;
	font-size: 2rem;
	font-weight: 500;
	line-height: 3rem;
}

.testimonials_box_name p {
	color: rgba(16, 20, 28, 0.65);
	text-align: center;
	font-size: 2rem;
	font-style: normal;
	font-weight: 400;
	line-height: 3rem;
	display:none;
}

.umbraco-forms-submitmessage {
	font-size: 3rem;
	font-weight: 300;
	line-height: 4rem;
}


/* triber */

.triber main {
    margin-top: 0;
}

.triber .logo {
    width: 25.5rem;
}

.triber .header_nav ul li a {
    color: #1B4169;
}

.triber .header_nav ul li a:hover {
    color: #15AB99;
}

.triber .header_nav ul li a::after {
    background: #15AB99;
}

.triber .header_contact a {
    background: #15AB99;
}

.triber .header_contact a:hover {
    background: #1B4169;
}

.triber .llp .hero_wp {
    background: transparent;
    height: 100vh;
}

.triber .llp .hero_img {
    bottom: auto;
}

.triber .hero_title {
    color: #1B4169;
    font-weight: 300;
}

.triber .hero_title span {
    color: #15AB99;
    font-weight: 600;
}

.triber .hero_txt {
    color: #1B4169;
    font-size: 2rem;
    line-height: 150%;
    letter-spacing: -.1rem;
}

.triber .hero .introduction_btn {
    justify-content: flex-start;
    margin-top: 5rem;
}

.triber .formsection_left {
    justify-content: flex-end;
}

.triber .formsection_left_title {
    font-size: 5rem;
    line-height: 130%;
    color: #fff;
}

.triber .llp .formsection_right .umbraco-forms-navigation input {
    background: #15ab99;
}

.triber .llp .formsection_right .umbraco-forms-navigation input:hover {
    background: #1B4169;
}

.w100 {
    width: 100%;
    position: relative;
}

.inner-functionalities {
    max-width: 98.75%;
    margin: 5rem auto;
    background: linear-gradient(180deg, rgba(128, 157, 172, 0.00) 0%, rgba(128, 157, 172, 0.10) 100%);
    border-radius: .8rem;
}

.bloc-functionalities {
    max-width: 85%;
    margin: 0 auto;
    padding: 5rem 0;
}

.bloc-functionalities .introduction_sup {
    text-align: left;
}

.functionalities-acc-bloc {
    display: flex;
    flex-wrap: wrap;
    gap: 1.4%;
}

.functionalities-acc-repeat {
    width: 49.3%;
    position: relative;
    margin-bottom: 1.4%;
    border: 1px solid rgba(16, 20, 28, 0.20);
    border-radius: .8rem;
    padding: 1.8rem 3rem;
    cursor: pointer;
}

.functionalities-acc-shown {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.functionalities-acc-shown .tit {
    color: #293845;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 130%;
    letter-spacing: -0.054rem;
}

.functionalities-acc-shown .cross {
    color: #1B4169;
    font-size: 4rem;
    font-weight: 300;
    line-height: 80%;
    letter-spacing: -0.12rem;
}

.functionalities-acc-hidden {
    display: none;
    margin-top: 1rem;
}

.functionalities-acc-hidden li {
    position: relative;
    padding-left: 2.5rem;
    color: #293845;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 130%;
    letter-spacing: -0.048rem;
}

.functionalities-acc-hidden li:not(:last-child) {
    margin-bottom: 1rem;
}

.functionalities-acc-hidden li:after {
    content: '';
    background: url('../images/icn-triber-tick.svg') no-repeat;
    width: 1.3rem;
    height: 1.3rem;
    position: absolute;
    top: .3rem;
    left: 0;
    background-size: cover;
}

.triber .footer_wp {
    background: linear-gradient(292deg, #FDFEFF -11.79%, #E5F5FF 102.47%);
}

.triber .footer_title {
    color: #1B4169;
}

.triber .footer_contact_left li a {
    color: #1B4169;
}

.triber .footer_contact_right a {
    color: #1B4169;
}

.triber .footer_copy {
    color: #1B4169;
}


.stickySection{
    padding:9rem 0;
    position:relative;
}

.stickySection_img {
    position: absolute;
    right: 0%;
    width: 29%;
    top: -20%;
}

.stickySection .cnt_wp {
    align-items: flex-start;
}

.stickySection .stickySection_left{
    width: 49.21%;
    padding-right: 30px;
    position: sticky;
    top: 2rem;
}

.sticky_swiper{
    width:100%;
    height:50rem;
}

.sSwiper{
    width:100%;
    height:100%;
}

.sSwiper_img{
    width:100%;
    height:100%;
    display:flex;
    border-radius: 4px;
    border: 1px solid rgba(27, 65, 105, 0.20);
    padding:3rem;
}

.stickySection .stickySection_left .swiper-pagination-vertical.swiper-pagination-bullets, 
.stickySection .stickySection_left .swiper-vertical>.swiper-pagination-bullets {
    top: auto;
    transform: inherit;
    right: -3px;
    bottom: -4px;
}

.stickySection .stickySection_left .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
    background: #1B4169;;
}

.stickySection .stickySection_right{
        width: 45%;
        margin-left:auto;
}

.stickySection_subtitle{
    color: rgba(16, 20, 28, 0.25);
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 2rem;
    margin-bottom: 2rem;
    
}

.stickySection_title{
    color: #10141C;
    font-size: 3rem;
    font-style: normal;
    font-weight: 400;
    line-height: 4rem; 
    letter-spacing: -1.5px;
}

.stickySection_listing{
    display:flex;
    flex-direction:column;
    margin-top:5rem;
}

.stickySection_listing-title{
    color: rgba(16, 20, 28, 0.25);
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 2rem;
    margin-bottom: 2rem;
}

.stickySection_listing ul{
    display: flex;
    flex-wrap: wrap;
    gap: 6%;

}

.stickySection_listing ul li{
    width: 45%;
    display: flex;
    flex-direction: column;
    margin-bottom: 4rem;
}

.benefits_order{
    width: 29px;
    height: 29px;
    display: flex;
    border-radius: 100%;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    background:#1B4169;
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 800;
    letter-spacing: -0.449px;
    color:#fff;
}

.benefits_title{
    color: #10141C;
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: -0.54px;
    margin-bottom:1rem;
}

.benefits_txt{
    color: rgba(16, 20, 28, 0.65);
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: -0.48px;
}

.triber .introduction_title{
    color: #1B4169;
}

.footer_rightshape{
    position:absolute;
}


.arivelaHero .hero_title {
    color:#fff;
}

 .arivelaHero .hero_title span {
    color: #fff;
 }
 
 .arivelaHero .introduction_btn a {
	color: #10141c;
	border: 1px solid #fff;
	background: #fff;
}

 .arivelaHero .introduction_btn a span {
	background: #10141c;
}

 .arivelaHero .introduction_btn a:hover {
	background: #10141c;
	border: 1px solid #10141c;
	color:#fff;
}

 .arivelaHero .introduction_btn a:hover span{
     background: #fff;
 }
 
 .fillarivela{
     fill:#fff;
     	transition: all 0.3s ease-in-out;
 }
 
 .arivelaHero .hero_txt {
    color: #fff;
     
 }
 
  .arivelaHero .introduction_btn a:hover .fillarivela{
     fill: #10141c;
 }
 


/* end of triber */