/**
  Нормализация блочной модели
 */
*,
*::before,
*::after {
	box-sizing: border-box;
}

/**
  Убираем внутренние отступы слева тегам списков,
  у которых есть атрибут class
 */
:where(ul, ol):where([class]) {
	padding-left: 0;
}

/**
  Убираем внешние отступы body и двум другим тегам,
  у которых есть атрибут class
 */
body,
:where(blockquote, figure):where([class]) {
	margin: 0;
}

/**
  Убираем внешние отступы вертикали нужным тегам,
  у которых есть атрибут class
 */
:where(h1,
	h2,
	h3,
	h4,
	h5,
	h6,
	p,
	ul,
	ol,
	dl):where([class]) {
	margin-block: 0;
}

:where(dd[class]) {
	margin-left: 0;
}

/**
  Убираем стандартный маркер маркированному списку,
  у которого есть атрибут class
 */
:where(ul[class]) {
	list-style: none;
}

/**
  Упрощаем работу с изображениями
 */
img {
	display: block;
	max-width: 100%;
}

/**
  Наследуем свойства шрифт для полей ввода
 */
input,
textarea,
select,
button {
	font: inherit;
}

html {
	/**
    Пригодится в большинстве ситуаций
    (когда, например, нужно будет "прижать" футер к низу сайта)
   */
	height: 100%;
	/**
    Плавный скролл
   */
	scroll-behavior: smooth;
}

body {
	/**
    Пригодится в большинстве ситуаций
    (когда, например, нужно будет "прижать" футер к низу сайта)
   */
	min-height: 100%;
	/**
    Унифицированный интерлиньяж
   */
	line-height: 1.5;
}

/**
  Удаляем все анимации и переходы для людей,
  которые предпочитают их не использовать
 */
@media (prefers-reduced-motion: reduce) {
	* {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}


/*------------------------------ bunner ------------------------------*/
.bunner {
	width: 100%;
	height: 700px;
	background-image: url(../img/Picsart_25-10-06_12-46-47-741.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.bunner-text-section {
	width: 50%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 50px;
	padding: 0 100px;
	background: linear-gradient(90deg, rgba(254, 254, 254, 1) 0%, rgba(254, 254, 254, 0.48) 87%, rgba(254, 254, 254, 0) 100%);
}

.bunner-text h1 {
	font-size: 90px;
}

.bunner-inp-search {
	width: 60%;
	height: 60px;
	border-bottom-left-radius: 60px;
	border-top-left-radius: 60px;
	background-color: #ececec;
	border: none;
	outline: none;
	padding: 0 30px;
}

.search-but {
	height: 60px;
	background-color: #ececec;
	width: 100px;
	border-radius: 0;
	border-bottom-right-radius: 60px;
	border-top-right-radius: 60px;
}

.bunner-search-seaction {
	display: flex;
}

.bunner-slogs {
	font-size: 20px;
	margin-left: -22px;
}


.bunner-slogs ul { list-style: none; padding: 0; margin: 0; }
.bunner-slogs li {
  opacity: 0;
  transform: translateY(18px);
  filter: blur(4px);
  will-change: opacity, transform, filter;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(18px);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.bunner-slogs.play li {
  animation-name: fadeInUp;
  animation-duration: 0.7s;
  animation-timing-function: cubic-bezier(.2,.9,.2,1);
  animation-fill-mode: forwards; 
}
.bunner-slogs li {
	opacity: 0;
	transform: translateY(20px);
	filter: blur(4px);
	animation: fadeInUp 0.8s ease forwards;
}

/* Анимация */
@keyframes fadeInUp {
	  0% {
    opacity: 0;
    transform: translateY(20px);
    filter: blur(4px);
    text-shadow: none;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
  }
}

/*------------------------------ media bunner section ------------------------------*/
@media (max-width: 2150px) {
	.bunner-text h1 {
		font-size: 60px;
	}
}

@media (max-width: 1700px) {
	.bunner-text-section {
		width: 70%;
	}
}

@media (max-width: 1180px) {
	.bunner-text-section {
		width: 80%;
		padding: 0 30px;
	}
}

@media (max-width: 920px) {
	.bunner-text h1 {
		font-size: 55px;
	}
}

@media (max-width: 800px) {
	.bunner-text-section {
		width: 90%;
		padding: 0 10px;
	}
}

@media (max-width: 580px) {
	.bunner-text h1 {
		font-size: 45px;
	}
}

@media (max-width: 500px) {
	.bunner-text h1 {
		font-size: 40px;
	}

	.bunner-slogs {
		font-size: 15px;
	}
}

/*------------------------------ offers and skills ------------------------------*/
.offers-and-kills {
	display: flex;
	width: 100%;
	padding: 50px 0;
	justify-content: center;
	background-color: #fefefe;
}

.offers-container {
	display: flex;
	width: 80%;
	justify-content: space-between;
}

.card {
	width: 22%;
	backdrop-filter: blur(8px);
	border-radius: 20px;
	padding: 30px 35px;
	transition: .3s;
	background-color: #fbfbfb;
}

.card-title {
	margin-top: 20px;
	font-weight: 600;
}

.card-text {
	font-size: 20px;
}

.card-icon {
	background-color: #f4f4f4;
	font-size: 20px;
	padding: 10px;
	width: 20%;
	aspect-ratio: 1;
	/* width: min-content; */
	border-radius: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: .3s;
}

.card:hover {
	cursor: pointer;
	background-color: #ececec;
	scale: 1.01;
	box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -7px rgba(0, 0, 0, 0.2);
}

.card:hover>.card-icon {
	transform: rotate(360deg);
}

.card {
	opacity: 0;
	transform: translateY(50px);
}

/* когда элемент виден на экране */
.card.visible {
	opacity: 1;
	transform: translateY(0);
}

.familiarization-title {
	transform: matrix(1, 0, 0, 1, 0, 180);
	opacity: 0;
	transition: 1s;
}

/*------------------------------ media offers-and-kills ------------------------------*/
@media (max-width: 1750px) {
	.offers-container {
		width: 90%;
	}

	.card {
		width: 24%;
	}
}

@media (max-width: 1550px) {
	.offers-container {
		width: 100%;
	}
}

@media (max-width: 1300px) {
	.offers-container {
		flex-wrap: wrap;
		justify-content: space-evenly;
		gap: 50px;
	}

	.card {
		width: 40%;
	}
}

@media (max-width: 1000px) {
	.card {
		width: 47%;
	}
}

@media (max-width: 780px) {
	.card {
		width: 60%;
	}
}

@media (max-width: 650px) {
	.card {
		width: 80%;
	}
}

@media (max-width: 450px) {
	.card {
		width: 90%;
	}
}

/*------------------------------ familiarization ------------------------------*/


.familiarization {
	width: 100%;
	padding: 50px 0;
	display: flex;
	justify-content: center;
	background-color: #fefefe;
}

.familiarization-container {
	display: flex;
	width: 80%;
	justify-content: space-evenly;
}

.familiarization-title {
	width: 50%;
}

.familiarization-indicators {
	width: 50%;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.familiarization-title h2 {
	font-size: 40px;
}

.indicator {
	flex: 0 0 calc(50% - 10px);
	padding: 0 20px;
	border-left: 4px solid #ececec;
}

.indicator h3 {
	font-size: 40px;
	color: #2d43c7;
}

.indicator p {
	font-size: 30px;
}

/*------------------------------ media offers-and-kills ------------------------------*/
@media (max-width: 1560px) {
	.familiarization-container {
		flex-wrap: wrap;
		gap: 30px;
	}

	.familiarization-title {
		width: 80%;
	}

	.familiarization-indicators {
		width: 80%;
	}
}

@media (max-width: 1300px) {
	.familiarization-container {
		width: 100%;
	}
}

@media (max-width: 1000px) {
	.familiarization-title {
		width: 95%;
	}

	.familiarization-indicators {
		width: 95%;
	}
}

@media (max-width: 650px) {
	.indicator {
		flex: 0 0 97%;
	}
}

/*------------------------------ catalog section ------------------------------*/
.catalog-section {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 130px 0;
}

.catalog-section a {
	text-decoration: none;

}

.catalog-url {
	width: 500px;
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
}

.catalog-url i {
	opacity: 0;
	transition: .3s;
	margin-left: 10px;
}

.catalog-url:hover {
	background-color: #2d43c7;
	color: white;
}

.catalog-url:hover>i {
	opacity: 1;
	margin-left: 50px;
}

/*------------------------------ media catalog section ------------------------------*/
@media (max-width: 550px) {
	.catalog-url {
		width: 400px;
		height: 80px;
		font-size: 15px;
	}
}

@media (max-width: 420px) {
	.catalog-url {
		width: 300px;
	}
}

/*------------------------------ services section ------------------------------*/
.services {
	display: flex;
	width: 100%;
	padding: 50px 0;
	justify-content: center;
}

.sevices-container {
	width: 80%;
	display: flex;
	justify-content: space-evenly;
}

.services-title {
	width: 50%;
}

.services-sections {
	width: 50%;
	border-left: 3px solid #2d43c7;
	padding-left: 50px;
	display: flex;
	flex-direction: column;
	gap: 50px;
}

.services-sections h3 {
	color: #2d43c7;
	font-size: 40px;
	cursor: pointer;
}

.services-sections h4 {
	color: #2d43c7;
}

.services-sections>div {
	position: relative;
	height: min-content;
}

.services-numbers {
	position: absolute;
	height: 80%;
	aspect-ratio: 1;
	border-radius: 50px;
	border: 3px solid #2d43c7;
	left: -74px;
	top: 10%;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: white;
}

.services-title h2 {
	font-size: 40px;
}

/*------------------------------ media services section ------------------------------*/
@media (max-width: 1960px) {
	.sevices-container {
		flex-wrap: wrap;
		justify-content: center;
		gap: 50px;
	}

	.sevices-container>div {
		width: 95%;
	}
}

@media (max-width: 620px) {
	.services-sections {
		padding-left: 3px;
		width: 100%;
	}

	.sevices-container>div {
		width: 100%;
	}

	.services-numbers {
		left: -54px;
	}
}

@media (max-width: 580px) {
	.sevices-container {
		width: 92%;
	}
}

@media (max-width: 480px) {
	.services-numbers {
		display: none;
	}
}