@font-face {
	font-family: "SF Pro Display";
	src: url("assets/fonts/SF-Pro-Display-Regular.otf") format("opentype");
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	src: url("assets/fonts/SF-Pro-Display-Medium.otf") format("opentype");
	font-family: "SF Pro Display";
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "SF Pro Display";
	src: url("assets/fonts/SF-Pro-Display-Bold.otf") format("opentype");
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "SF Pro Display";
	src: url("assets/fonts/SF-Pro-Display-Semibold.otf") format("opentype");
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}

* {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	height: auto;
	min-height: 100%;
}

body {
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	font-family: "SF Pro Display", sans-serif;
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
}

a {
	text-decoration: none;
}

.wrapper-overflow {
	overflow: hidden;
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}

.main {
	display: inherit;
	-webkit-box-orient: inherit;
	-webkit-box-direction: inherit;
	    -ms-flex-direction: inherit;
	        flex-direction: inherit;
	-webkit-box-align: inherit;
	    -ms-flex-align: inherit;
	        align-items: inherit;
	-webkit-box-pack: inherit;
	    -ms-flex-pack: inherit;
	        justify-content: inherit;
	width: 100%;
	max-width: 1340px;
	padding-left: 20px;
	padding-right: 20px;
	margin-left: auto;
	margin-right: auto;
}

.header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	width: 100%;
	height: 100px;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
	background-color: #204080;
}

.logo {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	height: auto;
	width: 100%;
	max-width: 110px;
	margin-right: auto;
	margin-left: 0;
}

.logo img {
	width: 100%;
	height: 100%;
}

.login {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	background-color: #fdb715;
	border-radius: 23px;
	color: white;
	max-width: 177px;
	padding: 13px 30px;
	width: 100%;
	height: 40px;
	font-size: 18px;
	line-height: 20px;
	margin-right: 0;
	-webkit-transition: .3s ease;
	-o-transition: .3s ease;
	transition: .3s ease;
	margin-left: auto;
}

.login:hover {
	background-color: #dd9b02;
}

.nav-mobile {
	display: none;
}

.burger-input {
	display: none;
}

.burger {
	display: none;
	width: 20px;
	height: auto;
	position: relative;
	padding: 0;
	background-color: transparent;
	border: none;
	outline: none;
	position: relative;
	top: 1px;
}

.burger-item {
	display: block;
	background-color: #fdb715;
	border-radius: 1.5px;
	height: 3px;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	margin-bottom: 3px;
}

.burger-item-3 {
	margin-bottom: 0;
}

.burger-input:checked+.burger .burger-item-1 {
	-webkit-transform: translate(0px, 6px) rotate(45deg);
	    -ms-transform: translate(0px, 6px) rotate(45deg);
	        transform: translate(0px, 6px) rotate(45deg);
}

.burger-input:checked+.burger .burger-item-2 {
	opacity: 0;
}

.burger-input:checked+.burger .burger-item-3 {
	-webkit-transform: translate(0, -6px) rotate(-45deg);
	    -ms-transform: translate(0, -6px) rotate(-45deg);
	        transform: translate(0, -6px) rotate(-45deg);
}

.nav-mobile {
	position: absolute;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	top: 40px;
	left: 0;
	right: 0;
	bottom: 0;
	color: white;
	background: #204080;
	z-index: 2;
}

.nav-mobile {
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	padding-top: 35px;
	padding-bottom: 150px;
}

.nav-mobile__ul {
	list-style: none;
}

.nav-mobile__item {
	text-align: center;
	margin-bottom: 45px;
}

.nav-mobile__link {
	font-size: 20px;
	color: white;
	text-decoration: none;
}

.nav-desktop {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	list-style: none;
}

.nav-desktop__item {
	margin-right: 30px;
}

.nav-desktop__link {
	color: white;
	font-size: 20px;
	-webkit-transition: .3s ease;
	-o-transition: .3s ease;
	transition: .3s ease;
}

.nav-desktop__link:hover {
	color: #fdb715;
	text-decoration: underline;
}

.profile {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	padding-top: 90px;
	padding-bottom: 90px;
}

.avatar {
	width: 183px;
	height: 183px;
	-o-object-fit: cover;
	   object-fit: cover;
	border-radius: 100%;
	overflow: hidden;
	margin-right: 100px;
}

.name {
	color: white;
	font-size: 38px;
	margin-bottom: 18px;
	text-shadow: 0 0 4px rgb(0 0 0 / 50%);
}

.name::after {
	content: '';
	display: block;
	border-radius: 2px;
	width: 150px;
	height: 5px;
	background: #fdb714;
	margin-top: 18px;
}

.tagline {
	font-size: 28px;
	color: rgba(255, 255, 255, 0.75);
}

.profile__buttons {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-top: 20px;
}

.button-follow,
.button-tip {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	color: white;
	width: 140px;
	border: 1px solid #fdb715;
	background-color: #fdb715;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	border-radius: 23px;
	padding: 8px 20px;
	margin-right: 20px;
	height: 40px;
}

.button-follow:hover {
	border-color: #dd9b02;
	background-color: #dd9b02;
}

.button-tip:hover {
	border-color: #1b366c;
	background-color: #1b366c;
}

.button-tip {
	border: 1px solid #204080;
	background-color: #204080;
}

.button-tip__coin {
	width: 15px;
	height: 15px;
	margin-right: 4px;
}

.buttons_mobile-only {
	display: none;
}

.media {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: start;
	background-color: transparent;
	border-radius: 0;
	padding: 100px 0;
	background: white;
}

.media-buttons {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.images {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 0;
	margin-right: 70px;
}

.image-wrapper {
	position: relative;
}

.image-wrapper::after {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	content: '';
	background: url('./assets/images/lock.svg') no-repeat center center;
	background-size: 30px;
}

.images-column {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}

.image_full {
	width: 330px;
	height: 330px;
	margin-right: 10px;
}

.image_half {
	width: 157px;
	height: 157px;
}

.button-media {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	border: 1px solid #ff2d55;
	border-radius: 12px;
	background: #ff2d55;
	color: white;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	padding: 12px 10px;
	margin-right: 10px;
	height: 50px;
	width: 110px;
	font-size: 20px;
}

.button-media:hover {
	border-color: #e0002b;
	background-color: #e0002b;
}

.button-media-img {
	width: 20px;
	height: 20px;
	margin-right: 8px;
}

.footer {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	position: relative;
	background-image: url('./assets/images/footer-bg-big.png');
	padding-top: 134px;
	padding-bottom: 35px;
	background-size: cover;
	margin-top: auto;
}

.footer::before {
	content: "";
	position: absolute;
	border-radius: 100%;
	background-color: #fdb715;
	left: 0;
	bottom: 0;
	width: 360px;
	height: 360px;
	-webkit-transform: translate(-45%, 50%);
	    -ms-transform: translate(-45%, 50%);
	        transform: translate(-45%, 50%);
}

.footer::after {
	content: "";
	position: absolute;
	background-color: #ff2d55;
	-webkit-transform: rotate(58deg);
	-ms-transform: rotate(58deg);
	    transform: rotate(58deg);
	top: -184px;
	right: -290px;
	width: 434px;
	height: 434px;
	border-radius: 46px;
}

.logo_footer {
	max-width: 200px;
	margin-bottom: 57px;
	margin-left: auto;
	margin-right: auto;
}

.nav-footer {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	list-style: none;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	width: 100%;
	padding-bottom: 140px;
	margin-bottom: 40px;
	border-bottom: 1px solid white;
}

.nav-footer__link {
	color: white;
	font-size: 20px;
	-webkit-transition: .3s ease;
	-o-transition: .3s ease;
	transition: .3s ease;
}

.nav-footer__link:hover {
	text-decoration: underline;
}

.footer__bottom {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}

.copyright {
	color: white;
	font-size: 13px;
	line-height: 28px;
}

.social__link {
	display: block;
	color: white;
	width: 20px;
	height: 20px;
}

.social {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	list-style: none;
}

.social__item {
	margin-left: 23px;
}

.social__link_twitter {
	background: url('./assets/images/twitter.svg') no-repeat 0 0;
	background-size: cover;
}

.social__link_instagram {
	background: url('./assets/images/instagram.svg') no-repeat 0 0;
	background-size: cover;
}

.buttons_mobile-only {
	width: 100%;
	margin-top: 13px;
}

.button-media_mobile {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	border: 1px solid white;
	border-radius: 12px;
	background-color: rgba(0, 0, 0, .6);
	color: white;
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	padding: 10px;
	margin-right: 6px;
	flex: 1;
	font-size: 14px;
}

.mobile-auth {
	display: none;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	width: 100%;
	margin-top: 22px;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.auth-button {
	max-width: 500px;
	margin-bottom: 10px;
	background-color: #1da1f2;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	border: none;
	color: white;
	width: 100%;
	height: 40px;
	font-size: 16px;
	line-height: 20px;
	border-radius: 23px;
	text-align: center;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	outline: none;
	padding: 0 20px;
}

.auth-text {
	color: #9195a4;
}

.auth-link {
	color: #ff2d55;
	text-decoration: underline;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

@media (max-width: 1600px) {
	.header {
		height: 80px;
	}
	.footer {
		padding-top: 84px;
		padding-bottom: 25px;
	}
	.footer::before {
		left: -30px;
		bottom: -45px;
		width: 200px;
		height: 200px;
		border-radius: 100%;
		-webkit-transform: translate(-45%, 60%);
		    -ms-transform: translate(-45%, 60%);
		        transform: translate(-45%, 60%);
	}
	.footer::after {
		top: -120px;
		right: -200px;
		width: 300px;
		height: 300px;
		border-radius: 30px;
		-webkit-transform: rotate(58deg);
		    -ms-transform: rotate(58deg);
		        transform: rotate(58deg);
	}
	.nav-footer {
		padding-bottom: 75px;
		margin-bottom: 30px;
	}
}

@media (max-width: 1280px) {
	.main {
		padding-left: 50px;
		padding-right: 50px;
	}
	.login {
		max-width: 135px;
	}
	.images {
		margin-right: 30px;
	}
	.image_full {
		width: 250px;
		height: 250px;
	}
	.image_half {
		width: 117px;
		height: 117px;
	}
}

@media (max-width: 1023px) {
	.header {
		height: 48px;
	}
	.login {
		border-radius: 6px;
		color: #204080;
		font-size: 12px;
		line-height: 12px;
		max-width: 60px;
		height: 22px;
		margin-right: 8px;
		margin-left: auto;
		padding-top: 0;
		padding-bottom: 0;
	}
	.burger {
		display: block;
	}
	.nav-desktop {
		display: none;
	}
	.logo {
		max-width: 85px;
	}
	.main {
		padding-left: 15px;
		padding-right: 15px;
	}
	.profile {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		padding: 15px 0 30px;
		max-width: 500px;
		margin: 0 auto;
	}
	.profile__main {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
		width: 100%;
	}
	.profile__buttons {
		width: 100%;
	}
	.avatar {
		width: 100px;
		height: 100px;
		margin-bottom: 13px;
		margin-right: 0;
	}
	.name {
		font-size: 24px;
		margin-bottom: 8px;
	}
	.name::after {
		margin-left: auto;
		margin-right: auto;
		margin-top: 9px;
		height: 3px;
		width: 70px;
	}
	.tagline {
		font-size: 16px;
	}
	.button-follow,
	.button-tip {
		border: 1px solid white;
		border-radius: 23px;
		background-color: rgba(0, 0, 0, .6);
		color: white;
		width: calc(50% - 7.5px);
		height: 40px;
		padding: 8px 20px;
		margin-right: 0;
		font-size: 14px;
	}
	.button-follow {
		margin-right: 12px;
	}
	.button-tip__coin {
		width: 13px;
		height: 13px;
	}
	.buttons_mobile-only {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
	.mobile-auth {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
	.media {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		position: relative;
		top: -15px;
		border-top-left-radius: 16px;
		border-top-right-radius: 16px;
		padding-top: 35px;
		padding-bottom: 20px;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
	}
	.media-buttons {
		display: none;
	}
	.images {
		margin-right: 0;
	}
	.image_full {
		width: 195px;
		height: 195px;
	}
	.image_half {
		width: 93px;
		height: 93px;
	}
	.image-wrapper::after {
		background-size: 22px;
	}
	.footer::before,
	.footer::after {
		content: none;
	}
	.footer {
		padding-top: 60px;
		padding-bottom: 75px;
		background-image: url('./assets/images/footer-bg.png');
	}
	.logo_footer {
		margin-bottom: 30px;
		max-width: 100px;
	}
	.nav-footer {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		border: 0;
		margin-bottom: 40px;
		padding: 0;
	}
	.nav-footer__item {
		margin-bottom: 5px;
	}
	.nav-footer__link {
		font-size: 16px;
		line-height: 22px;
	}
	.footer__bottom {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		    -ms-flex-direction: column-reverse;
		        flex-direction: column-reverse;
	}
	.social {
		margin-bottom: 20px;
	}
	.social__item:first-child {
		margin-left: 0;
	}
	.burger-input:checked+.burger+.nav-mobile {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
	.button-tip:hover,
	.button-follow:hover {
		border: 1px solid white;
		background-color: rgba(0, 0, 0, .6);
		color: white;
	}
}