@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap");
* {
  vertical-align: baseline;
  font-weight: inherit;
  font-family: inherit;
  font-style: inherit;
  font-size: 100%;
  border: 0 none;
  outline: 0;
  padding: 0;
  margin: 0;
}

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

:focus,
:active {
  outline: none;
}

a :focus,
a :active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  line-height: 1;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
  font-family: inherit;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
  background: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:visited {
  text-decoration: none;
}

a :hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

ol li {
  list-style: none;
}

img {
  vertical-align: top;
}

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

table {
  border-collapse: collapse;
  border-spacing: 0;
}

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

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

textarea {
  resize: none;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
}

:root {
  font-size: 16px;
}

@media screen and (max-width: 769px) {
  :root {
    font-size: 14px;
  }
}

@media screen and (max-width: 321px) {
  :root {
    font-size: 12px;
  }
}

#logo-text {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 500;
}

body {
  font-family: "Roboto", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
}

h1 {
  font-size: 3.5rem;
  font-weight: 800;
}

h2 {
  font-size: 2.25rem;
  font-weight: 600;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
}

h4 {
  font-size: 1.25rem;
  font-weight: 600;
}

h5 {
  font-size: 1.125rem;
  font-weight: 600;
}

button {
  color: #100D0D;
}

.button {
  border-radius: 4px;
  transition: all 0.2s ease-in-out;
  white-space: nowrap;
  border: 1px solid transparent;
}
.button:disabled {
  cursor: not-allowed;
  opacity: 0.6;
  pointer-events: none;
}

.button.regular {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  padding: 1rem 2rem;
}

.button.small {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.2;
  padding: 0.4rem 0.85rem;
}

.button.red {
  color: #fff;
  background-color: #DF0911;
}
.button.red:hover {
  background-color: rgb(245.2047413793, 12.2952586207, 21.0021551724);
}
.button.red:active {
  background-color: rgb(198.4892241379, 8.0107758621, 15.1314655172);
}
.button.red:disabled {
  background-color: #DF0911;
  color: #fff;
}

.button.red-empty {
  color: #DF0911;
  background-color: transparent;
  border-color: #DF0911;
}
.button.red-empty:hover {
  background-color: rgba(223, 9, 17, 0.1);
}
.button.red-empty:active {
  background-color: rgba(223, 9, 17, 0.2);
}
.button.red-empty:disabled {
  color: #DF0911;
  border-color: #DF0911;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: #F9F9F9;
  color: #100D0D;
  max-width: 100%;
  overflow-x: hidden;
}

.main {
  padding-top: 4rem;
  flex: 1;
}

section {
  margin-bottom: 4rem;
}

.header {
  padding: 0.65rem 4rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #0a0909;
  transition: transform 0.2s ease-out, background-color 0.3s ease, opacity 0.2s ease;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  opacity: 1;
  will-change: transform, opacity;
  height: 4rem;
}

.header--hidden {
  transform: translateY(-100%);
}

.header--transparent {
  opacity: 0.85;
  background-color: rgba(10, 9, 9, 0.85);
}

.header-logo {
  display: flex;
  align-items: center;
}
.header-logo #logo-text {
  line-height: 1.2;
  font-size: 0.75rem;
  color: #fff;
  word-break: break-all;
  text-transform: uppercase;
  text-align: right;
  margin-right: 0.5em;
}
.header-logo img {
  width: 2.5rem;
  height: 2.5rem;
  -o-object-fit: contain;
     object-fit: contain;
}

.header-nav-link {
  color: white;
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  margin-right: 1.25rem;
  display: inline-block;
  text-decoration: none;
  position: relative;
}
.header-nav-link:last-child {
  margin-right: 0;
}
.header-nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background-color: #DF0911;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.header-nav-link:hover::after, .header-nav-link:active::after {
  transform: scaleX(1);
}

.header-burger-button {
  flex-direction: column;
  display: none;
}
.header-burger-button .line {
  display: block;
  width: 28px;
  border-radius: 8px;
  height: 2px;
  background-color: white;
  margin-bottom: 6px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.header-burger-button .line:last-child {
  margin-bottom: 0;
}

.header-burger-button.opened .line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.header-burger-button.opened .line:nth-child(2) {
  opacity: 0;
}
.header-burger-button.opened .line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.header-burger-menu {
  visibility: hidden;
  position: absolute;
  z-index: 999;
  top: 100%;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  background-color: #100D0D;
}

.header-burger-nav {
  text-align: center;
}

.header-burger-nav-link {
  color: white;
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  padding: 2rem;
  display: block;
  text-decoration: none;
  border-bottom: 1px solid rgba(69, 67, 67, 0.25);
}
.header-burger-nav-link:hover, .header-burger-nav-link:active {
  color: #DF0911;
}

.hero {
  background-color: #fff;
  position: relative;
  height: 85vh;
  max-height: 680px;
}
.hero::before {
  content: " ";
  width: 3.25rem;
  height: 3.25rem;
  position: absolute;
  top: 3rem;
  left: 3rem;
  background-color: #DF0911;
  border-radius: 100%;
  filter: blur(72px);
}
.hero::after {
  content: " ";
  width: 3.25rem;
  height: 3.25rem;
  position: absolute;
  bottom: 6rem;
  right: 3rem;
  background-color: #DF0911;
  border-radius: 100%;
  filter: blur(72px);
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 3rem;
  justify-content: center;
  text-align: center;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.hero-content {
  max-width: 920px;
}

.hero-heading span {
  color: #DF0911;
}
.hero-heading {
  margin-bottom: 0.5rem;
}

.hero-description {
  color: #454343;
  margin-bottom: 4rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

.hero-buttons .hero-button {
  display: inline-block;
  text-align: center;
  min-width: 9.5rem;
}
.hero-buttons .hero-button:first-of-type {
  margin-right: 1.5rem;
}

.about {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 4rem;
}

.cancel-heading {
  margin-bottom: 1rem;
}

.about-2 {
  background-color: #fff;
}
.about-2 .about-content {
  margin-right: 4rem;
}

.about-1 .about-image {
  margin-right: 4rem;
}

.about-content {
  max-width: 820px;
}

.about-text, .about-subheader {
  font-size: 1.125rem;
  line-height: 1.5;
  color: #454343;
}

.about-subheader {
  margin-bottom: 0.5rem;
}

.about-text span, .about-text a {
  color: #DF0911;
}

.about-image img {
  height: 360px;
  -o-object-fit: contain;
     object-fit: contain;
}

.about-header {
  margin-bottom: 2rem;
}
.about-header span {
  color: #DF0911;
}

.reporting {
  padding: 2rem 4rem;
  display: flex;
  justify-content: center;
}

.reporting-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 820px;
}

.reporting-heading {
  margin-bottom: 2rem;
}

.reporting-description {
  font-size: 1.125rem;
  line-height: 1.5;
  color: #454343;
  text-align: center;
  margin-bottom: 2rem;
}
.reporting-description span {
  color: #DF0911;
}

.reporting-cards {
  margin-bottom: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: center;
}

.reporting-card {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  text-align: center;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid #D0CFCF;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  width: 160px;
  padding: 0.75rem 1rem;
  transition: transform 0.2s ease;
}
.reporting-card:hover {
  transform: translateY(-4px);
}

.reporting-card-number {
  color: #DF0911;
}

.reporting-card-text {
  font-size: 1.125rem;
  line-height: 1.5;
  font-weight: 600;
}

.reporting-footer {
  text-align: center;
}

.reporting-footer-heading {
  text-transform: lowercase;
  color: #454343;
  margin-bottom: 1rem;
  font-weight: 500;
}

.reporting-footer-text {
  font-size: 1.125rem;
  line-height: 1.5;
  color: #454343;
}
.reporting-footer-text a {
  color: #DF0911;
  font-style: italic;
}
.reporting-footer-text a:hover, .reporting-footer-text a:active {
  color: rgb(183.7827586207, 7.4172413793, 14.0103448276);
}

.support {
  padding: 2rem 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.support-content {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: nowrap;
  width: 100%;
}

.support-left, .support-right {
  flex: 1;
  min-width: 320px;
  max-width: 760px;
}

.support-heading {
  margin-bottom: 2.5rem;
  text-align: center;
}
.support-heading span {
  color: #DF0911;
}

.support-card {
  background-color: #fff;
  border-radius: 4px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  padding: 1.5rem 1rem;
  border: 1px solid #D0CFCF;
  margin-bottom: 1rem;
}
.support-card:last-child {
  margin-bottom: 0;
}

.support-card-heading {
  font-weight: 600;
  margin-bottom: 2rem;
}

.support-card-info-lines {
  margin-bottom: 1rem;
}

.support-card-info {
  font-size: 1.125rem;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}
.support-card-info:last-child {
  margin-bottom: 0;
}

.support-card-info-label {
  color: #454343;
}

.support-card-info-value {
  display: inline;
}

.support-card-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}
.support-card-field:last-child {
  margin-bottom: 0;
}

.support-card-field-label {
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
  line-height: 1.5;
  color: #454343;
}

.support-card-field-input {
  border-radius: 4px;
  border: 1px solid #AFAEAE;
  padding: 0.875rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.support-card-field-input span {
  color: #DF0911;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 600;
}
.support-card-field-input {
  cursor: pointer;
}
.support-card-field-input:hover {
  border-color: rgba(244, 78, 82, 0.5);
}
.support-card-field-input:hover .support-card-field-button img {
  filter: brightness(0) invert(41%) sepia(21%) saturate(4237%) hue-rotate(327deg) brightness(98%) contrast(96%);
}

.support-card-field-value {
  margin-right: 0.5em;
}

.support-card-field-button {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.2;
  display: flex;
  align-items: center;
}
.support-card-field-button img {
  height: 1em;
  margin-left: 0.5em;
}

.support-card-monobank-button {
  color: #fff;
  background-color: #100D0D;
  align-self: stretch;
  padding-top: 0.85rem !important;
  padding-bottom: 0.85rem !important;
  font-weight: 600 !important;
  transition: background-color 0.2s ease;
  text-align: center;
}
.support-card-monobank-button:hover {
  background-color: rgb(30.0689655172, 24.4310344828, 24.4310344828);
}
.support-card-monobank-button:active {
  background-color: hsl(0, 10.3448275862%, -9.3137254902%);
}

.gallery {
  padding: 2rem 2rem;
  background-color: #fff;
}

.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  max-width: 1400px;
  margin: 0 auto;
}
.gallery-grid img {
  border-radius: 2px;
  width: 320px;
  height: auto;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.gallery-grid img:hover {
  transform: scale(1.02);
}

.main.cancel-subscription, .main.error-main {
  background-color: #fff;
}

.cancel, .error {
  margin: 0 auto;
  max-width: 1400px;
  padding: 3rem 4rem;
  margin-bottom: 0;
}
.cancel a, .error a {
  color: #DF0911;
  word-break: break-word;
}
.cancel a:hover, .cancel a:active, .error a:hover, .error a:active {
  text-decoration: underline;
  color: rgb(173.9784482759, 7.0215517241, 13.2629310345);
}

.error-heading {
  margin-bottom: 1rem;
  color: #DF0911;
}

.cancel-instruction {
  margin-bottom: 1rem;
}
.cancel-instruction:last-child {
  margin-bottom: 0;
}

ol.cancel-instruction-list {
  padding-left: 2em;
}
ol.cancel-instruction-list li {
  list-style: decimal;
}

ul.cancel-instruction-list {
  padding-left: 2em;
}
ul.cancel-instruction-list li {
  list-style: circle;
}

.cancel-instruction-heading {
  margin-bottom: 0.25rem;
}

.cancel-instruction-list, .cancel-description, .cancel-instruction-description, .error-description {
  font-size: 1.125rem;
  line-height: 1.5;
  color: #454343;
}

.cancel-instructions {
  margin-bottom: 1.5rem;
}

.cancel-footer {
  padding-top: 1rem;
  border-top: 1px solid #AFAEAE;
}

.cancel-footer-description {
  font-size: 1rem;
  line-height: 1.5;
  color: #454343;
}

.footer {
  background-color: #0a0909;
  padding: 1.5rem 5rem;
  font-size: 0.875rem;
  line-height: 1.5;
}

.footer-content {
  display: flex;
  gap: 1rem;
  max-width: 1400px;
  margin: 0 auto;
}

.footer-logo img {
  width: 10rem;
}

.footer-meta {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-note {
  font-size: 0.875rem;
  line-height: 1.5;
  color: #AFAEAE;
}

.footer-copyright {
  color: #D0CFCF;
}

.footer-copyright.mobile {
  display: none;
}

.footer-left {
  display: flex;
  flex-direction: column;
  flex: 1 0 50%;
  justify-content: space-between;
}

.footer-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1 1 auto;
  align-items: end;
}

.footer-contact {
  display: flex;
  align-items: center;
  justify-content: end;
  color: #D0CFCF;
}
.footer-contact a {
  color: #D0CFCF;
}
.footer-contact img {
  filter: brightness(0) invert(74%) sepia(9%) saturate(14%) hue-rotate(314deg) brightness(93%) contrast(92%);
  margin-right: 0.5em;
}

.footer-socials img {
  height: 2.25rem;
}
.footer-socials a img {
  filter: brightness(0) invert(100%) sepia(2%) saturate(48%) hue-rotate(238deg) brightness(117%) contrast(94%);
}
.footer-socials a:hover img {
  filter: brightness(0) invert(16%) sepia(66%) saturate(5430%) hue-rotate(350deg) brightness(84%) contrast(109%);
}
.footer-socials ul {
  display: flex;
  align-items: center;
}
.footer-socials ul li {
  margin-right: 8px;
}
.footer-socials ul li:nth-of-type(2) {
  margin-right: 16px;
}
.footer-socials ul a:hover, .footer-socials ul a:active {
  filter: brightness(0.85);
}

@media screen and (max-width: 1440px) {
  .support-content {
    gap: 2rem;
  }
}
@media screen and (max-width: 1025px) {
  .support-card {
    margin-bottom: 2rem;
  }
  .support-left, .support-right {
    width: 100%;
  }
  .support-left .support-card:last-child {
    margin-bottom: 2rem;
  }
  .support-content {
    flex-direction: column;
    align-items: center;
    gap: 0;
    width: 100%;
  }
  .about-image img {
    height: 320px;
  }
}
@media screen and (max-width: 980px) {
  .about-1 {
    flex-direction: column;
  }
  .about-2 {
    flex-direction: column-reverse;
  }
  .about-image, .about-content {
    margin-right: 0 !important;
  }
  .about-image {
    margin-bottom: 2rem;
  }
  .footer {
    padding: 1.5rem 3rem;
  }
  .footer-meta {
    flex-wrap: wrap;
  }
  .header {
    padding: 0.75rem 3rem;
  }
}
@media screen and (max-width: 769px) {
  .header-nav-link {
    margin-right: 0.75rem;
  }
  .about {
    padding: 2rem 3rem;
  }
  .reporting {
    padding: 2rem 3rem;
  }
  .support {
    padding: 2rem 3rem;
  }
  .support-card-heading {
    margin-bottom: 1rem;
  }
  .reporting-cards {
    gap: 2rem;
  }
  .cancel {
    padding: 3rem 3rem;
  }
  .gallery-grid {
    width: 90%;
  }
  .gallery-grid img {
    width: 100%;
  }
  .footer {
    padding: 1.5rem 2rem;
  }
  .header {
    padding: 0.75rem 2rem;
  }
  .footer-content {
    flex-direction: column;
    align-items: center;
  }
  .footer-left {
    text-align: center;
  }
  .footer-meta {
    justify-content: center;
  }
  .footer-right {
    align-items: center;
    gap: 1.5rem;
  }
  .footer-contact {
    justify-content: center;
  }
  .footer-copyright.mobile {
    display: block;
  }
  .footer-copyright:not(.mobile) {
    display: none;
  }
  .footer-meta {
    margin-bottom: 1rem;
  }
  .footer-socials {
    order: -1;
  }
  .hero::before {
    width: 2.5rem;
    height: 2.5rem;
  }
  .hero::after {
    width: 2.5rem;
    height: 2.5rem;
    bottom: 3rem;
  }
}
@media screen and (max-width: 426px) {
  .header-nav {
    display: none;
  }
  .header-burger-button {
    display: flex;
  }
  .header-burger-menu.opened {
    visibility: visible;
    opacity: 1;
  }
  .about-image img {
    height: 260px;
  }
  .about {
    padding: 1rem 2rem;
  }
  .support {
    padding: 1rem 2rem;
  }
  .support {
    padding: 1rem 1rem;
  }
  .reporting {
    padding: 1rem 1rem;
  }
  .cancel {
    padding: 3rem 2rem;
  }
  .reporting-cards {
    gap: 1rem;
  }
  .support-left {
    min-width: auto;
    max-width: auto;
    width: 100%;
  }
  .support-right {
    max-width: auto;
    min-width: auto;
    width: 100%;
  }
  .support-card-field-input {
    border: none;
    border-radius: 0;
    flex-direction: column;
    align-items: start;
    gap: 0.5rem;
    padding: 0;
  }
  .support-card-field-button {
    border-radius: 4px;
    border: 1px solid #AFAEAE;
    padding: 0.5rem 0.75rem;
  }
  .gallery {
    padding: 1rem 1rem;
  }
  .gallery-grid {
    width: 100%;
  }
  .footer-logo img {
    width: 9rem;
  }
  .footer {
    padding: 1.5rem 1rem;
  }
  .header {
    padding: 0.75rem 1rem;
  }
  .hero-heading {
    font-size: 3rem;
  }
  .hero-buttons .hero-button:first-of-type {
    margin-right: 1rem;
  }
}
@media screen and (max-width: 321px) {
  .about-image img {
    height: 240px;
  }
  .support-card {
    padding: 1.5rem 0.875rem;
  }
}/*# sourceMappingURL=index.css.map */
