/* Box sizing rules */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
  text-rendering: optimizespeed;
}

/* A elements that don't have a class get default styles */
a {
  text-decoration: none;
}

/* Make images easier to work with */
img,
picture {
  display: block;
  max-width: 100%;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

ul {
  list-style-type: none;
}

@font-face {
  src: url("../fonts/GilroyRegularItalic.woff") format("woff");
  font-family: "Gilroy";
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  src: url("../fonts/GilroyRegular.woff") format("woff");
  font-family: "Gilroy";
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  src: url("../fonts/GilroyBold.woff") format("woff");
  font-family: "Gilroy";
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  src: url("../fonts/GilroySemibold.woff") format("woff");
  font-family: "Gilroy";
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  src: url("../fonts/GilroyBlack.woff") format("woff");
  font-family: "Gilroy";
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
.header {
  overflow-x: hidden;
  position: relative;
  height: 1000px;
  background: rgba(0, 0, 0, 0.6);
}
@media screen and (max-width: 1600px) {
  .header {
    height: 900px;
  }
}
@media screen and (max-width: 1366px) {
  .header {
    height: 700px;
  }
}
@media screen and (max-width: 700px) {
  .header {
    height: 600px;
  }
}
@media screen and (max-width: 480px) {
  .header {
    height: 700px;
  }
}

.crossfade {
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 600px) {
  .crossfade {
    background: url("/img/bg_mobile.jpg") no-repeat;
    background-size: cover;
  }
  .crossfade::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: url("/img/stripe.png") center rgba(0, 0, 0, 0.3);
  }
}

.crossfade > figure {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  color: transparent;
  background-position: center center;
  background-size: cover;
  opacity: 0;
  backface-visibility: hidden;
  animation: imageAnimation 50s linear infinite 0s;
}
.crossfade > figure::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: url("/img/stripe.png") center rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 600px) {
  .crossfade > figure {
    display: none;
    animation: none;
  }
}

.crossfade > figure:nth-child(1) {
  background-image: url("/img/bg_1.png");
}

.crossfade > figure:nth-child(2) {
  background-image: url("/img/bg_2.png");
  animation-delay: 6s;
}

.crossfade > figure:nth-child(3) {
  background-image: url("/img/bg_3.png");
  animation-delay: 12s;
}

.crossfade > figure:nth-child(4) {
  background-image: url("/img/bg_4.jpg");
  animation-delay: 18s;
}

.crossfade > figure:nth-child(5) {
  background-image: url("/img/bg_5.jpg");
  animation-delay: 24s;
}

.crossfade > figure:nth-child(6) {
  background-image: url("/img/bg_6.jpg");
  animation-delay: 30s;
}

.crossfade > figure:nth-child(7) {
  background-image: url("/img/bg_7.jpg");
  animation-delay: 36s;
}

.crossfade > figure:nth-child(8) {
  background-image: url("/img/bg_8.jpg");
  animation-delay: 42s;
}

@keyframes imageAnimation {
  0% {
    opacity: 0;
    animation-timing-function: ease-in;
  }
  2% {
    opacity: 1;
    animation-timing-function: ease-out;
  }
  17% {
    opacity: 1;
  }
  25% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.header__inner {
  position: relative;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100px;
  padding: 23px 0;
  background-color: rgba(0, 0, 0, 0.6);
  transition: all 0.4s;
}
@media screen and (max-width: 1366px) {
  .header__inner {
    height: 72px;
    padding: 12px 0;
  }
}
@media screen and (max-width: 1024px) {
  .header__inner .container {
    padding: 0 20px;
  }
}

.header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__bar.is-open .represent {
  top: 0;
}
.header__bar.is-open .header__burger .line {
  stroke: #2f323a;
}
.header__bar.is-open .logo__link__header {
  color: #2f323a;
}

.logo {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
}

.logo__link {
  display: flex;
  align-items: center;
  font-family: "Montserrat Alternates", sans-serif;
  font-weight: 700;
  transition: color 0.3s 0.4s;
}
.logo__link__header {
  font-size: 32px;
  color: #fff;
}
@media screen and (max-width: 1366px) {
  .logo__link {
    font-size: 28px;
  }
}
@media screen and (max-width: 900px) {
  .logo__link {
    transition: color 0.3s;
  }
}

.logo__bracket__left {
  width: 40px;
  height: 40px;
}
@media screen and (max-width: 1366px) {
  .logo__bracket__left {
    width: 30px;
    height: 30px;
  }
}

.logo__bracket__right {
  width: 50px;
  height: 50px;
}
@media screen and (max-width: 1366px) {
  .logo__bracket__right {
    width: 40px;
    height: 40px;
  }
}

.navigation.is-open {
  left: 0;
}
@media screen and (max-width: 900px) {
  .navigation {
    position: fixed;
    top: 0;
    left: -100%;
    z-index: 2;
    display: flex;
    justify-content: center;
    overflow: auto;
    width: 100%;
    height: 100vh;
    background-color: #e5e5e5;
    transition: left 0.3s;
  }
}

.header__menu {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 900px) {
  .header__menu {
    flex-direction: column;
    padding: 200px 0;
  }
}

.header__menu__item {
  padding: 5px 15px;
}
@media screen and (max-width: 1024px) {
  .header__menu__item {
    padding: 5px 10px;
  }
}
@media screen and (max-width: 900px) {
  .header__menu__item {
    padding: 0;
  }
}

.header__menu__link {
  position: relative;
  display: block;
  overflow: hidden;
  height: 20px;
  padding: 5px 10px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  color: transparent;
}
.header__menu__link::before {
  content: attr(data-text);
  position: absolute;
  bottom: -40px;
  left: 50%;
  display: block;
  width: 100%;
  font-weight: 600;
  color: #fff;
  transform: translateX(-50%);
  transition: all 0.5s;
}
.header__menu__link::after {
  content: attr(data-text);
  position: absolute;
  bottom: 0;
  left: 50%;
  display: block;
  width: 100%;
  font-weight: 400;
  color: #fff;
  transform: translateX(-50%);
  transition: all 0.5s;
}
.header__menu__link:hover::before {
  bottom: 0;
}
.header__menu__link:hover::after {
  bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .header__menu__link {
    font-size: 18px;
  }
}
@media screen and (max-width: 900px) {
  .header__menu__link {
    overflow: initial;
    height: auto;
    padding: 20px;
    font-size: 26px;
    color: #4f4f59;
  }
  .header__menu__link::after, .header__menu__link::before {
    display: none;
  }
}

.header__burger {
  position: relative;
  z-index: 2;
}

.burger__wrapper {
  position: relative;
  width: 40px;
  height: 40px;
  cursor: pointer;
}

.burger__wrapper svg {
  position: absolute;
  width: 100%;
  height: 100%;
}

.cross {
  transform: scale(0);
  transition: transform 400ms;
}

.line {
  fill: none;
  stroke: #fff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 6px;
  transform-origin: 50%;
  transition: stroke-dasharray 500ms 200ms, stroke-dashoffset 500ms 200ms, transform 500ms 200ms, stroke 1.2s;
}

.cross .line {
  stroke-width: 5.5px;
}

.active .cross {
  transform: scale(1);
  transition: transform 400ms 350ms;
}

.burger__wrapper .line1 {
  stroke-dasharray: 21 185.627532959;
  transition-delay: 0;
}

.burger__wrapper .line2 {
  stroke-dasharray: 21 178.6514129639;
  transition-delay: 30ms;
}

.burger__wrapper .line3 {
  stroke-dasharray: 21 197.9242553711;
  transition-delay: 60ms;
}

.burger__wrapper .line4 {
  stroke-dasharray: 21 190.6597137451;
  transition-delay: 90ms;
}

.burger__wrapper .line5 {
  stroke-dasharray: 21 208.5287475586;
  transition-delay: 120ms;
}

.burger__wrapper .line6 {
  stroke-dasharray: 21 186.5970306396;
  transition-delay: 150ms;
}

.active.burger__wrapper .line1 {
  stroke-dasharray: 5 185.627532959;
  stroke-dashoffset: -148px;
}

.active.burger__wrapper .line2 {
  stroke-dasharray: 5 178.6514129639;
  stroke-dashoffset: -142px;
}

.active.burger__wrapper .line3 {
  stroke-dasharray: 5 197.9242553711;
  stroke-dashoffset: -180px;
}

.active.burger__wrapper .line4 {
  stroke-dasharray: 5 190.6597137451;
  stroke-dashoffset: -165px;
}

.active.burger__wrapper .line5 {
  stroke-dasharray: 5 208.5287475586;
  stroke-dashoffset: -145px;
}

.active.burger__wrapper .line6 {
  stroke-dasharray: 5 186.5970306396;
  stroke-dashoffset: -180px;
}

.active.burger__wrapper .cross {
  transition: transform 400ms 250ms;
}

.hero {
  height: calc(100% - 100px);
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
@media screen and (max-width: 1366px) {
  .hero {
    height: calc(100% - 72px);
  }
}

.hero__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 480px) {
  .hero__inner {
    height: 100%;
    margin: 0 -24px;
    background-color: rgba(0, 0, 0, 0.6);
  }
}

.hero__content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  width: 100%;
  max-width: 670px;
  padding: 30px 30px 45px;
  border-radius: 6px;
  box-shadow: 0 0 11px 4px rgba(255, 255, 255, 0.2) inset;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.6);
  transform: scale(0);
}
@media screen and (max-width: 1366px) {
  .hero__content {
    max-width: 600px;
    padding: 25px 20px 35px;
  }
}
@media screen and (max-width: 480px) {
  .hero__content {
    box-shadow: none;
    background-color: transparent;
  }
}

.hero__title {
  font-size: 48px;
}
@media screen and (max-width: 1366px) {
  .hero__title {
    font-size: 42px;
    line-height: 1.3;
  }
}
@media screen and (max-width: 600px) {
  .hero__title {
    font-size: 38px;
    text-align: center;
  }
}
@media screen and (max-width: 360px) {
  .hero__title {
    font-size: 30px;
  }
}

.hero__subtitle {
  margin-bottom: 20px;
  font-size: 42px;
  font-weight: 500;
  color: #ffb21f;
}
@media screen and (max-width: 1366px) {
  .hero__subtitle {
    margin-bottom: 10px;
    font-size: 38px;
    line-height: 1.3;
  }
}
@media screen and (max-width: 600px) {
  .hero__subtitle {
    font-size: 32px;
  }
}
@media screen and (max-width: 480px) {
  .hero__subtitle {
    font-size: 28px;
  }
}

.hero__text {
  margin-bottom: 40px;
  font-size: 24px;
  line-height: 40px;
  text-align: center;
  color: #c6c6c6;
}
@media screen and (max-width: 1366px) {
  .hero__text {
    margin-bottom: 30px;
    font-size: 22px;
  }
}
@media screen and (max-width: 600px) {
  .hero__text {
    font-size: 19px;
    line-height: 1.58;
  }
}

.hero__btn {
  width: 200px;
  height: 50px;
  outline: 1px solid;
  outline-color: rgba(255, 255, 255, 0.5);
  outline-offset: 0;
  border: 1px solid #fff;
  border-radius: 3px;
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0);
  line-height: 50px;
  text-align: center;
  text-shadow: none;
  text-transform: uppercase;
  color: #fff;
  transition: all 1250ms cubic-bezier(0.19, 1, 0.22, 1);
}
.hero__btn:hover {
  outline-color: rgba(255, 255, 255, 0);
  outline-offset: 15px;
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.5), 0 0 20px rgba(255, 255, 255, 0.2);
  text-shadow: 1px 1px 2px #427388;
}

.represent {
  position: fixed;
  top: 100vh;
  left: 0;
  display: flex;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  background-color: #e5e5e5;
  transition: all 1s cubic-bezier(0.858, 0.01, 0.068, 0.99);
}
@media screen and (max-width: 900px) {
  .represent {
    display: none;
  }
}

.represent__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  height: 100%;
  max-width: 1200px;
}

.represent__text {
  margin-bottom: 100px;
  font-size: 26px;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 1366px) {
  .represent__text {
    padding: 0 20px;
    font-size: 22px;
  }
}
@media screen and (max-width: 1024px) {
  .represent__text {
    font-size: 20px;
  }
}

.represent__contact {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0 20px;
}
@media screen and (max-width: 1024px) {
  .represent__contact {
    justify-content: center;
  }
}

.represent__col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 50%;
  height: 140px;
}
@media screen and (max-width: 1024px) {
  .represent__col {
    width: 33.3%;
    height: 120px;
    padding: 0 20px;
  }
}

.represent__title {
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .represent__title {
    margin-bottom: 0;
    text-align: center;
  }
}

.represent__link {
  position: relative;
  display: flex;
  align-items: center;
  color: #3b5998;
}
@media screen and (max-width: 1024px) {
  .represent__link {
    font-size: 16px;
  }
}

.represent__icon {
  display: inline-block;
  width: 35px;
  height: 35px;
  margin-right: 20px;
}
.represent__icon svg {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1024px) {
  .represent__icon {
    width: 30px;
    height: 30px;
  }
}

.represent__link__text {
  position: relative;
}
.represent__link__text::before {
  content: "";
  position: absolute;
  top: 90%;
  left: 50%;
  width: 0;
  height: 1px;
  background-color: #3b5998;
  transition: all 0.3s;
}
.represent__link__text:hover::before {
  left: 0;
  width: 100%;
}

.chevron__wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 70px;
  margin-top: 50px;
  cursor: pointer;
}
@media screen and (max-width: 900px) {
  .chevron__wrapper {
    bottom: 4vh;
  }
}

.chevron {
  position: absolute;
  top: 35px;
  width: 35px;
  height: 8px;
  margin-top: -45px;
  opacity: 0;
  transform: scale(0.3);
  animation: move-chevron 3s ease-out infinite;
}

.chevron:first-child {
  animation: move-chevron 3s ease-out 1s infinite;
}

.chevron:nth-child(2) {
  animation: move-chevron 3s ease-out 2s infinite;
}

.chevron::before,
.chevron::after {
  content: "";
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
}

.chevron::before {
  left: 0;
  transform: skewY(30deg);
}

.chevron::after {
  right: 0;
  width: 50%;
  transform: skewY(-30deg);
}

@keyframes move-chevron {
  25% {
    opacity: 1;
  }
  33.3% {
    opacity: 1;
    transform: translateY(36.5px);
  }
  66.6% {
    opacity: 1;
    transform: translateY(50px);
  }
  100% {
    opacity: 0;
    transform: translateY(77px) scale(0.5);
  }
}
.footer {
  padding: 25px 0;
  background-color: rgba(2, 2, 2, 0.05);
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 700px) {
  .footer__inner {
    flex-direction: column;
  }
}
@media screen and (max-width: 480px) {
  .footer__inner {
    align-items: flex-start;
  }
}

@media screen and (max-width: 700px) {
  .logo__footer {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 600px) {
  .logo__footer {
    margin-bottom: 12px;
  }
}

.logo__link__footer {
  font-size: 27px;
  color: #2f323a;
}
@media screen and (max-width: 600px) {
  .logo__link__footer {
    font-size: 24px;
  }
}

.copyright {
  display: flex;
  align-items: center;
}
.copyright__link {
  color: #58b586;
}
.copyright__link:before {
  display: none;
}
.copyright__text {
  margin-left: 7px;
}
@media screen and (max-width: 600px) {
  .copyright__text {
    font-size: 16px;
  }
}
@media screen and (max-width: 414px) {
  .copyright__text {
    font-size: 14px;
  }
}
@media screen and (max-width: 360px) {
  .copyright__text {
    font-size: 13px;
  }
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  line-height: 1.7;
  color: #2f323a;
  background-color: #fff;
  scrollbar-width: thin;
  scrollbar-color: #929292;
}
body.is-hidden {
  overflow: hidden;
}
body::-webkit-scrollbar {
  width: 6px;
  height: 20px;
}
body::-webkit-scrollbar-track {
  background-color: #F5F3F3;
  border-radius: 1vw;
}
body::-webkit-scrollbar-thumb {
  background-color: #929292;
  border-radius: 100vw;
}

.section, .section--dark {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}
.section__target {
  position: absolute;
  top: 60px;
}
.section--dark {
  background-color: rgba(2, 2, 2, 0.05);
}
@media screen and (max-width: 1200px) {
  .section, .section--dark {
    padding: 90px 0;
  }
}
@media screen and (max-width: 600px) {
  .section, .section--dark {
    padding: 50px 0;
  }
  .section__target {
    top: 40px;
  }
}

.container {
  width: 100%;
  max-width: 1468px;
  margin: 0 auto;
  padding: 0 40px;
}
@media screen and (max-width: 600px) {
  .container {
    padding: 0 16px;
  }
}

.col {
  width: 50%;
}

.heading {
  display: flex;
}
@media screen and (max-width: 1024px) {
  .heading {
    flex-direction: column-reverse;
  }
}

.heading__img {
  display: flex;
  align-items: center;
  width: 40%;
  margin-right: 50px;
}
@media screen and (max-width: 1200px) {
  .heading__img {
    min-width: 400px;
  }
}
@media screen and (max-width: 1024px) {
  .heading__img {
    width: 100%;
    min-width: auto;
    max-width: 490px;
    margin: 50px auto 0;
  }
}

.heading__content {
  position: relative;
  width: 70%;
  padding-left: 50px;
}
@media screen and (max-width: 1024px) {
  .heading__content {
    width: 100%;
    padding: 0;
  }
}

.heading__title {
  position: absolute;
  top: 43px;
  left: -45px;
  display: inline-block;
  font-size: 24px;
  font-weight: 300;
  line-height: 1;
  opacity: 0;
  transform: rotate(-90deg);
}
.heading__title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -80%;
  width: 70%;
  height: 1px;
  background-color: #616265;
}
@media screen and (max-width: 1024px) {
  .heading__title {
    position: relative;
    top: 0;
    left: 0;
    margin-bottom: 20px;
    font-weight: 400;
    transform: none;
  }
  .heading__title::before {
    top: initial;
    bottom: -8px;
    left: 0;
    height: 2px;
  }
}

.heading__subtitle {
  margin-bottom: 25px;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
}
@media screen and (max-width: 480px) {
  .heading__subtitle {
    margin-bottom: 18px;
    font-size: 26px;
  }
}

.heading__leading {
  margin-bottom: 20px;
}
@media screen and (max-width: 480px) {
  .heading__leading {
    font-size: 16px;
  }
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: #2f323a;
  transition: all 1s ease-in-out;
}
.preloader__logo {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  font-size: 35px;
  font-weight: 500;
  color: #fff;
}
.preloader__icon {
  width: 90px;
  height: 90px;
}
.preloader.is-hidden {
  opacity: 0;
  transform: translateY(-100%);
}

.cards {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 180px;
  gap: 30px;
}
@media screen and (max-width: 1366px) {
  .cards {
    gap: 24px;
  }
}
@media screen and (max-width: 1200px) {
  .cards {
    max-width: 960px;
    margin: 0 auto 180px;
  }
}
@media screen and (max-width: 1024px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
    max-width: 840px;
    margin: 0 auto 90px;
    gap: 40px;
  }
}
@media screen and (max-width: 768px) {
  .cards {
    margin: 0 -15px 90px;
    gap: 24px;
  }
}
@media screen and (max-width: 600px) {
  .cards {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin: 0 auto 90px;
    gap: 24px;
  }
}

.card {
  height: 210px;
}
@media screen and (max-width: 1024px) {
  .card {
    height: 100%;
    min-height: 290px;
    padding: 20px 15px;
    border-radius: 10px;
    box-shadow: 2px 2px 7px 4px rgba(167, 184, 194, 0.2);
  }
}
@media screen and (max-width: 700px) {
  .card {
    min-height: 310px;
  }
}
@media screen and (max-width: 600px) {
  .card {
    min-height: 230px;
  }
}
@media screen and (max-width: 480px) {
  .card {
    min-height: 266px;
  }
}

.card__inner {
  height: 210px;
  transition: 0.5s;
}
@media screen and (max-width: 1024px) {
  .card__inner {
    height: auto;
  }
}

.card__inner__top {
  position: relative;
  z-index: 1;
  box-shadow: 0 6px 10px rgba(167, 184, 194, 0.3);
  background-color: #f4fbff;
  transform: translateY(0);
}
@media screen and (max-width: 1024px) {
  .card__inner__top {
    margin-bottom: 10px;
    border-radius: 10px 10px 0 0;
    box-shadow: none;
    background-color: #fff;
    transform: translateY(0);
  }
  .card__inner__top br {
    display: none;
  }
}

.card__icon {
  display: flex;
  width: 65px;
  height: 65px;
  margin-bottom: 15px;
}

.card__title {
  font-size: 22px;
  line-height: 1.45;
  text-align: center;
}
@media screen and (max-width: 1200px) {
  .card__title {
    font-size: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .card__title {
    max-width: 200px;
  }
}

.card__title--highlight {
  color: #ffb21f;
}

@media (hover: hover) {
  .card:hover .card__inner__top {
    transform: translateY(-105px);
  }
}
.card__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 40px 47px;
}
@media screen and (max-width: 1366px) {
  .card__content {
    padding: 30px 22px;
  }
}
@media screen and (max-width: 1200px) {
  .card__content {
    padding: 22px 16px;
  }
}
@media screen and (max-width: 1024px) {
  .card__content {
    justify-content: flex-start;
    padding: 0;
  }
}

.card__inner__bottom {
  position: relative;
  box-shadow: 0 6px 10px rgba(167, 184, 194, 0.3);
  background-color: #fff;
  transform: translateY(-210px);
}
@media screen and (max-width: 1024px) {
  .card__inner__bottom {
    border-radius: 0 0 10px 10px;
    box-shadow: none;
    transform: translateY(0);
  }
}

@media (hover: hover) {
  .card:hover .card__inner__bottom {
    transform: translateY(-105px);
  }
}
.card__text {
  font-size: 18px;
  text-align: center;
}

.heading__btns {
  display: flex;
  width: 100%;
}
@media screen and (max-width: 480px) {
  .heading__btns {
    justify-content: center;
    margin-top: 40px;
  }
}
@media screen and (max-width: 360px) {
  .heading__btns {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
  }
}

.heading__btn {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 160px;
  font-size: 16px;
  font-weight: 400;
  line-height: 45px;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  background-color: #018673;
  transition: all 0.4s;
  cursor: pointer;
}
.heading__btn svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 45px;
}
.heading__btn rect {
  fill: none;
  stroke: #018673;
  stroke-dasharray: 422, 0;
  stroke-width: 3;
  transition: all 0.35s linear;
}
.heading__btn:last-child {
  margin-left: 20px;
  color: #018673;
  background-color: transparent;
}
@media (hover: hover) {
  .heading__btn:hover {
    color: #018673;
    background-color: transparent;
  }
  .heading__btn:hover rect {
    stroke-dasharray: 15, 310;
    stroke-dashoffset: 48;
    stroke-width: 5;
    transition: all 0.9s cubic-bezier(0.19, 1, 0.22, 1);
  }
}
@media screen and (max-width: 360px) {
  .heading__btn {
    max-width: none;
  }
  .heading__btn:last-child {
    margin: 20px 0 0;
  }
}

.skills {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .skills {
    flex-direction: column;
  }
}

@media screen and (max-width: 1024px) {
  .skills__heading__content {
    margin-bottom: 30px;
  }
}

.skills__text {
  position: relative;
  width: 55%;
  padding-left: 100px;
}

.switcher {
  position: relative;
  display: flex;
  width: 150px;
  padding: 5px;
  border: 1px solid #ffb21f;
  border-radius: 30px;
  box-shadow: 11px 10px 38px 0 rgba(255, 178, 31, 0.12);
  background-color: #fff;
}
@media screen and (max-width: 1024px) {
  .switcher {
    margin: 0 auto;
  }
}

.switcher__radio {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
}
.switcher__radio:checked + .switcher__label {
  color: #fff;
}
.switcher__radio:nth-of-type(2):checked ~ .switcher__toggler {
  transform: translateX(calc(100% - 4px));
}

.switcher__label {
  position: relative;
  z-index: 2;
  width: 50%;
  font-weight: 500;
  text-align: center;
  transition: color 0.2s ease-in-out;
  cursor: pointer;
}

.switcher__toggler {
  position: absolute;
  top: 2px;
  left: 2px;
  z-index: 1;
  display: inline-block;
  width: 50%;
  height: 90%;
  border-radius: 30px;
  background-color: #ffb21f;
  transition: all 0.2s ease-in-out;
}

.skills__grid {
  display: none;
  grid-template-columns: repeat(5, 1fr);
  margin-left: 50px;
  opacity: 0;
  visibility: hidden;
  gap: 20px;
}
.skills__grid.is-show {
  display: grid;
  opacity: 1;
  visibility: visible;
}
@media screen and (max-width: 1024px) {
  .skills__grid {
    margin-left: 0;
  }
}
@media screen and (max-width: 768px) {
  .skills__grid {
    gap: 3vw;
  }
}
@media screen and (max-width: 480px) {
  .skills__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 360px) {
  .skills__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.tools__cards {
  display: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s 0.4s, visibility 0.4s 0.4s;
}

.skills__card {
  position: relative;
  display: flex;
  width: 100px;
  height: 100px;
  border-radius: 8px;
  box-shadow: 3px 3px 19px 2px rgba(0, 0, 0, 0.12);
  background-color: #fff;
}
.skills__card svg {
  width: 60%;
  height: 60%;
  margin: auto;
}
.skills__card .icon__command-line {
  width: 100%;
  height: 100%;
}
.skills__card:hover .skills__tooltip {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
@media screen and (max-width: 1200px) {
  .skills__card {
    width: 80px;
    height: 80px;
  }
}
@media screen and (max-width: 1024px) {
  .skills__card {
    width: 115px;
    height: 115px;
  }
}
@media screen and (max-width: 768px) {
  .skills__card {
    width: 16vw;
    height: 16vw;
  }
}
@media screen and (max-width: 480px) {
  .skills__card {
    width: 20vw;
    height: 20vw;
    min-width: 65px;
    min-height: 65px;
  }
  .skills__card:nth-last-child(-n+2) {
    display: none;
  }
}
@media screen and (max-width: 360px) {
  .skills__card {
    width: calc((100vw - 60px) / 3);
    height: calc((100vw - 60px) / 3);
  }
  .skills__card:nth-last-child(-n+2) {
    display: flex;
  }
  .skills__card:last-of-type {
    display: none;
  }
}

.skills__tooltip {
  position: absolute;
  top: -38px;
  left: 50%;
  min-width: 100%;
  padding: 2px 5px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  text-align: center;
  color: #fff;
  background-color: #ffb21f;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -90%);
  transition: all 0.4s ease-in-out;
}
.skills__tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 5px 0;
  border-color: #ffb21f transparent transparent;
  transform: translateX(-50%);
  transition: all 0.2s;
}

.timeline {
  padding: 100px 50px 0;
}
@media screen and (max-width: 1024px) {
  .timeline {
    padding: 0 50px;
  }
}
@media screen and (max-width: 1200px) {
  .timeline {
    padding: 30px 0 0;
  }
}
@media screen and (max-width: 600px) {
  .timeline {
    padding: 0;
  }
}

.timeline__title {
  transform: rotate(-90deg) !important;
}

.timeline__circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  margin-bottom: 6px;
  border: 4px solid #58b586;
  border-radius: 50%;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  color: #58b586;
}
.timeline__circle__finish {
  position: relative;
  margin-top: 105px;
  text-align: center;
  text-transform: capitalize;
}
.timeline__circle__finish::before {
  content: "";
  position: absolute;
  top: -110px;
  left: 50%;
  width: 4px;
  height: 100px;
  background-color: #58b586;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .timeline__circle__finish {
    margin-top: 3px;
    border: 3px solid #58b586;
  }
  .timeline__circle__finish::before {
    display: none;
  }
}

.timeline__item {
  position: relative;
  display: grid;
  align-items: center;
  justify-items: center;
  grid-template-columns: 1fr 150px 1fr;
  width: 100%;
  margin: 0 auto;
}
.timeline__item__side {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .timeline__item {
    grid-template-columns: 1fr 60px 1fr;
  }
}
@media screen and (max-width: 600px) {
  .timeline__item {
    display: flex;
    flex-direction: column;
    padding-bottom: 10px;
  }
  .timeline__item:nth-of-type(odd) {
    flex-direction: column-reverse;
  }
  .timeline__item:nth-of-type(odd) .timeline__path {
    order: -1;
  }
  .timeline__item:nth-last-of-type(-n + 2) .timeline__path {
    display: none;
  }
  .timeline__item:nth-last-of-type(-n + 2) .timeline__card {
    margin-bottom: 0;
  }
  .timeline__item__side {
    display: none;
  }
}

.timeline__icon {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  height: 142px;
  font-size: 32px;
  color: #737574;
}
.timeline__icon__reverse {
  justify-content: flex-start;
}
.timeline__icon svg {
  height: 85px;
  max-width: 85px;
}
@media screen and (max-width: 768px) {
  .timeline__icon {
    justify-content: center;
  }
  .timeline__icon__reverse {
    justify-content: center;
  }
  .timeline__icon svg {
    height: 60px;
    max-width: 60px;
  }
}

.timeline__icon__separator {
  display: inline-block;
  margin: 0 30px;
}

.timeline__path {
  position: relative;
  width: 4px;
  height: 250px;
  margin: 0 150px;
  background-color: #58b586;
}
.timeline__path::after {
  content: "";
  position: absolute;
  top: 110px;
  left: -18px;
  width: 40px;
  height: 40px;
  outline: 4px solid #fff;
  border: 4px solid #58b586;
  border-radius: 50%;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .timeline__path {
    width: 3px;
  }
  .timeline__path::after {
    left: -9px;
    width: 20px;
    height: 20px;
    outline: 3px solid #fff;
    border: 3px solid #58b586;
  }
}
@media screen and (max-width: 600px) {
  .timeline__path {
    display: flex;
    order: 1;
    width: 50%;
    height: 1px;
    margin: 0 auto;
  }
  .timeline__path::after {
    top: -4px;
    left: 50%;
    width: 10px;
    height: 10px;
    border: 1px solid #58b586;
    transform: translateX(-50%);
  }
}

.timeline__card {
  position: relative;
  display: flex;
  width: 100%;
  height: 142px;
  max-width: 600px;
  margin-top: 12px;
  border-style: solid;
  border-width: 1px;
  border-radius: 7px;
}
.timeline__card--reverse {
  flex-direction: row-reverse;
}
.timeline__card--dblue {
  border-color: rgba(43, 125, 223, 0.4);
  box-shadow: 9px 7px 18px 1px rgba(43, 125, 223, 0.1);
  background-color: rgba(43, 125, 223, 0.02);
}
.timeline__card--red {
  border-color: rgba(248, 73, 59, 0.4);
  box-shadow: -9px 7px 18px 1px rgba(203, 59, 49, 0.1);
  background-color: rgba(203, 59, 49, 0.02);
}
.timeline__card--orange {
  border-color: rgba(247, 144, 60, 0.4);
  box-shadow: 9px 7px 18px 1px rgba(247, 144, 60, 0.1);
  background-color: rgba(247, 144, 60, 0.02);
}
.timeline__card--green {
  border-color: rgba(75, 232, 150, 0.4);
  box-shadow: -9px 7px 18px 1px rgba(75, 232, 150, 0.1);
  background-color: rgba(75, 232, 150, 0.02);
}
.timeline__card--purple {
  border-color: rgba(133, 49, 205, 0.4);
  box-shadow: 9px 7px 18px 1px rgba(133, 49, 205, 0.1);
  background-color: rgba(133, 49, 205, 0.02);
}
.timeline__card--yellow {
  border-color: rgba(225, 225, 28, 0.4);
  box-shadow: -9px 7px 18px 1px rgba(225, 222, 28, 0.1);
  background-color: rgba(225, 222, 28, 0.02);
}
.timeline__card--blue {
  border-color: rgba(3, 200, 250, 0.4);
  box-shadow: 9px 7px 18px 1px rgba(3, 200, 250, 0.1);
  background-color: rgba(3, 200, 250, 0.02);
}
@media screen and (max-width: 1366px) {
  .timeline__card {
    height: 160px;
  }
}
@media screen and (max-width: 1200px) {
  .timeline__card {
    display: flex;
    flex-direction: column;
    border: none;
    box-shadow: none;
    background-color: transparent;
  }
}
@media screen and (max-width: 600px) {
  .timeline__card {
    height: auto;
    margin-bottom: 30px;
  }
}

.timeline__card__title {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 154px;
  padding: 20px;
  border-radius: 7px 0 0 7px;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
}
.timeline__card__title--dblue {
  color: #0469d2;
}
.timeline__card__title--red {
  color: #f8493b;
}
.timeline__card__title--orange {
  color: #c27230;
}
.timeline__card__title--green {
  color: #3ec07d;
}
.timeline__card__title--purple {
  color: #a03bf8;
}
.timeline__card__title--yellow {
  color: #cece35;
}
.timeline__card__title--blue {
  color: #04a8d2;
}
@media screen and (max-width: 1200px) {
  .timeline__card__title {
    max-width: none;
  }
  .timeline__card__title br {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .timeline__card__title {
    padding: 0;
  }
}

.timeline__card__text {
  display: flex;
  align-items: center;
  padding: 10px 25px;
  font-size: 16px;
}
.timeline__card__text--dblue {
  border-left: 1px solid rgba(43, 125, 223, 0.4);
  color: #2b7ddf;
}
.timeline__card__text--red {
  border-right: 1px solid rgba(248, 73, 59, 0.4);
  color: #cb3b31;
}
.timeline__card__text--orange {
  border-left: 1px solid rgba(247, 144, 60, 0.4);
  color: #f7903c;
}
.timeline__card__text--green {
  border-right: 1px solid rgba(75, 232, 150, 0.4);
  color: #4be896;
}
.timeline__card__text--purple {
  border-left: 1px solid rgba(133, 49, 205, 0.4);
  color: #8531cd;
}
.timeline__card__text--yellow {
  border-right: 1px solid rgba(225, 225, 28, 0.4);
  color: #e1e11c;
}
.timeline__card__text--blue {
  border-left: 1px solid rgba(3, 200, 250, 0.4);
  color: #03c8fa;
}
@media screen and (max-width: 1200px) {
  .timeline__card__text {
    border: none;
    text-align: center;
  }
}
@media screen and (max-width: 1024px) {
  .timeline__card__text {
    padding: 0;
  }
}

.timeline__steps {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 3vw 3vw 0;
  transform: rotate(15deg);
}
@media screen and (max-width: 1200px) {
  .timeline__steps {
    margin: 0 3vw 12vw;
  }
}
@media screen and (max-width: 1100px) {
  .timeline__steps {
    margin: -1vw 3vw 12vw;
    transform: rotate(22deg);
  }
}
@media screen and (max-width: 1024px) {
  .timeline__steps {
    display: none;
  }
}

.timeline__step {
  position: absolute;
  display: flex;
}
.timeline__step__1 {
  top: -60px;
  left: 24%;
  transform: rotate(143deg);
}
.timeline__step__2 {
  top: -12px;
  left: 26%;
  transform: rotate(138deg);
}
.timeline__step__3 {
  top: 28px;
  left: 29%;
  transform: rotate(123deg);
}
.timeline__step__4 {
  top: 50px;
  left: 32.5%;
  transform: rotate(124deg);
}
.timeline__step__5 {
  top: 72px;
  left: 36%;
  transform: rotate(126deg);
}
.timeline__step__6 {
  top: 93px;
  left: 40%;
  transform: rotate(126deg);
}

.icon__footprint {
  display: inline-block;
  width: 35px;
  height: 40px;
}
.icon__footprint--right {
  transform: translateY(-30px) !important;
  transition: transform 0.9s;
}

.works__heading__content {
  margin-bottom: 50px;
}
@media screen and (max-width: 1024px) {
  .works__heading__content {
    margin-bottom: 30px;
  }
}

.works__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 35px;
  gap: 35px;
}
.works__grid:last-of-type {
  margin-bottom: 0;
}
@media screen and (max-width: 1200px) {
  .works__grid {
    gap: 20px;
  }
}
@media screen and (max-width: 900px) {
  .works__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 600px) {
  .works__grid {
    gap: 15px;
  }
}
@media screen and (max-width: 480px) {
  .works__grid {
    grid-template-columns: 1fr;
  }
}

.work__card {
  position: relative;
  overflow: hidden;
  height: 400px;
  border-radius: 10px;
  box-shadow: 2px 2px 10px 5px rgba(0, 0, 0, 0.12);
  opacity: 1;
  background-position: 0 0;
}
.work__card__1 .work {
  background-image: url("../img/work1.jpg");
}
.work__card__2 .work {
  background-image: url("../img/work2.jpg");
}
.work__card__3 .work {
  background-image: url("../img/work3.jpg");
}
.work__card__4 .work {
  background-image: url("../img/work4.jpg");
}
.work__card__5 .work {
  background-image: url("../img/work5.jpg");
}
.work__card__6 .work {
  background-image: url("../img/work6.jpg");
}
@media screen and (max-width: 1366px) {
  .work__card {
    height: 26vw;
  }
}
@media screen and (max-width: 900px) {
  .work__card {
    height: 40vw;
  }
}
@media screen and (max-width: 480px) {
  .work__card {
    height: 85vw;
  }
}

.work {
  position: relative;
  overflow: hidden;
  height: 100%;
  background-position: center 0;
  background-size: cover;
  background-repeat: no-repeat;
  transition: all 1s;
}
.work::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 0;
}
.work:hover::before {
  opacity: 1;
}
.work:hover .work__content {
  right: 0;
  height: calc(100% - 96px);
}
.work:hover .work__tools {
  left: 0;
}

.work__link {
  display: block;
  width: 100%;
  height: 100%;
}

.work__content {
  position: absolute;
  top: 0;
  right: -100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: calc(100% - 96px);
  padding: 10px 7px;
  color: #fff;
  transition: 0.7s;
}

.work__title {
  font-size: 22px;
  font-weight: 700;
  text-align: center;
}

.work__leading {
  font-size: 16px;
  font-weight: 300;
  text-align: center;
}

.work__tools {
  position: absolute;
  bottom: 30px;
  left: -100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 100%;
  padding: 8px 5px;
  background-color: rgba(255, 255, 255, 0.6);
  transition: 0.7s;
}

.work__tools__item {
  height: 50px;
}
.work__tools__item svg {
  height: 100%;
  max-width: 45px;
}

.contacts {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding-left: 50px;
}
@media screen and (max-width: 1024px) {
  .contacts {
    padding-left: 0;
  }
}
@media screen and (max-width: 768px) {
  .contacts {
    flex-direction: column-reverse;
  }
}

.contacts__data__row {
  display: flex;
  flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
  .contacts__data__wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding-top: 50px;
    gap: 30px;
  }
}
@media screen and (max-width: 480px) {
  .contacts__data__wrapper {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.contacts__data {
  margin-bottom: 20px;
}
.contacts__data .represent__link {
  margin-bottom: 20px;
}
.contacts__data__header {
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .contacts__data {
    margin-bottom: 0;
  }
  .contacts__data:last-of-type {
    display: none;
  }
  .contacts__data .represent__link:last-of-type {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 600px) {
  .contacts__data {
    width: 100%;
  }
}

.contacts__form {
  width: 100%;
  max-width: 500px;
  padding: 20px 40px;
  border-radius: 10px;
  box-shadow: 0 0 17px 0 rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 900px) {
  .contacts__form {
    max-width: 420px;
  }
}
@media screen and (max-width: 768px) {
  .contacts__form {
    margin: 0 auto;
  }
}
@media screen and (max-width: 600px) {
  .contacts__form {
    padding: 25px 20px;
  }
}

.contacts__form__row {
  margin-bottom: 15px;
}
.contacts__form__row svg {
  transition: all 0.4s;
}
.contacts__form__row svg path {
  fill: #fff !important;
}

.contacts__label {
  position: relative;
  display: flex;
  flex-direction: column;
  margin-bottom: 7px;
  font-size: 16px;
  line-height: 1.7;
}

.contacts__icon {
  position: absolute;
  top: 37px;
  left: 12px;
  height: 25px;
  max-width: 22px;
  fill: #2f323a;
}

.contacts__input {
  height: 45px;
  padding: 5px 10px 5px 45px;
  outline: 1px solid transparent;
  border: none;
  border-radius: 7px;
  background-color: #ededed;
  transition: all 0.4s;
}
.contacts__input:focus {
  outline: 1px solid #e18344;
}
.contacts__input:focus ~ svg {
  fill: #e18344;
}
.contacts__input.just-validate-error-field {
  outline: 1px solid #ff0c0c;
}
.contacts__input.just-validate-error-field ~ svg {
  fill: #ff0c0c;
}

.contacts__textarea {
  position: relative;
  height: 100px;
  margin-bottom: 0;
  padding: 10px;
  text-indent: 30px;
  resize: none;
}

.contacts__submit {
  display: block;
  width: 100%;
  height: 50px;
  max-width: 300px;
  margin: 0 auto;
  border: 1px solid #2f323a;
  border-radius: 7px;
  font-size: 20px;
  line-height: 1;
  text-align: center;
  color: #fff;
  background-color: #2f323a;
  transition: all 0.4s;
  cursor: pointer;
}
.contacts__submit:hover {
  color: #2f323a;
  background-color: transparent;
}
@media screen and (max-width: 480px) {
  .contacts__submit {
    max-width: 100%;
  }
}

/* arrow Up and progressbar */
.progress-wrap {
  position: fixed;
  right: 50px;
  bottom: 65px;
  z-index: 3;
  width: 46px;
  height: 46px;
  border-radius: 50px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 200ms linear;
  cursor: pointer;
}
.progress-wrap:hover .progress__circle {
  fill: rgba(88, 181, 134, 0.1);
}

.progress-wrap.active-progress {
  box-shadow: inset 0 0 4px 4px rgba(88, 181, 134, 0.4);
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.progress-wrap svg.progress__circle path {
  box-sizing: border-box;
  stroke: #58b586;
  stroke-width: 5;
  transition: all 200ms linear;
}

.progress__circle {
  fill: #fff;
  transition: fill 0.3s;
}

.progress__arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60%;
  fill: #58b586;
  transform: translate(-50%, -50%);
}

.popup {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  display: flex;
  background-color: rgba(0, 0, 0, 0.6);
}
.popup.is-open {
  visibility: visible;
  opacity: 1;
  z-index: 3;
}
.popup__content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: auto;
  padding: 40px;
  border-radius: 10px;
  background-color: #fff;
}
@media screen and (max-width: 480px) {
  .popup__content {
    width: 100%;
    height: 100%;
    justify-content: flex-start;
    padding-top: 140px;
    border-radius: 0;
  }
}
.popup__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 30px;
  height: 30px;
  border: none;
  background: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3C!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools --%3E%3Csvg width='800px' height='800px' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M16.9498 8.46447C17.3404 8.07394 17.3404 7.44078 16.9498 7.05025C16.5593 6.65973 15.9261 6.65973 15.5356 7.05025L12.0001 10.5858L8.46455 7.05025C8.07402 6.65973 7.44086 6.65973 7.05033 7.05025C6.65981 7.44078 6.65981 8.07394 7.05033 8.46447L10.5859 12L7.05033 15.5355C6.65981 15.9261 6.65981 16.5592 7.05033 16.9497C7.44086 17.3403 8.07402 17.3403 8.46455 16.9497L12.0001 13.4142L15.5356 16.9497C15.9261 17.3403 16.5593 17.3403 16.9498 16.9497C17.3404 16.5592 17.3404 15.9261 16.9498 15.5355L13.4143 12L16.9498 8.46447Z' fill='%23000000'/%3E%3C/svg%3E") no-repeat;
  background-size: 123% 123%;
  background-position: center;
  cursor: pointer;
}
.popup__icon {
  position: relative;
  width: 55px;
  height: 54px;
  margin-bottom: 20px;
  background: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='iso-8859-1'%3F%3E%3C!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools --%3E%3Csvg height='800px' width='800px' version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 507.2 507.2' xml:space='preserve'%3E%3Ccircle style='fill:%2332BA7C;' cx='253.6' cy='253.6' r='253.6'/%3E%3Cpath style='fill:%230AA06E;' d='M188.8,368l130.4,130.4c108-28.8,188-127.2,188-244.8c0-2.4,0-4.8,0-7.2L404.8,152L188.8,368z'/%3E%3Cg%3E%3Cpath style='fill:%23FFFFFF;' d='M260,310.4c11.2,11.2,11.2,30.4,0,41.6l-23.2,23.2c-11.2,11.2-30.4,11.2-41.6,0L93.6,272.8 c-11.2-11.2-11.2-30.4,0-41.6l23.2-23.2c11.2-11.2,30.4-11.2,41.6,0L260,310.4z'/%3E%3Cpath style='fill:%23FFFFFF;' d='M348.8,133.6c11.2-11.2,30.4-11.2,41.6,0l23.2,23.2c11.2,11.2,11.2,30.4,0,41.6l-176,175.2 c-11.2,11.2-30.4,11.2-41.6,0l-23.2-23.2c-11.2-11.2-11.2-30.4,0-41.6L348.8,133.6z'/%3E%3C/g%3E%3C/svg%3E") no-repeat;
  background-size: 100% 100%;
}
.popup__icon.error {
  background: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='iso-8859-1'%3F%3E%3Csvg height='800px' width='800px' version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 512 512' xml:space='preserve'%3E%3Ccircle style='fill:%23ff0c0c;' cx='256' cy='256' r='256'/%3E%3Cpath style='fill:%23c00f0f;' d='M150.2,368.6l141,141c115.2-15.8,205.9-108.3,219.1-224.2L367.9,142.9L150.2,368.6z'/%3E%3Cpath style='fill:%23FFFFFF;' d='M368.5,337.4l-82.8-82.8l82.8-82.8c7.8-7.8,7.8-20.5,0-28.3s-20.5-7.8-28.3,0l-82.8,82.8l-82.8-82.8 c-7.8-7.8-20.5-7.8-28.3,0s-7.8,20.5,0,28.3l82.8,82.8l-82.8,82.8c-7.8,7.8-7.8,20.5,0,28.3c3.9,3.9,9,5.9,14.1,5.9s10.2-2,14.1-5.9 l82.8-82.8l82.8,82.8c3.9,3.9,9,5.9,14.1,5.9s10.2-2,14.1-5.9C376.3,357.9,376.3,345.2,368.5,337.4z'/%3E%3C/svg%3E") no-repeat;
  background-size: 100% 100%;
}
.popup__title {
  margin-bottom: 20px;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  color: #58b586;
}
.popup__title.error {
  font-size: 26px;
  color: #ff0c0c;
}
.popup__text {
  font-weight: 500;
  text-align: center;
}

.just-validate-error-label {
  font-size: 14px;
  color: #ff0c0c;
}
@media screen and (max-width: 480px) {
  .just-validate-error-label {
    font-size: 12px;
  }
}