html, body {
  margin: 0;
  padding: 0;
  font-family: 'Circe', Arial, sans-serif;
}
.pup-up-cont {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.container-wrapper2 {
  padding: 50px;
  max-height: 90vh;
  overflow: auto;
  background-color: #ffffff;
}

.quiz-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 810px;
  height: 550px;
  position: relative;
  margin: auto;
}
.answers-block::-webkit-scrollbar {
  width: 5px;
  height: 5px;
  background-color: #D9D9D9;
}
.discount-br {
  display: inline-block;
}
.answers-block::-webkit-scrollbar-thumb {
  background-color: #F83A4B;
  border-radius: 9em;
}
.answers-block::-webkit-scrollbar-thumb:hover {
  background-color: #FA7581;
}
.quiz-discount {
  text-align: center;
  position: absolute;
  right: 0;
  top: -8px;
  padding: 15px 10px 9px 10px;
  border-radius: 5px;
  background-color: #FFDD6F;
  font-size: 14px;
  font-weight: 700;
  min-width: 200px;
  z-index: 99;
}
.quiz-title {
  display: flex;
  font-size: 16px;
  color: #727272;
  width: 100%;
  margin: 0 0 25px 0;
}
.quiz-separatior {
  display: block;
  margin: auto -50px;
  height: 1px;
  background: #F7F7F7;
  border: none;
}
.quiz-title svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: #F83A4B;
  margin-right: 10px;
  bottom: -3px;
  position: relative;
}
.quiz-footer {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  background-color: #ffffff;
}
.progress-text {
  margin-top: 15px;
  margin-bottom: 5px;
  font-size: 14px;
  color: #727272;
  width: 100%;
}
.progress {
  width: 100%;
  height: 10px;
  background-color: #D9D9D9;
  border-radius: 10px;
}
.progress-line {
  width: 0;
  height: 100%;
  transition: 0.5s;
  border-radius: 5px;
  color: transparent;
  background: linear-gradient(100deg, #FA7581 30%, #F83A4B 50%, #FA7581 70%);
  background-repeat: repeat;
  background-size: 400%;
  animation: loading 1.2s ease-in-out infinite;
}
@keyframes loading {
  0% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0 50%;
  }
}
.progress-text span {
  color: #F83A4B;
  font-weight: 700;
}
.progress-block {
  width: 70%;
  display: flex;
  flex-direction: column;
  margin-bottom: 19px;
}
.nav-buttons {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  width: 30%;
}

.quiz-container input{
  width: 100%;
  padding: 15px 0;
  font-size: 16px !important;
  outline: none;
  margin-top: 15px;
  font-size: 20px;
  border: none;
  border-bottom: 1px solid #C9C9C9;
}

.questions-container {
  display: flex;
  flex-direction: column;
}
.question-block {
  margin-top: 15px;
  display: none;
  flex-direction: column;
  align-items: flex-start;
}
.question-block h4 {
  color: #363636;
}
.current-quest-block {
  display: flex;
  opacity: 0;
}
.current-quest-block:first-child {
  opacity: 1;
}
.answers-block {
  width: 100%;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  overflow: auto;
  /* justify-content: space-between; */
  padding-top: 15px;
  max-height: 310px;
}
.question-margin {
  display: none;
}
.answers-block .answer-input {
  width: 100%;
  padding: 15px 0;
  font-size: 20px !important;
  outline: none;
  margin-top: 15px;
  font-size: 20px;
  border: none;
  border-bottom: 1px solid #C9C9C9;
}


.question-text {
  display: block;
  width: calc(50% - 32px);
  border: 1px solid #A4A4A4;
  margin-top: 15px;
  border-radius: 5px;
  margin-right: 15px;
}
.question-text:hover {
  border: 1px solid #F83A4B;
}
.question-text input {
  width: auto;
	position: absolute;
	z-index: -1;
	opacity: 0;
	margin: 10px 0 0 7px;
}
.question-text .radio__text p {
  padding-left: 25px;
}
.question-text .radio__text:before {
	top: 0;
	left: 15px;
	width: 20px;
	height: 20px;
  background-color: #E6E6E6;
  border: none;
  opacity: 1;
}
.question-text .radio__text:after {
	top: 5px;
	left: 20px;
	width: 10px;
	height: 10px;
}
.question-text input:checked + .radio__text:after  {
	opacity: 1;
}
.question-text input:checked + .radio__text:before  {
  border: 2px solid #F83A4B;
	opacity: 1;
}
.question-text input:focus + .radio__text:before {
	box-shadow: 0 0 5px #F83A4B;
}


.question-text-checkbox {
  display: block;
  width: calc(50% - 32px);
  border: 1px solid #A4A4A4;
  margin: 15px 0;
  border-radius: 5px;
}
.question-text-checkbox:hover {
  border: 1px solid #F83A4B;
}
.question-text-checkbox input {
  width: auto;
	position: absolute;
	z-index: -1;
	opacity: 0;
	margin: 10px 0 0 7px;
}
.question-text-checkbox .radio__text p {
  padding-left: 30px;
}
.question-text-checkbox .radio__text:before {
	top: 0;
	left: 15px;
	width: 20px;
	height: 20px;
  background-color: #E6E6E6;
  border: none;
  opacity: 1;
}
.question-text-checkbox .radio__text:after {
	top: 5px;
	left: 20px;
	width: 10px;
	height: 10px;
  background-image: url(/images/check.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.question-text-checkbox input:checked + .radio__text:after  {
	opacity: 1;
}
.question-text-checkbox input:checked + .radio__text:before  {
  background-color: #F83A4B;
	opacity: 1;
}
.question-text input:focus + .radio__text:before {
	box-shadow: 0 0 5px #F83A4B;
}


.question-on-img {
  display: block;
  width: 180px;
  min-width: 180px;
  border: 1px solid #A4A4A4;
  border-radius: 5px;
  margin-bottom: 15px;
  align-self: flex-start;
  margin-right: 15px;
}
/* .question-on-img:last-child {
  margin-right: auto;
}
.question-on-img-margin-none {
  margin-right: 0 !important;
} */


.question-on-img:hover {
  border: 1px solid #F83A4B;
}
.question-on-img input {
  width: auto;
	position: absolute;
	z-index: -1;
	opacity: 0;
	margin: 10px 0 0 7px;
}
.question-on-img .radio__text p {
  color: #A4A4A4;
  text-align: center;
}
.radio__text {
	position: relative;
	cursor: pointer;
  outline: none !important;
}
.radio__text p {
  margin: 15px;
  font-size: 14px;
}
.radio__text:before {
  box-sizing: border-box;
  content: '';
	position: absolute;
	top: 5px;
	right: 5px;
	width: 34px;
	height: 34px;
	border-radius: 50%;
  border: 3px solid #F83A4B;
	opacity: 0;
	transition: 0.25s;
}
.radio__text:after {
	content: '';
	position: absolute;
	top: 14px;
	right: 14px;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: #F83A4B;
	opacity: 0;
	transition: 0.25s;
}
.question-on-img input:checked + .radio__text:after  {
	opacity: 1;
}
.question-on-img input:checked + .radio__text:before  {
	opacity: 1;
}
.question-on-img input:focus + .radio__text:before {
	box-shadow: 0 0 5px #F83A4B;
}
.question-img {
  width: 100%;
  height: 240px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}


.question-on-img-checkbox {
  display: block;
  width: 180px;
  min-width: 180px;
  border: 1px solid #A4A4A4;
  border-radius: 5px;
  margin-bottom: 15px;
  margin-right: 15px;
}
.question-on-img-checkbox:last-child {
  margin-right: auto;
}
.question-on-img-checkbox:hover {
  border: 1px solid #F83A4B;
}
.question-on-img-checkbox input {
  width: auto;
	position: absolute;
	z-index: -1;
	opacity: 0;
	margin: 10px 0 0 7px;
}
.question-on-img-checkbox .radio__text p {
  color: #A4A4A4;
  text-align: center;
}
.question-on-img-checkbox .radio__text {
	position: relative;
	cursor: pointer;
  outline: none !important;
}
.question-on-img-checkbox .radio__text p {
  margin: 15px;
  font-size: 14px;
}
.question-on-img-checkbox .radio__text:before {
  box-sizing: border-box;
  content: '';
	position: absolute;
	top: 5px;
	right: 5px;
	width: 32px;
	height: 32px;
	border-radius: 50%;
  border: 4px solid #F83A4B;
  background-color: #F83A4B;
	opacity: 0;
	transition: 0.25s;
  background-image: url(/images/check.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.question-on-img-checkbox input:checked + .radio__text:before  {
	opacity: 1;
}
.question-on-img-checkbox input:focus + .radio__text:before {
	box-shadow: 0 0 5px #F83A4B;
}
.question-img-checkbox {
  width: 100%;
  height: 240px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}



.many-variants {
  display: inline-block;
  background-color: #FED8DB;
  border: 1px solid #F83A4B;
  padding: 7px 7px 7px 25px;
  margin-top: 15px;
  border-radius: 5px;
  position: relative;
}
.many-variants:after {
  box-sizing: border-box;
  content: '';
	position: absolute;
	top: 9px;
	left: 5px;
	width: 16px;
	height: 16px;
	border-radius: 50%;
  background-color: #F83A4B;
  border: 3px solid #F83A4B;
  background-image: url(/images/check.svg);
  background-repeat: no-repeat;
}
.many-variants p {
  font-size: 14px;
  margin: 0;
}




.discount-arrows {
  display: inline-block;
  -moz-animation: jump 1s linear infinite;
  -webkit-animation: jump 1s linear infinite;
  margin-bottom: 10px;
}
@-moz-keyframes jump {
  0% {transform: rotate(0) translate(0, -5px);}
  50% {transform: rotate(0) translate(0, -12px);}
  100% {transform: rotate(0) translate(0, -5px);}
}

@-webkit-keyframes jump {
  0% {transform: rotate(0) translate(0, -5px);}
  50% {transform: rotate(0) translate(0, -12px);}
  100% {transform: rotate(0) translate(0, -5px);}
}

.pink-button {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: white;
  background-color: #F83A4B;
  border-radius: 25px;
  padding: 15px;
  cursor: pointer;
  transition: ease 0.3s;
  position: relative;
}
.pink-button-no-active {
  background-color: #FA7581;
  cursor: default;
}
.pink-button svg {
  width: 18px;
  height: 18px;
  display: inline-block;
  fill: #ffffff;
}
.circle-gray-button {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: white;
  border: 3px solid #C7C7C7;
  border-radius: 25px;
  padding: 12px;
  cursor: pointer;
  margin-right: 15px;
}
.circle-gray-button-no-active {
  cursor: default;
}
.circle-gray-button-no-active svg {
  fill: #C7C7C7 !important;
}
.circle-gray-button svg {
  width: 18px;
  height: 18px;
  display: inline-block;
  fill: #9F9F9F;
}



.quiz-container img {
  width:70px;
  height: 70px;
  padding: 50px;
  margin: auto;
}
.complete_quiz {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 810px;
  height: 550px;
}
.complete_quiz h3 {
  text-align: center;
  font-size: 28px;
  font-weight: 500;
}
.quiz-form {
  width: 50%;
  display: flex;
  flex-direction: column;
  margin: 50px auto 0 auto;
  border: 1px solid #E6E6E6;
  padding: 25px 50px;
  box-shadow: 0 9px 40px 0 rgba(0, 0, 0, 0.11);
  position: relative;
}
.quiz-form-label p {
  margin: 0 0 5px 0;
  font-size: 14px;
  color: gray;
}
.quiz-form-label input {
  padding: 20px;
  font-size: 16px;
  outline: none;
  border: none;
}
.quiz-form .pink-button {
  justify-content: center;
}
.quiz-form .pink-button svg {
  margin-right: 5px;
}
.privat-policy {
  margin-top: 25px;
  font-size: 14px;
}
.privat-policy a {
  color: #F83A4B;
}
.privat-policy input {
  width: auto;
  margin: 0;
  margin-right: 5px;
}

.final-discount {
  display: flex;
  position: absolute;
  top: -14.5px;
  right: 50px;
}
.final-discount-title {
  background-color: #FAF1D6;
  border: 1px solid #f7cd47;
  font-size: 14px;
  padding: 5px 10px 5px 15px;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.final-discount-block {
  padding: 5px 15px 5px 5px;
  background-color: #F7CD47
}
.final-discount-block:before {
  content: "";
  position: absolute;
  top: -0.5px;
  right: -14px;
  bottom: 0;
  width: 0;
  height: 0;
  border-left: 15px solid #f7cd47;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
}
.final-discount-block:after {
  content: "";
  position: absolute;
  top: 9px;
  right: 0;
  display: block;
  width: 7px;
  height: 7px;
  border: 1.5px solid #c39c23;
  border-radius: 50%;
  background-color: #fff;
}
.final-discount-value {
  padding: 0 5px 0 10px;
}

.quiz-user-name-input {
  width: calc(100% - 30px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid gray;
  border-radius: 5px;
  margin-bottom: 25px;
  padding: 0 15px;
}
.quiz-user-name-input input {
  width: 100%;
}
.quiz-user-name-input svg {
  width: 24px;
}
.user-icon {
  fill: #B3B3B3;
}
.empty-input {
  display: none;
  fill: #D10A34;
}

.quiz-user-phone-input {
  width: calc(100% - 30px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid gray;
  border-radius: 5px;
  margin-bottom: 25px;
  padding: 0 15px;
}
.quiz-user-phone-input input {
  width: 100%;
}
.quiz-user-phone-input svg {
  width: 20px;
  padding: 2px;
}
.quiz-user-phone-input svg path {
  fill: #B3B3B3;
  stroke: #B3B3B3;
}

.quiz-complete-text {
  font-size: 16px;
  color: #727272;
  width: 100%;
}

.quiz_errors {
  font-size: 16px;
  color: #F83A4B;
}
.quiz_errors p {
  font-size: 16px;
  color: #F83A4B;
  margin-top: 0px;
  margin-bottom: 10px;
  text-align: center;
}


.response-container {
  padding: 50px 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}


















.first-block-header-background {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: center;
}
.first-block-header-contsize {
  width: 77%;
  max-width: 1600px;
  display: flex;
  flex-wrap: nowrap;
}
.first-start-block-header-logotype-block {
  width: 50%;
  display: flex;
  align-items: center;
}
.first-start-block-header-logotype-block p {
  color: #ffffff;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.1;
  margin-left: 10px;
}
.first-start-block-header-logotype-block p span {
  font-weight: 500;
  letter-spacing: 2px;
}
.logotype-image {
  display: block;
  height: 90px;
  padding: 5px;
}
.logotype-image-mob {
  height: 90px;
  padding: 5px;
  display: none;
}
.first-block-contacts {
  width: 50%;
  min-width: 385px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
}
.phone-block {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.header-phone {
  white-space: nowrap;
  font-weight: 700;
  text-decoration: none;
  color: black;
  font-size: 24px;
}
.small-yellow-button {
  text-align: center;
  color: black;
  padding: 5px 10px;
  background-color: #FDCC00;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  border-radius: 8% / 50%;
  cursor: pointer;
  margin-left: 10px;
}
.header-info {
  font-size: 16px;
  margin: 5px;
  text-align: right;
}



.second-block-contsize {
  width: 95%;
  max-width: 1600px;
  margin: auto;
}
.title-block {
  text-align: center;
}
.title-block h2 span {
  font-weight: 700;
}
.title-block p {
  margin-top: 40px;
  font-size: 24px;
}
.title-contsize {
  max-width: 600px;
  margin: auto;
}

.left-right-blocks-container {
  display: flex;
  flex-direction: column;
  margin-bottom: 100px;
}
.left-right-block {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-top: 100px;
}
.flex-reverse {
  flex-direction: row-reverse;
}
.content-block {
  width: calc(42% - 80px);
  padding: 0 40px;
}
.images-block {
  width: 58%;
}
.images-block h4 {
  display: none;
}

.yellow-button-container {
  padding: 30px 0;
}
.yellow-button {
  text-align: center;
  display: inline-flex;
  align-items: center;
  color: #382000;
  padding: 12px 18px 12px 18px;
  background-color: #FDCC00;
  text-decoration: none;
  font-size: 20px;
  font-weight: 700;
  border-radius: 25px;
  cursor: pointer;
}
.yellow-button:hover {
  color: #ffffff;
  background-color: #382000;
  box-shadow: none;
}

.slider-container {
  position: relative;
}
.slider-img-box {
  position: relative;
  width: 100%;
}
.slider-img-box:before{
  content: "";
  display: block;
  padding-top: 70%;
}
.slider-img {
  position:  absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;

  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: 0.5s;
}
.slider-left-arrow {
  background-color: #ffffff;
  padding: 15px;
  border-radius: 50%;
  position: absolute;
  top: calc(50% - 65px);
  left: 2%;
  cursor: pointer;
  background-image: url(/images/arrow-left.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 30%;
  z-index: 1;
}
.slider-right-arrow {
  background-color: #ffffff;
  padding: 15px;
  border-radius: 50%;
  position: absolute;
  top: calc(50% - 65px);
  right: 2%;
  cursor: pointer;
  background-image: url(/images/arrow-right.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 30%;
  z-index: 1;
}
.slider-img-list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 5px;
}
.slider-list-img {
  width: 60px;
  height: 60px;
  margin-right: 5px;
  margin-bottom: 5px;
  outline: 2px solid #ffffff;
}

.slider-list-img-active {
  outline: 2px solid black;
}

.big-brown-button-container {
  margin: 80px 0;
}
.big-brown-button {
  text-align: center;
  display: inline-flex;
  align-items: center;
  color: #382000;
  border: 3px solid #382000;
  font-size: 20px;
  font-weight: 700;
  padding: 15px 20px;
  text-decoration: none;
  border-radius: 30px / 50%;
  transition: 0.25s;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}
.big-brown-button:hover {
  background-color: #382000;
  color: #ffffff;
  box-shadow: none;
}

.big-white-button-container {
  display: inline-block;
  margin: 80px 15px;
}
.big-white-button {
  margin-top: 15px;
  display: inline-flex;
  align-items: center;
  color: #ffffff;
  border: 3px solid #ffffff;
  font-size: 20px;
  font-weight: 700;
  padding: 15px 20px;
  text-decoration: none;
  border-radius: 30px / 50%;
  transition: 0.25s;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}
.big-white-button:hover {
  background-color: #382000;
  color: #ffffff;
  box-shadow: none;
}

.show-more-kitchen-block {
  display: none;
  width: 100%;
  padding-bottom: 100px;
  margin-top: 50px;
}
.show-more-kitchen-contsize {
  width: 78%;
  max-width: 1600px;
  margin: auto;

  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 40px;
}
.more-kitchen-content {
  cursor: pointer;
}
.more-kitchen-content h4 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
  margin-top: 20px;
  text-align: center;
}
.more-kitchen-content p {
  font-size: 14px;
  line-height: 1.55;
  text-align: center;
}
.more-kitchen-box {
  position: relative;
  width: 100%;
}
.more-kitchen-box:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.more-kitchen-img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: 0.25s;
}
.more-kitchen-img2:hover {
  opacity: 0;
}
.more-kitchen-img2 {
  transition: 0.25s;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.images-load-container {
  display: none;
}



.full-window-content {
  margin: 0;
  background: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  z-index: 10;
  justify-content: center;
  align-items: center;
}
.close-full-window-placeholder {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 11;
  cursor: pointer;
}
.more-product-button {
  position: absolute;
  top: 1%;
  left: 1%;
  padding: 15px;
  opacity: 0.8;
}
.full-window-close-cross {
  position: absolute;
  top: 1%;
  right: 1%;
  padding: 15px;
}
.full-cont-window {
  z-index: 12;
  width: 75%;
  padding: 2%;
  margin-top: 50px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.full-window-contsize {
  z-index: 13;
  width: 100%;
  height: 100%;
  display: flex;
}
.more-kitchen-content > .full-window-contsize {
  display: none;
}
.full-window-contsize .slider-container {
  margin-bottom: auto;
  width: 47%;
}
.full-window-contsize .description {
  padding-left: 3%;
  width: 50%;
  margin-bottom: auto;
}
.full-window-contsize .slider-img-box:before {
  padding-top: 100%;
}
.full-window-contsize h3 {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.35;
}
.full-window-contsize li {
  font-size: 14px;
  line-height: 1.55;
}
.full-window-contsize li span {
  font-weight: 700;
}


.pup-up-window-img {
  margin: 0;
  background: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  z-index: 15;
}
.img-cont {
  height: 100%;
  max-width: 50%;

}
.close-pup-up-window-img {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 16;
  cursor: pointer;
}


.third-block {
  width: 100%;
  height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin-bottom: 170px;
  position: relative;
}
.third-block-placeholder {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-image: -webkit-linear-gradient(top, rgba(56,32,0,0.50), rgba(0,0,0,0.20));
}
.third-block-contsize {
  width: 90%;
  height: 100%;
  max-width: 1600px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  margin: auto;
}

.third-block-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 25%;
  background-color: #ffffff;
  padding: 60px;
  text-align: center;
  margin-top: 10%;
  z-index: 1;
  min-width: calc(400px - 120px);
}
.third-block-content p {
  margin-bottom: 0;
}

.upload-process-container {
  width: 100%;
  display: flex;
  justify-content: center;
}
.upload-process {
  margin: auto;
  grid-area: 1/1/4/4;
}

.fourth-block {
  width: 100%;
}
.fourth-block-contsize {
  width: 77%;
  max-width: 1600px;
  margin: auto;

  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 40px;
  padding-top: 100px;
  padding-bottom: 100px;
}
.materials-column {
  display: flex;
  flex-direction: column;
}
.materials-block {
  margin-bottom: 40px;
}
.materials-block p {
  font-size: 14px;
  line-height: 1.55;
  font-weight: 300;
}
.materials-block ul {
  mpadding-top: 8px;
  margin-bottom: 10px;
}
.materials-block li {
  font-size: 14px;
  line-height: 1.55;
  font-weight: 300;
}
.materials-block p span {
  font-weight: 700;
}
.materials-block .material-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.35;
  margin: 0;
  padding: 0;
}
.materials-block .material-variants {
  color: #ff8562;
  line-height: 1;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  margin: 0;
  padding-bottom: 8px;
}
.material-variants p {
  margin: 0;
}
.materials-block img {
  width: 100%;
  padding-bottom: 17px;
}

.fifth-block {
  width: 100%;
  background-color: #F0F0F0;
  margin-bottom: 100px;
}
.fifth-block-contsize {
  width: 77%;
  max-width: 1600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: auto;
  padding-top: 150px;
  padding-bottom: 75px;
}
.fifth-block-contsize h2 {
  margin-bottom: 105px;
}
.fifth-block-left-right-blocks {
  width: 100%;
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: wrap;
}
.fifth-block-left-block {
  width: 50%;
  padding-right: 3%;
}
.fifth-block-left-block h3 {
  font-size: 28px;
}
.fifth-block-list-block {
  display: flex;
}
.fifth-block-list-block:last-child {
  padding-top: 50px;
}
.fifth-block-list-block-cont {
  padding-left: 30px;
}

.svg-icons {
  width: 130px;
  height: 130px;
  background-repeat: no-repeat;
  background-position: top;

}
.fifth-block-right-block {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left;
  width: 47%;
  margin: 6% 0;
}


.seventh-block {
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  margin-top: 100px;
}
.seven-block-contsize {
  width: 90%;
  max-width: 1600px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  color: #ffffff;
  padding: 10% 0;
}
.seven-block-placeholder {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.7);
}
.seven-block-content {
  z-index: 1;
  text-align: center;
}
.seven-block-buttons {
  position: relative;
  margin: 80px 15px 0 15px;
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  justify-content: center;
}
.arrow-icon-mobile {
  display: none;
  width: 20px;
  margin-bottom: 15px;
}
.arrow-icon {
  width: 45px;
  position: absolute;
  bottom: -20;
  left: -70;
}
.seven-block-buttons .big-yellow-button-animated {
  margin-right: 15px;
}
.seven-block-content h2 {
  margin-bottom: 25px;
  font-size: 48px;
}
.seven-block-content p {
  font-size: 24px;
}

.default-phone {
  text-decoration: none;
  color: black;
}
.white-phone {
  text-decoration: none;
  color: #ffffff;
  white-space: nowrap;
}
.map-block {
  width: 100%;
  height: 80vh;
  position: relative;
}
.mobile-no-swipe {
  display: none;
}
.yandex-map {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 400px;
}
.map-block-contsize {
  width: 90%;
  height: 100%;
  max-width: 1600px;
  display: flex;
  align-items: center;
  margin: auto;
}
.map-block-content {
  left: 7%;
  right: 55%;
  background-color: #ffffff;
  padding: 50px;
  position: absolute;
  z-index: 1;
  max-height: 400px;
  max-width: 400px;
  overflow: auto;
}
.map-block-content::-webkit-scrollbar {
  width: 5px;
  height: 5px;
  background-color: #D9D9D9;
}
.map-block-content::-webkit-scrollbar-thumb {
  background-color: #F83A4B;
  border-radius: 9em;
}
.map-block-content::-webkit-scrollbar-thumb:hover {
  background-color: #FA7581;
}


.map-block-content h3 {
  font-size: 24px;
  line-height: 1.17;
  margin-bottom: 5px;
}

.footer-block {
  width: 100%;
  background-color: #111111;
}
.footer-block-contsize {
  width: 90%;
  max-width: 1600px;
  display: flex;
  align-items: center;
  margin: auto;
  color: #ffffff;
  padding-top: 75px;
  padding-bottom: 75px;
}
.footer-block-cont {
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
}
.footer-block-cont p {
  font-size: 14px;
}
.footer-block-cont p a {
  color: #ffffff;
  text-decoration: none;
}
.footer-block-cont div {
  width: 20%;
}
.footer-block-contsize .gray-text {
  display: block;
  color: #525252;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 600;
  margin-bottom: 10px;
}
.footer-block-contsize .order-call {
  color: #FDCC00;
  text-decoration: underline;
  cursor: pointer;
}

.maps-menu {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.fill-cont-block img {
  width: 20px;
  height: 20px;
  margin-right: 5px;
  margin-top: 3px;
}

.fill-cont-block {
  justify-content: center;
  display: flex;
  margin: 5px 0;
  padding: 10px;
  cursor: pointer;
}
.fill-cont-block2 {
  justify-content: center;
  display: flex;
  margin: 5px 0;
}
.fill-cont-block2 img {
  width: 20px;
  height: 20px;
  margin-right: 5px;
  margin-top: 23px;
}
.show-on-map-active {
  background-color: #f5f5f5;
  cursor: default;
}
.fill-cont-block p {
  margin: 0;
}

.map-phone {
  color: black;
  text-decoration: none;
}

.adrr-and-phone {
  font-size: 16px;
  color: black;
  text-decoration: none;
}
.adrr-and-phone2 {
  font-size: 18px;
  color: black;
  text-decoration: none;
}
.maps-block-map {
  display: none;
}
.maps-block-map:first-child {
  display: block;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-logo img {
  width: 125px;
}
.footer-coopyright {
  text-transform: none !important;
  line-height: 1.55 !important;
  margin-top: 21px;
  font-size: 14px !important;
  color: #ffffff;
  font-weight: 100 !important;
}



.sixth-block {
  width: 100%;
  overflow: hidden;
  height: 75vh;
  padding-bottom: 30px;
}
.sixth-block-contsize {
  width: 100%;
  height: 100%;
  max-width: 2000px;
  /* padding: 75px 0 140px 0; */
  /* padding-bottom: 30px; */
  position: relative;
}
.swiper-container {
  top: 0;
  bottom: 0;
  left: -50%;
  right: -50%;
  position: absolute;
  width: 200%;
  height: 75vh;
  max-height: 700px;
}
.swiper-slide {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 100%;
  max-height: 700px;
}
.swiper-slide-active {
  background-position: center;
  height: 100%;
  max-height: 700px;
}

.swiper-pagination {
  width: 100%;
  display: flex;
  justify-content: center;
  bottom: -30 !important;
}
.swiper-pagination-bullet {
  margin: 25px 10px 0 10px !important;
  background-color: #C7C7C7 !important;
  outline: none;
  border: none;
  opacity: 1 !important;
  cursor: pointer;
}
.swiper-pagination-bullet:hover {
  background-color: #222222 !important;
  opacity: 1 !important;
}
.swiper-pagination-bullet-active {
  background-color: #222222 !important;
  opacity: 1 !important;
}

.swiper-button-next-custom {
  display: flex;
  justify-content: center;
  align-items: center;
  top: 50%;
  padding: 10px;
  width: 25px !important;
  height: 25px !important;
  border-radius: 50%;
  background-color: #E8E8E8;
  color: black !important;
  right: 32% !important;
  background-image: url(/images/arrow-right.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 30%;
  z-index: 1;
  cursor: pointer;
}
.swiper-next-placeholder {
  position: absolute;
  top: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 33%;
  right: 0;
  z-index: 1;
  cursor: pointer;
}
.swiper-button-prev-custom {
  display: flex;
  justify-content: center;
  align-items: center;
  top: 50%;
  padding: 10px;
  width: 25px !important;
  height: 25px !important;
  border-radius: 50%;
  background-color: #E8E8E8;
  color: black !important;
  left: 32% !important;
  background-image: url(/images/arrow-left.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 30%;
  z-index: 2;
  cursor: pointer;
}
.swiper-prev-placeholder {
  position: absolute;
  top: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 33%;
  left: 0;
  z-index: 1;
  cursor: pointer;
}
.secondpage_block {
	width: 100%;
	min-height: 100vh;
	display: flex;
	justify-content: center;
  margin-bottom: 100px;
  margin-top: 25px;
}
.secondpage_contsize {
	width: 95%;
  max-width: 1600px;
  margin: auto;
  font-size: 16px;
}
.secondpage_contsize h1 {
  text-align: center;
}
.secondpage_contsize h4 {
  text-align: center;
}
.static {
  width: 100%;
  position: static;
  background-color: #9C9080;
  display: flex;
  justify-content: center;
}

.privat_policy_logo {
  display: flex;
  justify-content: center;
  margin-top: 25px;
}



.privat_policy_link {
  display: inline-block;
  margin-top: 15px;
  color: #363636;
}

.requisites {
  margin-top: 25px;
  margin-bottom: 0px;
  font-size: 13px;
  color: #777;
}
