@charset "UTF-8";

@font-face {
  font-family: icons;
  font-display: swap;
  src: url("../fonts/icons.woff2") format("woff2"), url("../fonts/icons.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: museosanscyrl;
  font-display: swap;
  src: url("../fonts/museosanscyrl-300.woff2") format("woff2"), url("../fonts/museosanscyrl-300.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: museosanscyrl;
  font-display: swap;
  src: url("../fonts/museosanscyrl-500.woff2") format("woff2"), url("../fonts/museosanscyrl-500.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: museosanscyrl;
  font-display: swap;
  src: url("../fonts/museosanscyrl-700.woff2") format("woff2"), url("../fonts/museosanscyrl-700.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: robotocondensed;
  font-display: swap;
  src: url("../fonts/robotocondensed-bold.woff2") format("woff2"), url("../fonts/robotocondensed-bold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: museosanscyrl;
  font-display: swap;
  src: url("../fonts/museosanscyrl-900.woff2") format("woff2"), url("../fonts/museosanscyrl-900.woff") format("woff");
  font-weight: 900;
  font-style: normal;
}

* {
  padding: 0px;
  margin: 0px;
  border: 0px;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body {
  height: 100%;
  min-width: 320px;
}

body {
  color: #000;
  line-height: 1;
  font-family: "museosanscyrl";
  font-size: 1rem;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

input,
button,
textarea {
  font-family: "museosanscyrl";
  font-size: inherit;
  line-height: inherit;
}

button {
  cursor: pointer;
  color: inherit;
  background-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

.lock body {
  overflow: hidden;
  -ms-touch-action: none;
      touch-action: none;
  -ms-scroll-chaining: none;
      overscroll-behavior: none;
}

.wrapper {
  min-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;
  overflow: hidden;
}

@supports (overflow: clip) {
  .wrapper {
    overflow: clip;
  }
}

.wrapper > main {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.wrapper > * {
  min-width: 0;
}

/*
(i) Стилі будуть застосовуватись до
всіх класів, що містять *__container
Наприклад header__container, main__container і т.п.
Сніппет (HTML): cnt
*/

[class*=__container] {
  max-width: 75rem;
  margin: 0 auto;
  padding: 0 0.9375rem;
}

[class*=-ibg] {
  position: relative;
}

[class*=-ibg] img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

[class*=-ibg--contain] img {
  -o-object-fit: contain;
     object-fit: contain;
}

/*
.icon-menu {
	display: none;
	@media (max-width: $mobile) {
		display: block;
		position: relative;
		width: toRem(30);
		height: toRem(18);
		z-index: 5;
		@media (any-hover: none) {
			cursor: default;
		}
		span,
		&::before,
		&::after {
			content: "";
			transition: all 0.3s ease 0s;
			right: 0;
			position: absolute;
			width: 100%;
			height: toRem(2);
			background-color: #000;
		}
		&::before {
			top: 0;
		}
		&::after {
			bottom: 0;
		}
		span {
			top: calc(50% - toRem(1));
		}
		.menu-open & {
			span {
				width: 0;
			}
			&::before,
			&::after {
			}
			&::before {
				top: calc(50% - toRem(1));
				transform: rotate(-45deg);
			}
			&::after {
				bottom: calc(50% - toRem(1));
				transform: rotate(45deg);
			}
		}
	}
}
*/

.buttons {
  background: #30302e;
}

.main-block {
  color: #fff;
  background: #30302e url("../img/111.png") top left/700px no-repeat;
  min-height: 31.25rem;
  position: relative;
  padding-top: 2.5rem;
  overflow: hidden;
}

.main-block::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.main-block__container {
  position: relative;
  z-index: 3;
}

.main-block__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.main-block__content {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 70%;
          flex: 0 0 70%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.main-block__content img,
.main-block__content a {
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.main-block__right {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  background: #fff;
}

.main-block__logos {
  position: relative;
  padding-bottom: 6.875rem;
  text-align: right;
  margin-right: 80px;
}

.main-block__logos::before {
  content: "";
  display: block;
  position: absolute;
  top: -200px;
  right: -50px;
  width: 450px;
  height: 250px;
  background-color: #fff;
  -webkit-box-shadow: 1px 1px 20px #000;
          box-shadow: 1px 1px 20px #000;
  -webkit-transform: rotate(25deg);
      -ms-transform: rotate(25deg);
          transform: rotate(25deg);
  z-index: 2;
}

.main-block__logos::after {
  content: "";
  display: block;
  position: absolute;
  top: -200px;
  right: -60px;
  width: 470px;
  height: 270px;
  background-color: #f50034;
  -webkit-box-shadow: 1px 1px 20px #000;
          box-shadow: 1px 1px 20px #000;
  -webkit-transform: rotate(25deg);
      -ms-transform: rotate(25deg);
          transform: rotate(25deg);
}

.main-block__logo {
  width: 120px;
  border-radius: 12px;
  position: relative;
  z-index: 3;
  top: 20px;
}

.main-block__logo.two {
  position: absolute;
  top: -30px;
  right: 90px;
}

.main-block__title {
  font-weight: 700;
  line-height: 1.1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 1.25rem;
  text-shadow: 1px 1px 0px #000;
  text-align: right;
  text-transform: uppercase;
  margin-top: 3.125rem;
}

.main-block__subtitle {
  font-weight: 300;
  line-height: 1.2;
  color: #cecece;
  text-shadow: 1px 1px 0px #000;
  text-align: right;
  text-transform: uppercase;
}

.main-block__action {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-right: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 24px;
  position: relative;
}

 .main-block__action::before{
  background: url("../img/pngegg.png") center/contain no-repeat; }

.main-block__action::before {
  content: "";
  display: block;
  position: absolute;
  top: -10px;
  right: 465px;
  width: 50px;
  height: 60px;
}

.main-block__buttons {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[5];
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

.main-block__button {
  background: rgba(231, 231, 231, 0.9725490196);
  color: #000;
  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;
  text-align: center;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 1px;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding: 0.625rem;
  border-radius: 16px;
}

.main-block__button img {
  width: 100px;
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
}

.about-brand{
  background: url("../img/details-removebg-preview.png") center/contain repeat; }

.about-brand {
  color: #000;
  position: relative;
}

.about-brand::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background-color: rgba(255, 255, 255, 0.9254901961);
}

.about-brand__container {
  position: relative;
  z-index: 3;
}

.about-brand__title {
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  color: #f50034;
  text-shadow: 1px 1px 0px #9b0022;
  font-style: italic;
}

.about-brand__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.about-brand__image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
}

.about-brand__image img {
  margin-top: 0.625rem;
  max-width: 100%;
  border-radius: 16px;
}

.about-brand__text {
  padding-left: 1.25rem;
}

.about-brand__text p {
  line-height: 1.2;
  font-weight: 300;
}

.about-brand__text p:not(:last-child) {
  margin-bottom: 0.9375rem;
}

.about-brand__text p span {
  font-weight: 600;
}

.about-brand__link {
  font-style: italic;
  font-weight: 700;
  text-decoration: underline;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.about-categories{
  background: url("../img/details-removebg-preview.png") center/contain repeat; }

.about-categories {
  position: relative;
}

.about-categories::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background-color: rgba(255, 255, 255, 0.9254901961);
}

.about-categories__container {
  position: relative;
  z-index: 3;
}

.about-categories__title {
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.about-categories__items p {
  line-height: 1.2;
  font-weight: 300;
  font-style: italic;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
}

.about-categories__items p:not(:last-child) {
  margin-bottom: 0.625rem;
}

.about-categories__items p img {
  width: 40px;
}

.about-categories__items:not(:last-child) {
  margin-bottom: 2.5rem;
}

.about-categories__text p {
  line-height: 1.2;
  font-weight: 300;
}

.about-categories__text p:not(:last-child) {
  margin-bottom: 0.9375rem;
}

.about-categories__text p span {
  font-weight: 600;
}

.about-categories__desc {
  font-weight: 700;
  line-height: 1.2;
  margin: 0 auto;
  color: #f50034;
  font-style: italic;
}

.about-categories__desc p:not(:last-child) {
  margin-bottom: 0.625rem;
}

.about-categories__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.about-categories__images {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40%;
          flex: 0 0 40%;
}

.about-categories__images img {
  max-width: 100%;
}

@media (min-width: 75em) {
  .buttons {
    padding-top: 3.125rem;
  }

  .buttons {
    padding-bottom: 3.75rem;
  }

  .main-block__title {
    font-size: 2.5rem;
  }

  .main-block__subtitle {
    font-size: 2.25rem;
  }

  .main-block__button {
    font-size: 1.25rem;
  }

  .about-brand {
    padding-top: 5rem;
  }

  .about-brand {
    padding-bottom: 3.75rem;
  }

  .about-brand__title {
    font-size: 1.875rem;
  }

  .about-brand__title {
    margin-bottom: 3.125rem;
  }

  .about-brand__text p {
    font-size: 1.5rem;
  }

  .about-brand__link {
    font-size: 1.875rem;
  }

  .about-categories {
    padding-bottom: 3.75rem;
  }

  .about-categories__title {
    font-size: 1.75rem;
  }

  .about-categories__items p {
    font-size: 1.5rem;
  }

  .about-categories__text p {
    font-size: 1.5rem;
  }

  .about-categories__desc {
    font-size: 1.625rem;
  }
}

@media (max-width: 20em) {
  .buttons {
    padding-top: 2.5rem;
  }

  .buttons {
    padding-bottom: 2.5rem;
  }

  .main-block__title {
    font-size: 1.875rem;
  }

  .main-block__subtitle {
    font-size: 1.625rem;
  }

  .main-block__button {
    font-size: 1.125rem;
  }

  .about-brand {
    padding-top: 2.5rem;
  }

  .about-brand {
    padding-bottom: 2.5rem;
  }

  .about-brand__title {
    font-size: 1.5rem;
  }

  .about-brand__title {
    margin-bottom: 1.875rem;
  }

  .about-brand__text p {
    font-size: 1.125rem;
  }

  .about-brand__link {
    font-size: 1.25rem;
  }

  .about-categories {
    padding-bottom: 2.5rem;
  }

  .about-categories__title {
    font-size: 1.375rem;
  }

  .about-categories__items p {
    font-size: 1.125rem;
  }

  .about-categories__text p {
    font-size: 1rem;
  }

  .about-categories__desc {
    font-size: 1.25rem;
  }
}

@media (max-width: 61.99875em) {
  .main-block {
	background: #30302e url("../img/111.png") top left/500px no-repeat;
  }

  .about-categories__items:not(:last-child) {
    margin-bottom: 0.625rem;
  }

  .about-categories__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 1.25rem;
  }

  .about-categories__images {
    text-align: center;
  }
}

@media (max-width: 47.99875em) {
  .main-block__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.25rem;
  }

  .main-block__title {
    margin-top: 8.125rem;
    margin-bottom: 0.625rem;
  }

  .about-brand__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .about-brand__image {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }

  .about-brand__text {
    padding-left: 0rem;
    padding-top: 1.25rem;
  }

  .about-categories__items p {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }

  .about-categories__items p img {
    width: 30px;
  }
}

@media (max-width: 29.99875em) {
  .main-block__button {
    width: 100%;
  }
}

@media (min-width: 20em) and (max-width: 75em) {
@supports (padding-top: clamp( 2.5rem , 2.2727272727rem  +  1.1363636364vw , 3.125rem )) {
    .buttons {
      padding-top: clamp( 2.5rem , 2.2727272727rem  +  1.1363636364vw , 3.125rem );
    }
}

@supports not (padding-top: clamp( 2.5rem , 2.2727272727rem  +  1.1363636364vw , 3.125rem )) {
    .buttons {
      padding-top: calc(2.5rem + 0.625 * (100vw - 20rem) / 55);
    }
}

@supports (padding-bottom: clamp( 2.5rem , 2.0454545455rem  +  2.2727272727vw , 3.75rem )) {
    .buttons {
      padding-bottom: clamp( 2.5rem , 2.0454545455rem  +  2.2727272727vw , 3.75rem );
    }
}

@supports not (padding-bottom: clamp( 2.5rem , 2.0454545455rem  +  2.2727272727vw , 3.75rem )) {
    .buttons {
      padding-bottom: calc(2.5rem + 1.25 * (100vw - 20rem) / 55);
    }
}

@supports (font-size: clamp( 1.875rem , 1.6477272727rem  +  1.1363636364vw , 2.5rem )) {
    .main-block__title {
      font-size: clamp( 1.875rem , 1.6477272727rem  +  1.1363636364vw , 2.5rem );
    }
}

@supports not (font-size: clamp( 1.875rem , 1.6477272727rem  +  1.1363636364vw , 2.5rem )) {
    .main-block__title {
      font-size: calc(1.875rem + 0.625 * (100vw - 20rem) / 55);
    }
}

@supports (font-size: clamp( 1.625rem , 1.3977272727rem  +  1.1363636364vw , 2.25rem )) {
    .main-block__subtitle {
      font-size: clamp( 1.625rem , 1.3977272727rem  +  1.1363636364vw , 2.25rem );
    }
}

@supports not (font-size: clamp( 1.625rem , 1.3977272727rem  +  1.1363636364vw , 2.25rem )) {
    .main-block__subtitle {
      font-size: calc(1.625rem + 0.625 * (100vw - 20rem) / 55);
    }
}

@supports (font-size: clamp( 1.125rem , 1.0795454545rem  +  0.2272727273vw , 1.25rem )) {
    .main-block__button {
      font-size: clamp( 1.125rem , 1.0795454545rem  +  0.2272727273vw , 1.25rem );
    }
}

@supports not (font-size: clamp( 1.125rem , 1.0795454545rem  +  0.2272727273vw , 1.25rem )) {
    .main-block__button {
      font-size: calc(1.125rem + 0.125 * (100vw - 20rem) / 55);
    }
}

@supports (padding-top: clamp( 2.5rem , 1.5909090909rem  +  4.5454545455vw , 5rem )) {
    .about-brand {
      padding-top: clamp( 2.5rem , 1.5909090909rem  +  4.5454545455vw , 5rem );
    }
}

@supports not (padding-top: clamp( 2.5rem , 1.5909090909rem  +  4.5454545455vw , 5rem )) {
    .about-brand {
      padding-top: calc(2.5rem + 2.5 * (100vw - 20rem) / 55);
    }
}

@supports (padding-bottom: clamp( 2.5rem , 2.0454545455rem  +  2.2727272727vw , 3.75rem )) {
    .about-brand {
      padding-bottom: clamp( 2.5rem , 2.0454545455rem  +  2.2727272727vw , 3.75rem );
    }
}

@supports not (padding-bottom: clamp( 2.5rem , 2.0454545455rem  +  2.2727272727vw , 3.75rem )) {
    .about-brand {
      padding-bottom: calc(2.5rem + 1.25 * (100vw - 20rem) / 55);
    }
}

@supports (font-size: clamp( 1.5rem , 1.3636363636rem  +  0.6818181818vw , 1.875rem )) {
    .about-brand__title {
      font-size: clamp( 1.5rem , 1.3636363636rem  +  0.6818181818vw , 1.875rem );
    }
}

@supports not (font-size: clamp( 1.5rem , 1.3636363636rem  +  0.6818181818vw , 1.875rem )) {
    .about-brand__title {
      font-size: calc(1.5rem + 0.375 * (100vw - 20rem) / 55);
    }
}

@supports (margin-bottom: clamp( 1.875rem , 1.4204545455rem  +  2.2727272727vw , 3.125rem )) {
    .about-brand__title {
      margin-bottom: clamp( 1.875rem , 1.4204545455rem  +  2.2727272727vw , 3.125rem );
    }
}

@supports not (margin-bottom: clamp( 1.875rem , 1.4204545455rem  +  2.2727272727vw , 3.125rem )) {
    .about-brand__title {
      margin-bottom: calc(1.875rem + 1.25 * (100vw - 20rem) / 55);
    }
}

@supports (font-size: clamp( 1.125rem , 0.9886363636rem  +  0.6818181818vw , 1.5rem )) {
    .about-brand__text p {
      font-size: clamp( 1.125rem , 0.9886363636rem  +  0.6818181818vw , 1.5rem );
    }
}

@supports not (font-size: clamp( 1.125rem , 0.9886363636rem  +  0.6818181818vw , 1.5rem )) {
    .about-brand__text p {
      font-size: calc(1.125rem + 0.375 * (100vw - 20rem) / 55);
    }
}

@supports (font-size: clamp( 1.25rem , 1.0227272727rem  +  1.1363636364vw , 1.875rem )) {
    .about-brand__link {
      font-size: clamp( 1.25rem , 1.0227272727rem  +  1.1363636364vw , 1.875rem );
    }
}

@supports not (font-size: clamp( 1.25rem , 1.0227272727rem  +  1.1363636364vw , 1.875rem )) {
    .about-brand__link {
      font-size: calc(1.25rem + 0.625 * (100vw - 20rem) / 55);
    }
}

@supports (padding-bottom: clamp( 2.5rem , 2.0454545455rem  +  2.2727272727vw , 3.75rem )) {
    .about-categories {
      padding-bottom: clamp( 2.5rem , 2.0454545455rem  +  2.2727272727vw , 3.75rem );
    }
}

@supports not (padding-bottom: clamp( 2.5rem , 2.0454545455rem  +  2.2727272727vw , 3.75rem )) {
    .about-categories {
      padding-bottom: calc(2.5rem + 1.25 * (100vw - 20rem) / 55);
    }
}

@supports (font-size: clamp( 1.375rem , 1.2386363636rem  +  0.6818181818vw , 1.75rem )) {
    .about-categories__title {
      font-size: clamp( 1.375rem , 1.2386363636rem  +  0.6818181818vw , 1.75rem );
    }
}

@supports not (font-size: clamp( 1.375rem , 1.2386363636rem  +  0.6818181818vw , 1.75rem )) {
    .about-categories__title {
      font-size: calc(1.375rem + 0.375 * (100vw - 20rem) / 55);
    }
}

@supports (font-size: clamp( 1.125rem , 0.9886363636rem  +  0.6818181818vw , 1.5rem )) {
    .about-categories__items p {
      font-size: clamp( 1.125rem , 0.9886363636rem  +  0.6818181818vw , 1.5rem );
    }
}

@supports not (font-size: clamp( 1.125rem , 0.9886363636rem  +  0.6818181818vw , 1.5rem )) {
    .about-categories__items p {
      font-size: calc(1.125rem + 0.375 * (100vw - 20rem) / 55);
    }
}

@supports (font-size: clamp( 1rem , 0.8181818182rem  +  0.9090909091vw , 1.5rem )) {
    .about-categories__text p {
      font-size: clamp( 1rem , 0.8181818182rem  +  0.9090909091vw , 1.5rem );
    }
}

@supports not (font-size: clamp( 1rem , 0.8181818182rem  +  0.9090909091vw , 1.5rem )) {
    .about-categories__text p {
      font-size: calc(1rem + 0.5 * (100vw - 20rem) / 55);
    }
}

@supports (font-size: clamp( 1.25rem , 1.1136363636rem  +  0.6818181818vw , 1.625rem )) {
    .about-categories__desc {
      font-size: clamp( 1.25rem , 1.1136363636rem  +  0.6818181818vw , 1.625rem );
    }
}

@supports not (font-size: clamp( 1.25rem , 1.1136363636rem  +  0.6818181818vw , 1.625rem )) {
    .about-categories__desc {
      font-size: calc(1.25rem + 0.375 * (100vw - 20rem) / 55);
    }
}
}

@media (any-hover: hover) {
  .main-block__button:hover {
    color: rgb(161, 0, 0);
  }

  .about-brand__link:hover {
    color: #e51636;
  }
}

@media (max-width: 650px){
	.main-block {
		background: #30302e url("../img/111.png") top left/700px no-repeat;
	  }
	  .main-block__title{
		margin-top: 250px;
	  }
	  .main-block__subtitle{
		margin-bottom: 40px;
	  }
}