/* Reset and base styles  */
* {
  padding: 0px;
  margin: 0px;
  border: none;
}

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

/* Common */
aside,
nav,
footer,
header,
section,
main {
  display: block;
}

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

ul,
ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

/* Form */
input,
textarea,
button,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

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

button,
input[type='submit'] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus,
input:active,
button:focus,
button:active {
  outline: none;
}

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

label {
  cursor: pointer;
}

legend {
  display: block;
}

:root {
  --ff-inter: 'Mulish';
  --white: #ffffff;
  --grey: #ccc;
  --dark-grey: #5a5a5a;
  --accent-blue: #00b5e2;
  --border-radius: 20px;
  --border: 1px solid var(--dark-grey, #5a5a5a);
  --background-card: rgba(0, 0, 0, 0.4);
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.main {
  /* padding: 0 20px; */
  flex: 1;
}

.container {
  width: 100%;
  max-width: 1022px;
  margin: 0 auto;
}
body .main .container{max-width: 1862px;}

.thanksCenter{max-width: 1300px;margin: 0 auto;text-align: left;}
.thanksCenter .text{font-size: 20px;line-height: 20px;font-weight: 600;}
.thanksCenter .text span{display: inline;font-weight: 600;white-space: normal;}
.thanksCenter .text strong{font-weight: 600;}

.thanksCenter h1{font-size: 52px;line-height: 60px;font-weight: 600;text-transform: none;}



.counter {
    position: relative;
    border-radius: 40px;
    width: max-content;
    margin: 28px auto 28px;
    transition: 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.6);
}
.counterValue {
    background-color: #4599C3;
    border-radius: 30px;
    padding: 8px 24px;
    min-width: 130px;
    text-align: center;
    font-size: 42px;
    line-height: 50px;
    color: #fff;
    font-weight: 600;font-family: 'Geologica';
}


      .hero-bg picture,
      .hero-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
.logo {
  max-width: 286px;width: 100%;
  margin: 33px auto 0;display: block;
}

@media (max-width: 600px) {
  .logo {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: clamp(0.75rem, 0.571rem + 0.77vw, 1.5rem);
  }
}
.title {
  color: #313132;
  font-family: var(--ff-inter);
  font-size: 18px;text-transform: uppercase;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: clamp(0.75rem, 0.571rem + 0.77vw, 1.5rem);
}


.text {
  color: rgba(8, 9, 21, 0.50);
  font-family: var(--ff-inter);
  font-size: 18px;line-height: 120%;
  font-style: normal;
  font-weight: 300;

  margin-bottom: clamp(0.75rem, 0.571rem + 0.77vw, 1.5rem);
}

.list {
  margin-bottom: clamp(0.75rem, 0.571rem + 0.77vw, 1.5rem);
  counter-reset: item;
  list-style: none;
}

.list > li {
  counter-increment: item;
  position: relative;line-height: 120%;
  padding-left: clamp(1.5rem, 1.25rem + 1vw, 2rem);
}

.list > li::before {
  content: counter(item) '. ';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--white);
  font-family: var(--ff-inter);
  font-size: 18px;
  font-weight: 400;
}

.list > .text {
  margin-bottom: 0;
}
.text > span {
  color: var(--accent-blue, #00b5e2);
  white-space: nowrap;
}

.text > strong {
  font-weight: 400;
}
.check-appear{font-size: 12px;}
.img {
  height: 18px;
  margin-left: 8px;
  margin-bottom: 2px;
  vertical-align: middle;
}

.text--centr {
  font-size: 14px;
  /* color: var(--grey, #ccc);
  text-align: center; */
}

.text--footer {
  font-size: clamp(0.75rem, 0.601rem + 0.65vw, 1.375rem);
  margin-bottom: 0;
}

/* .footer {
  width: 100%;
  border-radius: 32px 32px 0 0;
  border: 1px solid var(--dark-grey, #5a5a5a);
  border-bottom: none;
  background: rgba(0, 0, 0, 0.5);
  padding: clamp(1.25rem, 0.952rem + 1.29vw, 2.5rem);
}

.footer__img {
  max-height: 52px;
}

.footer > .container {
  display: flex;
  align-items: center;

  gap: 15px;
} */

/* ============================================ */
/* АНИМАЦИЯ ЗАГРУЗКИ */
/* ============================================ */
.loading {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-left: 10px;
}

.loading__dot {
  width: 6px;
  height: 6px;
  background: var(--accent-blue, #00b5e2);
  border-radius: 50%;
  animation: loading-pulse 1.4s infinite ease-in-out both;
}

.loading__dot:nth-child(1) {
  animation-delay: -0.32s;
}

.loading__dot:nth-child(2) {
  animation-delay: -0.16s;
}

@keyframes loading-pulse {
  0%,
  80%,
  100% {
    opacity: 0.3;
    transform: scale(0.8);
  }
  40% {
    opacity: 1;
    transform: scale(1);
  }
}

.check-appear {
  animation: checkAppear 0.5s ease-out;
}

@keyframes checkAppear {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}








@media(max-width: 991px){
.text,.list > li::before{font-size: 16px;}
.text.text--centr{font-size: 14px;}

.thanksCenter h1{font-size: 46px;line-height: 52px;}
.thanksCenter .text{font-size: 20px;line-height: 24px;}
.counterValue{font-size: 34px;line-height: 46px;    padding: 0px 17px;
    min-width: 132px;}
.counter{margin-top: 22px;margin-bottom: 22px;}

}



@media(max-width: 767px){
.title{font-size: 16px;}
.text,.list > li::before{font-size: 14px;}
.text.text--centr{font-size: 12px;}
/* .logo{height: auto;max-width: 84px;margin-left: 0px;} */

.thanksCenter h1{font-size: 40px;line-height: 52px;}
.thanksCenter .text{font-size: 20px;line-height: 28px;}
.counterValue{font-size: 24px;line-height: 40px;    padding: 0px 17px;
    min-width: 115px;}
.counter{margin-top: 20px;margin-bottom: 20px;}




}