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

ul, ol {
	list-style: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
a {
	text-decoration: none;
	color: inherit;
}

:root {
	--bg-main: #252525;
	--color-main: #FCFCFC;
	--color-grey: #8D8D8D;
	--btn-gradient: linear-gradient(90deg, #45D0BD 0%, #7E5AC6 100%);
	--border-radius-100: 100px; 
	--border-radius-20: 20px; 
}

html {
	font-size: 10px;
	scroll-behavior: smooth;
	font-family: "Argentum Sans", sans-serif;
	overflow-x: hidden;
}

body {
	font-family: inherit;
	background: #232426;
	line-height: 1.4;
	color: var(--color-main);
	overflow: hidden;
}

h1 {
	color: #FCFCFC;
	font-weight: 600;
	font-size: 8rem;
	line-height: 120%;
	text-align: center;
}

h2 {
	font-weight: 500;
	font-size: 48px;
	line-height: 100%;
}

h3 {
	color: var(--color-main);
	font-weight: 600;
	font-size: 48px;
	line-height: 120%;
	max-width: 690px;
}

p {
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	color: var(--color-grey);
}

.header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: fixed;
	top: 40px;
	left: 40px;
	right: 40px;
	background: var(--bg-main);
	z-index: 999;
	border-radius: 100px;
	padding: 20px 40px;
	height: 100px;
	z-index: 9999999999999;
}

.header__logo {
	width: 100%;
	max-width: 210px;
}

.header__nav-list {
	display: flex;
	gap: 64px;
}

.header__nav-link {
	color: var(--color-main);
	font-weight: 400;
	font-size: 16px;
	letter-spacing: 5%;
	text-transform: uppercase;
	transition: all 0.6s ease;
}


.header__nav-item:hover a {
  background: var(--btn-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}



.btn__border {
    position: relative;
    border-radius: var(--border-radius-100);
    padding: 23px 51px;
    font-weight: 500;
    font-size: 20px;
    line-height: 100%;
    transition: color 0.6s ease;
    overflow: hidden;
    z-index: 1;
}

/* Градиентный фон */
.btn__border::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--btn-gradient);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: -1;
    border-radius: var(--border-radius-100);
}

/* Градиентная обводка */
.btn__border::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: var(--border-radius-100);
    padding: 1px;
    background: var(--btn-gradient);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

.btn__border:hover::after {
    opacity: 1;
}

.btn__border:hover {
    color: white;
}
.btn-gradient {
	background: var(--btn-gradient);
	border-radius: var(--border-radius-100);
	padding: 20px 40px;
	font-weight: 500;
	font-size: 20px;
	line-height: 100%;
	color: white;
	border: none;
	cursor: pointer;
	display: flex;
	width: max-content;
	gap: 20px;
	max-width: 210px;
	width: 100%;
	justify-content: center;
}

.hero {
	/* position: relative; */
	background: url('/assets/img/pic-circles1.png');
	background-position: center center;
	min-height: 1265px;
	background-size: cover;
	width: 100%;
}

.hero::before {
    content: "";
    width: 860px;
    height: 818px;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url("/assets/img/pic-stripes.png");
    display: flex;
    background-position: right center;
    background-size: contain;
    
    /* Анимация */
    animation: zoomInOut 8s ease-in-out infinite;
    transform-origin: center;
}

@keyframes zoomInOut {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.hero::after {
    content: "";
    width: 931px;
    height: 931px;
    position: absolute;
    right: -14%;
    bottom: 4%;
    background-image: url("/assets/img/pic-circles.png");
    display: flex;
    background-position: center;
    background-size: contain;
    z-index: -1;
}

.hero__content {
	padding-top: 340px;
	max-width: 1360px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	margin: 0 auto;
}

.hero__content p {
	color: #fff;
	max-width: 884px;
}

.m-t32 {
  margin-top: 32px;
}

.m-t64 {
  margin-top: 64px;
}

.m-t77 {
  margin-top: 77px;
}

.m-t100 {
	margin-top: 100px;
}

.m-b20 {
	margin-bottom: 20px;
}

.m-200 {
	margin-top: 200px;
	margin-bottom: 200px;
}

.p-t200 {
	padding-top: 200px;
}

.hero__slider-img {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
	align-items: baseline;
	gap: 20px;
	overflow: hidden;
}

.slider-wrapper {
	height: 79vh;
	overflow: hidden;
	position: relative;
}

.slider {
	display: flex;
	align-items: end;
	gap: 2rem;
	height: 60vh;
	justify-content: space-between;
}

.slide {
	flex: 0 0 auto; 
	height: 60vh;
	background-size: cover;
	background-position: center;
	border-radius: 16px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.15);
	position: relative;
	overflow: hidden;
	transition: transform 0.3s ease;
	min-height: 300px;
  max-height: 600px;
}

.slide::after {
	content: attr(data-index);
	position: absolute;
	bottom: 15px;
	right: 15px;
	font-size: 3rem;
	font-weight: bold;
	text-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.slide:nth-child(1) { 
	background-image: url('/assets/img/pic-slider1.png'); 
	height: 100%;
	width: 582px;
}
.slide:nth-child(2) { 
	background-image: url('/assets/img/pic-slider2.png'); 
	height: 420px;
	width: 420px;
}
.slide:nth-child(3) { 
	background-image: url('/assets/img/pic-slider3.png'); 
	height: 325px;
	width: 325px;
}
.slide:nth-child(4) { 
	background-image: url('/assets/img/pic-slider4.png'); 
	height: 432px;
	width: 432px;
}
.slide:nth-child(5) { 
	background-image: url('/assets/img/pic-slider5.png'); 
	height: 100%;
	width: 582px;
}

.slide:nth-child(6) { 
	background-image: url('/assets/img/pic-slider2.png'); 
	height: 420px;
	width: 420px;
}

.slide:nth-child(7) { 
	background-image: url('/assets/img/pic-slider1.png'); 
	height: 420px;
	width: 420px;
}

.container {
	margin-left: 5rem;
	margin-right: 5rem;
}

.our-story {
	border-radius: var(--border-radius-20);
}

.our-story__video {
	max-width: 879px;
	height: 100%;
	position: relative;
    width: 100%;
    margin: 0 auto; /* центрирование всего блока */
    overflow: hidden;
}

.our-story__logo {
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;

}

.our-story__video video {
	height: 810px;
	max-width: 879px;
	width: 100%;
	object-fit: cover;
	border-radius: var(--border-radius-20);
	position: relative;
}

.our-story__logo > img {
	max-width: 466px;
	width: 100%;
}

.our-story__col {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10rem;
	align-items: center;
}

.our-story {
	background: #25252580;
	backdrop-filter: blur(3px);
	padding: 2rem;
	background: #FFFFFF0D;
}

.small__title {
	color: #45D0BD; /* Fallback цвет */
    background: var(--btn-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
	font-weight: 400;
	font-size: 16px;
	line-height: 100%;
	letter-spacing: 0.5;
	text-transform: uppercase;
}

.our-story__content-bottom {
	display: flex;
	flex-direction: column;
	gap: 3rem;
}

.back-img {
	position: relative;
	padding-bottom: 200px;
}

.back-img::after {
	content: "";
	background-image: url('/assets/img/GenGroup.png');
	position: absolute;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	top: 0;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: right 5%;
	z-index: -1;
}


.brackets {
	position: relative;
	display: inline-block;
	color: var(--color-main);
	padding: 64px 135px;
	margin-top: 64px;
	font-size: 140px;
	height: 100%;
}

.we-are span {
	background: linear-gradient(180deg, #8663CA 0%, #45D0BD 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.brackets::before {
	content: "";
	position: absolute;
	top: 0;
	width: 96px; 
	height: 100%;
	border: 4px solid #555555;
	border-right: none; 
	border-left: none;
	border-bottom-left-radius: 10px;
	border-top-left-radius: 10px;
}

.brackets::after {
	content: "";
	position: absolute;
	top: 0;
	width: 96px; 
	height: 100%;
	border: 4px solid #555555;
	border-right: none; 
	border-left: none;
	border-bottom-right-radius: 10px;
	border-top-right-radius: 10px;
}

.brackets::before {
	left: 0;
	border-left: 4px solid #555555;
	
}

.brackets::after {
	right: 0;
	border-right: 4px solid #555555;
	
}

.container-sm {
	margin-left: 185px;
	margin-right: 185px;
}

.our-focus__col {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
}

.our-focus__col > .our-focus__item {
	height: 440px;
	background-size: contain;
	background-repeat: no-repeat;
	width: 100%;
}

.our-focus__item {
	border-radius: 10px;
	background-size: cover;
	display: flex;
	flex-direction: column;
	gap: 20px;
	height: 395px;
	justify-content: end;
	padding: 40px;
}

.our-focus__list {
	display: flex;
	flex-direction: column;
	gap: 20px;
	justify-content: space-between;
}

.title32 {
	color: var(--color-main);
	font-weight: 500;
	font-style: edium;
	font-size: 32px;
	line-height: 120%;
}

.our-focus__item p {
	color: var(--color-main);
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
}

.header-block__content {
	max-width: 690px;
}

.benefits {
	background-image: url("/assets/img/benefits__bck.png");
	background-position: bottom center;
	padding-bottom: 207px;
}

.benfits__list {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
}

.benefits__item {
	display: flex;
	flex-direction: column;
	padding-right: 27px;
}

.benefits__item .title32{
	max-width: 360px;
}



.benefits__item img {
	width: 40px;
}

.benefits .brackets {
	padding: 100px 51px;
}

.footer {
	background-image: url("/assets/img/footer__bck.png");
	background-repeat: no-repeat;
	background-size: cover;
	border-radius: 20px;
	margin-bottom: 50px;
	overflow: hidden;
}

.footer__info {
    background: #25252580; /* полупрозрачный темный фон */
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(120px); /* для Safari */
}

.footer__container {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
}

.footer__contact {
	padding: 200px 50px;
}

.contact-form {
	display: flex;
	gap: 20px; 
	max-width: 850px;
}

.form-column {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

input, textarea {
	padding: 8px;
	font-size: 1rem;
	border-radius: 4px;
	resize: none;
	background: #1E1E1E80;
	border: none;
	padding: 20px;
	border-radius: var(--border-radius-100);
	z-index: 9999;
	color:var(--color-main);
	font-weight: 400;
	font-size: 16px;
	font-family: "Argentum Sans", sans-serif;
	height: 51px;
}

input::placeholder, 
textarea::placeholder {
	color:var(--color-grey);
	font-weight: 400;
	font-size: 16px;
}

input:focus, 
textarea:focus {
	outline: none;
}

.footer__contact p {
	max-width: 670px;
}

#message {
	border-radius: var(--border-radius-20);
	height: 122px;
}

.title-80 {
	color: var(--color-main);
	font-weight: 600;
	font-size: 80px;
	line-height: 120%;
	max-width: 937px;
	width: 100%;
	display: flex;
}

/* .btn-send {
  position: relative;
  max-width: 210px;
  height: 50px;
  padding: 18px 60px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: var(--color-main);
  font-family: "Argentum Sans", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  border: none;
  cursor: pointer;
  overflow: hidden;
  transition: color 0.6s ease;
  z-index: 0;
}

.btn-send::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #7E5AC6 0%, #45D0BD 100%);
  opacity: 0;
  border-radius: 100px;
  transition: opacity 0.6s ease;
  z-index: -1;
}

.btn-send:hover::before {
  opacity: 1;
}

.btn-send:hover {
  color: white;
} */
.btn-gradient img {
  position: relative;
  display: inline-block;
  animation-fill-mode: forwards;
  transition: none;
}

.arrow-swipe-forward {
  animation: arrow-swipe-forward 0.4s ease forwards;
}

.arrow-swipe-back {
  animation: arrow-swipe-back 0.4s ease forwards;
}

@keyframes arrow-swipe-forward {
  0% {
    transform: translate(0, 0);
    opacity: 1;
  }
  50% {
    transform: translate(20px, 5px);
    opacity: 0;
  }
  51% {
    transform: translate(-20px, -5px);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}

@keyframes arrow-swipe-back {
  0% {
    transform: translate(0, 0);
    opacity: 1;
  }
  50% {
    transform: translate(-20px, -5px);
    opacity: 0;
  }
  51% {
    transform: translate(20px, 5px);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}


.btn-gradient {
    position: relative;
    background: var(--btn-gradient);
    border-radius: var(--border-radius-100);
    padding: 20px 40px;
    font-weight: 500;
    font-size: 20px;
    line-height: 100%;
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    width: max-content;
    max-width: 210px;
    width: 100%;
    justify-content: center;
    gap: 20px;
    overflow: hidden;
    transition: color 0.6s ease;
    z-index: 999;
}

.btn-gradient::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #7E5AC6 0%, #45D0BD 100%);
  border-radius: var(--border-radius-100);
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: -1;
}

.btn-gradient:hover::before {
  opacity: 1;
}

.btn-gradient:hover {
  color: white; /* Цвет текста по наведению, можно изменить */
}


.footer__info {
	padding: 200px 230px;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
}

.footer__info-list {
	display: flex;
	justify-content: space-between;
	gap: 20px;
}

.footer__info-item:first-child p {
	color: var(--color-grey);
}

.footer__address span {
	font-family: "Argentum Sans", sans-serif;
	font-weight: 400;
	font-size: 16px;
	color: var(--color-grey);
}

.footer__address a {
	font-family: "Argentum Sans", sans-serif;
	color: var(--color-main);
	font-weight: 500;
	font-size: 32px;
	line-height: 120%;
}

.footer__address a:hover {
    background: var(--btn-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.footer__info-item-text p a:hover {
	background: var(--btn-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.footer__address {
	display: flex;
	flex-direction: column;
	max-width: 580px;
}

.footer__address p {
	color: var(--color-main);
	font-family: "Argentum Sans", sans-serif;
	font-weight: 500;
	font-size: 32px;
	line-height: 120%;
}

.footer__info-item-text {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.footer__info-item {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 20px;
}

#logo-svg path {
  stroke: #FFFFFF;       /* Белый контур */
  stroke-width: 1;       /* Толщина обводки */
  fill: transparent;     /* Изначально заливка прозрачная */
  transition: fill 2s ease;
}

.header__nav-link.active {
  color: #45D0BD;
  background: var(--btn-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.5;
  text-transform: uppercase;
}

.burger {
	display: none;
}

/* Стили для бургер-меню */
.burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
  position: relative;
  z-index: 1001;
}

.burger span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: #333;
  transition: all 0.3s ease;
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu {
	position: fixed;
	top: 0;
	right: 0;
	width: 100%;
	max-width: 100%;
	height: 100vh;
	z-index: 1000;
	transition: right 0.4s ease;
	padding: 40px;
	/* display: flex; */
	flex-direction: column;
	justify-content: space-between;
	background: #25252580;
	backdrop-filter: blur(22px);
	border-radius: 20px;
	/* display: none; */
	opacity: 0;
	display: none;
	justify-content: center;
	align-items: center;
}

.mobile-menu.active {
	opacity: 1;
}

.mobile-menu__close {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 30px;
	height: 30px;
	background: none;
	border: none;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	opacity: 0;
}

.mobile-menu__close span {
	display: block;
	width: 25px;
	height: 2px;
	background-color: #333;
position: absolute;
}

.mobile-menu__close span:nth-child(1) {
	transform: rotate(45deg);
}

.mobile-menu__close span:nth-child(2) {
	transform: rotate(-45deg);
}

/* Навигация мобильного меню */
.mobile-menu__nav {
	flex-grow: 1;
}

.mobile-menu__list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.mobile-menu__item {
	margin-bottom: 20px;
}

.mobile-menu__link {
	text-decoration: none;
	color: var(--color-main);
	font-size: 40px;
	font-weight: 500;
	transition: color 0.3s ease;
	display: block;
	padding: 10px 0;
}

.mobile-menu__link:hover {
	color: #007bff;
}

.mobile-menu__btn {
	align-self: center;
	margin-top: 20px;
}

/* Затемнение фона */
.overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 999;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

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

.footer__info-item img {
	max-width: 335px;
}

nav.header__nav {
    z-index: 9999;
}

.footer__mobile {
	display: none;
}

.no-scroll {
	overflow: hidden;
	position: fixed;
	width: 100%;
}

.no-scroll {
  overflow: hidden;
  height: 100vh;
  position: relative;
}

@media(max-width:1300px) {
	.header__nav-link {
		font-size: 14px;
	}
	.header__nav-list {
		gap: 40px;
	}
	.brackets {
		font-size: 100px;
	}
	.container-sm {
		margin-left: 5rem;
		margin-right: 5rem;
	}
	.benfits__list {
		grid-template-columns: 1fr 1fr;
		gap: 40px;
	}
	.footer__info-list {
		flex-direction: column;
	}
}

@media(max-width:1200px) {
	.our-story__logo > img {
		width: 100%;
		max-width: 46rem;
	}
	.our-story__col {
		display: flex;
		flex-direction: column;
	}
	.our-story__video video {
		height: 100%;
	}
	.header__nav-list {
		gap: 20px;
	}	
	.our-focus__list {
		flex-direction: row;
	}
	.our-focus__col {
		display: flex;
		flex-direction: column;
	}
}

@media(max-width:1100px) {
.header__nav,
.header__btn {
	display: none;
}

.burger {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.burger span{
	width: 30px;
	height: 2px;
	background: var(--color-main);
}
.header {
	top: 20px;
	left: 20px;
	right: 20px;
}
.hero__content {
	padding-top: 200px;

}

}

@media(max-width:1000px) {
	.brackets {
		font-size: 80px;
	}
	.our-focus__col > .our-focus__item {
		height: 440px !important;
	}
	.benfits__list {
		grid-template-columns: 1fr;
	}
	.title-80 {
		font-size: 60px;
	}
	/* .slider-wrapper {
		display: none;
	} */
	.hero {
		min-height: 100%;
		/* height: 100vh; */
	}
	.our-story {
		margin-top: 0;
	}
	.slide:nth-child(1) {
		height: 238px;
		width: 238px;
	}

.slide:nth-child(2) {
	width: 179px;
	height: 179px !important;
	background-size: contain;
	background-repeat: no-repeat;
}
	.slide:nth-child(3) {
		background-image: url('/assets/img/pic-slider3.png');
		height: 238px;
		width: 238px;
	}
	.slide:nth-child(5) {
		height: 238px;
		width: 238px;
	}
	.slide:nth-child(4) {
		height: 238px;
		width: 238px;
	}
	.slide:nth-child(6) {
		height: 238px;
		width: 238px;
	}
	.slider {
		height: 100%;
		align-items: center;
	}
	.slider-wrapper {
		height: unset;
	}
	.slide {
		box-shadow: none;
	}
	.hero__content {
		padding: 100px 20px 0;
	}
}

@media(max-width:800px) {
	.container {
		margin-left: 2rem;
		margin-right: 2rem;
	}
	h3 {
		font-size: 32px;
	}
	.brackets {
		font-size: 70px;
		padding: 40px;
	}
	h1 {
		font-size: 5rem;
	}
	.hero__content .btn-gradient {
		margin-bottom: 32px;
	}
	.contact-form {
		flex-direction: column;
	}
	.footer__info {
		padding: 100px;
	}
	.our-focus__list {
		flex-direction: column;
	}
	.container-sm {
		margin-left: 2rem;
		margin-right: 2rem;
	}
}


@media(max-width:600px) {
	.brackets {
		font-size: 40px;
	}
	.title-80 {
		font-size: 40px;
	}
	.footer__info {
		padding: 40px 20px;
	}

}

@media(max-width:500px) {
	h3 {
		font-size: 24px;
	}
	p {
		font-size: 16px;
	}
	.small__title {
		font-size: 16px;
	}
	.m-t64 {
		margin-top: 20px;
	}
	.our-story__col {
		gap: 4rem;
	}
	.header__logo {
		max-width: 86px;
	}
	.mobile-menu__link {
		font-size: 24px;
	}
	.brackets {
		font-size: 36px;
		width: 100%;
	}
	.footer__contact {
		padding: 40px 20px;
	}
	.title-80 {
		font-size: 36px;
	}
	h2 {
		font-size: 24px;
	}
	.m-t100 {
		margin-top: 32px;
	}
	.footer__address p {
		font-size: 16px;
	}
	.footer__address a {
		font-size: 16px;
	}
	.footer__info-item img {
		max-width: 107px;
		margin-bottom: 40px;
	}
	footer .container {
		margin-left: 0 !important;
		margin-right: 0 !important;
	}
	.p-t200 {
		padding-top: 40px;
	}
w
	.our-focus__item {
		height: 377px;
		padding: 20px;
	}
	.our-focus__col > .our-focus__item {
		display: none;
	}
	.benefits .brackets {
		padding: 40px 20px;
	}
	.title32 {
		font-size: 20px;
	}
	.we-are {
		padding-bottom: 40px;
		background-image: url('/assets/img/big_words.png');
	}

	.container {
		margin-left: 20PX;
		margin-right: 20PX;
	}
	h1 {
		font-size: 2.8rem;
	}
	.header {
		padding: 10px 20px;
		height: 44px;
	}
	.burger span {
		width: 24px;
		height: 2px;
	}
	.hero__content .btn-gradient {
		width: 100%;
		max-width: 100%;
	}
	.our-story__video {
		height: 240px;
	}
	.our-story {
		padding: 2rem 2rem 4rem 2rem;
	}
	.brackets::before {
		width: 15px;
		border: 1px solid #555;
		border-left: 1px solid #555555;
		border-right: none;
		border-bottom-left-radius: 4px;
		border-top-left-radius: 4px;
	}
	.brackets::after {
		width: 15px;
		border: 1px solid #555;
		border-left: 1px solid #555555;
		border-left: none;
		border-bottom-right-radius: 4px;
		border-top-right-radius: 4px;
	}


	.benefits {
		display: flex;
		flex-direction: column;
		padding-bottom: 0;
	}

	/* #benefits .brackets::after {
		border: 1px solid #555;
		border-bottom: 1px solid #555555;	
		border-left: none;
		width: 100%;
		border-left: none;
		height: 15px;
		bottom: 0;
	} */

	.brackets {
		padding: 20px;
	}
	.back-img {
		padding-bottom: 40px;
	}
	.m-t32 {
		margin-top: 20px;
	}
	#focuse {
		padding-bottom: 40px;
		margin-top: 40px;
		margin-bottom: 40px;
	}
	.footer {
		margin-top: 40px;
	}
	.btn-gradient {
		max-width: 100%;
	}
	.footer__info-item {
		gap: 0;
	}
	.footer__info-item-text {
		flex-direction: column;
		gap: 10px;
	}
	.footer {
		margin-bottom: 20px;
	}
	.footer__desktop {
		display: none;
	}
	.footer__mobile {
		display: flex;
		flex-direction: column;
	}
	.footer__info-list img {
		max-width: 107px;
	}
	.footer__info-item-text p {
		font-size: 12px;
	}
	.footer__info-list {
		gap: 40px;
	}
	.benfits__list {
		display: flex;
		flex-direction: column;
	}
	.benefits__item {
		padding-right: 0;
	}

	.benefits .brackets{
		margin-left: 0;
		margin-right: 0;
		max-width: calc(100% - 40px);
		margin: 40px auto 40px auto;
	}
	.benefits {
		background-image: url("/assets/img/benefits__mobile.png");
		background-position: center;
		background-size: cover;
	}
	
}