.banner {
	max-width: 1500px;
	margin-top: 186px;
	background: var(--bg-grey);
	border-radius: 0px 80px 0px 80px;
	padding: 80px 100px;
	justify-content: center;
}

.banner > .block {
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
}

.banner > .block:first-child {
	flex-grow: 10;
}

.banner > .block:last-child {
	justify-content: center;
	align-items: center;
}

.banner h1 {
	font-family: var(--main-font-bold);
	font-size: 76px;
	color: var(--blue);
	margin: 50px 0px 30px 0px;
	justify-content: flex-start;
	flex-wrap: wrap;
}

.banner h1 b {
	font-family: var(--main-font-bold);
	color: var(--orange);
	flex-wrap: nowrap;
	white-space: nowrap;
}

.banner h2 {
	font-family: var(--main-font-semibold);
	color: var(--grey1);
	font-size: 32px;
	margin-bottom: 100px;
}

.banner .circle {
	height: 33vw;
	width: 33vw;
	max-height: 588px;
	max-width: 588px;
	border-radius: 100%;
	background: var(--bg-orange-gr);
	position: relative;
}

.banner .circle .cut1,.banner .circle .cut2 {
	width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 100%;
  position: relative;
  margin-top: -120px;
  position: absolute;
}

.banner .circle .cut2 {
	margin-top: 0px;
}

.banner .circle .cut1 img, .banner .circle .cut2 img {
	position: absolute;
	bottom: -180px;
	height: 43vw;
	max-height: 710px;
}

.banner .circle .cut2 img {
	bottom: -60px;
}

.banner .search {
	background: var(--bg-white);
	width: calc(100% - 30px);
	min-height: 95px;
	border-radius: 15px;
	position: relative;
	align-items: center;
}

.banner .search .block {
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	flex-grow: 1;
	padding: 10px 15px;
	cursor: pointer;
	position: relative;
	flex-wrap: wrap;
	margin: 10px;
	width: calc(60% - 50px);
	min-width: 250px;
}

.banner .search ul {
	display: none;
	position: absolute;
	background: var(--bg-white);
	left: -10px;
	top: 40px;
	right: -10px;
	height: 200px;
	margin: 0;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	align-content: flex-start;
	padding: 10px 30px 10px 25px;
	border-radius: 0px 0px 15px 15px;
	flex-wrap: nowrap;
	overflow: hidden scroll;
}

.banner .search ul .scrollbar-track {
	margin-right: 10px;
  width: 10px;
  background: var(--bg-grey);
  border-radius: 5px;
}

.banner .search ul .scrollbar-thumb {
	background: var(--orange);
  width: 10px;
}

.banner .search ul li {
	font-size: 18px;
	justify-content: flex-start;
	padding: 15px 10px;
	width: 100%;
	cursor: pointer;
}

.banner .search ul li:not(:last-child) {
	border-bottom: solid 1px var(--bg-grey);
}

.banner .search ul li:hover {
	background: var(--bg-grey);
}

.banner .btn {
	width: calc(40% - 20px);
	flex-grow: 1;
	margin: 10px;
}
.banner .search .items {
	align-items: center;
	flex-wrap: nowrap;
}

.banner .search .items .arrow {
	width: 4px;
	height: 4px;
	border: solid black;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 2px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    margin: 5px 7px 10px 7px;
    transition: .2s;
}

.banner .search .block[data-active="true"] .arrow {
	transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    margin: 5px 7px 5px 7px;
}

.banner .search .title {
	font-size: 18px;
	font-family: var(--main-font-medium);
	margin-bottom: 5px;
}

.banner .search .name {
	color: var(--grey3);
	font-size: 18px;
	font-family: var(--main-font-medium);
}

.about {
	align-items: stretch;
	max-width: 1620px;
	margin-top: 50px;
	padding: 0px;
}

.about .block1 {
	flex-grow: 1;
	width: 40%;
	max-height: 394px;
  height: 30vw;
	background: var(--bg-blue);
	border-radius: 80px 0px 80px 0px;
	position: relative;
	margin-top: 60px;
	align-items: center;
	margin: 50px 60px 0px 60px;
}

.about .imgs {
	max-height: 100%;
	height: 80%;
	position: relative;
}

.about .block1 img {
	position: absolute;
	height: 130%;
	min-height: 140px;
	-webkit-filter: drop-shadow(3px 5px 5px rgba(0,0,0,0.3));
 	filter: drop-shadow(3px 5px 5px rgba(0,0,0,0.3));
  bottom: 0;
}

.about .block2 {
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-start;
	width: 40%;
	flex-grow: 1;
	margin: 0px 60px;
}

.about .title {
	font-family: var(--main-font-medium);
	font-size: 54px;
	margin-bottom: 30px;
}

.about .subtitle {
	font-family: var(--main-font-medium);
	font-size: 32px;
	margin-bottom: 20px;
}

.about .description {
	font-size: 18px;
	margin-bottom: 40px;
}

.about .btn {
	width: 243px;
}

.hits {
	max-width: 1500px;
	background: var(--bg-grey);
	border-radius: 0px 80px 0px 80px;
	align-items: flex-start;
	padding: 50px 50px;
	flex-wrap: nowrap;
	overflow: hidden;
	position: relative;
}

.hits .transparent {
	width: 100px;
	position: absolute;
	top: 0;
	bottom: 0;
}

.hits .transparent:first-child {
	left: 0;
	background: linear-gradient(270deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 100%);
	border-top-right-radius: 100%;
	border-bottom-right-radius: 100%;
}

.hits .transparent:last-child {
	right: 0;
	background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 100%);
	border-top-left-radius: 100%;
	border-bottom-left-radius: 100%;
}

.hits .items {
	width: 100%;
	justify-content: flex-start;
}

.hits .owl-nav, .hits .owl-dot {
	display: none;
}

.hits .item {
	flex-direction: column;
  justify-content: flex-start;
	padding: 20px;
	margin: 5px;
	max-width: 320px;
	min-width: 280px;
}

.hits .count {
	font-size: 48px;
	color: var(--blue);
	font-family: var(--main-font-semibold);
	margin-bottom: 40px;
	text-align: center;
}

.hits .description {
	font-size: 22px;
	text-align: center;
}

.direction {
	flex-direction: column;
	flex-wrap: wrap;
}

.direction h4 {
	width: 100%;
	justify-content: flex-start;
	font-size: 54px;
	font-family: var(--main-font-medium);
	margin-bottom: 50px;
}

.direction .block {
	justify-content: flex-start;
	margin: 0px -15px;
	flex-wrap: wrap;
}

.direction .item {
	width: calc(25% - 30px);
	height: 266px;
	margin: 15px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
}

.direction .bg {
	width: 100%;
	height: 100%;
	background: linear-gradient(0deg, rgba(9, 9, 9, 0.9) 0.14%, rgba(0, 0, 0, 0) 69.82%);
	align-items: flex-end;
	padding: 32px;
}

.direction .item:hover .bg {
	background: linear-gradient(0deg, var(--bg-blue-tr), var(--bg-blue-tr));
}

.direction .text {
	color: var(--white);
	font-family: var(--main-font-medium);
	font-size: 24px;
	width: 100%;
	justify-content: flex-start;
}

.benefits {
	flex-direction: column;
	flex-wrap: wrap;
}

.benefits h5 {
	width: 100%;
	justify-content: flex-start;
	font-size: 54px;
	font-family: var(--main-font-medium);
	margin-bottom:  75px;
}

.benefits .block {
	align-items: stretch;
	margin: 0px -15px;
	flex-wrap: wrap;
}

.benefits .items {
	flex-grow: 10;
	flex-basis: 863px;
	min-height: 494px;
	background: var(--bg-grey);
	border-radius: 0px 80px 0px 80px;
	flex-basis: 494px;
	justify-content: flex-start;
	align-items: flex-start;
	padding: 50px;
	margin: 0px 15px;
	flex-wrap: wrap;
}

.benefits .item {
	width: calc(50% - 40px);
	justify-content: flex-start;
	align-content: flex-start;
	flex-wrap: nowrap;
	margin: 20px;
	align-items: center;
}

.benefits .circle {
	background: var(--white);
	border-radius: 100%;
	width: 97px;
	height: 97px;
	margin-right: 20px;
	align-items: center;
	flex-shrink: 0;
}

.benefits .items .text {
	font-size: 18px;
	line-height: 140%;
}

.benefits .img {
	flex-grow: 1;
	background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 494px;
    flex-basis: 400px;
    border-radius: 80px 0px 80px 0px;
    margin: 0px 15px;
}

.live {
	flex-direction: column;
	align-items: flex-start;
  overflow: visible;
}

.live .title {
	width: 100%;
	margin-bottom: 50px;
	justify-content: space-between;
}

.live h6 {
	justify-content: flex-start;
	font-size: 54px;
	font-family: var(--main-font-medium);
}

.live .title img {
	width: 60px;
	height: 60px;
	margin-left: 15px;
}


.live .items {
	width: 100%;
	justify-content: flex-start;
	margin-bottom: 10px;
}

.live .owl-item {
  opacity: 0.5;
  transition: .2s;
}

.live .owl-stage-outer {
  justify-content: flex-start;
}

.live .owl-stage {
  flex-wrap: nowrap;
}

.live .owl-item.active {
  opacity: 1;
}

.live .items .img {
	background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
	width: 353px;
	height: 353px;
	border-radius: 20px;
	flex-shrink: 0;
}

.live .owl-nav {
	margin-top: 20px;
	width: 100%;
	justify-content: center;
}

.live .owl-prev {
	width: 72px;
	height: 72px;
	margin: 15px;
}

.live .owl-next {
	width: 72px;
	height: 72px;
	margin: 15px;
}

.live .owl-dots {
	display: none;
  width: 100%;
  margin-top: 20px;
}

.live .owl-dots .owl-dot {
  border-radius: 100%;
  background: transparent;
  width: 8px;
  height: 8px;
  border: solid 1px var(--blue);
  padding: 0;
  margin: 0px 4px;
}

.live .owl-dots .owl-dot.active {
  background: var(--blue);
}

.enter {
	align-items: flex-end;
}

.enter .block1 {
	z-index: 2;
	background: var(--bg-blue);
	border-radius: 80px 0px 80px 0px;
	min-height: 394px;
	flex-basis: 765px;
	flex-direction: column;
	align-items: flex-start;
	padding: 50px 100px;
	flex-grow: 1;
}

.enter .block1 .text {
	font-family: var(--main-font-medium);
	font-size: 54px;
	color: var(--white);
	margin-bottom: 60px;
}

.enter .btn {
	width: 290px;
}

.enter .block2 {
	z-index: 1;
	margin-left: -140px;
	background: var(--bg-grey);
	border-radius: 0px 80px 0px 80px;
	min-height: 352px;
	flex-basis: 863px;
	flex-direction: column;
	align-items: flex-start;
	padding: 40px 100px 40px 240px;
	flex-grow: 1;
}

.enter .block2 .text {
	flex-direction: column;
	font-family: var(--main-font-medium);
	font-size: 42px;
	margin-bottom: 40px;
}

.enter a {
	font-size: 28px;
	margin-bottom: 20px;
	align-items: center;
	color: var(--blue);
}

.enter a img {
	margin-right: 20px;
	height: 31px;
}

.enter a div {
	color: var(--blue);
}

@media(max-width: 1200px) {
  .direction .item {
    width: calc(33% - 30px);
  }
  .benefits .item {
    width: 100%;
  }
}

@media(max-width: 1000px) {
  .direction .item {
    width: calc(50% - 30px);
  }
}

@media(max-width: 800px) {
	.banner {
		margin: 150px 0px 0px 0px;
		padding: 50px 15px;
		border-radius: 0px 40px 0px 50px;
	}
	.banner h1 {
		font-size: 35px;
		margin-top: 20px;
		margin-bottom: 20px;
	}
	.banner h2 {
		font-size: 20px;
		margin-bottom: 30px;
	}
	.banner .search {
		width: 100%;
	}
  .banner .search ul {
		top: 30px;
    padding-left: 0px;
	}
  .banner .search ul li {
    padding-left: 25px; 
    font-size: 12px;
	}
  .banner .search ul .scrollbar-track {
    width: 5px;
  }

  .banner .search ul .scrollbar-thumb {
    width: 5px;
  }
	.banner .search .block {
		margin-bottom: 30px;
	}
	.banner .search .title, .banner .search .name {
		font-size: 14px;
	}
	.about {
		flex-direction: column;
    margin-top: 30px;
	}
	.about .block1 {
		height: 50vw;
		border-radius: 30px 0px 30px 0px;
		margin: 50px 15px 0px 15px;
		width: calc(100% - 30px);
	}
	.about .block2 {
		margin: 50px 15px 0px 15px;
		width: calc(100% - 30px);
	}
	.about .title {
		font-size: 38px;
	}
	.about .subtitle {
		font-size: 20px;
	}
	.about .description {
		font-size: 16px;
	}
	.about .btn {
		width: 100%;
	}
	.hits {
		padding: 0px;
		margin-top: 40px;
		border-radius: unset;
	}
	.hits .items {
		justify-content: flex-start;
	}
	.hits .item {
		min-width: 170px;
		max-width: 250px;
	}
	.hits .count {
		font-size: 32px;
	}

	.hits .description {
		font-size: 16px;
	}
	.direction h4 {
		font-size: 38px;
	}
	.direction .item {
		width: 100%;
		height: 50vw;
	}
	.direction .text {
		font-size: 18px;
	}
	.benefits h5 {
		font-size: 38px;
	}
	.benefits .items {
		padding: 30px 10px;
		margin: 0;
    border-radius: 0px 30px 0px 30px;
	}
	.benefits .item {
		width: 100%;
    margin: 10px 15px;
	}
	.benefits .circle {
		width: 80px;
		height: 80px;
	}
	.benefits .items .text {
		font-size: 16px;
	}
	.live h6 {
		font-size: 38px;
	}
  .live .items {
    overflow: hidden;
    margin: 0px -15px;
    width: calc(100% + 30px);
  }
  .live .owl-item.active {
    opacity: 0.7;
  }
  .live .owl-item.center {
    opacity: 1;
  }
  .live .owl-nav {
    display: none;
  }
  .live .owl-dots {
    display: flex;
  }
	.live .items .img {
		height: 268px;
		width: 268px;
	}
	.enter {
		padding: 0;
		flex-wrap: wrap-reverse;
	}
	.enter .block1 {
		z-index: 1;
		margin-top: -100px;
		padding: 0;
		flex-wrap: wrap;
		border-radius: 0px 0px 30px 0px;
		padding: 150px 15px 50px 15px;
	}
	.enter .block1 .text {
		font-size: 38px;
	}
	.enter .block2 .text {
		font-size: 32px;
	}
	.enter a {
		font-size: 20px;
	}
	.enter a img {
		height: 20px;
	}
	.enter .btn {
		width: 100%;
	}
	.enter .block2 {
		z-index: 2;
		margin:  0;
		border-radius: 0px 30px 0px 30px;
		padding: 50px 15px;
    min-height: unset;
	}
}