@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@300;400;600;700;900&display=swap');

/* initial */
* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	line-height: 1;
}
body {
	color: var(--white-color);
	background-color: var(--lightblack-color);
	font-family: "Source Sans Pro", sans-serif;
	font-weight: 400;
	font-size: 14px;
	line-height: 18px;
}
ul {
	list-style: none;
}
a {
}
:root {
	--white-color: #FFFFFF;
	--black-color: #000000;
	--lightblack-color: #000000;
	--darkgrey-color: #515151;
	--brown-color: #e8e8e8;
	--lightergrey-color: #c0bfbf;
	--lightgrey-color: #D9D9D9;
	--darkergrey-color: #5c5c5c;
	--blue-color: #fff001;
	--lightblue-color: #ffba01;
	--orange-color: #ffba01;
	--lightorange-color: #f33616;
	--red-color: #cc0000;
	--bg-menu-backdrop: rgba(0, 0, 0, 0.5);
	--bg-thumb-backdrop: rgba(0, 0, 0, .3);
}
/* common */
/* typography */
h2 {
	font-family: 'Source Sans Pro';
	font-style: normal;
	font-weight: 700;
	font-size: 18px;
	line-height: 23px;
	text-transform: uppercase;
	color: var(--white-color);
}
a {
	color: var(--white-color);
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
}
/* icons */
.icon {
	display: inline-block;
	height: 1em;
	width: 1em;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	vertical-align: bottom;
}
.icon_svg {
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center center;
	mask-position: center center;
	-webkit-mask-size: 1em;
	mask-size: 1em;
}
.icon_burger {
	width: 1.57em;
	background-image: url("./burger.svg");
}
.icon_arrow_left,
.icon_arrow_right {
	width: 0.7826em;
	background-size: 0.7826em;
	background-position: top center;
}
.icon_arrow_left {
	background-image: url("./arrow_left.svg");
}
.icon_arrow_right {
	background-image: url("./arrow_right.svg");
}
.icon_arrow_left:hover,
.icon_arrow_right:hover {
	background-position: bottom center;
}
.icon_arrow_continue {
	width: .572em;
	margin: 0 10px;
	background-image: url("./arrow_continue.svg");
}
/* buttons */
.btn {
	display: inline-flex;
	align-content: center;
	justify-content: center;
	align-items: center;
	min-width: 80px;
	padding: 7px 15px;
	border: none;
	outline: none;
	background-color: transparent;
	color: var(--black-color);
	font-size: 15px;
	font-weight: 400;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	white-space: nowrap;
	cursor: pointer;
}

.btn:hover {
	text-decoration: none;
}
.btn_primary {
	font-weight: 700!important;
	background-color: var(--blue-color);
}
.btn_primary:hover {
	background-color: var(--lightblue-color);
}
.btn_secondary {
	font-weight: 400!important;
	background-color: var(--lightblack-color);
	color: var(--lightergrey-color);
}
.btn_secondary:hover {
	background-color: var(--darkergrey-color);
	color: var(--white-color);
}
.buttons_menu .btn_primary:hover {
	background-color: var(--orange-color);
}
.btn_big {
	padding: 9px 18px;
	font-size: 16px;
}
.btn_small {
	min-width: auto;
	padding: 7px;
}
.btn_wide {
	width: 100%;
}
/* header */
.main_header {
	position: relative;
	display: flex;
	justify-content: space-between;
	padding: 0 5px;
}
.main_header nav,
.main_menu .burger_item {
	display: flex;
	align-items: center;
	gap: 8px;
	height: 44px;
}
.header_logo {
	width: 120px;
	height: 21px;
}
.tube_header {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.tube_header .tube_logo {
	display: flex;
	align-items: center;
	gap: 8px;
}
.tube_header .tube_logo h2 {
	display: none;
	font-weight: 600;
	font-size: 14px;
	line-height: 18px;
	text-transform: uppercase;
	color: var(--white-color);
}
.tube_header .header_logo {
	width: 200px;
	height: 30px;
	margin: 11px;
}
.tube_header .buttons_menu {
	display: flex;
	width: 100%;
	justify-content: space-between;
	align-items: center;
	border-top: 1px solid var(--darkergrey-color);
	border-bottom: 1px solid var(--darkergrey-color);
}
.tube_header .buttons_menu .btn {
	width: 50%;
	font-weight: 400;
	font-size: 24px;
	line-height: 30px;
}
/* carousel */
.carousel {
	position: relative;
	width: 100%;
	margin: 0;
	padding: 0;
	padding-bottom: 10px;
	overflow: hidden;
}
.carousel .carousel_slides {
	list-style: none;
	display: flex;
}
.carousel .carousel_slides::-webkit-scrollbar { 
	width: 0;
	height: 0;
}
.carousel .carousel_slides li {
	width: 100%;
	height: 100%;
	flex: 1 0 100%;
}
.carousel .carousel_slides li img {
	width: 100%;
	height: auto;
}
.carousel .carousel_dots {
	position: absolute;
	display: flex;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	height: auto;
	gap: 6px;
}
.carousel .carousel_dots span {
	display: inline-block;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background-color: var(--lightgrey-color) ;
}
.carousel .carousel_dots span.active {
	background-color: var(--blue-color) ;
}
.carousel .carousel_buttons {
	display: contents;
}
.carousel .carousel_left,
.carousel .carousel_right {
	position: absolute;
	top: calc(50% - 10px);
	transform: translateY(-50%);
	border: none;
	font-size: 46px;
	cursor: pointer;
}
.carousel .carousel_left {
	left: 0;
}
.carousel .carousel_right {
	right: 0;
}
/* menu */
.main_menu {
	display: none;
}
.main_menu.active {
	display: block;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 25;
	background-color: var(--bg-menu-backdrop);
}
.menu_items {
	width: 280px;
	height: 100%;
	background-color: var(--black-color);
}
.menu_items .burger_item {
	padding: 0 5px;
}
.menu_items .action_item a {
	margin-top: 30px;
	font-weight: 700;
}
.btn_menu {
	padding: 16px 28px;
	font-weight: 400;
	font-size: 20px;
	color: #ffffff;
}
.btn_menu1 {
	padding: 16px 28px;
	font-weight: 400;
	font-size: 20px;
	color: #000000;
}
.buttons_menu .btn_menu {
	min-width: auto;
	padding: 5px 0;
	margin: 0 10px;
	border-bottom: 1px solid transparent;
	font-weight: 400;
	font-size: 16px;
	color: var(--lightergrey-color);
}
/* main */
main {

}
section {
	padding: 10px 4px;
}
.section_header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-bottom: 10px;
}
/* thumbs */
.thumbs {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 7px;
}
.thumb>img,
.thumb>video {
	display: block;
	width: 100%;
	height: auto;
}
.thumb video {
	clip-path: inset(-1px -1px);
}
.thumb {
	position: relative;
	display: block;
	cursor: pointer;
}
.thumb:hover:before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: var(--bg-thumb-backdrop);
	background-image: url("./play.svg");
	background-position: center center;
	background-repeat: no-repeat;
	z-index: 10;
}
/* favorite movies */
.favorite_movies .thumb {
	width: calc(50% - 3.5px);
}
.favorite_movies .thumb video {
	aspect-ratio: 1/1;
	object-fit: cover;
}
/* trans models */
.trans_models .thumb {
	width: calc(50% - 3.5px);
}
.trans_models .thumb_footer {
	position: absolute;
	bottom: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 50px;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
	font-weight: 300;
	font-size: 18px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	text-align: center;
}
.trans_models .thumb:hover:before {
	content: 'VIEW MODEL';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	height: fit-content;
	padding: 12px;
	background: linear-gradient(
		270deg, 
		rgba(255, 255, 255, 0.1) 0%, 
		rgba(255, 255, 255, 0.48) 49.46%, 
		rgba(255, 255, 255, 0.1) 100%
	);
	font-weight: 700;
	font-size: 22px;
	line-height: 28px;
	text-align: center;
	text-transform: uppercase;
}
/* trans updates */
.trans_updates .thumb {
	width: 100%;
}
/* tube */
.tube_thumbs {
	padding: 8px 2px 24px;
}
.tube_thumbs .thumb.offer:hover:before {
	display: none;
}
.tube_thumbs .thumb video {
	object-fit: cover;
	aspect-ratio: 468/262;
}
.tube_thumbs .thumbs li {
	margin-bottom: 8px;
}
.paging {
	display: flex;
	justify-content: space-between;
	padding: 0 0 18px;
}
.paging .btn_page {
	min-width: 36px;
	padding: 6px;
	border: 2px solid transparent;
	font-weight: 400;
	font-size: 18px;
	color: var(--lightergrey-color);
}
.paging .btn_page_nav {
	color: var(--lightergrey-color);
	font-weight: 400;
	font-size: 18px;
	text-transform: capitalize;
}
.paging .btn_page_nav:first-child {
	padding-right: 12px;
}
.paging .btn_page_nav:last-child {
	padding-left: 12px;
}
.paging .btn_page_nav:hover {
	color: var(--blue-color);
}
.paging .btn_page:hover {
	border: 2px solid var(--blue-color);
}
.paging .btn_page_active {
	background-color: var(--blue-color);
	color: #000000;
}
/* join page */
.join_container {
	background-image: url("./join_bg.jpg");
	background-position: 0 68px;
	background-size: 200%;
	background-repeat: no-repeat;
}
.join_header {
	padding: 16px 0;
	border-bottom: 1px solid var(--darkgrey-color);
}
.join_header .join_header_logo {
	display: block;
	width: 200px;
	height: 35px;
	margin: 0 auto;
}
.join_form {
	margin-top: 56%;
	padding: 13px 10px;
	border-top: 1px solid var(--darkgrey-color);
	background-color: var(--lightblack-color);
}
.join_form fieldset {
	padding: 8px 0 14px;
	border: none;
	text-align: center;
}
.join_form legend {
	width: 100%;
	font-weight: 700;
	font-size: 20px;
	line-height: 25px;
	color: var(--white-color);
	text-transform: uppercase;
	text-align: center;
}
.join_form legend span {
	font-weight: 400;
}
.join_form input:placeholder-shown,
.join_form input {
	padding: 13px 0 13px 42px;
	width: 100%;
	border: 2px solid var(--white-color);
	background-color: var(--white-color);
	background-image: url("./icon_email.svg");
	background-position: center left 12px;
	background-repeat: no-repeat;
	color: var(--black-color);
	font-family: 'Source Sans Pro';
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 20px;
}
.join_form input::placeholder {
	color: #A7B2B8;
}
.join_form input:focus,
.join_form input:active,
.join_form input:hover,
.join_form input:not(:placeholder-shown):valid {
	outline: none;
	border: 2px solid var(--brown-color);
}
.join_form input:not(:focus):invalid {
	border: 2px solid var(--red-color);
}
.join_form input:focus:not(:placeholder-shown):invalid {
  border: 2px solid var(--red-color);
}
.join_form input:not(:focus):placeholder-shown:invalid,
.join_form input:focus:placeholder-shown {
	border: 2px solid var(--white-color);
}
.join_form input+span.error {
	padding-top: .5em;
	color: var(--red-color);
	font-size: 14px;
	display: none;
}
.join_form input:not(:focus):invalid+span.error {
	display: block;
}
.join_form input:invalid:placeholder-shown+span.error {
	display: none;
}
.payment_radio_group {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 5px;
}
.payment_radio_btn {
	flex: 1;
}
.payment_radio_btn label {
	display: flex;
	justify-content: center;
	width: 100%;
	padding: 14px;
	border: 2px solid var(--darkgrey-color);
	background: var(--darkgrey-color);
}
.payment_radio_btn label:hover {
	border: 2px solid var(--brown-color);
}
.payment_radio_btn input[type=radio] {
	display: none;
}
.payment_radio_btn input[type=radio]:checked+label {
	border: 2px solid var(--brown-color);
	background-color: var(--brown-color);
	background-image: url("./payment_check.svg");
	background-size: 10.67px;
	background-position: top 4px right 4px;
	background-repeat: no-repeat;
}
.payment_radio_btn input[type=radio]:checked+label span {
	background-position-y: 20px;
}
.payment_radio_btn label span {
	display: inline-block;
	height: 20px;
	background-image: url("./payment_types.svg");
	background-size: 315px 40px;
	background-position-y: 0;
	cursor: pointer;
}
.payment_radio_btn [for=type-credit] span {
	width: 68px;
	background-position-x: 0;
}
.payment_radio_btn [for=type-bitcoin] span {
	width: 70px;
	background-position-x: -125px;
}
.payment_radio_btn [for=type-paypal] span {
	width: 59px;
	background-position-x: -256px;
}
.payment_radio_btn:hover label span {
	background-position-y: 20px;
}
.plan_radio_btn input[type=radio] {
	display: none;
}
.plan_radio_btn input[type=radio]:checked+label {
	padding: 20px 12px;
	border: 2px solid var(--brown-color);
	background: var(--brown-color);
}
.plan_radio_btn label {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding: 6px 12px;
	cursor: pointer;
	border: 2px solid var(--darkgrey-color);
	background-color: var(--darkgrey-color);
	user-select: none;
}
.plan_radio_btn:not(:last-child) label {
	margin-bottom: 8px;
}
.plan_radio_btn label:hover {
	border: 2px solid var(--brown-color);
}
.plan_radio_btn .label_price {
	text-align: center;
}
.plan_radio_btn .label_title {
	display: block;
	margin-bottom: 8px;
	font-weight: 600;
	font-size: 20px;
	line-height: 25px;
	text-align: left;
	text-transform: capitalize;
}
.plan_radio_btn .label_price .label_title {
	margin-bottom: 4px;
	font-weight: 400;
	font-size: 24px;
	line-height: 30px;
	text-align: center;
}
.plan_radio_btn input[type=radio]:checked+label .label_title {
	font-weight: 700;
	color: #000000;
}
.plan_radio_btn .label_subtitle {
	display: block;
	font-weight: 400;
	font-size: 14px;
	line-height: 18px;
	color: var(--lightergrey-color);
}
.plan_radio_btn .label_plan .label_subtitle {
	font-weight: 300;
}
.plan_radio_btn input[type=radio]:checked+label .label_subtitle {
	font-weight: 700;
	color: #000000;
}
.plan_radio_btn .label_offer {
	flex-basis: min-content;
	margin-top: 4px;
	padding: 2px 5px;
	font-weight: 400;
	font-size: 13px;
	line-height: 16px;
	text-transform: uppercase;
	background-color: var(--orange-color);
	color: var(--white-color);
}
.btn_continue {
	padding: 10px 0;
	background-color: var(--blue-color);
	font-weight: 700;
	font-size: 18px;
	line-height: 23px;
	text-transform: uppercase;
}
.btn_continue:hover {
	background-color: var(--lightblue-color);
}
.btn_continue i {
	font-size: 14px;
}
/* footer */
footer {
	padding: 10px 4px;
}
footer h3 {
	font-weight: 700;
	font-size: 18px;
	line-height: 23px;
	text-transform: uppercase;
}
/* footer menu */
.footer_menu {
	display: flex;
	justify-content: space-evenly;
	padding: 14px 0 20px;
}
.footer_menu li {
	padding: 10px 0;
	font-weight: 400;
	font-size: 16px;
	text-transform: capitalize;
}
.footer_menu li a {
	color: var(--lightergrey-color);
}
.footer_menu li a:hover {
	color: var(--blue-color);
	text-decoration: none;
}
/* footer text */
.footer_text {
	margin-top: 8px;
}
.footer_text p {
	padding: 8px 0;
	font-weight: 400;
	font-size: 14px;
	text-align: center;
	color: var(--darkergrey-color);
}
.footer_text .cir {
	font-weight: 300;
	font-size: 12px;
	text-transform: none;
}
/* platform visibile */
.display_tablet,
.display_desktop {
	display: none;
}
.display_mobile {
	display: block;
}

/* tablet */
@media (min-width: 1025px) {
	/* common */
	/* typography */
	h2 {
		font-weight: 700;
		font-size: 22px;
		line-height: 28px;
	}
	/* buttons */
	.btn {
		padding: 9px 18px;
		font-size: 16px;
		font-weight: 400;
	}
	.btn_big {
		padding: 10px 23px;
		font-size: 16px;
		font-weight: 700;
	}
	.btn_small {
		padding: 9px 7px;
	}
	/* header */
	.main_header {
		padding: 0 7px;
	}
	.tube_header {
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		padding-right: 12px;
		border-bottom: 1px solid var(--darkergrey-color);
	}
	.tube_header .tube_logo h2 {
		display: inline-block;
	}
	.tube_header .buttons_menu {
		display: flex;
		gap: 12px;
		width: auto;
		border: none;
	}
	.tube_header .buttons_menu .btn {
		width: auto;
		font-weight: 400;
		font-size: 16px;
		line-height: 20px;
	}
	.main_header nav,
	.main_menu .burger_item {
		height: 50px;
		gap: 12px;
	}
	.header_logo {
		width: 180px;
		height: 22px;
	}
	.carousel {
		padding-bottom: 20px;
	}
	.carousel .carousel_dots {
		gap: 12px;
	}
	.carousel .carousel_dots span {
		width: 10px;
		height: 10px;
	}
	/* menu */
	.menu_items {
		width: 423px;
	}
	.menu_items .burger_item {
		padding: 0 7px;
		margin-bottom: 18px;
	}
	.menu_items .action_item {
		display: block;
		padding: 0 28px;
	}
	.menu_items .action_item a {
		margin-top: 50px;
		padding: 23px 0;
		font-weight: 700;
	}
	.btn_menu {
		padding: 18px 28px;
		font-weight: 400;
		font-size: 24px;
	}
	.buttons_menu .btn_secondary {
		min-width: auto;
		padding: 5px 0;
		margin: 0 10px;
		border-bottom: 1px solid transparent;
		font-weight: 400;
		font-size: 16px;
		color: var(--lightergrey-color);
	}
	.buttons_menu .btn_secondary:hover {
		background: none;
		border-bottom: 1px solid var(--white-color);
		color: var(--white-color);
	}
	/* main */
	section {
		padding: 19px 26px;
	}
	.section_header {
		justify-content: flex-start;
		align-items: center;
		gap: 20px;
		padding-bottom: 16px;
	}
	/* thumbs */
	.thumbs {
		gap: 12px;
	}
	/* favorite movies */
	.favorite_movies .thumb {
		width: calc(25% - 9px);
	}
	.favorite_movies .thumb:hover:before {
		background-size: 88px;
	}
	/* trans models */
	.trans_models .thumb {
		width: calc(16.67% - 10.1px);
	}
	.trans_models .thumb_footer {
		height: 50px;
		font-weight: 300;
		font-size: 20px;
		line-height: 25px;
		letter-spacing: 0.04em;
		text-transform: uppercase;
	}
	/* trans updates */
	.trans_updates .thumb {
		width: calc(50% - 6px);
	}
	.trans_updates .thumb:hover:before {
		background-size: 88px;
	}
	/* tube thumbs */
	.tube_thumbs {
		padding: 8px 6px 20px;
	}
	.tube_thumbs .thumbs {
		-webkit-column-count: 4;
		-moz-column-count: 4;
		column-count: 4;
		columns-gap: 12px;
	}
	.tube_thumbs .thumbs li {
		margin-bottom: 0.75vw;
	}
	.paging {
		justify-content: center;
		gap: 10px;
	}
	/* join */
	.join_container {
		display: flex;
		justify-content: space-between;
		padding: 24px;
		border-bottom: 1px solid #1d1d1d;
		background-image: url("./join_bg.jpg");
		background-position: top center;
		background-size: auto 100%;
		background-repeat: no-repeat;
	}
	.join_header {
		padding: 0;
		border: none;
	}
	.join_header .join_header_logo {
		width: 273px;
		height: 40px;
		margin: 10px 0;
	}
	.join_form {
		width: 50%;
		margin-top: 0;
		padding: 25px;
		border: none;
		background-color:#151515;
	}
	.join_form fieldset {
		padding: 14px 0 26px;
		border: none;
	}
	.join_form legend {
		font-weight: 700;
		font-size: 24px;
		line-height: 30px;
	}
	.join_form input {
		max-width: 320px;
		margin: 0 auto;
	}
	.join_account {
		position: relative;
	}
	span.error {
		position: absolute;
		bottom: 10px;
		left: 50%;
		transform: translateX(-50%);
	}
	.payment_radio_group {
		gap: 7px;
	}
	.payment_radio_btn label {
		padding: 18px;
	}
	.payment_radio_btn input[type=radio]:checked+label {
		background-size: 16px;
		background-position: top 8px right 8px;
	}
	.payment_radio_btn label span {
		height: 26px;
		background-size: 415px 52px;
	}
	.payment_radio_btn input[type=radio]:checked+label span {
		background-position-y: 26px;
	}
	.payment_radio_btn [for=type-credit] span {
		width: 90px;
		background-position-x: 0;
	}
	.payment_radio_btn [for=type-bitcoin] span {
		width: 92px;
		background-position-x: -165px;
	}
	.payment_radio_btn [for=type-paypal] span {
		width: 78px;
		background-position-x: -337px;
	}
	.payment_radio_btn:hover label span {
		background-position-y: 26px;
	}
	.plan_radio_btn input[type=radio]:checked+label {
		padding: 21px 20px;
	}
	.plan_radio_btn label {
		padding: 6px 20px;
	}
	.plan_radio_btn input[type=radio]:checked+label .label_plan .label_title {
		font-size: 24px;
		line-height: 30px;
		color: #000000;
	}
	.plan_radio_btn input[type=radio]:checked+label .label_price .label_title {
		font-size: 30px;
		line-height: 38px;
	}
	.plan_radio_btn .label_offer {
		flex-basis: fit-content;
		margin-top: 4px;
		padding: 3px 12px;
		font-size: 16px;
		line-height: 20px;
		background-color: #ff3600;
	}
	.btn_continue {
		padding: 12px 0;
		font-size: 20px;
		line-height: 25px;
	}
	.btn_continue i {
		font-size: 16px;
	}
	/* footer */
	footer {
		padding: 18px 4px 10px;
	}
	footer h3 {
		font-size: 24px;
		line-height: 30px;
	}
	.footer_menu {
		padding: 24px 0;
	}
	.footer_menu li {
		padding: 12px 0;
		font-size: 18px;
	}
	.footer_text {

	}
	.footer_text p {
		padding: 8px 0;
		font-size: 16px;
	}
	.footer_text .c_info {
		padding-top: 0px;
		font-weight: 300;
		font-size: 14px;
		text-transform: none;
	}
	/* platform visibile */
	.display_desktop,
	.display_mobile {
		display: none;
	}
	.display_tablet {
		display: block;
	}
}
/* desktop */
@media (min-width: 1410px) {
	/* common */
	/* typography */
	h2 {
		font-size: 24px;
		line-height: 30px;
	}
	/* header */
	.main_header {
		padding: 0 12px;
	}
	.tube_header {
		padding: 0 120px;
	}
	.main_menu {
		display: block;
	}
	.main_menu .menu_items {
		display: flex;
		width: auto;
		height: auto;
		margin-left: 12px;
		background-color: var(--lightblack-color);
	}
	.main_menu .menu_items .action_item,
	.main_menu .menu_items .burger_item {
		display: none;
	}
	.main_menu .menu_items .btn_menu,
	.buttons_menu .btn_menu {
		min-width: auto;
		padding: 5px 0;
		margin: 0 10px;
		border-bottom: 1px solid transparent;
		font-weight: 400;
		font-size: 16px;
		color: var(--lightergrey-color);
		text-decoration: none;
	}
	.main_menu .menu_items .btn_menu:hover,
	.buttons_menu .btn_menu:hover {
		border-bottom: 1px solid var(--white-color);
		color: var(--white-color);
	}
	/* main */
	section {
		padding: 24px 84px;
	}
	/* thumbs */
	.thumbs {
		gap: 16px;
	}
	/* favorite movies */
	.favorite_movies .thumb {
		width: calc(25% - 12px);
	}
	.favorite_movies .thumb:hover:before {
		background-size: 100px;
	}
	/* trans models */
	.trans_models .thumb {
		width: calc(16.67% - 13.4px);
	}
	.trans_models .thumb_footer {
		display: none;
		height: 100%;
		padding-bottom: 10px;
		background: var(--bg-thumb-backdrop);
		font-size: 28px;
		line-height: 35px;
	}
	.trans_models .thumb:hover .thumb_footer {
		display: flex;
		flex-direction: column;
		justify-content: flex-end;
		align-items: center;
	}
	.trans_models .thumb:hover:before {
		z-index: 1;
	}
	/* trans updates */
	.trans_updates .thumb {
		width: calc(50% - 8px);
	}
	.trans_updates .thumb:hover:before {
		background-size: 100px;
	}
	/* tube thumbs */
	.tube_thumbs {
		padding: 8px 6px 24px;
	}
	/* join */
	.join_container {
		justify-content: center;
	}
	.join_header,
	.join_form {
		width: 620px;
		max-width: 620px;
	}
	/* footer */
	footer {
		padding: 24px 4px 10px;
	}
	footer h3 {
		font-size: 26px;
		line-height: 38px;
	}
	.footer_menu {
		padding: 40px 0;
	}
	.footer_menu li {
		padding: 12px 0;
		font-size: 20px;
	}
	/* platform visibile */
	.display_tablet,
	.display_mobile {
		display: none;
	}
	.display_desktop {
		display: block;
	}
}