/* ///////////////////// */
/* Hero (start)          */
/* ///////////////////// */
.about-hero {
	min-height: min(650px, 100dvh);
	max-height: 100dvh;
	align-items: center;
    display: flex;
	overflow: hidden;
}

.about-hero .container { 
	position: relative;
}

.about-hero__body {
	width: 70%;
}

.about-hero__content {
	display: flex; gap: 30px;
	flex-direction: column;
}

.about-hero__title {
	font-weight: 400;
	font-size: 60px;
	line-height: 1;
	color: var(--white);
}

.about-hero__title span {
	font-size: 70px;
}

.about-hero__text {
	font-weight: 600;
	font-size: 20px;
	line-height: 1.2;
	color: var(--white);
}

.about-hero__button { max-width: max-content; }

.about-hero__media {
	position: absolute;
	top: 0; right: 0;
	pointer-events: none;
}
/* ///////////////////// */
/* Hero (end)            */
/* ///////////////////// */



/* ///////////////////// */
/* company-stats (start) */
/* ///////////////////// */
.company-stats .stat { background-color: transparent; }
/* ///////////////////// */
/* company-stats (end)   */
/* ///////////////////// */


/* /////////////////////// */
/* company-history (start) */
/* /////////////////////// */
.company-history .container {
	display: flex; gap: 40px;
	flex-direction: column;
}

.company-history__title {
	font-weight: 400;
	font-size: 50px;
	line-height: 1;
	color: var(--white);
	text-align: center;
}

.company-history__title span {
	font-size: 65px;
}

.company-history__content {
	font-weight: 400;
	font-size: 32px;
	line-height: 1.2;
	color: var(--white);
}

.company-history__text {
	font-weight: 400;
	font-size: 24px;
	line-height: 1.2;
	color: var(--white);
}

.company-history__slider {
	position: relative;
	width: 100%;
	overflow: hidden;
	border-radius: 24px;
}

.company-history__slider-wrapper {
	display: flex;
}

.company-history__slide {
	flex-shrink: 0;
	width: 100%;
}

.company-history__slide-image {
	display: block;
	width: 100%;
	height: 400px;
	object-fit: cover;
	border-radius: 24px;
}

.company-history__navigation {
	pointer-events: none;
}

.company-history__arrow {
	position: absolute;
	top: 50%;
	z-index: 4;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 62px;
	height: 62px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background-color: #f4f1e8;
	cursor: pointer;
	transform: translateY(-50%);
	transition:
		background-color 0.2s ease,
		opacity 0.2s ease;
	pointer-events: auto;
}

.company-history__arrow--prev {
	left: 18px;
}

.company-history__arrow--next {
	right: 18px;
}

.company-history__arrow:hover {
	background-color: #0f5bff;
}

.company-history__arrow:active {
	transform: translateY(-50%) scale(0.95);
}

.company-history__arrow.swiper-button-disabled {
	opacity: 0.5;
	cursor: default;
}

.company-history__arrow-icon {
	position: relative;
	display: block;
	width: 16px;
	height: 16px;
	color: #1d2b53;
	transition: color 0.2s ease;
}

.company-history__arrow:hover .company-history__arrow-icon {
	color: #ffffff;
}

.company-history__arrow-icon::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 14px;
	height: 14px;
	border-top: 2px solid currentColor;
	border-right: 2px solid currentColor;
	transform-origin: center;
}

.company-history__arrow--prev .company-history__arrow-icon::before {
	transform: translate(-35%, -50%) rotate(-135deg);
}

.company-history__arrow--next .company-history__arrow-icon::before {
	transform: translate(-65%, -50%) rotate(45deg);
}

.company-history__pagination {
	position: absolute;
	left: 50% !important;
	bottom: 14px;
	z-index: 4;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: calc(100% - 96px);
	transform: translateX(-50%);
	padding-inline: 10vw;
}

.company-history__pagination .swiper-pagination-bullet {
	flex: 1 1 0;
	width: auto;
	height: 10px;
	margin: 0 !important;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.45);
	opacity: 1;
	transition: background-color 0.2s ease, opacity 0.2s ease;
}

.company-history__pagination .swiper-pagination-bullet-active {
	background: #ffffff;
	opacity: 1;
}

.company-history__slider::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
	height: 72px;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0));
	pointer-events: none;
}

.company-history__navigation,
.company-history__pagination {
	z-index: 4;
}

.company-licenses__slider {
	position: relative;
	overflow: hidden;
}

.company-licenses__slider-wrapper {
	display: flex;
}

.company-licenses__slide {
	flex-shrink: 0;
}

.company-licenses__card {
	display: block;
	padding: 8px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.08);
	text-decoration: none;
}

.company-licenses__image {
	display: block;
	width: 100%;
/* 	height: 550px; */
	max-height: 90dvh;
	object-fit: cover;
	border-radius: 14px;
}

.company-licenses__controls {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 16px;
}

.company-licenses__arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	padding: 0;
	border: 2px solid #ffffff;
	border-radius: 50%;
	background: transparent;
	cursor: pointer;
	transition:
		background-color 0.2s ease,
		opacity 0.2s ease,
		transform 0.2s ease;
}

.company-licenses__arrow:hover {
	background: rgba(255, 255, 255, 0.45);
}

.company-licenses__arrow:active {
	transform: scale(0.96);
}

.company-licenses__arrow-icon {
	position: relative;
	display: block;
	width: 14px;
	height: 14px;
	color: #ffffff;
}

.company-licenses__arrow-icon::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 12px;
	height: 12px;
	border-top: 3px solid currentColor;
	border-right: 3px solid currentColor;
}

.company-licenses__arrow--prev .company-licenses__arrow-icon::before {
	transform: translate(-30%, -50%) rotate(-135deg);
}

.company-licenses__arrow--next .company-licenses__arrow-icon::before {
	transform: translate(-70%, -50%) rotate(45deg);
}

.company-licenses__arrow.swiper-button-disabled {
	opacity: 0.4;
	cursor: default;
	pointer-events: none;
}

/* /////////////////////// */
/* company-history (end)   */
/* /////////////////////// */


/* /////////////////////// */
/* company-mission (start) */
/* /////////////////////// */
.company-mission__grid {
    display: grid; gap: 28px;
    grid-template-columns: 0.92fr 1.08fr;
    align-items: stretch;
}

.company-mission__logo svg { max-width: 100%; }


.company-mission__content {
	display: flex;
    flex-direction: column;
    justify-content: center;
}

.company-mission__title {
	font-weight: 500;
    font-size: 50px;
    line-height: 1.08;
    color: var(--white);
	margin-bottom: 40px;
}

.company-mission__title span {
	font-size: 65px;
}

.company-mission__text {
	font-size: 36px;
    line-height: 1.4;
    font-weight: 400;
    color: var(--white);
}

@media screen and (max-width: 0px) {}
/* ///////////////////// */
/* company-mission (end) */
/* ///////////////////// */



/* ////////////////////////// */
/* company-advantages (start) */
/* ////////////////////////// */
.company-advantages .container,
.company-advantages__header {
	display: flex; gap: 40px;
	flex-direction: column;
} 

.company-advantages__header { max-width: 70%; }

.company-advantages__title {
	font-size: 50px;
    line-height: 1;
    font-weight: 400;
    color: var(--white);
}

.company-advantages__title span {
	font-size: 65px;
}

.company-advantages__text {
	font-size: 20px;
    line-height: 1.2;
    font-weight: 400;
    color: var(--white);
}

.company-advantages__grid {
	display: grid; gap: 20px;
	grid-template-columns: repeat(4, 1fr);
}

.company-advantages__card {
	display: flex; gap: 45px;
	flex-direction: column;
	padding: 20px;
	border-radius: var(--radius-lg);
	background-color: var(--white-a15);
}

.company-advantages__card-title {
	font-size: 20px;
    line-height: 1.2;
    font-weight: 400;
    color: var(--white);
}
/* ////////////////////////// */
/* company-advantages (end)   */
/* ////////////////////////// */



/* //////////////////////// */
/* company-licenses (start) */
/* //////////////////////// */
.company-licenses__title {
    font-weight: 400;
	font-size: 50px;
    line-height: 1;
    color: var(--white);
	margin-bottom: 40px;
}
/* //////////////////////// */
/* company-licenses (end)   */
/* //////////////////////// */



@media (max-width: 1200px) {
	.company-mission__grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 991px) {
	.company-history__slide-image {
		height: 280px;
	}

	.company-history__pagination {
		width: calc(100% - 80px);
	}

}

@media (max-width: 767px) {
	.company-history__slider,
	.company-history__slide-image {
		border-radius: 18px;
	}

	.company-history__slide-image {
		height: 220px;
	}

	.company-history__arrow {
		width: 36px;
		height: 36px;
	}

	.company-history__arrow--prev {
		left: 12px;
	}

	.company-history__arrow--next {
		right: 12px;
	}

	.company-history__pagination {
		bottom: 10px;
		width: calc(100% - 64px);
		gap: 6px;
	}

	.company-history__pagination .swiper-pagination-bullet {
		height: 3px;
	}

}

@media (max-width: 575px) {
	.company-history__slide-image {
		height: 180px;
	}
}