@font-face {
	font-family: "Roboto";
	src: url("fonts/roboto-bold.woff2") format("woff2"), url("fonts/roboto-bold.woff") format("woff");
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "Roboto";
	src: url("fonts/roboto-regular.woff2") format("woff2"), url("fonts/roboto-regular.woff") format("woff");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}
* {
	--hover-color: #d20065;
}
.title__top {
	text-transform: uppercase;
	font-size: 30px;
	font-weight: 900;
	font-family: "Roboto", sans-serif;
}
.title {
	font-size: 70px;
	line-height: 80px;
	text-transform: uppercase;
	font-weight: 900;
	font-family: "Roboto", sans-serif;
}

.title-h2 {
	font-size: 25px;
	text-transform: uppercase;
	font-weight: 700;
	text-align: center;
	color: #6492aa;
}

.btn {
	padding: 11px;
	text-transform: uppercase;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	font-family: "Roboto", sans-serif;
	display: block;
	max-width: 215px;
	text-align: center;
	width: 100%;
}
.btn-more {
	background: #6492aa;
}
.btn-watch {
	display: flex;
	align-items: center;
	border: 2px solid #fff;
	border-radius: 5px;
	line-height: 1;
	transition: .2s ease;
}
.btn-watch:hover {
	border-color: var(--hover-color);
}

.container {
	max-width: 1520px;
	margin: 0 auto;
	padding-left: 20px;
	padding-right: 20px;
}

.header {
	background: #fff;
	position: relative;
	padding: 40px 0;
	z-index: 5;
}
.header .container {
	display: flex;
	align-items: center;
}
.header__menu {
	display: flex;
	list-style: none;
	text-transform: uppercase;
	font-weight: 700;
	font-size: 19px;
	letter-spacing: -0.4px;
	margin-left: auto;
}
.header__menu li {
	margin-right: 29px;
}
.header__menu .current-menu-item a {
	color: #d20065;
}
.header__menu a {
	color: #000;
}
.header__menu a:hover {
	color: var(--hover-color);
}
.header__logo {
	max-width: 345px;
	width: 100%;
}
.header__logo img {
	width: 100%;
	height: 100%;
}
.header::after {
	content: "";
	top: 0;
	right: 0;
	display: block;
	position: absolute;
	left: 38%;
	height: 6px;
	background: #6492aa;
}
.header__search {
	display: flex;
	align-items: center;
	margin-right: 1%;
	margin-left: 40px;
	cursor: pointer;
}
.header__search img {
	width: 25px;
	height: 25px;
}
.header__search.active .header__search-panel {
	opacity: 1;
	visibility: visible;
	top: 30px;
}
.header__search-panel {
	transition: 0.2s ease-in-out;
	visibility: hidden;
	top: 20px;
	opacity: 0;
	position: absolute;
	left: 10px;
	right: 10px;
	box-shadow: 0 0 10px #ccc;
	padding-right: 65px;
	cursor: auto;
	background: #fff;
}
.header__search-panel input {
	width: 100%;
	font-size: 20px;
	padding: 20px;
}
.header__search-panel input::placeholder {
	text-transform: uppercase;
}
.header__panel-close {
	cursor: pointer;
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
}
.nav-wrapper {
	display: flex;
	align-items: center;
	width: 100%;
}

.header-burger {
	display: none;
	flex-direction: column;
	width: 20px;
	height: 20px;
	align-items: stretch;
	justify-content: space-between;
	margin-left: auto;
}
.header-burger.active {
	justify-content: center;
}

.header-burger span {
	transition: 0.2s ease-in-out;
	background: #000;
	height: 4px;
	display: block;
	margin: 0 auto;
	width: 100%;
}
.header-burger.active span {
	margin-bottom: -4px;
	width: calc(100% + 4px);
}
.header-burger.active span:nth-child(1) {
	transform: rotate(45deg);
	transition-delay: 0.2s;
}
.header-burger.active span:nth-child(2) {
	width: 0;
}
.header-burger.active span:nth-child(3) {
	transform: rotate(-45deg);
	transition-delay: 0.2s;
}

main {
	overflow: hidden;
}
.banner {
	position: relative;
	color: #fff;
	padding: 170px 0;
	overflow: hidden;
}
.banner__item {
	width: 250px;
	height: 250px;
	border: 6px solid #fff;
	overflow: hidden;
	border-radius: 100%;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-60%, -60%);
}
.banner__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.banner__bg {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	z-index: -1;
}
.banner__bg img {
	width: 100%;
	min-height: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 46% 0;
}
.banner__text {
	max-width: 550px;
}

.sponsors {
	padding: 37px 0 51px;
}
.sponsors__list {
	border-top: 1px solid #ccc;
	margin-top: 20px;
	padding: 20px 10px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}
.sponsors__list li {
	height: 60px;
	font-size: 0;
	width: 100%;
	text-align: center;
}
.sponsors__list img {
	max-width: 190px;
	width: 100%;
	height: 100%;
	object-fit: contain;
	filter: grayscale(1) brightness(0) opacity(0.6);
}

.our-mission {
	background: #6492aa;
	padding: 75px 0;
}
.our-mission .container {
	display: flex;
	justify-content: space-between;
	max-width: 1490px;
}
.our-mission__images-top,
.our-mission__images-bottom {
	width: 100%;
	display: flex;
	position: relative;
	justify-content: space-between;
}
.our-mission__images-wrapper {
	padding: 10px;
	position: relative;
	margin-right: 20px;
	height: 100%;
	width: 100%;
}
.our-mission__images-wrapper span {
	position: absolute;
	border: 5px solid #fff;
	padding: 8px;
}
.our-mission__images-wrapper span:nth-child(1) {
	top: 0;
	left: 0;
	border-bottom: unset;
	border-right: unset;
}
.our-mission__images-wrapper span:nth-child(2) {
	top: 0;
	right: 0;
	border-bottom: unset;
	border-left: unset;
}
.our-mission__images-wrapper span:nth-child(3) {
	bottom: 0;
	right: 0;
	border-top: unset;
	border-left: unset;
}
.our-mission__images-wrapper span:nth-child(4) {
	bottom: 0;
	left: 0;
	border-top: unset;
	border-right: unset;
}
.our-mission__image {
	font-size: 0;
	line-height: 0;
}
.our-mission__image img {
	width: 100%;
	min-height: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.our-mission__text {
	padding: 60px 50px;
	max-width: 477px;
	background: #fff;
	font-size: 21px;
	line-height: 32px;
	width: 100%;
	letter-spacing: -0.2px;
	display: flex;
	flex-direction: column;
}
.our-mission .title-h2 {
	text-align: left;
	font-size: 28px;
	line-height: 28px;
	margin-bottom: 10px;
}
.our-mission p {
	max-width: 370px;
	color: #565656;
}
.our-mission .btn {
	margin-top: auto;
	transition: .2s ease;
	font-size: 16px;
}
.our-mission .btn:hover {
	background: var(--hover-color);
}

.product {
	padding: 105px 0;
}
.cards {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
}
.card {
	display: flex;
	flex-direction: column;
	height: 100%;
	width: calc(50% - 20px);
	padding: 5px;
	border: 3px solid #6492aa;
	background: #fff;
	position: relative;
	height: auto;
}
.card__img {
	max-height: 385px;
	height: auto;
	overflow: hidden;
}
.card__img img {
	object-fit: cover;
	height: 100%;
	width: 100%;
}
.card__bottom {
	display: flex;
	padding: 0 20px;
	height: 40%;
}
.card__date {
	color: #fff;
	margin-top: -55px;
	margin-right: 25px;
	width: 100%;
	max-width: 95px;
}
.card__date span {
	background: #4b829f;
	display: block;
	text-align: center;
	text-transform: uppercase;
	font-size: 15px;
	font-weight: 700;
	padding: 16px 10px;
	line-height: 1;
}
.card__date span:nth-child(1) {
	padding: 6px 10px;
	font-size: 58px;
	background: #6492aa;
}

.card__text {
	padding: 30px 0 45px;
	display: flex;
	flex-direction: column;
}
.card__title {
	font-size: 30px;
	font-weight: 700;
	line-height: 45px;
	text-transform: capitalize;
	margin-bottom: 25px;
	color: #000;
}
.card__title:hover {
	color: #d20065;
}
.card__author {
	margin-top: auto;
	font-size: 16px;
	color: #6492aa;
}

.popular-product {
	background: #4d5b64;
	padding: 65px 0 215px;
}
.popular-product h2 {
	text-align: center;
	color: #fff;
	text-transform: uppercase;
	margin-bottom: 75px;
	font-size: 40px;
	font-weight: 400;
}

.our-channel {
	background: linear-gradient(120deg, rgba(100, 146, 170, 1) 56.9%, rgba(85, 126, 146, 1) 57%);
	position: relative;
	padding: 135px 0;
}
.our-channel .container {
	padding: 0 35px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.our-channel h2 {
	margin-bottom: 14px;
}
.our-channel .title {
	color: #fff;
	max-width: 250px;
	font-size: 44px;
	line-height: 65px;
	margin-bottom: 25px;
}
.our-channel .btn {
	max-width: 100%;
	font-size: 17px;
}
.our-channel .videos {
	display: flex;
	gap: 60px;
	width: 73%;
	padding: 0 40px;
}
.our-channel .video {
	width: 50%;
	border: 8px solid #fff;
	font-size: 0;
}
.our-channel iframe {
	max-width: 800px;
	max-height: 315px;
	width: 100%;
}

.categories {
	padding: 140px 0 73px;
}
.categories .container {
	padding: 0 65px;
	max-width: 1600px;
}
.categories__wrapper {
	border: 1px solid #ccc;
	padding: 0 130px 90px;
	max-width: 1450px;
	margin: 0 auto;
	position: relative;
}
.categories__title {
	text-align: center;
	text-transform: uppercase;
	font-size: 27px;
	background: #6492aa;
	color: #fff;
	padding: 5px 20px;
	width: 100%;
	max-width: max-content;
	margin: -27px auto 52px;
}
.categories__title h2 {
	font-weight: 700;
}
.categories__list {
	columns: 4;
	margin-left: 50px;
}
.categories__list a {
	color: #000;
	font-size: 20px;
	text-transform: capitalize;
	transition: .2s ease;
}
.categories__list a:hover {
	color: var(--hover-color);
}
.categories__list li {
	margin-bottom: 4px;
	padding-right: 10px;
}
.categories__image {
	position: absolute;
	width: 140px;
	height: 140px;
	transform: translateY(-50%);
}
.categories__image:nth-child(1) {
	left: -70px;
	top: 50%;
	background: #fff;
}
.categories__image:nth-child(2) {
	right: -70px;
	top: 50%;
}
.categories__image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.footer {
	background: #131211;
	color: #a4aaaa;
	padding: 60px 0;
}
.footer .container {
	padding: 0 37px;
}
.footer__links {
	display: flex;
	margin-bottom: 10px;
}
.footer__links li {
	line-height: 1;
	font-size: 21px;
}
.footer__links li:not(:last-child) {
	border-right: 2px solid #fff;
	padding-right: 15px;
	margin-right: 10px;
}
.footer__text {
	font-size: 18px;
	max-width: 940px;
	line-height: 26px;
	font-family: "Roboto";
	margin-bottom: 15px;
}
.footer__links a {
	color: #fff;
	font-family: "Roboto", sans-serif;
}
.footer__copyright {
	font-size: 18px;
	padding-top: 5px;
	border-top: 1px solid #2c2c2c;
}

.banner .socials {
	position: absolute;
	right: 0;
	top: 6%;
	margin-right: unset;
	overflow: unset;
	z-index: 0;
}
.banner .socials .icon {
	width: 70px;
	height: 70px;
	transition: .2s ease-in-out;
	position: relative;
}
.banner .socials .icon:hover {
	transform: translateX(-4px);
}
.banner .socials img {
	width: 30px;
	height: 30px;
}
.banner .socials .icon a {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0;
	width: 100%;
	height: 100%;
}
.icon-facebook a {
	background: #3e5b95 !important;
}
.icon-twitter a {
	background: #1da1f2 !important;
}
.icon-instagram a {
	background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%) !important;
}
.icon-pinterest a {
	background: #d63336 !important;
}
.icon-youtube a {
	background: #000 !important;
}

.arrow-up {
	display: none;
	cursor: pointer;
	position: fixed;
	right: 15px;
	bottom: 10px;
}
.arrow-up img {
	width: 30px;
	height: 30px;
}
@media screen and (max-width: 1800px) {
	.container,
	.our-mission .container,
	.our-channel .container,
	.footer .container {
		max-width: 1125px;
		padding-left: 20px;
		padding-right: 20px;
	}

	.header {
		padding: 28px 0;
	}
	.header__menu {
		font-size: 16px;
		letter-spacing: unset;
	}
	.header__menu li {
		margin-right: 19px;
	}
	.header__search img {
		width: 20px;
		height: 20px;
	}
	.header__logo {
		max-width: 260px;
	}

	.banner {
		padding: 130px 0;
	}
	.banner__text {
		max-width: 410px;
	}
	.banner__item {
		width: 190px;
		height: 190px;
	}
	.banner .socials .icon {
		width: 53px;
		height: 53px;
	}

	.title {
		font-size: 52px;
		line-height: 60px;
	}
	.title__top {
		font-size: 21px;
	}

	.sponsors {
		padding: 22px 0 40px;
	}
	.sponsors__list {
		margin-top: 15px;
		padding: 25px 10px 0;
	}
	.sponsors__list li {
		height: 35px;
	}

	.title-h2 {
		font-size: 19px;
	}

	.our-mission {
		padding: 55px 0 70px;
	}
	.our-mission .title-h2 {
		font-size: 21px;
		line-height: 24px;
		margin-bottom: 5px;
	}
	.our-mission__text {
		max-width: 357px;
		padding: 45px 38px;
		font-size: 16px;
		line-height: 24px;
	}
	.our-mission .btn {
		font-size: 14px;
		max-width: 160px;
	}
	.our-mission__images-wrapper span {
		border: 3px solid #fff;
		padding: 6px;
	}

	.product {
		padding: 75px 0;
	}
	.card {
		border-width: 2px;
		width: calc(50% - 17px);
	}
	.card__bottom {
		padding: 0 14px;
	}
	.card__img {
		max-height: 288px;
	}
	.card__date {
		margin-top: -42px;
		max-width: 73px;
		margin-right: 18px;
	}
	.card__date span {
		font-size: 12px;
		padding: 11px 5px;
	}
	.card__date span:nth-child(1) {
		padding: 5px 10px;
		font-size: 44px;
	}
	.card__text {
		padding: 18px 0 30px;
	}
	.card__title {
		font-size: 24px;
		line-height: 37px;
		margin-bottom: 25px;
		margin-bottom: 16px;
	}
	.cards {
		gap: 33px;
	}
	
	.popular-product {
		padding: 42px 0 155px;
	}
	.popular-product h2 {
		font-size: 30px;
		margin-bottom: 60px;
	}

	.our-channel {
		padding: 103px 0;
	}
	.our-channel .title {
		max-width: 187px;
		font-size: 35px;
		line-height: 45px;
		margin-bottom: 5px;
	}
	
	.our-channel .btn {
		font-size: 13px;
	}
	.our-channel .btn-watch img {
		width: 34px;
		height: 34px;
	}
	.our-channel iframe {
		max-height: 225px;
	}
	.our-channel .videos {
		width: 78%;
		padding: 0 10px 0 30px;
		gap: 40px;
	}
	.our-channel .video {
		border: 5px solid #fff;
	}

	.categories {
		padding: 120px 0 55px;
	}
	.categories__wrapper {
		padding: 0 95px 65px;
		max-width: 1080px;
	}
	.categories__title {
		font-size: 19px;
		padding: 5px 20px;
		max-width: max-content;
		margin: -27px auto 38px;
	}
	.categories__list li {
		margin-bottom: 1px;
	}
	.categories__list a {
		font-size: 15px;
	}
	.categories__image {
		width: 110px;
		height: 110px;
	}
	.categories__image:nth-child(1) {
		left: -53px;
	}
	.categories__image:nth-child(2) {
		right: -53px;
		top: 50%;
	}

	.footer {
		padding: 44px 0;
	}
	.footer__links {
		margin-bottom: 8px;
	}
	.footer__links li {
		font-size: 15px;
	}
	.footer__text {
		font-size: 14px;
		max-width: 710px;
		line-height: 20px;
		margin-bottom: 10px;
		letter-spacing: -0.2px;
	}
	.footer__copyright {
		font-size: 14px;
		padding-top: 3px;
	}
}

@media screen and (max-width: 1100px) {
	.header-burger {
		display: flex;
	}
	.nav-wrapper {
		right: -20px;
		flex-direction: column;
		position: absolute;
		right: 0;
		top: 95%;
		background: #6492aa;
		padding-bottom: 20px;
		max-width: 400px;
		transition: 0.2s ease-in-out;
		opacity: 0;
		visibility: hidden;
	}
	.nav-wrapper.open {
		top: 100%;
		opacity: 1;
		visibility: visible;
	}
	.header__menu {
		flex-direction: column;
		text-align: center;
		width: 100%;
	}
	.header__menu li {
		margin-right: unset;
		padding: 10px;
		border-top: 1px solid #fff;
		border-bottom: 1px solid transparent;
	}
	li.current-menu-item {
		border-top-color: #d20065;
		border-bottom-color: #d20065;
	}
	li.current-menu-item + li {
		border-top-color: transparent;
	}
	.header__menu li a {
		color: #fff;
	}
	.header__panel-close,
	.header__panel-open {
		display: none;
	}
	.header__search {
		width: 100%;
		margin: unset;
	}
	.header__search input,
	.header__search input::placeholder {
		text-align: center;
	}
	.header__search-panel {
		top: 0;
		width: 100%;
		box-shadow: unset;
		padding-right: unset;
		left: 0;
		right: 0;
		position: relative;
		opacity: 1;
		visibility: visible;
	}
	.header__search-panel input {
		font-size: 13px;
		padding: 10px;
	}

	.banner {
		padding: 80px 0;
	}
	.banner__item {
		display: none;
	}
	.banner__bg img {
		object-position: 70% 0;
	}

	.sponsors__list {
		flex-wrap: wrap;
	}
	.sponsors__list li {
		width: calc(33.3% - 20px);
	}

	.our-mission .container {
		flex-direction: column;
		align-items: center;
		max-width: 928px;
	}
	.our-mission__images {
		max-width: 928px;
	}
	.our-mission__images-wrapper {
		margin: 0 auto 20px;
		width: 100%;
	}
	.our-mission__text {
		max-width: 100%;
	}
	.our-mission p {
		max-width: 100%;
	}
	.our-mission .btn {
		margin-top: 20px;
	}

	.card__date {
		position: absolute;
		left: 5px;
		top: 5px;
		margin: unset;
	}

	.our-channel {
		padding: 75px 0 120px;
	}
	.our-channel .container {
		flex-direction: column;
		padding: unset;
	}
	.our-channel .title {
		max-width: 100%;
	}
	.our-channel .videos {
		width: 100%;
	}
	.our-channel .btn {
		max-width: max-content;
		position: absolute;
		bottom: 15px;
		left: 50%;
		transform: translateX(-50%);
	}

	.categories__list {
		columns: 3;
	}
	.categories__wrapper {
		padding: 0 90px 90px;
	}
}

@media screen and (max-width: 950px) {
	.product {
		padding: 55px 0;
	}
	.cards {
		gap: 20px;
	}
	.card {
		width: 100%;
	}
	.card__date {
		max-width: 85px;
	}
	.card__date span {
		font-size: 13px;
	}
	.card__date span:nth-child(1) {
		padding: 13px 10px;
		font-size: 30px;
	}
	.card__img {
		max-height: 325px;
	}
	.card__text {
		padding: 30px 0 25px;
	}

	.popular-product {
		padding: 35px 0;
	}
	.popular-product h2 {
		margin-bottom: 25px;
	}

	.our-channel .videos {
		flex-direction: column;
		align-items: center;
	}
	.our-channel .video {
		width: 100%;
		max-width: 510px;
	}

	.categories__list {
		columns: 2;
	}
}

@media screen and (max-width: 768px) {
	.btn {
		padding: 6px;
		font-size: 17px;
		max-width: 182px;
	}
	.nav-wrapper {
		max-width: 100%;
	}
	.header {
		padding: 20px 0;
	}
	.header::after {
		left: 0;
	}
	.header__logo {
		max-width: 230px;
		margin-top: 10px;
	}

	.title {
		font-size: 28px;
		line-height: 38px;
	}

	.banner {
		padding: 230px 0 0;
	}
	.banner__text {
		max-width: calc(100% + 40px);
		background: rgba(0, 0, 0, 0.6);
		margin-left: -20px;
		margin-right: -20px;
		padding: 20px;
	}
	.banner__bg img {
		object-position: 94% 0;
	}


	.our-mission {
		padding: 40px 0;
	}
	.our-mission__text {
		padding: 19px 12px 30px;
	}
	.our-mission .title-h2 {
		font-size: 23px;
		line-height: 25px;
	}
	.our-mission .btn {
		margin-top: 40px;
	}

	.our-channel {
		background: linear-gradient(110deg, rgba(100, 146, 170, 1) 94.9%, rgba(85, 126, 146, 1) 95%);
		padding: 35px 0 160px;
	}
	.our-channel h2 {
		font-size: 42px;
	}
	.our-channel .container {
		padding: 0 20px;
	}
	.our-channel .videos {
		padding: unset;
		gap: 30px;
	}
	.our-channel .video {
		max-width: 590px;
	}
	.our-channel iframe {
		max-height: 300px;
	}
	.our-channel .btn {
		max-width: calc(100% - 50px);
		justify-content: center;
		bottom: 55px;
		font-size: 18px;
	}
	.our-channel .btn img {
		height: 40px;
	}

	.categories {
		padding: 60px 0 40px;
	}
	.categories__title {
		font-size: 17px;
		margin: -17px auto 52px;
	}
	.categories .container {
		padding: 0 25px;
	}
	.categories__wrapper {
		padding: 0 26px 30px;
	}
	.categories__image {
		width: 75px;
		height: 75px;
		transform: unset;
	}
	.categories__image:nth-child(1) {
		left: -20px;
		top: -25px;
	}
	.categories__image:nth-child(2) {
		right: -20px;
		top: -25px;
	}
	.categories__list li {
		margin-bottom: 6px;
	}
	.categories__list a {
		font-size: 15px;
	}

	.footer__links {
		margin-bottom: 40px;
	}
	.footer__text {
		margin-bottom: 5px;
	}
	.footer__copyright {
		padding-top: 20px;
	}
	
	.banner .socials {
		top: 8%;
	}
	.banner .socials .icon {
		width: 40px;
		height: 40px;
	}
	.banner .socials img {
		width: 30px;
		height: 30px;
	}
}

@media screen and (max-width: 630px) {
	.title-h2,
	.our-mission .title-h2,
	.popular-product h2,
	.our-channel h2 {
		font-size: 24px;
	}

	.categories__wrapper {
		padding: 0 16px 30px;
	}
	.categories__list {
		margin-left: 25px;
	}
	.categories__list li {
		padding-right: 5px;
	}

	.footer .container {
		padding: 0 20px;
		display: flex;
		flex-direction: column;
	}
	.footer__links {
		flex-direction: column;
	}
	.footer__links li:not(:last-child) {
		border: unset;
		margin-bottom: 10px;
	}
	.footer__copyright {
		text-align: center;
	}
}

@media screen and (max-width: 425px) {
	.title-h2,
	.our-mission .title-h2,
	.popular-product h2,
	.our-channel h2 {
		font-size: 22px;
	}
	.btn {
		max-width: 100%;
	}

	.title {
		font-size: 22px;
		line-height: 32px;
	}
	.title__top {
		font-size: 16px;
	}

	.sponsors {
		padding: 22px 0;
	}
	.sponsors__list {
		padding: 20px 0 0;
	}
	
	.our-mission__text {
		padding: 15px;
		font-size: 16px;
		line-height: 25px;
	}

	.card__bottom {
		padding: 0 10px;
	}
	.card__title {
		font-size: 22px;
		line-height: 30px;
	}
	.card__author {
		font-size: 14px;
	}
	.card__date {
		max-width: 75px;
	}
	.card__date span:nth-child(1) {
		padding: 13px 10px;
		font-size: 22px;
	}
	.card__date span {
		font-size: 11px;
	}

	.categories__wrapper {
		padding: 0 5px 30px;
	}
	.categories__list {
		margin-left: 25px;
	}
	.categories__list a {
		font-size: 13px;
	}
	.categories__image {
		width: 55px;
		height: 55px;
	}
	.categories__title {
		margin: -17px auto 25px;
	}
}