﻿* {
	transition-duration: unset;
}

body {
  	overflow-x: hidden;
}

h3 {
	font-size: 48px;
    font-family: 'GothamProBold';
    text-transform: uppercase;
	line-height: 1.1em;
}

p {
	font-size: 18px;
    font-family: 'GothamProBold';
    line-height: 1.5em;
}

.menu {
	
}

.main_block {
	width: 100%;
	overflow: hidden;
	height: calc(100vh - 114px);
  	text-align: center;
	position: relative;
}

.main_block img {
    height: 100%;
    width: 100%;
	display: block;
    object-fit: cover;
	position: relative;
	z-index: 1;
}

/* prod_pins */

.prod_pin {
	width: 8px;
	height: 8px;
	position: absolute;
	background-color: #fff;
	border-radius: 50%;
	z-index: 5;
	cursor: pointer;
	opacity: .9;
	transition-duration: .3s;
	animation: pulse 3s ease-in-out infinite;
}

.prod_pin:hover {
	transition-duration: .5s;
	transform: scale(1.2);
}

.prod_pin:hover::after {
	border-color: var(--hover-link);
	transition-duration: .5s;
}

.prod_pin:hover::before {
	transition-duration: .5s;
}

.prod_pin::before {
	content: '';
	position: absolute;
	top: -5px;  /* Увеличиваем отступ */
	left: -5px;
	right: -5px;
	bottom: -5px;
	border: 1px solid #fff;
	border-radius: 50%;
	transition-duration: .3s;
}

.prod_pin::after {
	content: '';
	position: absolute;
	top: -10px;  /* Увеличиваем размер, чтобы был отступ между обводками */
	left: -10px;
	right: -10px;
	bottom: -10px;
	border: 1px solid #fff;
	border-radius: 50%;
	transition-duration: .3s;
}

@keyframes pulse {
	0% {
		transform: scale(1);
	}
	15% {
		transform: scale(1.2);
	}
	30% {
		transform: scale(1);
	}
	100% {
		transform: scale(1);
	}
}

.prod_pin#tap {
	top: 42%;
	right: 50%;
}

.prod_pin#sink {
	top: 60%;
	right: 55%;
}

.prod_pin#disposer {
	bottom: 24%;
	left: 50%;
}

.prod_pin#filter {
	bottom: 20%;
	right: 42%;
}

.prod_pin#acs {
	top: 50%;
	left: 23%;
}

.prod_pin#home {
	top: 46%;
	left: 31%;
}

.arrow-container {
	position: absolute;
	bottom: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
	z-index: 5;
	left: calc(50% - 25px);
}

.arrow {
    animation: bounce 1s infinite;
	cursor: pointer;
}

.arrow:hover svg {
	fill: var(--hover-link);
}

.arrow > svg {
	width: 40px;
	fill: #fff;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

/* */


.num_cont {
  width: 100%;
  height: 100vh;
  background-color: #34a2b2;
}

.num {
  height: 100%;
  margin: 0 auto;
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  justify-content: center;
  align-items: center;
  color: #fff;
  overflow: hidden;
  z-index: 100;
}

.eight {
  font-size: 920px;
  font-family: 'GothamProBold';
  text-align: center;
  line-height: 700px;
  grid-column: 2;
}

.eight_text {
  margin-left: 10px;
  grid-column: 3;
  font-size: 42px;
  font-family: 'GothamProMedium';
  display: flex;
  flex-direction: column;
}

.eight_text > span {
	opacity: 0;
}

/* sinks */

.sinks {
	width: 100%;
	display: flex;
  	flex-wrap: nowrap;
	padding: 0 100px 100px 100px;
	justify-content: space-evenly;
	margin: 0 auto;
	background-color: #efeeee;
	min-height: 900px;
}

.sinks h2 {
	font-size: 200px;
	line-height: 150px;
	font-family: 'GothamProBold';
	text-transform: uppercase;
	margin-bottom: 100px;
	color: #cbcaca;
	font-weight: 900;
}

.sinks .sinks_left {
	padding-top: 50px;
	width: 700px;
}

.sinks .sinks_text {
	font-size: 24px;
	font-family: 'GothamProBold';
	line-height: 1.5em;
	display: flex;
	flex-direction: column;
	gap: 25px;
	align-items: flex-start;
}

.sinks .sinks_text img {
	height: 30px;
}

.sinks .sinks_right {
	width: 40%;
	position: relative;
	z-index: 3;
	max-width: 800px;
}

.sinks .sinks_right > img:nth-of-type(1) {
	height: 85%;
	right: -20%;
	top: -20%;
	position: absolute;
	z-index: 4;
}

.sinks .sinks_right > img:nth-of-type(2) {
	height: 70%;
    right: 10%;
    position: absolute;
    z-index: 3;
    top: 23%;
}

.sinks .sinks_right > img:nth-of-type(3) {
	height: 60%;
    right: 35%;
    position: absolute;
    z-index: 2;
    bottom: -21%;
}

/* sinks2 */

.sinks2 {
	width: 100%;
	background-color: #efeeee;
	position: relative;
	display: flex;
	flex-direction: column;
}

.sinks2 h2 {
	font-size: 200px;
	line-height: 150px;
	font-family: 'GothamProBold';
	text-transform: uppercase;
	color: #cbcaca;
	font-weight: 900;
	text-align: right;
	padding-top: 100px;
	padding-right: 50px;
	margin-bottom: 100px;
}

.title_hidden {
	display: none;
}

.sinks2 .sinks_left {
	background-color: #efeeee;
	z-index: 4;
	display: flex;
	gap: 100px;
	padding: 100px;
	justify-content: space-evenly;
	align-items: center;
}

.sinks2 .sinks_left img {
	max-height: 400px;
}

.sinks_line2 {
	height: auto;
}

.sinks2 .sinks_text {
	font-size: 24px;
	font-family: 'GothamProBold';
	line-height: 1.5em;
	display: flex;
	flex-direction: column;
	gap: 25px;
	align-items: flex-start;
	margin: 100px 0;
	max-width: 600px;
}

.sinks2 .sinks_text > img {
	width: 100%;
	object-fit: contain;
	margin-left: -100px;
}

.sinks2 .sinks_right {
	width: 100%;
}

/* sinks3 */

.sinks3 {
    position: relative;
    overflow: hidden;
	width: 100%;
}

.kinaru_block {
    position: relative;
    width: 100%;
    height: auto;
	display: grid;
	grid-template-columns: 50% 50%;
}

.main_kin {
    width: 100%;
    display: block;
	z-index: 2;
	position: relative;
	grid-column: 1 / 3;
	grid-row: 1 / 4;
	max-height: 1200px;
	object-fit: cover;
}

.change_kin {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
	z-index: 3;
	max-height: 1200px;
	object-fit: cover;
}

.sinks3 h2 {
	font-size: 200px;
	line-height: 150px;
	font-family: 'GothamProBold';
	text-transform: uppercase;
	color: #cbcaca;
	font-weight: 900;
	text-align: right;
	grid-column: 2;
	grid-row: 1;
	position: absolute;
	top: 50px;
	right: 50px;
	z-index: 4;
}

.sinks3 .sinks_text {
	max-width: 600px;
	display: flex;
	gap: 25px;
	flex-direction: column;
	grid-row: 2;
	grid-column: 2;
	z-index: 4;
	margin-left: 150px;
	padding-right: 50px;
}

.sinks3 .sinks_text img {
	width: 200px;
}

.kin_colors {
	position: absolute;
	display: flex;
	gap: 15px;
	bottom: 100px;
	left: 100px;
	z-index: 5;
}

.kin_color {
	width: 30px;
	height: 30px;
	background-color: #000;
	border-radius: 50%;
	cursor: pointer;
}

.kin_color.active {
	border: 2px solid #cbcaca;
}

#gb {
	background-image: url('../img/main/c/26-1.jpg');
}

#wh {
	background-image: url('../img/main/c/031-1.jpg');
}

#az {
	background-image: url('../img/main/c/38-1.jpg');
}

#do {
	background-image: url('../img/main/c/50-1.jpg');
}

#cn {
	background-image: url('../img/main/c/60-1.jpg');
}

#wg {
	background-image: url('../img/main/c/52-1.jpg');
}

.mob_kin {
	display: none;
}

/* what */

.black {
	width: 100%;
	background-color: black;
	display: flex;
	position: relative;
}

.black > img {
	width: 100%;
}

.sinks_anim {
	display: flex;
	flex-direction: column;
	width: 100%;
	margin-bottom: 100px;
}

.sinks_anim img {
	width: 100%;
}

/* color collection */

.color_col {
	margin-top: 50px;
}

.color_col > h2 {
	font-size: 8vw;
	font-family: 'GothamProBold';
	text-transform: uppercase;
	text-align: center;
	color: #fff;
}

.color_col > h2 > span {
	font-weight: 100;
	font-family: 'GothamProLight';
}

.color_col i {
	font-style: normal;
}

.white {
	width: 100%;
	height: 150px;
	background-color: #fff;
}

/* colors */

.color {
	width: 100%;
	display: flex;
	flex-wrap: nowrap;
	color: #000;
}

.color_line {
	height: 100%;
	width: 100%;
	display: flex;
	position: relative;
	z-index: 2;
	flex-direction: column-reverse;
}

.color_half {
	display: flex;
	position: relative;
	flex-direction: column;
}

.color_half:nth-of-type(1) {
	align-items: flex-start;
	height: 90vh;
}

.color_half:nth-of-type(1) > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	transition: opacity 1s ease;
	position: absolute;
	will-change: opacity;
}

.color_half:nth-of-type(1) > img.active {
	opacity: 1;
	transition: opacity 0.7s ease;
}

.color_half:nth-of-type(1) > .tap_colors {
	position: absolute;
	bottom: 100px;
	right: 100px;
}

.color_half:nth-of-type(2) {
	align-items: center;
	background-color: #b82727;
}

.color_half:nth-of-type(2) img {
	width: 100%;
}

.color_top {
	width: 100%;
	display: flex;
	padding: 100px 0;
	align-items: center;
}

.color_text {
	width: 600px;
    font-size: 24px;
    font-family: 'GothamProBold';
    line-height: 1.5em;
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: flex-start;
	position: relative;
	z-index: 2;
	margin-left: 100px;
}

.tap_gif {
	height: 650px;
	max-width: 50%;
}

.tap_gif source {
	opacity: 0;
	transition: opacity 0.3s ease;
}

.tap_gif source.active {
	opacity: 0;
	transition: opacity 1s ease;
}

.tap_menu {
	font-style: italic;
	text-transform: uppercase;
	font-size: 26px;
	font-family: 'GothamProBold';
	display: flex;
	justify-content: space-between;
	width: 100%;
	margin: 25px 0;
}

.tap_menu > ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.tap_menu > ul > li {
	position: relative;
	cursor: pointer;
}

.tap_menu > ul > li > span {
	width: 100%;
	height: 3px;
	background-color: #000;
	opacity: 0;
	position: absolute;
	bottom: 0;
	left: -100px;
	transition: opacity .3s ease;
}

.tap_menu > ul > li > span.active {
	opacity: 1;
	transition: opacity 1s ease;
}

.tap_colors {
	display: flex;
	gap: 15px;
}

.tap_color {
	width: 30px;
	height: 30px;
	background-color: #000;
	border-radius: 50%;
	cursor: pointer;
}

.tap_color.active {
	border: 1px solid #000;
}

#to {
	background-image: url('../img/main/c/70-1.jpg');
}

#rg {
	background-image: url('../img/main/c/51-1.jpg');
}

#sl {
	background-image: url('../img/main/c/65-1.jpg');
}

#ib {
	background-image: url('../img/main/c/37-1.jpg');
}

.change_bg {
	transition: background-color .5s ease; /* Плавный переход цвета в течение 0.5 секунд */
}

/* taps */

.taps {
	width: 100%;
}

.taps > h2 {
	padding-left: 30px;
	margin-bottom: 50px;
	font-size: 200px;
	line-height: 150px;
	font-family: 'GothamProBold';
	text-transform: uppercase;
	margin-bottom: 75px;
	color: #cbcaca;
	font-weight: 900;
}

.taps_grid {
	display: flex;
	gap: 30px;
	padding: 0 30px;
	margin-bottom: 100px;
}

.tap_cont {
	width: 25%;
	display: flex;
	flex-direction: column;
	gap: 50px;
	align-items: center;
}

.tap_cont a {
	align-self: center;
}

.tap_cont .btn {
	text-align: center;
}

.tap {
	height: 600px;
	max-width: 450px;
	width: 100%;
	background-color: #000;
	position: relative;
	overflow: hidden;
}

.tap_cont:nth-of-type(1) > .tap {
	border-radius: 200px 0 0 0;
}

.tap_cont:nth-of-type(2) > .tap {
	border-radius: 0 0 200px 0;
}

.tap_cont:nth-of-type(3) > .tap {
	border-radius: 200px 0 0 0;
}

.tap_cont:nth-of-type(4) > .tap {
	border-radius: 0 0 0 200px;
}

.tap > span {
	font-family: 'GothamProLight';
	font-size: 100px;
	position: absolute;
	bottom: -23px;
    left: -5px;
	text-transform: uppercase;
	color: #fff;
	z-index: 3;
}

.tap_cont:last-of-type > .tap > span {
	font-family: 'GothamProLight';
	font-size: 100px;
	position: absolute;
	bottom: -23px;
	right: -5px;
	left: auto;
}

#video {
	position: absolute;
	right: 0;
	bottom: 0;
	min-width: 100%;
	min-height: 100%;
}

.tap_cont:first-of-type > .tap > #video {
	top: 0;
	bottom: auto;
}

.tap_cont p {
	max-width: 400px;
	font-size: 18px;
	font-family: 'GothamProMedium';
}

.filters {
	width: 100%;
	position: relative;
	overflow: hidden;
	padding-left: 100px;
}

.filters_grid > h2 {
	font-size: 250px;
	line-height: 182px;
	font-family: 'GothamProBold';
	text-transform: uppercase;
	color: #fff;
	font-weight: 900;
}

.filters_grid {
	padding: 100px 0;
	width: 80%;
	position: relative;
	z-index: 2;
}

#video_filter {
	position: absolute;
	right: 0;
	min-width: 100%;
	min-height: 100%;
}

#video_filter source {
	display: none;
	transition: opacity 0.5s ease-in-out;
    opacity: 0;
}

#video_filter source.active {
	display: block;
	opacity: 1;
}

.filter_item {
	background-color: #fff;
	display: flex;
	max-width: 1300px;
	gap: 50px;
}

.filter_text {
	display: flex;
	flex-direction: column;
	gap: 30px;
	align-items: flex-start;
	padding: 50px;
	width: 560px;
	display: none;
	transition: opacity 0.5s ease-in-out;
    opacity: 0;
}

.filter_text.active {
	display: flex;
	opacity: 1;
}

.left_half {
	display: flex;
	flex-direction: column;
	padding-bottom: 50px;
	justify-content: space-between;
	align-items: center;
}

.filter_item > .left_half > img {
	margin-left: 75px;
    margin-top: -120px;
	padding-bottom: 50px;
	display: none;
	height: 400px;
	transition: opacity 0.5s ease-in-out;
    opacity: 0;
}

.filter_item > .left_half > img.active {
	display: block;
	opacity: 1;
}

.filter_text p {
	max-width: 600px;
}

.swap {
	list-style: none;
	display: flex;
	gap: 15px;
	padding-left: 75px;
}

.swap > li {
	width: 25px;
    height: 25px;
    background-color: #efefef;
    border-radius: 50%;
    cursor: pointer;
    transition-duration: .15s;
	border: 1px solid #ebebeb;
}

.swap > li.active {
	transition-duration: .5s;
    background-color: #fff;
}

.anvideo {
	width: 100%;
	background-color: #eeeeee;
	position: relative;
}

.anvideo_content {
	display: flex;
	gap: 100px;
	align-items: center;
	margin-bottom: 50px;
}

.anvideo_content > canvas {
	height: 80vh;
	margin-left: 185px;
	z-index: 2;
	margin-top: -70px;
}

.anvideo > h2 {
	font-size: 200px;
    line-height: 150px;
	font-family: 'GothamProBold';
	text-transform: uppercase;
	color: #cbcaca;
	font-weight: 900;
}

.anvideo > h2:first-of-type {
	padding-top: 100px;
	padding-left: 100px;
}

.anvideo > h2:last-child {
	text-align: center;
    font-size: 12vw;
    margin-top: -50px;
    position: relative;
    z-index: 3;
}

.anvideo_text {
	max-width: 715px;
	display: flex;
	flex-direction: column;
	gap: 50px;
	align-items: flex-start;
}

.anvideo_text > .btn {
	margin-left: auto;
}

.anvideo_content > img {
	max-width: 25%;
    position: absolute;
    right: -150px;
}

.acs {
	width: 100%;
	position: relative;
	margin-top: -30px;
	background-image: url(../img/main/acs_back-1.jpg);
	background-size: cover;
	background-position: center;
	display: flex;
	justify-content: space-evenly;
}

.acs_text {
	display: flex;
	flex-direction: column;
	gap: 100px;
	align-items: flex-start;
	padding: 150px 0;
	width: 570px;
	position: relative;
	margin-left: 150px;
}

.acs_text > p {
	color: #fff;
}

.acs > img {
	height: 350px;
	bottom: -250px;
	position: relative;
	z-index: 2;
	box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.home_bg_text {
	display: flex;
	align-items: center;
	padding: 150px 100px 0 100px;
	gap: 150px;
	background-color: #ebebeb;
}

.home_bg_text > h2 {
	font-size: 10vw;
	line-height: 1em;
	font-family: 'GothamProBold';
	text-transform: uppercase;
	color: #cbcaca;
	font-weight: 900;
	position: relative;
	z-index: 2;
}

.h_text {
	max-width: 500px;
	position: relative;
	z-index: 2;
}

.home {
	width: 100%;
	position: relative;
}

.home > img {
	width: 100%;
	display: block;
	position: relative;
	z-index: 1;
}


.home .btn {
	position: absolute;
	bottom: 200px;
	right: 100px;
	z-index: 2;
}

.home > a {
	
}

@media screen and (max-width: 1800px) {

	.sinks .sinks_right > img:nth-of-type(1) {
		height: 65%;
        right: -10%;
        top: -10%;
	}

	.sinks .sinks_right > img:nth-of-type(2) {
		height: 50%;
        right: 20%;
        top: 23%;
	}

	.sinks .sinks_right > img:nth-of-type(3) {
		height: 50%;
		right: 30%;
        bottom: 0;
	}

	.sinks2 h2 {
		padding-top: 0;
	}

}

@media screen and (max-width: 1700px) {

	.anvideo_content {
		gap: 50px;
	}

	.tap {
		height: 500px;
	}

}

@media screen and (max-width: 1600px) {

	h3 {
		font-size: 36px;
	}

	.color_top {
		padding: 50px 0;
	}

	.tap_gif {
		height: 500px;
	}

	.tap_menu > ul > li > span {
		left: -50px;
	}

    .color_half:nth-of-type(2) img {
		height: auto;
		width: 100%;
	}

	.anvideo_text {
		width: 600px;
	}

	.taps_grid {
		flex-wrap: wrap;
	}

	.tap_cont {
		width: calc(50% - 25px);
		justify-content: center;
	}

	.tap_cont a {
		align-self: center;
	}
}

@media screen and (max-width: 1550px) {
    .sinks {
		justify-content: space-between;
		padding: 0 50px;
	}

	.sinks .sinks_right > img:nth-of-type(1) {
        height: 55%;
        right: -100px;
        top: -10%;
    }

	.sinks .sinks_right > img:nth-of-type(2) {
		height: 45%;
        right: 10%;
        top: 20%;
    }

	.sinks .sinks_right > img:nth-of-type(3) {
		height: 40%;
        right: 30%;
        bottom: 12%;
    }

}

@media screen and (max-width: 1500px) {
    p {
		font-size: 15px;
	}

	.anvideo_content > canvas {
		margin-left: 50px;
	}

	.default_main {
		padding-top: 67px;
	}

	.color_text {
		padding: 0 50px;
		margin: 0;
	}
}

@media screen and (max-width: 1400px) {

    .eight {
		font-size: 700px;
	}

	.eight_text {
		font-size: 32px;
	}
}

@media screen and (max-width: 1350px) {

	.sinks {
		padding: 0 0 0 50px;
	}

    .sinks h2 {
		font-size: 120px;
		line-height: 120px;
	}

	.sinks .sinks_left {
		padding-right: 50px;
		width: 550px;
	}

	.sinks .sinks_right {
		width: calc(100% - 750px);
	}

	.sinks2 h2 {
		font-size: 120px;
        line-height: 120px;
	}

	.sinks3 h2 {
		font-size: 120px;
        line-height: 120px;
	}

	.taps > h2 {
		font-size: 120px;
        line-height: 120px;
	}

	.anvideo > h2 {
		font-size: 120px;
        line-height: 120px;
	}

	.anvideo > h2:first-of-type {
		padding-top: 50px;
	}

	.white {
        height: 50px;
    }

	.filters_grid {
		width: 100%;
	}

	.filters {
		padding: 0 50px;
	}

	.filters_grid > h2 {
		text-align: right;
		font-size: 120px;
        line-height: 120px;
	}

}

@media screen and (max-width: 1300px) {
	.disp_text {
		width: 500px;
	}
}

@media screen and (max-width: 1250px) {
	.sinks3 .sinks_text {
		margin-left: 50px;
	}

	.sinks2 .sinks_left img {
		max-height: 250px;
	}

	.home_bg_text {
		gap: 100px;
	}

	.home_bg_text {
		padding: 100px 100px 0 100px;
	}
}

@media screen and (max-width: 1200px) {
	.anvideo_content > img {
		display: none;
	}

	.disp_text {
		width: 100%;
	}

	.anvideo_content {
		width: auto;
		padding-right: 50px;
	}

	.anvideo_content {
		justify-content: space-between;
	}

	.disp_title {
		font-size: 26px;
	}
}

@media screen and (max-width: 1150px) {
	.acs {
		display: flex;
		flex-direction: column;
	}

	.acs_text {
		padding-bottom: 0;
		gap: 25px;
	}

	.acs > img {
		position: relative;
		height: 250px;
		bottom: -50px;
		right: auto;
		margin: 0 auto;
		object-fit: cover;
	}
}

@media screen and (max-width: 1050px) {

    .sinks {
		flex-direction: column;
		padding-bottom: 50px;
	}

	.sinks h2 {
		margin-bottom: 50px;
	}

	.sinks .sinks_left {
		width: 100%;
		padding-top: 50px;
	}

	.sinks .sinks_right {
		width: 100%;
	}

	.sinks .sinks_right > img:nth-of-type(1) {
		position: relative;
		width: 60%;
		right: -50%;
		height: auto;
	}

	.sinks .sinks_right > img:nth-of-type(2) {
		position: relative;
		margin-top: -27%;
		right: -40%;
		width: 50%;
		height: auto;
	}

	.sinks .sinks_right > img:nth-of-type(3) {
		height: auto;
		width: 50%;
		position: relative;
		left: 25%;
		margin-top: -17%;
	}

	.sinks2 {
		flex-direction: column;
		height: auto;
	}

	.title2 {
		display: none;
	}

	.sinks2 .sinks_text > img {
		width: auto;
		height: 250px;
		margin-left: 0;
	}

	.sinks2 .sinks_text {
		margin: 0;
	}

	.sinks2 .sinks_right {
		margin-bottom: 50px;
	}

	.sinks_anim {
		margin: 0;
	}

	.sinks2 .sinks_left {
		width: 100%;
		margin: 0;
		padding: 50px;
		background: none;
		gap: 50px;
	}

	.main_kin {
		display: none!important;
	}

	.kin_colors {
		display: none;
	}

	.change_kin {
		display: none;
	}

	.kinaru_block {
		display: flex;
		flex-direction: column;
		gap: 50px;
		padding-top: 50px;
	}

	.mob_kin {
		display: block;
	}

	.color_half {
		width: 100%;
	}

	.color_half:nth-of-type(1) {
		height: 400px;
	}

	.color_text .tap_gif {
		display: none;
	}

	.color_top {
		flex-direction: column;
		align-items: flex-start;
		padding: 50px;
	}

	.tap_gif {
		display: none;
	}

	.color_text {
        padding: 0;
		width: 100%;
    }

	.tap_menu {
		display: none;
	}

	.color_half:nth-of-type(1) > .tap_colors {
		position: absolute;
		bottom: 50px;
		right: 50px;
	}

	.anvideo_content > canvas {
		width: 300px;
		height: auto;
	}

	.anvideo > h2:first-of-type {
		margin-bottom: 50px;
	}

	.filters_grid {
		display: flex;
		flex-direction: column;
		gap: 150px;
		padding: 50px 0;
	}

	.filters_grid > h2 {
		text-align: center;
	}

	.filter_item {
		display: flex;
		flex-direction: column;
		gap: 50px;
		align-items: center;
	}

	.left_half {
		padding: 0;
		gap: 50px;
	}

	.filter_item > .left_half > img {
		padding-bottom: 0;
		margin: 0 auto;
		margin-top: -100px;
	}

	.filter_text {
		padding: 0 50px 50px 50px;
		min-width: auto;
		max-width: 500px;
		width: 100%;
	}

	.filter_item {
		width: 100%;
		max-width: auto;
	}

	.main_block > a {
		display: none;
	}

	.swap {
		padding: 0;
	}

	.home_bg_text {
		flex-direction: column;
		gap: 50px;
	}
}

@media screen and (max-width: 900px) {

    .eight {
		font-size: 300px;
	}

	.eight_text {
		font-size: 24px;
	}

	.anvideo_content {
		flex-direction: row-reverse;
		padding: 0 25px;
		align-items: flex-start;
	}

	.anvideo_content > canvas {
		margin-right: -200px;
		margin-left: auto;
	}

	.anvideo > h2:first-of-type {
		padding-left: 25px;
	}

	.anvideo_text {
		gap: 25px;
	}
}

@media screen and (max-width: 800px) {

	h3 {
        font-size: 24px;
    }

	.sinks {
        padding: 0 0 50px 25px;
    }

	.sinks .sinks_left {
		padding-right: 25px;
	}

	.sinks2 h2 {
		display: none;
	}

	.sinks3 .sinks_text {
        margin-left: 25px;
		max-width: 100%;
		padding-right: 25px;
    }

	.sinks2 .sinks_left {
		flex-direction: column-reverse;
		align-items: flex-start;
		padding: 50px 25px;
	}

	.color_top {
		padding: 50px 25px;
	}

	.tap_cont {
		width: 100%;
	}

	.tap {
		height: 400px;
	}

	.taps h2 {
		margin-bottom: 50px;
    }

	.tap > span {
		font-size: 70px;
		bottom: -13px;
		left: -2px;
	}

	.tap_cont:last-of-type > .tap > span {
		font-size: 70px;
		bottom: -13px;
		left: -2px;
	}

	.taps_grid {
		margin-bottom: 50px;
		gap: 50px;
	}

	.tap_cont {
		gap: 25px;
	}

	.tap_cont:nth-of-type(1) > .tap {
		border-radius: 130px 0 0 0;
	}

	.tap_cont:nth-of-type(2) > .tap {
		border-radius: 0 0 130px 0;
	}

	.tap_cont:nth-of-type(3) > .tap {
		border-radius: 130px 0 0 0;
	}

	.tap_cont:nth-of-type(4) > .tap {
		border-radius: 0 0 130px 0;
	}

	.anvideo h2 {
        font-size: 80px;
        line-height: 80px;
    } 

	.acs_text {
		width: 100%;
		margin: 0;
		padding: 0 50px;
		margin-top: 75px;
	}

	.filters_grid h2 {
        font-size: 80px;
        line-height: 80px;
    }

	.default_main {
		padding-top: 55px;
	}

	.home_bg_text {
		padding: 100px 25px 25px 25px;
		gap: 25px;
	}

	.home_bg_text h2 {
		font-size: 50px;
        line-height: 50px;
	}

	.home > .btn {
		right: 25px;
		top: 25px;
		bottom: auto;
	}

}

@media screen and (max-width: 700px) {
	.acs > img {
		height: 150px;
	}

	.black {
		display: none;
	}

	.end {
		width: 100%;
		height: 150px;
		background-color: #fff;
	}
}

@media screen and (max-width: 650px) {

    .eight {
		font-size: 300px;
		line-height: 300px;
	}

	.eight_text {
		font-size: 24px;
	}

	.num {
		display: flex;
		flex-direction: column;
	}

	p {
		font-size: 14px;
		font-family: 'GothamProRegular';
	}

	.sinks h2 {
		font-size: 80px;
        line-height: 80px;
	}

	.sinks2 h2 {
		font-size: 80px;
        line-height: 80px;
	}

	.sinks .sinks_text {
		margin: 0;
	}

	.sinks2 .sinks_text {
		gap: 25px;
	}

	.sinks2 .sinks_text > img {
		height: 200px;
	}

	.sinks2 .sinks_left {
		gap: 25px;
	}

	.sinks2 .sinks_left img {
        max-height: 150px;
    }

	.title_hidden {
		padding: 50px 25px;
	}

	.sinks3 .sinks_right {
		width: 100%;
	}

	.sinks3 .sinks_right .sinks_text {
		padding: 0 25px;
	}

	.sinks3 h2 {
        font-size: 80px;
        line-height: 80px;
		padding: 0 0 0 25px;
		text-align: left;
    }

	.color_col {
		margin-top: 25px;
	}
	
	.color_half:nth-of-type(1) > .tap_colors {
		position: absolute;
		bottom: 25px;
		right: 25px;
	}

	.tap_menu {
		flex-direction: column-reverse;
		gap: 25px;
	}

	.color_half:nth-of-type(1) {
		height: 300px;
	}

	.taps h2 {
        font-size: 80px;
        line-height: 80px;
    }

	.anvideo_content {
		padding: 0 25px 25px 25px;
	}

	.anvideo > h2:last-child {
		padding-bottom: 25px;
	}

	.acs_text {
		padding: 0 25px;
	}

	.filters {
        padding: 0 25px;
    }

	.filter_item > img {
		width: 170px;
	}

	.h_text {
		max-width: 100%;
	}
}

@media screen and (max-width: 500px) {
	.anvideo_content > canvas {
		display: none;
	}

	.anvideo h2 {
		font-size: 50px;
		line-height: 50px;
		padding-top: 50px!important;
		margin-bottom: 25px!important;
	}

	.filters_grid h2 {
        font-size: 50px;
        line-height: 50px;
    }

	.filter_text {
        padding: 0 25px 25px 25px;
	}
	
	.filter_text h3 {
		font-size: 26px;
	}
}