@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap");
* {
  box-sizing: border-box;
  font-family: "Inter Tight", sans-serif;
  scroll-behavior: smooth;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100%;
}

.hidden {
  display: none !important;
}

sup {
  font-size: 60%;
  font-weight: normal;
}

sub {
  font-size: 60%;
}

hr {
  border: none;
  border-top: 1px solid var(--color-text-1);
  color: var(--color-text-1);
  text-align: center;
  margin: 30px 0;
}

#auth-block {
  width: clamp(200px, 100%, 1920px);
  margin: 0 auto;
  padding: 100px 0;
  text-align: center;
}

#auth-block > p {
  font-size: clamp(1rem, 0.8148rem + 1.4815vw, 2rem);
  color: var(--color-green-dark);
  font-weight: 700;
  margin-bottom: 50px;
}

#auth-block > a {
  background-color: var(--color-orange);
  color: var(--color-white);
  font-size: clamp(0.875rem, 0.713rem + 1.2963vw, 1.75rem);
  padding: 15px 30px;
  border-radius: 10px;
}

.bg-orange {
  background-color: var(--color-orange);
}

.bg-orange-light {
  background-color: var(--color-orange-light);
}

.container-wide {
  position: relative;
  width: 100%;
}
.container-wide--radius {
  border-radius: 20px;
}

.container-bg {
  width: clamp(200px, 100%, 1920px);
  margin: 0 auto;
  padding: 30px;
  background-image: url("../images/bg-main.png");
  background-repeat: no-repeat;
  background-position: top 120px right 50px;
}

.container-bg-dark {
  width: clamp(200px, 100%, 1920px);
  margin: 0 auto;
  padding: 50px 0;
  background-image: url("../images/bg-main-dark.png");
  background-repeat: no-repeat;
  background-position: top 120px right 50px;
}
.container-bg-dark--aft-acc {
  padding: 0;
}

.container-bg-r {
  width: clamp(200px, 100%, 1920px);
  margin: 0 auto;
  padding: 50px 0;
  background-image: url("../images/bg-main-rev.png");
  background-repeat: no-repeat;
  background-position: top 120px left 50px;
}

.content {
  width: clamp(200px, 100%, 1280px);
  margin: 0 auto;
  padding: 100px 0;
}
.content--circle {
  padding: 50px 0;
}
.content--acc {
  padding: 20px 0;
}
.content--pr-acc {
  padding: 100px 0 20px 0;
}
.content--aft-acc {
  padding: 20px 0 60px 0;
}
.content--new {
  padding: 0 20px;
}

#navbar {
  width: clamp(200px, 100%, 1280px);
  margin: 0 auto;
  padding: 15px 0;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  align-content: center;
}

.navbar-menu > a {
  font-family: var(--font-roboto-cond);
  font-size: clamp(0.875rem, 0.8519rem + 0.1852vw, 1rem); /*14-16*/
  line-height: 1.2;
  text-decoration: none;
  color: var(--color-main);
}

.navbar-menu > img {
  margin: 0 15px;
}

#navbar-mob-menu {
  display: none;
}

#navbar-mobile {
  display: none;
}

#header {
  position: relative;
  width: clamp(200px, 100%, 1400px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 0 20px;
}

.header-img-container {
  display: flex;
  justify-content: end;
  align-items: center;
}

.header-img {
  max-width: 60%;
}

.header-title {
  font-size: clamp(1rem, 1.7454rem + 2.037vw, 2.6rem); /*32-54*/
  font-family: var(--font-inter);
  text-transform: uppercase;
  font-weight: 900;
  position: relative;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.61), #97e2e8, rgba(255, 255, 255, 0.61));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradientFlow 3s infinite linear;
}
@keyframes gradientFlow {
  0% {
    background-position: 0% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.new-bold {
  font-weight: 600;
}

.header-subtitle {
  font-size: clamp(1.125rem, 0.963rem + 1.2963vw, 1.5rem); /*18-32*/
  color: var(--color-white);
}

.header-to-main-btn {
  position: absolute;
  top: 0;
  right: 60px;
  display: inline-flex;
  background-color: #35A3A1;
  border-radius: 200px;
  padding: 5px 15px 5px 20px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  color: var(--color-white);
  text-decoration: none;
  font-size: clamp(0.625rem, 0.5556rem + 0.5556vw, 1rem);
}

.header-to-main-btn > div > img {
  display: block;
}

.erid-head {
  font-size: clamp(0.75rem, 0.7269rem + 0.1852vw, 0.875rem); /*12-14*/
  color: var(--color-white);
  margin: 0;
  position: absolute;
  top: 10px;
  left: 10px;
}

.main-btn-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.b1-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  overflow-x: hidden;
  overflow-y: hidden;
}

.b1-1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.b1-1-title {
  font-size: clamp(2rem, 1.6759rem + 2.5926vw, 3.75rem); /*32-60*/
  font-family: var(--font-inter);
  color: var(--color-orange);
  font-weight: 900;
  margin: 0;
}

.b1-1-info {
  font-size: clamp(0.875rem, 0.7824rem + 0.7407vw, 1.375rem); /*14-22*/
  margin: 0;
  color: var(--color-text-1);
}

.b1-2 {
  font-size: clamp(1.25rem, 1.0185rem + 1.8519vw, 2.5rem);
  font-family: var(--font-inter);
  font-weight: bold;
  color: var(--color-orange);
  text-align: center;
  margin: 10px 0;
}

.circle-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.circle-container .circle-container-up {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.b1-3 {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: center;
}

.b1-3 > div {
  text-align: center;
  width: 380px;
}

.b1-3-title {
  font-size: clamp(2rem, 1.8148rem + 1.4815vw, 3rem); /*32-48*/
  font-family: var(--font-inter);
  color: var(--color-orange);
  font-weight: 900;
  margin: 10px 0 0 0;
}

.b1-3-info {
  font-size: clamp(1rem, 0.9306rem + 0.5556vw, 1.375rem); /*16-22*/
  font-family: var(--font-inter);
  color: var(--color-text-1);
  margin: 0;
}

.b1-animate-block.animate .b1-animate-left,
.b1-animate-block.animate .b1-animate-right,
.b1-animate-block.animate .b1-animate-top,
.b1-animate-block.animate .b1-animate-scale,
.b1-animate-block.animate .b1-animate-down {
  opacity: 1;
  transform: translate(0, 0) rotate(0) scale(1);
}

.b1-animate-left {
  opacity: 0;
  transform: translate(-150px, 50px) rotate(-10deg);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.b1-animate-right {
  opacity: 0;
  transform: translate(150px, -50px) rotate(10deg);
  transition: opacity 0.6s ease-out 0.2s, transform 0.6s ease-out 0.2s;
}

.b1-animate-top {
  opacity: 0;
  transform: translateY(-50px) rotate(-5deg);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.b1-animate-scale {
  opacity: 0;
  transform: scale(0.6) translate(0, 30px) rotate(5deg);
  transition: opacity 0.7s ease-out 0.4s, transform 0.7s ease-out 0.4s;
}

.b1-animate-down {
  opacity: 0;
  transform: translateY(100px) rotate(10deg);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.b1-animate-down-1 {
  transition-delay: 0.8s;
}
.b1-animate-down-2 {
  transition-delay: 1s;
}

.b1-1-title {
  font-size: clamp(2rem, 1.6759rem + 2.5926vw, 3.75rem);
  font-family: var(--font-inter);
  color: var(--color-orange);
  font-weight: 900;
  margin: 0;
}

.b2-1 {
  font-size: clamp(1.25rem, 1.0185rem + 1.8519vw, 2.5rem); /*20-40*/
  font-weight: 200;
  margin: 0;
  text-align: center;
}

.video__prev {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  align-items: center;
}

.gif {
  width: 100%;
  height: auto;
  cursor: pointer;
  border-radius: 20px;
}

.b2-2 {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  margin: 40px 0 0 0;
}

.b2-2-name {
  font-size: clamp(1.5rem, 1.2222rem + 2.2222vw, 3rem); /*24-48*/
  color: var(--color-orange);
  font-weight: 900;
  margin: 0;
  text-align: left;
}

.b2-2-info {
  font-size: clamp(0.875rem, 0.7824rem + 0.7407vw, 1.375rem); /*14-22*/
  color: var(--color-text-1);
  margin: 10px 0 0 0;
  line-height: 1.2;
  text-align: left;
}

.b2-3 {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.b2-3-timer {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  align-content: center;
  background-color: var(--color-green-dark);
  border-radius: 5px;
  padding: 5px 10px 5px 5px;
  cursor: pointer;
}

.b2-3-timer-num {
  font-size: clamp(0.875rem, 0.8056rem + 0.5556vw, 1.25rem); /*14-20*/
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  width: 44px;
  aspect-ratio: 1/1;
  border-radius: 5px;
  background-color: var(--color-blue-light);
  color: var(--color-green-dark);
}

.b2-3-timer-text {
  font-size: clamp(1.125rem, 1.1944rem - 0.5556vw, 0.75rem); /*12-18*/
  color: var(--color-white);
  padding: 0 0 0 10px;
}

.accordion-1,
.accordion-2,
.accordion-3,
.accordion-4,
.accordion-5,
.accordion-6,
.accordion-7,
.accordion-8 {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
}

.accordion-1.active,
.accordion-2.active,
.accordion-3.active,
.accordion-4.active,
.accordion-5.active,
.accordion-6.active,
.accordion-7.active,
.accordion-8.active {
  max-height: 4000px;
}

[data-accordion] {
  transition: opacity 0.3s ease;
  cursor: pointer;
}

[data-accordion].active {
  opacity: 0;
  cursor: none;
  pointer-events: none;
}

.arrow-icon {
  width: 25px;
  height: 100%;
  transform: rotate(-45deg);
}

.icon-container {
  display: flex;
}

.button-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
}

.custom-accordion__buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  padding: 0 20px;
}
.custom-accordion__buttons--emt {
  margin-top: 20px;
}
.custom-accordion__btn {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 15px;
  border: none;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.6s ease-in-out;
  background: linear-gradient(120deg, var(--color-orange), var(--color-green-dark), var(--color-orange));
  background-size: 200% 100%;
  color: white;
  animation: shimmer 3s infinite linear;
}
@keyframes shimmer {
  0% {
    background-position: 0;
  }
  100% {
    background-position: 200% 0;
  }
}
.custom-accordion__btn:hover {
  background-color: var(--color-green-dark);
}
.custom-accordion__btn.active {
  background: var(--color-green-dark);
  cursor: default;
  pointer-events: none;
  box-shadow: 0 4px 10px rgba(0, 153, 166, 0.4);
  transform: scale(1.01);
  animation: none;
}
.custom-accordion__container {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.custom-accordion__container.open {
  max-height: 4000px;
}
.custom-accordion__content {
  display: none;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 10px;
  margin-top: 10px;
}
.custom-accordion__content.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}
.custom-accordion__content p {
  margin: 0 0 10px 0;
  line-height: 1.6;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.custom-accordion__content.active {
  animation: fadeInUp 0.5s ease-in-out;
}

#video-player {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 20px;
  margin: 10px 0 0 0;
}

.video-erid {
  font-size: clamp(0.75rem, 0.7269rem + 0.1852vw, 0.875rem); /*12-14*/
  color: var(--color-grey);
  text-align: right;
  margin: 0 20px 0 0;
}

.b2-5-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.b2-5 {
  text-align: center;
  margin: 100px 0 0 0;
}

.b2-5-title {
  font-size: clamp(1.25rem, 1.0185rem + 1.8519vw, 2.5rem); /*20-40*/
  font-weight: bold;
  color: var(--color-orange);
  margin: 0;
  text-align: left;
}

.b2-5-image {
  display: block;
  max-width: 100%;
}

.b2-5-image-m {
  display: none;
}

.b2-5-title > span {
  color: var(--color-green-dark);
}

.b2-5-info {
  font-size: clamp(0.875rem, 0.8519rem + 0.1852vw, 1rem); /*14-16*/
  color: var(--color-grey);
  margin: 20px 0 50px 0;
}

.b2-6 {
  background-color: var(--color-orange-light);
  margin: 100px 0 0 0;
  border-radius: 20px;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: stretch;
  align-content: stretch;
}

.b2-6 > div:first-child > img {
  border-radius: 20px 0 0 0;
}

.b2-6 > div:last-child {
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  padding: 20px;
}

.bold-span {
  font-weight: 600;
  text-decoration: underline;
}

.b2-6-tbl-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.b2-6-title {
  font-size: clamp(1.25rem, 1.0648rem + 1.4815vw, 2.25rem);
  color: var(--color-orange);
  margin: 0 0 30px 0;
  text-align: center;
  opacity: 0;
  transform: translateY(-30px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.b2-6-tbl {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  align-content: center;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  flex: 1;
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.b2-6-tbl--2 {
  justify-content: center;
}
.b2-6-tbl--3 {
  justify-content: flex-end;
}
.b2-6-tbl > div:last-child {
  flex: 1;
  text-align: left;
  padding: 0 0 0 10px;
  font-size: clamp(1rem, 0.9537rem + 0.3704vw, 1.25rem);
  color: var(--color-text-1);
}
.b2-6-tbl > div:last-child > span {
  color: var(--color-red-dark);
  font-weight: bold;
}

.b2-6-tbl:nth-of-type(1) {
  transition-delay: 0.2s;
}

.b2-6-tbl:nth-of-type(2) {
  transition-delay: 0.5s;
}

.b2-6-tbl:nth-of-type(3) {
  transition-delay: 0.8s;
}

.b2-6.animate .b2-6-title {
  opacity: 1;
  transform: translateY(0);
}
.b2-6.animate .b2-6-tbl {
  opacity: 1;
  transform: translateX(0);
}

.b2-6-tbl {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
}
.b2-6-tbl--2 {
  justify-content: center;
}
.b2-6-tbl--3 {
  justify-content: flex-end;
}
.b2-6-tbl > div {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.b2-6-tbl .b2-6-tbl > div:first-child {
  transition-delay: 0.2s;
}
.b2-6-tbl .b2-6-tbl > div:nth-child(2) {
  transition-delay: 0.5s;
}
.b2-6-tbl .b2-6-tbl > div:last-child {
  transition-delay: 0.8s;
}

.b2-6.animate .b2-6-title {
  opacity: 1;
  transform: translateY(0);
}
.b2-6.animate .b2-6-tbl > div {
  opacity: 1;
  transform: translateX(0);
}

.b2-6-tbl > div:last-child {
  padding: 0 0 0 10px;
  font-size: clamp(1rem, 0.9537rem + 0.3704vw, 1.25rem); /*16-20*/
  color: var(--color-text-1);
}

.b2-6-tbl > div:last-child > span {
  color: var(--color-red-dark);
  font-weight: bold;
}

.b3-1 {
  width: clamp(200px, 100%, 1280px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 0.5fr;
  align-items: center;
  gap: 0 20px;
}
.b3-1--min {
  padding: 30px;
}

.main-btn {
  padding: 10px 40px;
  border-radius: 50px;
  background-color: rgb(0, 153, 166);
  justify-self: start;
  font-size: 22px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none;
  outline: none;
}
.main-btn, .main-btn:link, .main-btn:visited, .main-btn:hover, .main-btn:active, .main-btn:focus {
  color: white;
  text-decoration: none;
}
.main-btn:hover {
  background-color: rgb(1, 167, 182);
}
.main-btn:active {
  animation: pulse 0.3s ease-in-out;
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}

.b3-1 > div:first-child {
  font-size: clamp(1.25rem, 1.0185rem + 1.8519vw, 2.3rem); /*20-40*/
  color: var(--color-white);
}

.b3-p1-img {
  max-width: 100%;
}

.info-block {
  display: flex;
  justify-content: space-between;
  padding: 60px 70px 180px 70px;
  background: rgb(253, 240, 224);
  border-radius: 20px;
}

/* ---------------- LEFT ---------------- */
.info-left {
  position: relative;
  width: 48%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: center;
}

.info-left__arc {
  position: absolute;
  width: 450px;
  top: 72%;
  left: 60%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.info-left__circle {
  position: absolute;
  width: 420px;
  top: 50%;
  left: 30%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.info-left__title {
  position: absolute;
  top: 45%;
  left: 30%;
  transform: translate(-50%, -50%);
  z-index: 2;
  font-size: 30px;
  font-weight: 700;
  color: #f18c1e;
}

.info-left__box {
  position: relative;
  z-index: 2;
  margin-top: 250px;
  margin-left: 50px;
  max-width: 460px;
  padding: 20px;
  background: rgb(255, 255, 255);
  border-radius: 20px;
  border: 1px solid rgb(174, 143, 71);
  font-size: 22px;
  line-height: 1.6;
  color: rgb(174, 143, 71);
}

/* ---------------- RIGHT ---------------- */
.info-right {
  position: relative;
  width: 48%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: center;
}

.info-right__arc {
  position: absolute;
  width: 450px;
  top: 72%;
  left: 40%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.info-right__circle {
  position: absolute;
  width: 420px;
  top: 50%;
  left: 70%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.info-right__title {
  position: absolute;
  top: 45%;
  left: 70%;
  transform: translate(-50%, -50%);
  z-index: 2;
  font-size: 30px;
  font-weight: 700;
  color: #f18c1e;
}

.info-right__box {
  position: relative;
  z-index: 2;
  margin-top: 250px;
  margin-right: 40px;
  max-width: 460px;
  padding: 20px;
  background: rgb(255, 255, 255);
  border-radius: 20px;
  border: 1px solid rgb(174, 143, 71);
  font-size: 22px;
  line-height: 1.6;
  color: rgb(174, 143, 71);
}

.b5-1-container {
  margin: 20px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.b5-1 {
  text-align: center;
}

.b5-1 > img {
  margin: 50px 0 0 0;
}

.b5-2 {
  background-color: var(--color-orange-light);
  margin: 100px 0 0 0;
  border-radius: 20px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
  align-content: stretch;
}

.b5-2 > div:first-child {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
  font-size: clamp(1rem, 0.9537rem + 0.3704vw, 1.25rem); /*16-20*/
  color: var(--color-text-1);
  padding: 0 50px 0 80px;
}

.b5-2 > div:first-child > div > p > span {
  color: var(--color-red-dark);
  font-weight: bold;
}

.b5-2 > div:last-child > img {
  border-radius: 0 20px 0 0;
}

.b5-3 {
  margin: 100px 0 0 0;
}

.b5-3-title {
  font-size: clamp(1.25rem, 1.0185rem + 1.8519vw, 2.5rem); /*20-40*/
  color: var(--color-main);
  font-weight: 300;
  text-align: center;
  margin: 0;
}

.b5-3-quote {
  width: clamp(200px, 100%, 880px);
  margin: 100px auto 0 auto;
  border-top: 1px solid var(--color-text-1);
  border-bottom: 1px solid var(--color-text-1);
  padding: 50px 0;
  text-align: center;
}

.b5-3-quote-title {
  font-size: clamp(2rem, 1.6296rem + 2.963vw, 4rem); /*32-64*/
  color: var(--color-orange);
  font-weight: bold;
  margin: 0;
}

.b5-3-quote-info {
  font-size: clamp(1.125rem, 0.963rem + 1.2963vw, 2rem); /*18-32*/
  color: var(--color-text-1);
}

.b5-4 {
  width: 100%;
  margin: 100px 0 0 0;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  align-content: center;
}

.b5-4 > div:first-child {
  padding: 0 80px 0 0;
}

.b5-4 > div:first-child > p {
  font-size: clamp(1rem, 0.9074rem + 0.7407vw, 1.5rem); /*16-24*/
  color: var(--color-main);
  margin: 20px 0;
  font-weight: 300;
}

.b5-4-data {
  text-align: center;
}

.b5-4-title {
  font-size: clamp(2rem, 1.6759rem + 2.5926vw, 3.75rem);
  color: var(--color-orange);
  font-family: var(--font-inter);
  font-weight: 900;
  margin: 20px 0 0 0;
}

.b5-4-info {
  font-size: clamp(1rem, 0.9306rem + 0.5556vw, 1.375rem);
  color: var(--color-text-1);
  margin: 0;
}

.b5-5 {
  width: 100%;
  background-color: var(--color-orange);
  border-radius: 20px;
  padding: 40px;
  margin: 0;
}

.b5-5-title {
  font-size: clamp(1.125rem, 0.9167rem + 1.6667vw, 2.25rem);
  color: var(--color-white);
  font-weight: bold;
  margin: 0;
}

.b5-5-info {
  font-size: clamp(0.75rem, 0.7269rem + 0.1852vw, 0.875rem);
  color: var(--color-white);
  margin: 0;
}

.b5-5-table {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
  align-content: center;
  border-bottom: 1px solid var(--color-white);
  margin: 0 0 30px 0;
  padding: 0 0 30px 0;
  font-size: clamp(1rem, 0.9537rem + 0.3704vw, 1.25rem); /*16-20*/
  color: var(--color-main);
}

.b5-5-table > div {
  flex-grow: 1;
  flex-basis: 0;
}

.b5-5-table > div:not(:last-child) {
  margin: 0 50px 0 0;
}

.b5-5-table-title {
  font-size: clamp(1.125rem, 1.0556rem + 0.5556vw, 1.5rem); /*18-24*/
  text-transform: uppercase;
  font-weight: bold;
  margin: 0;
}

.b5-5-table-title > span {
  font-weight: normal;
}

.b5-5-table-info {
  font-size: 12px;
}

.b5-6 > div {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  align-content: stretch;
  border: 1px solid var(--color-text-1);
  border-radius: 20px;
  padding: 20px;
}

.b5-6 > div:not(:last-child) {
  margin: 0 0 20px 0;
}

.b5-6 > div > div:last-child {
  padding: 0 0 0 15px;
}

.b5-6-title {
  font-size: clamp(1.5rem, 1.3148rem + 1.4815vw, 2.5rem); /*24-40*/
  font-family: var(--font-inter);
  text-transform: uppercase;
  color: var(--color-orange);
  margin: 0;
  font-weight: 900;
}

.b5-6-info {
  font-size: clamp(1rem, 0.9074rem + 0.7407vw, 1.5rem); /*16-24*/
  color: var(--color-text-1);
  margin: 10px 0 0 0;
}

.b6-1 {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  align-content: center;
}

.b6-1 > div:first-child > img {
  margin: 0 0 0 -100px;
}

.b6-1 > div:last-child > p {
  font-size: clamp(1rem, 0.9074rem + 0.7407vw, 1.5rem); /*16-24*/
  color: var(--color-main);
  margin: 20px 0;
  font-weight: 300;
}

.b6-1 > div:last-child > p > b {
  color: var(--color-orange);
  font-weight: 600;
}

.b6-1 > div:first-child {
  opacity: 0;
  transform: translateX(-200px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.b6-1 > div:last-child p:first-child {
  opacity: 0;
  transform: translateX(200px);
  transition: opacity 0.6s ease-out 0.3s, transform 0.6s ease-out 0.3s;
}

.b6-1 > div:last-child p:last-child {
  opacity: 0;
  transform: translateX(200px);
  transition: opacity 0.6s ease-out 0.6s, transform 0.6s ease-out 0.6s;
}

.b6-1.animate > div:first-child,
.b6-1.animate > div:last-child p:first-child,
.b6-1.animate > div:last-child p:last-child {
  opacity: 1;
  transform: translateX(0);
}

.b6-pr-img {
  width: 100%;
  height: auto;
}

.instructions {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.btn-block {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

.b6-2 {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
  /* margin: 100px 0 0 0; */
}

.b6-2-title {
  font-size: clamp(2rem, 1.6296rem + 2.963vw, 3rem); /*32-64*/
  color: var(--color-green-dark);
  font-weight: bold;
  margin: 0 0 50px 0;
}

.b6-2-img {
  display: block;
  width: 100%;
  margin: 0 auto;
}

.b6-2-img-m {
  display: none;
}

.b7-1 {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
}

.b7-1-title {
  font-size: clamp(2rem, 1.6296rem + 2.963vw, 3rem); /*32-64*/
  color: var(--color-orange);
  font-weight: bold;
  margin: 0 0 50px 0;
}

.b7-1-img {
  display: block;
  width: 100%;
  margin: 0 auto;
}

.b7-1-img-m {
  display: none;
}

.b7-2 {
  font-size: clamp(1.25rem, 1.0185rem + 1.8519vw, 2.5rem); /*20-40*/
  color: var(--color-main);
  font-weight: 300;
  text-align: center;
}

.b7-4 {
  margin: 100px 0 0 0;
  max-width: 100%;
}

.bad-info {
  font-size: clamp(1.5rem, 0.8519rem + 5.1852vw, 5rem);
  color: var(--color-text-1);
  font-weight: 100;
  margin: 50px 0;
  text-align: center;
}

.codes-info {
  color: #666666;
  font-size: clamp(0.875rem, 0.8519rem + 0.1852vw, 1rem); /*14-16*/
  margin: 10px 0;
}

.refs-accordion {
  margin: 30px 0;
}
.refs-accordion__header {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
}
.refs-accordion__header .refs-title {
  font-size: clamp(1.5rem, 1.3148rem + 1.4815vw, 2.5rem); /*24-40*/
  color: var(--color-text-1);
  text-transform: uppercase;
  margin: 0;
}
.refs-accordion__arrow {
  display: inline-block;
  font-size: 40px;
  font-weight: 500;
  transition: transform 0.3s ease;
  color: var(--color-text-1);
}
.refs-accordion__arrow.open {
  transform: rotate(90deg);
}
.refs-accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out;
}
.refs-accordion__content.active {
  max-height: 4000px;
}
.refs-accordion__content .refs {
  color: #999999;
  font-size: clamp(0.75rem, 0.7269rem + 0.1852vw, 0.875rem); /*12-14*/
  padding: 20px 0 0 30px;
  margin: 0;
}
.refs-accordion__content .refs li {
  margin-bottom: 8px;
  line-height: 1.5;
}
.refs-accordion__content .refs li:last-child {
  margin-bottom: 0;
}

.circle-table {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 10px;
  padding-bottom: 20px;
  padding-top: 20px;
}
.circle-table__item {
  display: flex;
  align-items: center;
}
.circle-table__item .item-img {
  width: 100%;
  height: auto;
}
.circle-table .item-element {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.circle-table .item-element__text {
  display: flex;
}
.circle-table .item-element__text .el-img {
  width: 67px;
  height: 67px;
}

.circle-table-footer {
  background-color: rgb(253, 240, 224);
  padding: 50px;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal.show {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
}

.modal-content {
  position: relative;
  background-color: white;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  max-width: 90vw;
}

/* Стили для изображения */
.modal-content img {
  display: block;
  max-width: 90vw;
  max-height: 90vh;
  width: 90%;
  height: 90%;
  object-fit: scale-down;
  border-radius: 8px;
}

.modal-close {
  position: absolute;
  top: -5px;
  right: 10px;
  font-size: 30px;
  font-weight: bold;
  color: var(--color-green);
  cursor: pointer;
  z-index: 1001;
}

/* Стили для скролла */
.modal-content::-webkit-scrollbar {
  width: 8px;
}

.modal-content::-webkit-scrollbar-track {
  background: transparent;
}

.modal-content::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 4px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.5);
}

/* Для Firefox */
.modal-content {
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.3) transparent;
}

:root {
  --color-main: #333333;
  --color-orange: #F49424;
  --color-orange-light: #FDF0E0;
  --color-white: #FFFFFF;
  --color-text-1: #AE8F47;
  --color-green-dark: #0099A6;
  --color-blue-light: #DFF1F4;
  --color-grey: #999999;
  --color-red-dark: #E20003;
  --font-inter: "Inter", sans-serif;
  --font-inter-tight: "Inter Tight", sans-serif;
  --font-roboto-cond: "Roboto Condensed", sans-serif;
}

@media (min-width: 1300px) {
  .custom-accordion__buttons {
    padding: 0;
  }
}
@media (max-width: 1300px) {
  .circle-table {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px 0;
  }
  .circle-table__item {
    flex-direction: column;
    gap: 20px;
  }
  .circle-table__item .item-img {
    width: 50%;
  }
  .circle-table .item-element {
    gap: 10px;
  }
  #navbar {
    padding: 15px 20px;
  }
  #header {
    padding: 0 20px;
  }
  .content {
    padding: 100px 20px;
  }
  .content--acc {
    padding: 20px 0;
  }
  .content--aft-acc {
    padding: 20px 0 100px 0;
  }
}
@media (max-width: 1200px) {
  .info-block {
    flex-direction: column;
    gap: 50px;
    align-items: center;
    padding: 50px 20px;
  }
  .info-left,
  .info-right {
    width: 100%;
    align-items: center;
  }
  .info-left__arc {
    width: 340px;
    top: 50%;
    left: 54%;
  }
  .info-right__arc {
    width: 340px;
    top: 50%;
    left: 46%;
  }
  .info-left__title {
    top: 45%;
    left: 50%;
  }
  .info-right__title {
    top: 45%;
    left: 50%;
  }
  .info-left__circle {
    width: 340px;
    top: 50%;
    left: 50%;
  }
  .info-right__circle {
    width: 340px;
    top: 50%;
    left: 50%;
  }
  .info-left__box {
    margin-left: 0;
    margin-top: 250px;
  }
  .info-right__box {
    margin-right: 0;
    margin-top: 270px;
  }
  .video__prev {
    grid-template-columns: repeat(1, 1fr);
  }
  .b1-container {
    grid-template-columns: repeat(1, 1fr);
  }
  .instructions {
    flex-direction: column;
  }
  hr {
    margin: 15px 0;
  }
  .container-bg {
    padding: 30px 0;
    background-position: top 10px right 10px;
  }
  .container-bg-dark {
    padding: 30px 0 30px 0;
    background-position: top 10px right 10px;
  }
  .container-bg-r {
    padding: 30px 0;
    background-position: top 10px left 10px;
  }
  .content {
    padding: 50px 20px;
  }
  .content--acc {
    padding: 20px 0;
  }
  .content--aft-acc {
    padding: 0px 20px;
  }
  #navbar {
    padding: 15px;
  }
  .navbar-menu {
    display: none;
  }
  #navbar-mob-menu {
    display: block;
    cursor: pointer;
  }
  #navbar-mobile {
    display: block;
    border-top: 1px solid var(--color-orange);
  }
  #navbar-mobile > a {
    display: block;
    margin: 25px 10px;
    font-family: var(--font-roboto-cond);
    font-size: clamp(0.875rem, 0.8519rem + 0.1852vw, 1rem); /*14-16*/
    line-height: 1.2;
    text-decoration: none;
    color: var(--color-main);
  }
  #header {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
  .header-img-container {
    justify-content: center;
  }
  .header-img {
    max-width: 60%;
  }
  .header-data {
    padding: 0;
    text-align: center;
  }
  .header-title {
    font-size: clamp(1rem, 1.7454rem + 2.037vw, 2rem); /*32-54*/
  }
  .header-subtitle {
    font-size: clamp(1.125rem, 0.963rem + 1.2963vw, 1.3rem); /*18-32*/
  }
  .header-to-main-btn {
    position: absolute;
    top: 0;
    right: 20px;
  }
  .b1-1 {
    flex-direction: column;
    align-items: center;
  }
  .b1-1-data {
    padding: 0;
  }
  .b1-2 {
    margin: 20px 0;
  }
  .b1-3 {
    flex-direction: column;
  }
  .b1-3 > div {
    width: 100%;
  }
  .b1-3 > div:not(:last-child) {
    margin-bottom: 25px;
  }
  .b2-2 {
    flex-direction: column;
  }
  .b2-2 > div:first-child {
    padding: 0;
  }
  .b2-3 {
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    align-content: stretch;
    margin: 50px 0 0 0;
    padding: 0;
  }
  .b2-3-timer {
    justify-content: center;
    align-items: center;
    align-content: center;
  }
  .b2-3-timer-num {
    display: none;
  }
  .b2-3-timer-text {
    text-align: center;
  }
  .b2-3 > div:not(:last-child) {
    margin-right: 0;
    margin-bottom: 10px;
  }
  .b2-5 {
    margin: 50px 0 0 0;
  }
  .b2-5-image {
    display: none;
  }
  .b2-5-image-m {
    display: block;
    max-width: 100%;
  }
  .b2-6 {
    margin: 50px 0 0 0;
    flex-direction: column;
    padding: 0 0 20px 0;
  }
  .b2-6 > div:first-child > img {
    border-radius: 20px 0 0 0;
    max-width: 95%;
  }
  .b2-6 > div:last-child {
    padding: 0 20px 0 20px;
  }
  .b3-1 {
    flex-direction: column;
  }
  .b3-1 > div:first-child {
    font-size: clamp(1.25rem, 1.0185rem + 1.8519vw, 2.3rem); /*20-40*/
    color: var(--color-white);
    padding: 0 20px 0 20px;
  }
  .b3-1 {
    grid-template-columns: 1fr;
    gap: 30px;
    justify-items: center;
  }
  .b3-p1-img {
    width: 40%;
  }
  .main-btn {
    margin: 0 auto;
  }
  .b5-1 > img {
    margin: 30px 0 0 0;
  }
  .b5-2 {
    margin: 50px 0 0 0;
    flex-direction: column-reverse;
  }
  .b5-2 > div:first-child {
    padding: 0 20px 0 20px;
  }
  .b5-2 > div:last-child > img {
    border-radius: 0 20px 0 0;
    max-width: 90%;
    float: right;
  }
  .b5-3 {
    margin: 50px 0 0 0;
  }
  .b5-3-quote {
    margin: 50px auto 0 auto;
    padding: 30px 0;
  }
  .b5-4 {
    margin: 50px 0 0 0;
    flex-direction: column;
  }
  .b5-4 > div:first-child {
    padding: 0;
  }
  .b5-5 {
    padding: 30px;
  }
  .b5-5-table {
    flex-direction: column;
  }
  .b5-5-table > div:not(:last-child) {
    margin: 0;
  }
  .b5-6 {
    margin: 50px 0 0 0;
  }
  .b5-6 > div > div > img {
    max-width: 70px;
  }
  .b6-1 {
    flex-direction: column;
    padding: 0 20px;
  }
  .b6-1 > div:first-child > img {
    margin: 0;
    max-width: 100%;
  }
  .b6-2 {
    margin: 50px 0 0 0;
    padding: 0 20px;
  }
  .b6-2-img {
    display: none;
  }
  .b6-2-img-m {
    display: block;
    max-width: 100%;
  }
  .b7-1 {
    text-align: center;
    margin: 50px 0 0 0;
    padding: 0 20px;
  }
  .b7-1-img {
    display: none;
  }
  .b7-1-img-m {
    display: block;
    max-width: 100%;
  }
  .b7-2 {
    margin: 50px 0 0 0;
  }
  .b7-4 {
    margin: 50px 0 0 0;
    max-width: 100%;
  }
  .bad-info {
    margin: 30px 0;
  }
}
@media (max-width: 992px) {
  .custom-accordion__buttons {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 768px) {
  .info-left__box {
    font-size: 18px;
    margin-top: 200px;
  }
  .info-right__box {
    font-size: 18px;
    margin-top: 230px;
  }
  .b2-6-title {
    margin: 0;
  }
  .b2-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .refs-accordion__header {
    gap: 10px;
  }
  .refs-accordion__arrow {
    font-size: 28px;
  }
  .main-btn {
    font-size: 16px;
    padding: 10px 20px;
    margin: 0;
  }
  .btn-block {
    margin-top: 10px;
  }
  .header-title {
    font-size: clamp(1rem, 1.7454rem + 2.037vw, 1.9rem); /*32-54*/
  }
  .header-subtitle {
    font-size: clamp(1.125rem, 0.963rem + 1.2963vw, 1rem); /*18-32*/
  }
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
}
.footer__bottom_contacts {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.footer__bottom_contacts p {
  margin-bottom: 0;
}
.footer__bottom_contacts img {
  max-width: 40%;
}
.footer__bottom p {
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .footer__bottom {
    flex-direction: column;
    align-items: start;
  }
}
@media (max-width: 500px) {
  .info-left__box {
    margin-top: 260px;
  }
  .info-right__box {
    margin-top: 290px;
  }
  .header-img {
    max-width: 70%;
  }
}

/*# sourceMappingURL=main.css.map */
