.link {
	display: inline-flex;
	align-items: center;
	justify-content: end;
    column-gap: 18px;

	width: 152px;
	height: 30px;

	padding: 6px 0;
    padding-right: 14px;

	color: var(--white);
	font-size: 14px;
	font-weight: 700;

    border-radius: 30px;
	background-color: var(--primary);
}

.link:hover {
	box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.link--mobile {
    display: none;
}

.phone {
	display: flex;

	color: var(--dark-gray-secondary);
	font-size: 16px;
	font-weight: 600;
}

.phone svg:first-child {
	margin-right: 11px;
}

.phone svg:last-child {
	margin-left: 8px;
	margin-top: 6px;
}

.phone:hover {
	color: var(--primary);
}

.burger {
	width: 56px;
	height: 47px;
}

.overlay {
	position: fixed;
	inset: 0;
	background-color: rgba(58, 63, 68, 0.7);
	opacity: 0;
	visibility: hidden;
	transition: 0.3s;
	z-index: 998;
}

.overlay--active {
	opacity: 1;
	visibility: visible;
}

.stop-scroll {
	overflow: hidden;
}

.close {
	display: none;
	position: absolute;
	top: 0;
	right: 10px;
}

.close--active {
	display: block;
}

.close > img {
	width: 25px;
	aspect-ratio: 1;
}

.section-top {
    display: flex;
    align-items: end;
    justify-content: space-between;
}

.title {
    color: var(--primary);
    font-size: 40px;
    font-weight: 700;
}

.title span {
    color: var(--dark-gray);
}

.accordion {
    display: none;
}


/* header */

.header__top {
	padding: 25px 0;

    background-color: var(--white);
}

.header__top-text {
	display: block;

	color: var(--dark-gray-secondary);
	font-size: 13px;
	font-weight: 700;
	line-height: 153%;
	user-select: none;
}

.header__form {
	position: relative;
	max-width: 479px;
	height: 41px;
}

.header__form-input {
	width: 100%;
	height: 100%;

	padding-left: 15px;
	padding-block: 10px;
	padding-right: 40px;

	border-radius: 4px;
	border: 1px solid #e5e5e5;
	background-color: var(--white-light);
}

.header__form-input::placeholder {
	color: #757575;
	font-size: 16px;
	font-weight: 400;
}

.header__form-input:focus {
    border: 1px solid var(--primary);
}

.header__form-button {
	position: absolute;
	right: 11px;
	top: 50%;
	transform: translateY(-50%);
}

.header__form-button:hover {
	color: var(--primary);
}

.header__top-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	width: 148px;
	height: 42px;

	border-radius: 4px;
	border: 1px solid var(--primary);
	background-color: var(--primary);

	color: var(--white);
	font-size: 14px;
	font-weight: 700;
}

.header__top-link:hover {
	color: var(--primary);
	background-color: var(--white);
}

.header__top .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.header__bottom {
	background-color: var(--primary);
}

.header__bottom .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.header__item {
	height: 61px;
}

.header__link {
	display: inline-flex;
	align-items: center;
	height: 100%;

	color: var(--white);
	font-size: 16px;
	font-weight: 700;
}

.header__link:hover {
	opacity: 0.7;
}

.header__list {
	display: flex;
	flex-wrap: wrap;
	column-gap: 80px;
}

.header__bottom-burger {
	width: 56px;
	height: 47px;
}

.header__bottom--mobile {
	display: none;
}

.header__bottom--mobile .container {
	display: flex;
	align-items: center;
	justify-content: space-between;

	padding-block: var(--container-offset);
}

.header__bottom--mobile .container > .burger {
	color: var(--primary);

	transform: scaleX(-1);
}

.header__panel.active {
	transform: translateX(0);
}

/* welcome */

.welcome {
	padding-top: 111px;
	padding-bottom: 125px;
}

.welcome__subtitle-wrapper {
	width: 230px;
	height: 34px;

	display: flex;
	align-items: center;
	justify-content: center;

	border-radius: 10px;
	background-color: var(--primary);

    margin-bottom: 7px;
}

.welcome__subtitle {
	color: var(--white);
	font-size: 22px;
}

.welcome__title {
	position: relative;
	width: 710px;

	color: var(--primary);
	font-size: 55px;
	font-weight: 700;
	line-height: 118%;

	margin-bottom: 18px;
}

.welcome__title span {
	position: absolute;
	right: 20px;
	bottom: 18px;

	display: inline-flex;
	align-items: center;
	justify-content: center;

	width: 281px;
	height: 32px;

	border-radius: 10px;
	background-color: var(--primary);

	color: var(--white);
	font-size: 14px;
	font-weight: 700;
    user-select: none;
}

.welcome__title-span {
    display: none;
}

.welcome__text {
	width: 710px;

	color: var(--medium-gray);
	font-size: 22px;
	line-height: 123%;

	margin-bottom: 28px;
}

.welcome__button {
	width: 284px;
	height: 62px;

	display: flex;
	align-items: center;
	justify-content: center;

	border-radius: 10px;
	background-color: var(--primary);
	box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);

	color: var(--white);
	font-weight: 700;
	font-size: 16px;
}

.welcome__button:not(:last-child) {
	margin-right: 11px;
}

.welcome__button:hover {
	color: var(--primary);
	background-color: var(--white);
}

.welcome__button-test {
	color: var(--primary);

	background-color: var(--white);
}

.welcome__button-test:hover {
	color: var(--white);
	background-color: var(--primary);
}

.welcome__button-wrapper span {
	display: inline-block;
	width: 276px;

	font-family: var(--second-family);
	color: var(--medium-gray);
	font-size: 14px;
	font-weight: 400;

	margin-top: 14px;
}

.welcome__button-wrapper {
	display: flex;
    align-items: center;
}

.welcome__button-content--mobile,
.welcome__buttons--mobile {
    display: none;
}

.welcome__button-image {
    width: 59px;
    height: 34px;
}

.welcome__buttons {
	display: flex;
}

.welcome__image {
	position: relative;

	width: 423px;
	height: 382px;
}

.welcome__image img {
	border-radius: 10px;
}

.welcome__image span {
	position: absolute;
	right: 0;
	bottom: 32px;

	display: inline-flex;
    align-items: center;
    justify-content: center;

	padding: 7px 21px;

	width: 206px;
	height: 37px;

	color: var(--primary);
	font-size: 16px;
    user-select: none;

	background-color: var(--white);
}

.welcome__wrapper {
	display: flex;
	justify-content: space-between;

    margin-bottom: 75px;
}

.welcome__logos {
	overflow: hidden;
	width: 100%;
    height: 115px;

    display: flex;
    justify-content: center;
	background-color: var(--white);
}

.welcome__logos-tracks {
	display: flex;
    align-items: center;
	width: max-content;
	animation: scroll 20s linear infinite;
}

.welcome__logos-item {
	flex: 0 0 auto;
}

.welcome__logos-item:not(:last-child) {
    margin-right: 81px;
}

@keyframes scroll {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}


/* assortment */

.assortment {
    padding-bottom: 123px;
}

.assortment__top {
    margin-bottom: 31px;
}

.assortment__item {
    position: relative;
    padding: 37px 40px 36px 45px;

    height: 225px;

    display: flex;
    align-items: end;
    justify-content: space-between;

    border-radius: 30px;
    background-color: var(--white);
    transition: 0.3s ease;
}

.assortment__item:has(.assortment__link > img) {
    background-color: transparent;

    grid-column: span 1;

    align-items: normal;
}

.assortment__item:hover:has(.assortment__link > img) .assortment__link > img {
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.assortment__item:first-child,
.assortment__item:nth-child(2),
.assortment__item:nth-child(4),
.assortment__item:nth-child(6),
.assortment__item:nth-child(7),
.assortment__item:last-child {
    grid-column: span 2;
}

.assortment__item:nth-child(7),
.assortment__item:nth-child(8) {
    grid-column: span 2;
}

.assortment__item:nth-child(3),
.assortment__item:nth-child(5),
.assortment__item:nth-child(7) {
    padding: 0;
}

.assortment__item:hover:not(:has(.assortment__link > img)) {
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.assortment__title {
    color: #333333;
    font-size: 22px;
    font-weight: 400;

    margin-bottom: 105px;
}

.assortment__link {
    color: var(--primary);
    font-size: 16px;
}

.assortment__link:hover {
    color: #333333;
}

.assortment__link::before {
    position: absolute;
    content: '';
    inset: 0;
}

.assortment__list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px 20px;

    margin-bottom: 155px;
}

.assortment__image {
    height: 100%;
}

.assortment__image-rounded {
    border-radius: 30px;
}

.assortment__item > img.assortment__image-rounded {
    background-color: transparent;
}

.assortment__benefits-item {
    width: 367px;
    height: 170px;

    padding: 27px 30px;

    display: flex;
    flex-direction: column;
    align-items: center;

    border-radius: 20px;
    background-color: var(--white);
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.assortment__benefits-title {
    width: 307px;

    color: var(--primary);
    font-size: 22px;
    font-weight: 700;
    line-height: 123%;
    text-align: center;

    margin-bottom: 17px;
}

.assortment__benefits-text {
    color: var(--medium-gray);
    font-size: 16px;
    line-height: 143%;
    text-align: center;
}

.assortment__benefits-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}


/* catalog */

.catalog {
    background-color: var(--white);

    padding-top: 65px;
    padding-bottom: 73px;
}

.card {
    position: relative;
    max-width: 272px;
    height: 100%;

    padding: 20px 20px 22px;

    border: 1px solid #e5e5e5;

    transition: box-shadow 0.3s ease;
}

.card:hover {
    border: 1px solid var(--white);
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
}

.card__image-wrapper {
    margin-bottom: 16px;
}

.card__image-wrapper img {
    width: 230px;
    height: 300px;
}

.catalog__item:nth-child(5) .card__image-wrapper > img {
    object-fit: cover;
}

.card__name {
    position: relative;
    z-index: 2;

    color: #333333;
    font-size: 16px;
    line-height: 143%;

    margin-bottom: 8px;
    display: block;
}

.card__name:hover {
    color: var(--primary);
}

.card__price-wrapper {
    display: flex;
    align-items: center;

    margin-bottom: 4px;
}

.card__price {
    color: var(--primary);
    font-size: 24px;
    font-weight: 500;
    line-height: 112%;

    margin-right: 24px;
}

.card__price-old {
    color: var(--dark-gray);
    font-size: 16px;
    font-weight: 400;
    line-height: 143%;
    text-decoration: line-through;
}

.card__status {
    position: relative;

    display: block;

    color: #0d9f0a;
    font-size: 14px;
    font-weight: 400;
    line-height: 164%;

    padding-left: 11px;

    margin-bottom: 4px;
}

.card__status::before {
    position: absolute;
    content: '';

    width: 6px;
    aspect-ratio: 1;

    left: 0;
    top: 50%;
    transform: translateY(-50%);

    border-radius: 100px;
    background-color: #0d9f0a;
}

.card__link {
    width: 100%;
    height: 44px;
    
    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--primary);
    font-size: 16px;
    font-weight: 700;

    border-radius: 15px;
    border: 1px solid var(--primary);
}

.card__link:hover,
.catalog__button:hover {
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.card__link:active,
.catalog__button:active {
    color: var(--white);
    background-color: var(--primary);
}

.card__link::before {
    content: '';
    position: absolute;
    inset: 0;
}

.card__badge-text {
    color: var(--white);
    font-size: 14px;
    font-weight: 700;

    height: 27px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 30px;
    border: 1px solid var(--dark-gray);

    margin-right: 6px;
}

.card__badge-new {
    width: 64px;

    background-color: var(--new);
}

.card__badge-sale {
    width: 64px;

    background-color: var(--sale);
}

.card__badge-promotion {
    width: 87px;

    background-color: var(--promotion);
}

.card__badge-discound {
    width: 64px;
    height: 27px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 30px;
    background-color: var(--yellow);
    border: 1px solid var(--dark-gray);

    color: #333333;
    font-size: 14px;
    font-weight: 700;
}

.card__badge {
    display: flex;

    position: absolute;
    top: 18px;
    right: 11px;
}

.catalog__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px 19px;

    margin-bottom: 40px;
}

.catalog__button {
    width: 270px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto;

    color: var(--primary);
    font-size: 16px;
    font-weight: 700;

    border-radius: 5px;
    background-color: transparent;
    border: 1px solid var(--primary);
}

.card__info--mobile {
    display: none;
}


/* help */

.help {
    padding-top: 142px;
    padding-bottom: 123px;
}

.help__subtitle-wrapper {
	width: 230px;
	height: 34px;

	display: flex;
	align-items: center;
	justify-content: center;

	border-radius: 10px;
	background-color: var(--primary);
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);

    margin-bottom: 62px;
}

.help__subtitle {
	color: var(--white);
	font-size: 22px;
    font-weight: 400;
}

.help__title {
    width: 602px;
    margin-bottom: 35px;
}

.help__text {
    width: 496px;

    color: var(--medium-gray);
    font-size: 16px;
}

.help__text span {
    color: var(--primary);
    font-weight: 700;
}

.form {
    padding: 33px 20px 40px 22px;

    width: 417px;
    height: 428px;
    
    border-radius: 20px;
    background: var(--white);
    border: 0.80px solid var(--primary);
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.form__title {
    width: 379px;

    color: #333333;
    font-size: 22px;
    font-weight: 400;
    line-height: 123%;
    text-align: center;

    margin-bottom: 13px;
}

.form__input {
    padding: 20px;

    width: 375px;
    height: 60px;

    border-radius: 10px;
    border: 1px solid var(--dark-gray);
}

.form__input::placeholder {
    font-family: var(--font-family);
    color: var(--light-gray);
    font-size: 16px;
    font-weight: 400;
}

.form__input:not(:last-child) {
    margin-bottom: 13px;
}

.form__input:last-child {
    margin-bottom: 19px;
}

.form__input:focus {
    border: 1px solid var(--primary);
}

.form__attach {
    display: flex;
    align-items: center;

    cursor: pointer;

    margin-bottom: 16px;
}

.form__attach-image__wrapper {
    margin-right: 11px;

    display: flex;
    align-items: center;
    justify-content: end;
}

.form__attach-text {
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
    line-height: 152%;
}

.form__button {
    padding: 21px 41px;
    margin-bottom: 21px;

    width: 375px;
    height: 62px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--primary);
    border-radius: 10px;
    background-color: var(--primary);
    
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
}

.form__button:hover {
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.form__button:active {
    color: var(--primary);
    background-color: transparent;
}

.checkbox {
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkbox__input {
    display: none;
}

.checkbox__custom {
    width: 11px;
    height: 11px;

    border-radius: 2px;
    border: 0.50px solid var(--medium-gray);

    margin-right: 7px;
}

.checkbox__input:checked + .checkbox__custom {
    background-color: var(--primary);
    background-image: url("../images/icons/check.svg");
    background-repeat: no-repeat;
    background-position: center;
}

.checkbox__text {
    font-family: var(--third-family);
    color: var(--medium-gray);
    font-size: 11px;
    font-weight: 400;
    user-select: none;
}

.checkbox__input:checked ~ .checkbox__text {
    color: var(--primary);
}

.help__wrapper {
    display: flex;
    justify-content: space-between;
}


/* industries */

.industries {
    padding-top: 79px;
    padding-bottom: 100px;
    background: var(--white);
}

.industries__title {
    margin-bottom: 48px;
}

.industries__item {
    height: 62px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;
    background-color: var(--white);
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.industries__item:first-child {
    width: 374px;
}

.industries__item:nth-child(2) {
    width: 487px;
}

.industries__item:nth-child(3) {
    width: 244px;
}

.industries__item:nth-child(4) {
    width: 328px;
}

.industries__item:nth-child(5) {
    width: 506px;
}

.industries__text {
    color: #333333;
    font-size: 22px;
    text-align: center;
}

.industries__button {
    width: 94px;
    height: 27px;

    color: var(--primary);
    font-size: 22px;
    font-weight: 700;
}

.industries__button:hover {
    color: #333333;
}

.industries__wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    gap: 20px 25px;
}

.industries__wrapper--mobile {
    display: none;
}


/* solutions */

.solutions {
    padding-bottom: 141px;
    background-color: var(--white);
}

.solutions__title {
    width: 709px;
    margin-bottom: 30px;
}

.solutions__image {
    border-radius: 20px;
}

.solutions__image-check {
    margin-right: 22px;
}

.solutions__accent {
    padding: 8px 33px;
    margin-bottom: 15px;

    width: 560px;
    height: 97px;

    display: flex;
    align-items: center;
    justify-content: center;
    
    border-radius: 30px;
    background-color: var(--primary);
}

.solutions__text {
    width: 452px;
    
    color: var(--white);
    font-size: 22px;
    line-height: 123%;
}

.solutions__accent-text  {
    margin-right: 20px;
}

.solutions__check-text {
    color: var(--medium-gray);
}

.solutions__check {
    padding: 6px 24px;

    width: 560px;
    height: 120px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 30px;
    background: var(--white-light);
}

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

.solutions__wrapper:not(:last-child) {
    margin-bottom: 45px;
}


/* experience */

.experience {
    padding-bottom: 91px;
    background-color: var(--white);
}

.experience__title {
    width: 995px;
    margin-bottom: 28px;
}

.list {
    padding-left: 20px;
}

.experience__list {
    margin-bottom: 30px;
}

.list__item {
    color: #333333;
    font-size: 22px;
    line-height: 123%;
}

.list__item span {
    color: var(--primary);
    font-weight: 600;
}

.experience__image {
    object-fit: cover;

    border-radius: 30px;
    margin-bottom: 46px;
}

.experience__item:nth-child(3) .experience__image {
    margin-right: 50px;
    margin-bottom: 0;
}

.experience__item-title {
    color: #333333;
    font-size: 22px;
    font-weight: 400;
    line-height: 123%;

    padding-right: 23px;
    margin-bottom: 20px;
}

.experience__item:nth-child(2) .experience__item-title,
.experience__item:nth-child(3) .experience__item-title {
    padding-right: 0;
}

.experience__item:nth-child(3) .experience__item-title {
    width: 367px;
}

.experience__item-text {
    width: 364px;

    margin: 0 auto;

    color: var(--medium-gray);
    font-size: 16px;
    line-height: 143%;
}

.experience__item:nth-child(2) .experience__item-text {
    width: 387px;

    margin-right: 35px;
}

.experience__item:nth-child(3) .experience__item-text {
    width: 367px;
}

.experience__item {
    padding-top: 27px;
    padding-left: 26px;
    padding-right: 20px;
    padding-bottom: 27px;

    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: start;
    
    border-radius: 30px;
    background-color: var(--white-light);
}

.experience__item:first-child {
    grid-row: span 2;
}

.experience__item:nth-child(2),
.experience__item:nth-child(3) {
    flex-direction: row;
    align-items: normal;
    justify-content: center;

    padding-bottom: 27px;
}

.experience__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 18px 21px;
}


/* offer */

.offer {
    padding-block: 71px;
}

.offer__title {
    width: 606px;
    margin-bottom: 23px;
}

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


/* services */

.services {
    position: relative;
    overflow: hidden;

    padding-top: 73px;
    padding-bottom: 282px;

    background-color: var(--white);
}

.services__title {
    width: 1148px;
    
    margin-bottom: 58px;
}

.services__item:not(:last-child) {
    margin-bottom: 32px;
}

.services__item-title {
    color: var(--primary);
    font-size: 22px;
    font-weight: 400;
    line-height: 123%;
}

.services__item:nth-child(2) .services__item-title {
    width: 468px;
}

.services__item:nth-child(3) .services__item-title {
    width: 387px;
}

.services__item-text {
    color: #333333;
    font-size: 16px;
    line-height: 143%;
}

.services__item:nth-child(2) .services__item-text {
    width: 438px;
}

.services__item:last-child .services__item-text {
    width: 450px;
}

.services__pagination  {
    position: static !important;
    width: 450px !important;
    height: 4px;
    background: #d0d0d0;

    margin: 60px auto 0;
    overflow: hidden;
}

.services__pagination .swiper-pagination-progressbar-fill {
    background-color: var(--primary);
}

.services__slider-wrapper {
    position: absolute;
    top: 215px;
    right: -180px;
}

.services__slide {
    width: 288px !important;
    height: 383px !important;
}

.services__slide-image {
    border-radius: 10px;
}

.services__slide-image:hover {
    cursor: pointer;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}


/* promotions */

.promotions {
    padding-bottom: 246px;

    background-color: var(--white);
}

.promotions__top {
    margin-bottom: 60px;
}

.promotions__button {
    padding: 34px 16px;

    width: 364px;
    height: 137px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #333333;
    font-weight: 700;
    font-size: 27px;
    line-height: 126%;
    text-align: left;

    border-radius: 10px;
    background: var(--white-light);
}

.promotions__button:hover {
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.promotions__button:active {
    color: var(--white);
    background-color: var(--primary);
}

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


/* services-cycle */

.services-cycle {
    position: relative;
    
    padding-bottom: 68px;

    background-color: var(--white);
}

.services-cycle__top {
    margin-bottom: 35px;

    align-items: start;
}

.services-cycle__title {
    width: 472px;
}

.services-cycle__slide {
    position: relative;

    padding-top: 36px;
    padding-right: 71px;
    padding-bottom: 43px;
    padding-left: 33px;

    width: 557px;
    height: 263px;

    border-radius: 10px;
    background-color: var(--white-light);
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.services-cycle__slide-title {
    color: var(--primary);
    font-size: 40px;
    font-weight: 700;
    line-height: 125%;
    user-select: none;
}

.services-cycle__slide-title:first-of-type {
    width: 318px;
}

.services-cycle__slide-title:nth-of-type(2) {
    width: 429px;
}

.services-cycle__slide-image {
    position: absolute;

    right: 71px;
    bottom: 43px;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    display: none;
}

.swiper-button-next svg, 
.swiper-button-prev svg {
    display: none;
}

.swiper-button-prev,
.swiper-button-next {
    width: 60px !important;
    aspect-ratio: 1 !important;
    background-position: center;
    background-repeat: no-repeat;
    background-size:50px 50px;

    background-color: transparent;
    border: none;
}

.swiper-button-prev {
    background-image: url("../images/slider-arrow.png");

    left: 120px !important;
}

.swiper-button-next {
    background-image: url("../images/slider-arrow.png");
    transform: rotate(-180deg);

    right: 120px !important;
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
    opacity: 1 !important;
    pointer-events: auto !important;
}


/* lead */

.lead {
    padding-top: 58px;
    padding-bottom: 58px;
}

.lead__title {
    width: 502px;

    margin-bottom: 54px;
}

.lead__text {
    width: 561px;

    color: var(--medium-gray);
    font-size: 22px;
    line-height: 123%;
}

.lead__text:last-child {
    width: 557px;
}

.lead__text:not(:last-child) {
    margin-bottom: 35px;
}

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


/* insights */

.insights {
    position: relative;
    background-color: var(--white);
    padding-top: 74px;
    padding-bottom: 91px;
}

.insights__top {
    margin-bottom: 62px;
    align-items: start;
}

.insights__title {
    width: 576px;
}

.insights__slide {
    width: 270px !important;
    flex-shrink: 0;
}

.swiper-slide--wide {
    width: 557px !important;
    height: 393px !important;

    background-color: var(--white-light);
}

.insights__slide-content {
    padding-inline: 33px;
}

.insights__slide-image {
    border-radius: 10px 10px 0 0;

    margin-bottom: 23px;

    width: 100%;
}

.insights__slide-title {
    color: #333333;
    font-size: 22px;
    line-height: 123%;
    font-weight: 400;

    margin-bottom: 7px;
}

.insights__slide-title:nth-child(2) {
    width: 270px;
}

.insights__data {
    color: var(--medium-gray);
    font-size: 14px;
}

.insights__slide-image__wrapper {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 270px;
    height: 270px;
    
    border-radius: 10px;
    background-color: #f5f5f5;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);

    margin-bottom: 17px;
}

.insights__wrapper--mobile {
    display: none;
}


/* footer */

.footer {
    background-color: #333333;

    padding-top: 51px;
}

.footer__phone {
    color: var(--white);
}

.footer__info-wrapper {
    display: flex;
    align-items: start;
}

.footer__info-wrapper svg {
    margin-right: 18px;
}

.footer__link-wrapper {
    display: flex;
    flex-direction: column;
}

.footer__info-link {
    color: #fff;
    font-size: 14px;
    line-height: 147%;
}

.footer__info-link:hover {
    color: var(--primary);
}

.footer__info-address {
    width: 225px;
    color: var(--white);
    font-size: 14px;
    line-height: 154%;
    font-style: normal;
}

.footer__info {
    display: flex;
    column-gap: 50px;
    align-items: start;

    margin-bottom: 44px;
}

.footer__link {
    color: var(--dark-gray);
    font-size: 13px;
    line-height: 150%;
}

.footer__item:not(:last-child) {
    margin-bottom: 11px;
}

.footer__link:hover {
    color: var(--primary);
}

.footer__title {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 144%;

    margin-bottom: 23px;
}

.footer__list {
    display: flex;
    flex-direction: column;
}

.footer__nav-wrapper {
    padding-top: 60px;
    padding-left: 68px;
    padding-bottom: 80px;

    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.footer__nav-content:first-child {
    margin-right: 21px;
}

.footer__nav-content:nth-child(2) {
    margin-right: 90px;
}

.footer__nav-content:nth-child(3) {
    margin-right: 83px;
}

.footer__copyright {
    color: var(--dark-gray);
    font-size: 13px;
    font-weight: 400;
}

.footer__copyright span {
    color: var(--primary);
}

.footer__copyright-wrapper {
    padding: 62px 0;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer__links--mobile {
    display: none;
}