@import url(https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Dancing+Script&display=swap);
@charset "UTF-8";
:root {
  --brand-darkblue-color: #448aff;
  --brand-darkblue-color-opacity: #448aff40;
  --brand-blue-color: #5eb4f7;
  --brand-blue-color-opacity: #5eb4f740;
  --brand-seafoam-color: #5cf7ae;
  --brand-seafoam-color-opacity: #5cf7ae40;
  --brand-orange-color: #fc9624;
  --brand-orange-color-opacity: #fc962440;
  --brand-goldenrod-color: #fcd064;
  --brand-goldenrod-color-opacity: #fcd06440;
  --brand-hotpink-color: #ff5880;
  --brand-hotpink-color-opacity: #ff588040;
  --theme-color: #f5f5f5;
  --theme-color-opacity: #fcd06440;
  --page-bg-color: #ffffff;
  --page-color: #292929;
  --page-color-opacity: #292929d0;
  --footer-color: #f7f9fa;
  --min-width-xs: 384px;
  --max-width-xs: 383.98px;
  --min-width-sm: 576px;
  --max-width-sm: 575.98px;
  --min-width-md: 768px;
  --max-width-md: 767.98px;
  --min-width-lg: 992px;
  --max-width-lg: 991.98px;
  --min-width-xl: 1152px;
  --max-width-xl: 1151.98px;
  --min-width-xxl: 1344px;
  --max-width-xxl: 1343.98px;
  --min-width-3xl: 1536px;
  --max-width-3xl: 1535.98px;
}

* {
  position: relative;
  box-sizing: border-box;
}

*:focus {
  outline: none;
}

html,
body {
  padding: 0px;
  margin: 0px;
  width: 100%;
  height: 100%;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 300;
  background-color: var(--page-bg-color);
  color: var(--page-color);
}

a,
a:visited,
a:active,
a:focus {
  text-decoration: none;
  color: inherit;
}

a:hover {
  cursor: pointer;
}

button {
  font-family: "Poppins", sans-serif !important;
}

::-webkit-scrollbar-track {
  box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.3);
  background-color: transparent;
  border-radius: 4px;
}

::-webkit-scrollbar {
  width: 4px;
  height: 4px;
  background-color: var(--theme-color-opacity);
}

::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background: var(--theme-color);
}

h0, .h0,
h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
p, .text {
  font-size: 14px;
  color: var(--page-color);
  line-height: 150%;
}

.h0 {
  font-size: 72px;
  font-weight: 700;
}

h1, .h1 {
  font-size: 38px;
  font-weight: 700;
}

h2, .h2 {
  font-size: 24px;
  font-weight: 400;
}

h3, .h3 {
  font-size: 22px;
  font-weight: 400;
}

h4, .h4 {
  font-size: 20px;
  font-weight: 400;
}

.text-active {
  color: var(--theme-color);
}

@media all and (max-width: 1343.98px) {
  .h0 {
    font-size: 64px;
  }

  h1, .h1 {
    font-size: 34px;
  }

  h2, .h2 {
    font-size: 22px;
  }

  h3, .h3 {
    font-size: 20px;
    font-weight: 400;
  }

  h4, .h4 {
    font-size: 18px;
    font-weight: 400;
  }
}
@media all and (max-width: 1151.98px) {
  .h0 {
    font-size: 54px;
  }

  h1, .h1 {
    font-size: 30px;
  }

  h2, .h2 {
    font-size: 20px;
  }

  h3, .h3 {
    font-size: 18px;
    font-weight: 400;
  }

  h4, .h4 {
    font-size: 16px;
    font-weight: 400;
  }

  p .text {
    font-size: 12px;
  }
}
@media all and (max-width: 991.98px) {
  .h0 {
    font-size: 44px;
  }

  h1, .h1 {
    font-size: 26px;
  }

  h2, .h2 {
    font-size: 18px;
  }

  h3, .h3 {
    font-size: 16px;
    font-weight: 400;
  }

  h4, .h4 {
    font-size: 14px;
    font-weight: 400;
  }
}
@media all and (max-width: 767.98px) {
  .h0 {
    font-size: 38px;
  }

  h1, .h1 {
    font-size: 24px;
  }

  p, .text {
    font-size: 12px;
  }
}
@media all and (max-width: 575.98px) {
  .h0 {
    font-size: 30px;
  }

  h1, .h1 {
    font-size: 22px;
  }
}
.container,
.container-half {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 45px;
  padding-right: 45px;
}

.container {
  max-width: var(--max-width-xxl);
}
.container-half {
  max-width: calc(var(--max-width-xxl) / 2);
}

@media all and (max-width: 1343.98px) {
  .container {
    max-width: var(--max-width-xl);
  }
  .container-half {
    max-width: calc(var(--max-width-xl) / 2);
  }
}
@media all and (max-width: 1151.98px) {
  .container {
    max-width: var(--max-width-lg);
  }
  .container-half {
    max-width: calc(var(--max-width-lg) / 2);
  }
}
@media all and (max-width: 991.98px) {
  .container {
    max-width: var(--max-width-md);
  }
  .container-half {
    max-width: calc(var(--max-width-md) / 2);
  }
}
@media all and (max-width: 767.98px) {
  .container,
.container-half {
    max-width: var(--max-width-sm);
    margin: auto;
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media all and (max-width: 575.98px) {
  .container,
.container-half {
    max-width: var(--max-width-xs);
    margin: auto;
    padding-right: 10px;
    padding-left: 10px;
  }
}
@media all and (max-width: 383.98px) {
  .container,
.container-half {
    max-width: 100%;
  }
}
.btn,
.btn:visited,
.btn:active,
.btn:focus {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  border: 1px solid transparent;
  flex-direction: row;
  background-color: #000000;
  color: var(--theme-color);
  padding: 0px 30px;
  font-weight: 500;
  cursor: pointer;
}

.btn img {
  height: 21px;
  display: inline-block;
  margin-right: 30px;
}
.btn:hover {
  background-color: var(--page-color);
}
.btn-lg {
  height: 48px;
  padding: 0px 30px;
  font-size: 10px;
  line-height: normal;
  text-transform: uppercase;
}
.btn-sm {
  min-width: 116px;
  height: 26px;
  padding: 0px 10px;
  font-size: 10px;
  line-height: normal;
}
.btn-primary, .btn-primary:visited {
  background-color: var(--theme-color);
  border-color: var(--theme-color);
  color: var(--page-bg-color);
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:visited:hover, .btn-primary:visited:focus {
  background-color: var(--page-bg-color);
  color: var(--theme-color);
}

.btn.btn-outline,
.btn.btn-outline:visited,
.btn.btn-outline:active,
.btn.btn-outline:focus {
  background-color: transparent;
  border: 1px solid var(--brand-darkblue-color);
  color: var(--brand-darkblue-color);
}

.btn.btn-outline:hover {
  background-color: #ffffff20;
}

@media all and (max-width: 575.98px) {
  .btn {
    font-size: 10px;
    padding: 0px 15px;
    height: 30px;
  }
}
.dropdown[data-dropdown=true] > span:after {
  top: 8px;
  transform: rotate(-135deg);
}
.dropdown[data-dropdown=true] .dropdown {
  position: relative;
  display: inline-block;
}
.dropdown[data-dropdown=true] .dropdown-menu {
  display: flex;
}
.dropdown > span {
  position: relative;
}
.dropdown-menu {
  display: none;
  flex-direction: row;
  flex-wrap: wrap;
  position: absolute;
  top: 100%;
  left: 0px;
  filter: drop-shadow(-0.105px 2.998px 5px rgba(207, 203, 196, 0.4));
  background-color: #ffffff;
  border: 1px solid #f3f5f6;
  padding: 35px 0px;
  width: 860px;
  max-width: 100vw;
  max-height: calc(100vh - 110px);
  overflow: auto;
  -webkit-animation: dropdownShow 0.5s forwards;
          animation: dropdownShow 0.5s forwards;
  z-index: 999;
}
.dropdown-item {
  height: 76px;
  width: 50%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 55px;
  font-size: 12px;
  color: #202020;
  font-weight: 300;
  text-decoration: none;
}
.dropdown-item:hover {
  color: #202020;
  cursor: pointer;
  text-decoration: none;
}
.dropdown-item:hover .header__dropdown-t {
  text-decoration: underline;
}
.dropdown-item:hover.soon {
  cursor: default;
}
.dropdown-item:hover.soon .header__dropdown-t {
  text-decoration: none;
}
.dropdown-item:last-child {
  border: none;
}
.dropdown-icon {
  position: relative;
  min-width: 30px;
  height: 100%;
  padding-right: 15px;
  font-size: 24px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
.dropdown-icon span {
  position: absolute;
  top: -10px;
  right: 10px;
  border-radius: 99px;
  color: var(--theme-color);
  padding: 2px 5px;
  font-size: 10px;
  background-color: #fff;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.1);
}
.dropdown-content {
  width: 100%;
}
.dropdown-content h3 {
  position: relative;
  display: inline-block;
  font-size: 12px;
  color: #202020;
  font-weight: 700;
  white-space: nowrap;
  margin: 0;
  transition: all 0.3s;
  text-decoration: none;
}
.dropdown-content h3.soon::before {
  position: absolute;
  top: 0px;
  left: 100%;
  margin-left: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  content: "soon";
  width: 27px;
  height: 12px;
  border-radius: 4px;
  background-color: #fcd064;
  border: 0.95px solid #000000;
  font-size: 6px;
  line-height: 10px;
  color: #2d2e2e;
  font-weight: 700;
  text-transform: uppercase;
}
.dropdown-content p {
  margin: 0px;
  font-size: 12px;
  transition: all 0.3s;
}
@media all and (max-width: 991.98px) {
  .dropdown-menu {
    width: 430px;
  }
  .dropdown-item {
    width: 100%;
  }
  .dropdown-item:nth-child(1) {
    order: 1;
  }
  .dropdown-item:nth-child(3) {
    order: 2;
  }
  .dropdown-item:nth-child(5) {
    order: 3;
  }
  .dropdown-item:nth-child(7) {
    order: 4;
  }
  .dropdown-item:nth-child(2) {
    order: 5;
  }
  .dropdown-item:nth-child(4) {
    order: 6;
  }
  .dropdown-item:nth-child(6) {
    order: 7;
  }
  .dropdown-item:nth-child(8) {
    order: 8;
  }
  .dropdown-content .h3 {
    font-size: 12px;
  }
  .dropdown-content p {
    font-size: 11px;
  }
}
@media all and (max-width: 575.98px) {
  .dropdown-menu {
    width: 100%;
  }
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes fadeInUpSm {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUpSm {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@-webkit-keyframes fadeInLeftSm {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInLeftSm {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@-webkit-keyframes fadeInRightSm {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRightSm {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@-webkit-keyframes fadeInBot {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInBot {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes fadeInBotSm {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInBotSm {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes fadeInBotLg {
  from {
    opacity: 0;
    transform: translateY(-500px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInBotLg {
  from {
    opacity: 0;
    transform: translateY(-500px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.scroll-anim {
  opacity: 0;
}

.animated {
  opacity: 0;
}
.animated.fadein {
  -webkit-animation: fadeIn 0.5s 0.2s forwards;
          animation: fadeIn 0.5s 0.2s forwards;
}
.animated.fadeinup {
  -webkit-animation: fadeInUp 0.5s 0.2s forwards;
          animation: fadeInUp 0.5s 0.2s forwards;
}
.animated.fadeinleft {
  -webkit-animation: fadeInLeft 0.5s 0.2s forwards;
          animation: fadeInLeft 0.5s 0.2s forwards;
}
.animated.fadeinright {
  -webkit-animation: fadeInRight 0.5s 0.2s forwards;
          animation: fadeInRight 0.5s 0.2s forwards;
}
.animated.fadeinbot {
  -webkit-animation: fadeInBot 0.5s 0.2s forwards;
          animation: fadeInBot 0.5s 0.2s forwards;
}
.animated.fadeinup-sm {
  -webkit-animation: fadeInUpSm 1s 0.2s forwards;
          animation: fadeInUpSm 1s 0.2s forwards;
}
.animated.fadeinleft-sm {
  -webkit-animation: fadeInLeftSm 1s 0.2s forwards;
          animation: fadeInLeftSm 1s 0.2s forwards;
}
.animated.fadeinright-sm {
  -webkit-animation: fadeInRightSm 1s 0.2s forwards;
          animation: fadeInRightSm 1s 0.2s forwards;
}
.animated.fadeinbot-sm {
  -webkit-animation: fadeInBotSm 1s 0.2s forwards;
          animation: fadeInBotSm 1s 0.2s forwards;
}
.animated.fadeinbot-lg {
  -webkit-animation: fadeInBotLg 2s 0.5s forwards;
          animation: fadeInBotLg 2s 0.5s forwards;
}
.animated.zoomin {
  -webkit-animation: zoomIn 0.5s 0.2s forwards;
          animation: zoomIn 0.5s 0.2s forwards;
}

.a-d-1 {
  -webkit-animation-delay: 0.1s !important;
          animation-delay: 0.1s !important;
}

.a-d-2 {
  -webkit-animation-delay: 0.15s !important;
          animation-delay: 0.15s !important;
}

.a-d-3 {
  -webkit-animation-delay: 0.2s !important;
          animation-delay: 0.2s !important;
}

.a-d-4 {
  -webkit-animation-delay: 0.25s !important;
          animation-delay: 0.25s !important;
}

.a-d-5 {
  -webkit-animation-delay: 0.3s !important;
          animation-delay: 0.3s !important;
}

.a-d-6 {
  -webkit-animation-delay: 0.35s !important;
          animation-delay: 0.35s !important;
}

.a-d-7 {
  -webkit-animation-delay: 0.4s !important;
          animation-delay: 0.4s !important;
}

.a-d-8 {
  -webkit-animation-delay: 0.45s !important;
          animation-delay: 0.45s !important;
}

.a-d-9 {
  -webkit-animation-delay: 0.5s !important;
          animation-delay: 0.5s !important;
}

.a-d-10 {
  -webkit-animation-delay: 0.55s !important;
          animation-delay: 0.55s !important;
}

.a-d-11 {
  -webkit-animation-delay: 0.6s !important;
          animation-delay: 0.6s !important;
}

.a-d-12 {
  -webkit-animation-delay: 0.65s !important;
          animation-delay: 0.65s !important;
}

.a-d-13 {
  -webkit-animation-delay: 0.7s !important;
          animation-delay: 0.7s !important;
}

@-webkit-keyframes blockIcon1 {
  from {
    background-color: var(--theme-color);
  }
  19% {
    background-color: var(--theme-color);
  }
  20% {
    background-color: #00000014;
  }
  80% {
    background-color: #00000014;
  }
  to {
    background-color: var(--theme-color);
  }
}

@keyframes blockIcon1 {
  from {
    background-color: var(--theme-color);
  }
  19% {
    background-color: var(--theme-color);
  }
  20% {
    background-color: #00000014;
  }
  80% {
    background-color: #00000014;
  }
  to {
    background-color: var(--theme-color);
  }
}
@-webkit-keyframes blockIcon2 {
  from {
    background-color: #00000014;
  }
  19% {
    background-color: #00000014;
  }
  20% {
    background-color: var(--theme-color);
  }
  39% {
    background-color: var(--theme-color);
  }
  40% {
    background-color: #00000014;
  }
  to {
    background-color: #00000014;
  }
}
@keyframes blockIcon2 {
  from {
    background-color: #00000014;
  }
  19% {
    background-color: #00000014;
  }
  20% {
    background-color: var(--theme-color);
  }
  39% {
    background-color: var(--theme-color);
  }
  40% {
    background-color: #00000014;
  }
  to {
    background-color: #00000014;
  }
}
@-webkit-keyframes blockIcon3 {
  from {
    background-color: #00000014;
  }
  19% {
    background-color: #00000014;
  }
  20% {
    background-color: #00000014;
  }
  39% {
    background-color: #00000014;
  }
  40% {
    background-color: var(--theme-color);
  }
  59% {
    background-color: var(--theme-color);
  }
  60% {
    background-color: #00000014;
  }
  to {
    background-color: #00000014;
  }
}
@keyframes blockIcon3 {
  from {
    background-color: #00000014;
  }
  19% {
    background-color: #00000014;
  }
  20% {
    background-color: #00000014;
  }
  39% {
    background-color: #00000014;
  }
  40% {
    background-color: var(--theme-color);
  }
  59% {
    background-color: var(--theme-color);
  }
  60% {
    background-color: #00000014;
  }
  to {
    background-color: #00000014;
  }
}
@-webkit-keyframes blockIcon4 {
  from {
    background-color: #00000014;
  }
  59% {
    background-color: #00000014;
  }
  60% {
    background-color: var(--theme-color);
  }
  79% {
    background-color: var(--theme-color);
  }
  80% {
    background-color: #00000014;
  }
  to {
    background-color: #00000014;
  }
}
@keyframes blockIcon4 {
  from {
    background-color: #00000014;
  }
  59% {
    background-color: #00000014;
  }
  60% {
    background-color: var(--theme-color);
  }
  79% {
    background-color: var(--theme-color);
  }
  80% {
    background-color: #00000014;
  }
  to {
    background-color: #00000014;
  }
}
@-webkit-keyframes dropdownShow {
  from {
    transform: translateY(10px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes dropdownShow {
  from {
    transform: translateY(10px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.pricing__required {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.pricing__required-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-right: 20px;
  font-size: 12px;
  font-weight: 700;
}
.pricing__required-item:last-child {
  margin-right: 0px;
}
.pricing__required-item-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 19px;
  height: 19px;
  border-radius: 9px;
  background-color: #5cf7ae;
  border: 1px solid #000000;
  margin-right: 5px;
}
.pricing__required-item-icon img {
  height: 7px;
}

.pricing {
  position: relative;
  display: block;
  background-color: transparent;
  min-height: 100vh;
  padding-top: 70px;
}
.pricing__body {
  width: 100%;
  margin: 0 auto;
  min-height: calc(100vh - 90px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-bottom: 90px;
  padding-left: 100px;
}
.pricing__desk {
  margin-top: 25px;
  text-align: center;
  margin-bottom: 30px;
}
.pricing__desk h1 {
  margin-bottom: 10px;
}
.pricing__desk h3 {
  font-size: 18px;
  font-weight: 300;
}
.pricing__desk p {
  font-size: 18px;
  font-weight: 400;
}
.pricing__cards {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.pricing__cards .card {
  width: 380px;
  background-color: #f5f5f5;
  border: 1px solid black;
  display: flex;
  flex-direction: column;
}
.pricing__cards .card-1 {
  height: 490px;
  top: -20px;
  right: 400px;
}
.pricing__cards .card-2 {
  height: 550px;
  top: -20px;
  right: 400px;
}
.pricing__cards .card-3 {
  height: 550px;
  top: -20px;
  right: 400px;
}
.pricing__cards .card-background-1 {
  width: 380px;
  height: auto;
  background-color: white;
  border: 1px solid black;
}
.pricing__cards .card-background-2 {
  width: 380px;
  height: auto;
  background-color: white;
  border: 1px solid black;
}
.pricing__cards .card-background-3 {
  width: 380px;
  height: auto;
  background-color: white;
  border: 1px solid black;
}
.pricing__cards .cards {
  display: flex;
  margin-right: -327px;
  left: 40px;
}
.pricing__cards .eclipse {
  width: 19px;
  height: 19px;
  border: 1px solid black;
  border-radius: 20px;
  background-color: #5cf7ae;
  margin-right: 20px;
}
.pricing__cards .eclipse img {
  margin: 3px;
}
.pricing__cards .title {
  display: flex;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  margin-top: 71px;
  margin-bottom: 17px;
}
.pricing__cards .subtitle {
  display: flex;
  justify-content: center;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 71px;
}
.pricing__cards .item {
  margin-left: 50px;
  display: flex;
  justify-content: flex-start;
  margin-bottom: 20px;
}
.pricing__cards .button {
  display: flex;
  justify-content: center;
  margin: 50px 0;
}
.pricing__cards .button img {
  width: 280px;
}
.pricing__cards .button-text {
  color: white;
  font-weight: 700;
  display: flex;
  justify-content: center;
  bottom: 29px;
  margin-top: -50px;
}
@media all and (max-width: 1100px) {
  .pricing__cards {
    display: block;
  }
  .pricing__card {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .pricing__card.mid {
    margin-top: 30px;
  }
  .pricing__toggle-btn span {
    top: -30px;
    right: -30px;
  }
}
.pricing button {
  cursor: pointer;
}
.pricing .btn {
  margin: 20px 55px 0px;
  min-width: 233px;
}

.page-life-time-deal .first-screen {
  flex-direction: column;
  padding-top: 100px;
  padding-bottom: 100px;
  height: auto;
}
.page-life-time-deal .first-screen-trial.text-active {
  background: var(--brand-blue-color);
  border: 1px solid var(--page-color);
  color: var(--page-color);
  border-radius: 30px;
  padding: 15px 25px;
}
.page-life-time-deal .first-screen-offer {
  max-width: 700px;
  width: 100%;
  border: 1px solid #000000;
  background-color: var(--theme-color);
  box-shadow: 15px 15px 0px #000000;
  text-align: center;
  padding: 30px 100px;
  margin-top: 50px;
}
.page-life-time-deal .first-screen-offer h2, .page-life-time-deal .first-screen-offer .h2 {
  font-weight: 700;
}
.page-life-time-deal .first-screen-offer .pricing__required {
  flex-direction: row;
  flex-wrap: wrap;
  margin-top: 50px;
  margin-bottom: 10px;
}
.page-life-time-deal .first-screen-offer .pricing__required-item {
  margin: auto;
  width: 50%;
  font-weight: 400;
  line-height: 40px;
  font-size: 16px;
}
.page-life-time-deal .first-screen .container {
  flex-direction: column;
}
.page-life-time-deal .first-screen .container > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.page-life-time-deal .first-screen .container > div:first-child h1 {
  margin-top: 100px;
  font-size: 40px;
  font-weight: 900;
}
.page-life-time-deal .first-screen .container > div > h1 {
  margin-top: 10px;
  margin-bottom: 10px;
  text-align: center;
}
.page-life-time-deal .first-screen .container > div > p {
  margin-top: 5px;
  margin-bottom: 5px;
}
.page-life-time-deal .first-screen .container > div > p.text-active {
  margin: 50px auto;
}
.page-life-time-deal .first-screen h1 {
  display: flex;
  flex-wrap: wrap;
}
.page-life-time-deal .first-screen h1 > span {
  max-height: 40px;
  border-radius: 20px;
  border: 2px solid #000000;
  font-size: 14px;
  line-height: 15px;
  font-weight: 700;
  padding: 10px 25px;
  margin: auto;
  margin-left: 20px;
}
.page-life-time-deal .pricing {
  background-color: transparent;
}
.page-life-time-deal .pricing .h1 {
  font-weight: 700;
}
.page-life-time-deal .pricing__desk {
  width: 100%;
}
.page-life-time-deal .pricing__oldprice {
  text-decoration: none;
}
.page-life-time-deal .pricing__price-info {
  text-decoration: line-through;
}
.page-life-time-deal .pricing__card-t {
  width: 150px;
}
.page-life-time-deal .roadmap .container {
  background: transparent;
}
.page-life-time-deal .roadmap .container p {
  margin-left: auto;
  margin-right: auto;
}
.page-life-time-deal .life-time-deal-left {
  margin-top: 50px;
  margin-bottom: 40px;
  margin-left: calc(50% - 99px);
  width: 228px;
  height: 228px;
  border: 1px solid #000000;
}
.page-life-time-deal .life-time-deal-left > div {
  position: absolute;
  width: 100%;
  height: 100%;
  top: -15px;
  left: -15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-items: center;
  background: var(--theme-color);
  border: 1px solid var(--brand-orange-color);
}
.page-life-time-deal .life-time-deal-left > div p {
  font-size: 55px;
  margin-bottom: 10px;
}
.page-life-time-deal .life-time-deal-left > div small {
  margin-bottom: auto;
}
.page-life-time-deal .life-time-deal-intro {
  background: var(--theme-color);
  padding-top: 70px;
  padding-bottom: 70px;
  margin-bottom: 100px;
}
.page-life-time-deal .life-time-deal-intro .container .h1 {
  text-align: center;
  font-weight: 700;
}
.page-life-time-deal .life-time-deal-intro .container p {
  text-align: center;
}
.page-life-time-deal .life-time-deal-intro .container > div {
  background: var(--brand-blue-color);
  max-width: 800px;
  width: 100%;
  min-height: 420px;
  margin: 50px auto 0px auto;
  padding: 20px;
}
.page-life-time-deal .life-time-deal-intro .container > div iframe {
  width: 100%;
  height: 390px;
}
.page-life-time-deal .run-line {
  width: 100%;
  overflow: hidden;
  margin: 100px auto;
}
.page-life-time-deal .run-line > div {
  width: calc(100% + 120px);
  height: 30px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 60 30'%3E%3Ctext x='0' y='25' style='font-size: 30px'%3E💸%3C/text%3E%3C/svg%3E");
  -webkit-animation: scroll 500ms infinite linear;
          animation: scroll 500ms infinite linear;
}
.page-life-time-deal #pay {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: #00000040;
}
.page-life-time-deal #pay > div {
  position: fixed;
  left: 50%;
  top: 100px;
  width: 100%;
  margin-left: -170px;
  max-width: 340px;
  min-height: 100px;
  background: var(--page-bg-color);
  filter: drop-shadow(0px 3px 5px rgba(0, 0, 0, 0.4));
  padding: 30px;
  text-align: center;
}
.page-life-time-deal #pay > div .btn {
  margin-top: 30px;
}
@media all and (max-width: 767.98px) {
  .page-life-time-deal .first-screen-offer {
    padding: 30px 20px;
  }
}
@media all and (max-width: 575.98px) {
  .page-life-time-deal .first-screen-offer .pricing__required {
    flex-direction: column;
  }
  .page-life-time-deal .first-screen-offer .pricing__required-item {
    width: 100%;
  }
  .page-life-time-deal .first-screen-offer .pricing__required-item:nth-child(1) {
    order: 1;
  }
  .page-life-time-deal .first-screen-offer .pricing__required-item:nth-child(2) {
    order: 7;
  }
  .page-life-time-deal .first-screen-offer .pricing__required-item:nth-child(3) {
    order: 2;
  }
  .page-life-time-deal .first-screen-offer .pricing__required-item:nth-child(4) {
    order: 8;
  }
  .page-life-time-deal .first-screen-offer .pricing__required-item:nth-child(5) {
    order: 3;
  }
  .page-life-time-deal .first-screen-offer .pricing__required-item:nth-child(6) {
    order: 9;
  }
  .page-life-time-deal .first-screen-offer .pricing__required-item:nth-child(7) {
    order: 4;
  }
  .page-life-time-deal .first-screen-offer .pricing__required-item:nth-child(8) {
    order: 10;
  }
  .page-life-time-deal .first-screen-offer .pricing__required-item:nth-child(9) {
    order: 5;
  }
  .page-life-time-deal .first-screen-offer .pricing__required-item:nth-child(10) {
    order: 11;
  }
  .page-life-time-deal .first-screen-offer .pricing__required-item:nth-child(11) {
    order: 6;
  }
  .page-life-time-deal .first-screen-offer .pricing__required-item:nth-child(12) {
    order: 12;
  }
}

@-webkit-keyframes scroll {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-60px, 0);
  }
}

@keyframes scroll {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-60px, 0);
  }
}
.quote {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.quote__desk {
  margin-top: 150px;
  text-align: center;
  margin-bottom: 50px;
}
.quote__desk h1 {
  margin-bottom: 10px;
}
.quote__desk p {
  font-size: 18px;
  font-weight: 400;
}
.quote__input {
  margin-bottom: 200px;
  margin-left: 8%;
  margin-right: 9%;
}
.quote__input-text {
  width: 100%;
  padding: 20px 30px;
  border: 1px solid black;
  margin-bottom: 30px;
  font-size: 16px;
}
.quote__input .title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 40px;
}
.quote__input .radio {
  display: flex;
  justify-content: space-between;
  margin-bottom: 130px;
}
.quote__input .radio label {
  width: 25%;
}
.quote__input .radio .custom-radio {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.quote__input .radio .custom-radio + label {
  display: inline-flex;
  align-items: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  font-size: 16px;
  font-weight: 400;
}
.quote__input .radio .custom-radio + label::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 28px;
  border: 1px solid black;
  margin-right: 10px;
}
.quote__input .radio .custom-radio:checked + label::before {
  background-position: center center;
  background-image: url("/img/blue-block.svg");
  background-repeat: no-repeat;
}
.quote__input .radio .employees {
  top: 30px;
  font-size: 14px;
}
.quote__input .radio .employees-1 {
  margin-left: -113px;
  left: 54px;
}
.quote__input .radio .employees-2 {
  margin-left: -131px;
  left: -26px;
}
.quote__input .radio .employees-3 {
  margin-left: -117px;
  left: -54px;
}
.quote__input textarea {
  resize: none;
  width: 100%;
  padding: 20px 30px;
  font-size: 16px;
  border: 1px solid black;
  margin-bottom: 40px;
}
.quote__input .button {
  display: flex;
  justify-content: center;
  margin-top: 60px;
  margin-bottom: 100px;
}
.quote__input .button button {
  border: 0;
  background: transparent;
}
.quote__input .button .button-text {
  margin-left: -111px;
  left: -127px;
  bottom: 18px;
  color: white;
  font-size: 14px;
  font-weight: 700;
}

.agents {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.agents__desk {
  margin-top: 150px;
  text-align: center;
  margin-bottom: 50px;
}
.agents__desk h1 {
  margin-bottom: 10px;
}
.agents__desk p {
  font-size: 18px;
  font-weight: 400;
}
.agents .agent {
  display: flex;
}
.agents .agent-block {
  border: 1px solid black;
  margin-bottom: 30px;
}
.agents .agent img {
  width: 100px;
  height: 100px;
  margin: 30px;
}
.agents .agent .status {
  width: 20px;
  height: 20px;
  border: 4px solid white;
  border-radius: 16px;
  margin-left: -1px;
  left: -58px;
  top: 111px;
}
.agents .agent .status-online {
  background: #0fb70f;
}
.agents .agent .status-offline {
  background: #e3e3e3;
}
.agents .agent .info {
  display: flex;
  flex-direction: column;
}
.agents .agent .info .name {
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 700;
}
.agents .agent .info .position {
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 300;
}
.agents .agent .info .description {
  font-size: 12px;
  font-weight: 400;
  margin-bottom: 10px;
  max-width: 55em;
}
.agents .agent .tags {
  display: flex;
}
.agents .agent .tags .tag {
  font-size: 12px;
  background: #e3e3e3;
  border-radius: 20px;
  margin-right: 15px;
  padding: 3px 20px;
  margin-bottom: 10px;
}
.agents .agent .button {
  margin-left: auto;
  margin-right: 40px;
  margin-top: 28px;
  padding: 14px 30px;
  height: 50px;
  background: #4a89ff;
  align-items: center;
  color: white;
  font-weight: 700;
  font-size: 14px;
}
.agents .agent-rating {
  margin-top: 20px;
  margin-bottom: 10px;
  display: flex;
  font-size: 10px;
}
.agents .agent-rating .item {
  margin-left: 40px;
}
.agents .agent-rating .bold {
  font-weight: 700;
  margin-right: 15px;
}
.agents .agent-rating .country {
  margin-left: auto;
  margin-right: 30px;
  font-weight: 700;
}
.agents .agent-rating .mark {
  margin-right: 20px;
  font-weight: 700;
}

header {
  position: fixed;
  width: 100%;
  height: 90px;
  top: 0;
  left: 0;
  z-index: 99;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}
header .container {
  padding: 0px 0px;
}
header .header {
  width: 100%;
  height: 90px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .header-control {
  position: static;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .header-attention {
  width: 100%;
  background-color: var(--brand-blue-color);
  text-align: center;
  padding: 10px;
}
header .header-attention a {
  font-weight: 500;
  cursor: pointer;
}
header .header-attention a:hover {
  text-decoration: underline;
}
header .header .main-menu {
  position: static;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
}
header .header .main-menu > a, header .header .main-menu > div {
  margin-right: 40px;
  cursor: pointer;
}
header .header .main-menu > a:hover, header .header .main-menu > div:hover {
  text-decoration: underline;
}
header .header .main-menu > a .dropdown-menu a:hover h3, header .header .main-menu > div .dropdown-menu a:hover h3 {
  text-decoration: underline;
}
header .dropdown {
  position: static;
}
header .dropdown-menu {
  left: auto;
  right: 45px;
}
@media all and (max-width: 767.98px) {
  header .dropdown-menu {
    right: 20px;
  }
}
@media all and (max-width: 575.98px) {
  header {
    height: 70px;
  }
  header .header .main-menu {
    font-size: 10px;
  }
  header .dropdown-menu {
    max-width: calc(100% - 20px);
    right: 10px;
  }
}

.first-screen {
  display: flex;
  align-items: center;
  min-height: 700px;
  height: 90vh;
  background-color: var(--theme-color);
  max-width: var(--max-width-xxl);
  margin: auto;
}
.first-screen-trial {
  margin-top: 20px;
}
.first-screen-trial img {
  width: 18px;
  margin-top: -5px;
}
.first-screen__image-set {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 472px;
  left: -108px;
}
.first-screen__image-set-wrapper {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 620px;
  height: 455px;
}
.first-screen__image-set img {
  position: absolute;
}
.first-screen__image-set-img1 {
  top: 0px;
  left: 118px;
  width: 400px;
}
.first-screen__image-set-img2 {
  top: 83px;
  left: 0px;
  width: 168px;
}
.first-screen__image-set-img3 {
  top: 339px;
  left: 49px;
  width: 132px;
}
.first-screen__image-set-img4 {
  top: 100px;
  right: 12px;
  width: 106px;
}
.first-screen__image-set-img5 {
  top: 85px;
  right: -8px;
  width: 427px;
}
.first-screen > .container {
  display: flex;
  flex-direction: row;
}
.first-screen > .container > div {
  position: relative;
}
.first-screen .btn {
  margin-top: 50px;
  min-width: 335px;
}
.first-screen .title {
  font-size: 55px;
  margin-bottom: 25px;
  margin-top: 200px;
}
.first-screen .subtitle {
  margin-top: 0;
  font-weight: bold;
  font-size: 28px;
}
.first-screen span {
  font-weight: 600;
}
.first-screen .border-text {
  border: 1px solid black;
  border-radius: 40px;
  padding: 8px 20px;
  margin-left: 12px;
}
.first-screen .button-text {
  color: white;
  right: 252px;
  top: -18px;
}
.first-screen p {
  margin-bottom: 65px;
}
@media all and (max-width: 1343.98px) {
  .first-screen__image-set-wrapper {
    transform: scale(0.8) translate(-40px, 0px);
  }
}
@media all and (max-width: 1151.98px) {
  .first-screen__image-set-wrapper {
    transform: scale(0.6) translate(-170px, 0px);
  }
}
@media all and (max-width: 991.98px) {
  .first-screen__image-set-wrapper {
    transform: scale(0.5) translate(-300px, 0px);
  }
}
@media all and (max-width: 767.98px) {
  .first-screen {
    display: block;
    min-height: 1000px;
    padding-top: 100px;
  }
  .first-screen > .container {
    display: flex;
    flex-direction: column;
  }
  .first-screen > .container > div {
    width: 100%;
  }
  .first-screen .btn {
    min-width: 290px;
  }
  .first-screen .btn img {
    height: 14px;
  }
  .first-screen__image-set-wrapper {
    transform: scale(0.8) translate(-80px, 0px);
  }
}
@media all and (max-width: 575.98px) {
  .first-screen__image-set-wrapper {
    transform: scale(0.6) translate(-220px, 0px);
  }
}
@media all and (max-width: 383.98px) {
  .first-screen__image-set-wrapper {
    transform: scale(0.4) translate(-360px, 0px);
  }
}

.equation {
  text-align: center;
  margin: 100px auto;
  font-family: "Dancing Script", cursive;
  font-size: 36px;
}

.rating {
  position: relative;
  margin: 50px 0px 0px 0px;
  padding: 0px;
  z-index: 1;
}

.rating-statistics {
  display: flex;
  flex-direction: row;
  justify-content: stretch;
  align-items: stretch;
  flex-wrap: wrap;
  font-weight: 300;
  padding: 0px 20px;
}
.rating-statistics h2 {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 70px;
  margin-bottom: 15px;
}
.rating-statistics > * {
  margin: 0px auto;
  width: 20%;
  padding: 25px;
}
.rating-statistics > *:first-child {
  width: 40%;
}
@media all and (max-width: 991.98px) {
  .rating-statistics > * {
    width: 50%;
  }
  .rating-statistics > *:first-child {
    width: 50%;
  }
}
@media all and (max-width: 767.98px) {
  .rating-statistics {
    padding: 0px;
  }
  .rating-statistics > * {
    width: 100%;
    max-width: 375px;
  }
  .rating-statistics > *:first-child {
    width: 100%;
  }
}

.rating-overall {
  max-width: 1440px;
  display: flex;
  flex-direction: row;
  justify-content: stretch;
  align-items: stretch;
  flex-wrap: wrap;
  font-weight: 300;
  margin: 50px auto;
}
.rating-overall h2 {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 70px;
  margin: 25px 20px;
}
.rating-overall strong {
  margin: auto;
  font-weight: 700;
}
.rating-overall > * {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.rating-overall .rating-social {
  margin: 25px 0px;
  display: flex;
  flex-direction: row-reverse;
}
.rating-overall .rating-social img {
  height: 32px;
  max-width: 32px;
  margin-left: -5px;
}
.rating-overall .rating-star {
  margin: 25px 0px;
}
.rating-overall .rating-star img {
  height: 20px;
  max-width: 20px;
}
@media all and (max-width: 767.98px) {
  .rating-overall > * {
    flex-direction: column;
    align-items: center;
  }
}

.quotes {
  background-color: var(--footer-color);
  margin: 100px 0px;
}
.quotes .container {
  padding: 0px 45px;
}
.quotes-set {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-content: center;
}
.quotes-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  min-width: 30%;
  margin: 50px 10px;
  padding: 0px;
}
.quotes-item::after {
  display: none;
}
.quotes-item-photo {
  margin: 7px 25px 0px 7px;
  width: 45px;
  min-width: 45px;
  height: 45px;
  border: 1px solid #000000;
  background-color: var(--brand-orange-color);
}
.quotes-item-photo img:first-child {
  position: absolute;
  top: -7px;
  left: -7px;
  width: 45px;
}
.quotes-item-photo img:last-child {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 18px;
}
.quotes-item-content-description {
  margin: 5px 0px;
  line-height: 22px;
  font-style: italic;
  color: #381907;
  font-weight: 300;
}
.quotes-item-content-title {
  margin: 5px 0px;
  color: #381907;
  font-weight: 700;
}
@media all and (max-width: 1151.98px) {
  .quotes-item {
    min-width: 25%;
    margin: 50px 0px;
  }
}
@media all and (max-width: 991.98px) {
  .quotes-set {
    flex-direction: column;
    justify-content: center;
  }
}
@media all and (max-width: 575.98px) {
  .quotes .container {
    padding: 0px;
  }
}

.why {
  margin: 100px 0px;
}
.why .container {
  padding: 0px 45px;
}
.why .container .h3 {
  margin-top: -25px;
  font-size: 18px;
  font-weight: 500;
}
.why-head {
  text-align: center;
}
.why-set {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: center;
  margin: 40px 0px;
}
.why-item {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 10px;
  min-width: 179px;
  width: 179px;
  height: 79px;
  background-color: var(--brand-darkblue-color);
  border: 1px solid #000000;
  cursor: default;
}
.why-item p {
  font-size: 18px;
  color: white;
  font-weight: 700;
}
@media all and (max-width: 575.98px) {
  .why .container {
    padding: 0px;
  }
}

.how {
  display: flex;
  flex-direction: row;
  margin-top: 150px;
}
.how .right-container {
  display: flex;
  flex-direction: column;
}
.how .block {
  padding: 100px;
  margin: 10px 10px 10px 10px;
  background-color: var(--brand-darkblue-color);
  width: 50%;
  height: 600px;
  color: white;
  font-size: 55px;
  font-weight: 700;
}
.how .block-small {
  background-color: var(--brand-darkblue-color);
  width: 39px;
  height: 39px;
  color: white;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
}
.how .block-1 {
  left: 80px;
  top: -51px;
}
.how .block-2 {
  top: -3px;
  left: 80px;
}
.how .block-3 {
  top: 45px;
  left: 80px;
}
.how .block-4 {
  top: 93px;
  left: -40px;
}
.how .vr {
  height: 630px;
  left: 40px;
  top: 29px;
  border-left: 1px solid black;
}
.how hr {
  border: none;
}
.how .hr-1 {
  top: -1px;
  left: 40px;
}
.how .hr-2 {
  top: 47px;
  left: 40px;
}
.how .hr-3 {
  top: 95px;
  left: 40px;
}
.how .hr-4 {
  top: 143px;
  left: 0;
}
.how .text {
  padding: 0;
  display: flex;
  flex-direction: column;
}
.how .text-1 {
  top: 6px;
  left: 80px;
}
.how .text-2 {
  top: 54px;
  left: 80px;
}
.how .text-3 {
  top: 102px;
  left: 80px;
}
.how .text-4 {
  top: 58px;
  left: -639px;
}
.how .title {
  font-weight: 700;
  font-size: 30px;
  margin-bottom: 20px;
}
.how .subtitle {
  font-weight: 500;
  font-size: 18px;
}
.how .subtitle-4 {
  left: 50px;
}

.man {
  display: flex;
}
.man img {
  top: 115px;
}
.man .start .cursive {
  font-family: "Dancing Script", cursive;
  font-size: 36px;
  top: 340px;
  left: 135px;
}
.man .start .button {
  top: 285px;
  left: 199px;
}
.man .start .how-trial {
  top: 410px;
  left: 194px;
}
.man .start .how-trial img {
  width: 18px;
  top: 0;
}
.man .button-text {
  color: white;
  right: 252px;
  top: 97px;
  font-weight: 600;
}

.line {
  top: 115px;
  background-color: var(--brand-darkblue-color);
  height: 15px;
  margin-bottom: 100px;
}

.header-block {
  margin-top: 200px;
  background-color: var(--brand-darkblue-color);
  height: 140px;
}

.faq {
  margin-bottom: 300px;
}
.faq-header {
  font-size: 55px;
  font-weight: 700;
  color: white;
  top: -109px;
}
.faq .block-small {
  background-color: var(--brand-darkblue-color);
  width: 39px;
  height: 39px;
  color: white;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
}
.faq li {
  display: flex;
  font-size: 24px;
  font-weight: 700;
}
.faq .minus {
  top: 14px;
  background-color: var(--brand-darkblue-color);
  height: 4px;
  width: 31px;
  margin-left: auto;
}
.faq .plus {
  left: -17px;
  background-color: var(--brand-darkblue-color);
  height: 31px;
  width: 4px;
}
.faq p {
  font-size: 18px;
  font-weight: 400;
  margin-left: 62px;
  margin-top: -8px;
  max-width: 1000px;
}

.features {
  display: flex;
  flex-direction: column;
}
.features-head {
  margin-bottom: -50px;
  text-align: center;
}
.features-head h1,
.features-head .h1,
.features-head .h2,
.features-head .text {
  text-align: center;
}
.features-head .h2 {
  font-weight: 700;
  margin-bottom: 0px;
}

.feature {
  display: flex;
  flex-direction: row;
  margin-top: 150px;
}
.feature:first-child {
  margin-top: 0px;
}
.feature__image-set, .feature__content {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  height: 720px;
}
.feature__image-set-wrapper, .feature__content-wrapper {
  margin: auto;
  width: 100%;
  height: auto;
  max-width: 360px;
  min-height: 450px;
}
.feature__image-set .container-half, .feature__content .container-half {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.feature__image-set .container-half {
  background-color: var(--brand-darkblue-color);
  border: 1px solid #000000;
}
.feature__image-set img {
  position: absolute;
}
.feature-left .feature__image-set {
  order: 1;
}
.feature-left .feature__image-set .container-half {
  margin-right: 0px;
  padding-right: 0px;
}
.feature-left .feature__content {
  order: 2;
}
.feature-left .feature__content .container-half {
  margin-left: 0px;
  padding-left: 0px;
}
.feature-left .feature__content-wrapper {
  padding-left: 40px;
}
.feature-right .feature__image-set {
  order: 2;
}
.feature-right .feature__image-set .container-half {
  margin-left: 0px;
  padding-left: 0px;
}
.feature-right .feature__content {
  order: 1;
}
.feature-right .feature__content .container-half {
  margin-right: 0px;
  padding-right: 0px;
}
.feature-right .feature__content-wrapper {
  padding-right: 40px;
}
@media all and (max-width: 1343.98px) {
  .feature__image-set-wrapper {
    transform: scale(0.8);
  }
}
@media all and (max-width: 1151.98px) {
  .feature__image-set-wrapper {
    transform: scale(0.6);
  }
}
@media all and (max-width: 991.98px) {
  .feature__image-set-wrapper {
    transform: scale(0.4);
  }
}
@media all and (max-width: 767.98px) {
  .feature {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 60px;
  }
  .feature__image-set, .feature__content {
    width: 100%;
  }
  .feature__image-set {
    margin-top: 60px;
  }
  .feature__image-set-wrapper {
    transform: scale(0.8);
  }
  .feature-right .feature__image-set-wrapper, .feature-right .feature__content-wrapper, .feature-left .feature__image-set-wrapper, .feature-left .feature__content-wrapper {
    padding: 0px;
  }
  .feature-right .feature__image-set .container-half, .feature-right .feature__content .container-half, .feature-left .feature__image-set .container-half, .feature-left .feature__content .container-half {
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 20px;
    padding-left: 20px;
  }
  .feature-left .feature__image-set {
    order: 2;
  }
  .feature-left .feature__content {
    order: 1;
  }
  .feature-right .feature__image-set {
    order: 2;
  }
  .feature-right .feature__content {
    order: 1;
  }
}
@media all and (max-width: 575.98px) {
  .feature__image-set-wrapper {
    transform: scale(0.6);
  }
  .feature__image-set, .feature__content {
    min-height: 450px;
    height: auto;
  }
}
@media all and (max-width: 383.98px) {
  .feature__image-set-wrapper {
    transform: scale(0.4);
  }
  .feature-right .feature__content .container-half, .feature-left .feature__content .container-half {
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 10px;
    padding-left: 10px;
  }
}

.feature.feature-builder .block-icon.animated div:nth-child(1) {
  -webkit-animation: blockIcon1 1s 1s forwards;
          animation: blockIcon1 1s 1s forwards;
}
.feature.feature-builder .block-icon.animated div:nth-child(2) {
  -webkit-animation: blockIcon2 1s 1s forwards;
          animation: blockIcon2 1s 1s forwards;
}
.feature.feature-builder .block-icon.animated div:nth-child(4) {
  -webkit-animation: blockIcon3 1s 1s forwards;
          animation: blockIcon3 1s 1s forwards;
}
.feature.feature-builder .block-icon.animated div:nth-child(3) {
  -webkit-animation: blockIcon4 1s 1s forwards;
          animation: blockIcon4 1s 1s forwards;
}
.feature.feature-builder .feature__image-set-img1 {
  top: -50px;
  left: -44px;
  width: 447px;
}
.feature.feature-builder .feature__image-set-img2 {
  top: -30px;
  left: -24px;
  width: 407px;
}

.feature.feature-personalization .block-icon.animated div:nth-child(2) {
  -webkit-animation: blockIcon1 1s 1s forwards;
          animation: blockIcon1 1s 1s forwards;
}
.feature.feature-personalization .block-icon.animated div:nth-child(4) {
  -webkit-animation: blockIcon2 1s 1s forwards;
          animation: blockIcon2 1s 1s forwards;
}
.feature.feature-personalization .block-icon.animated div:nth-child(3) {
  -webkit-animation: blockIcon3 1s 1s forwards;
          animation: blockIcon3 1s 1s forwards;
}
.feature.feature-personalization .block-icon.animated div:nth-child(1) {
  -webkit-animation: blockIcon4 1s 1s forwards;
          animation: blockIcon4 1s 1s forwards;
}
.feature.feature-personalization .feature__image-set-img11 {
  top: -67px;
  left: 0px;
  width: 268px;
}
.feature.feature-personalization .feature__image-set-img12 {
  top: 93px;
  right: 0px;
  width: 200px;
}

.feature.feature-domain .block-icon.animated div:nth-child(4) {
  -webkit-animation: blockIcon1 1s 1s forwards;
          animation: blockIcon1 1s 1s forwards;
}
.feature.feature-domain .block-icon.animated div:nth-child(3) {
  -webkit-animation: blockIcon2 1s 1s forwards;
          animation: blockIcon2 1s 1s forwards;
}
.feature.feature-domain .block-icon.animated div:nth-child(1) {
  -webkit-animation: blockIcon3 1s 1s forwards;
          animation: blockIcon3 1s 1s forwards;
}
.feature.feature-domain .block-icon.animated div:nth-child(2) {
  -webkit-animation: blockIcon4 1s 1s forwards;
          animation: blockIcon4 1s 1s forwards;
}
.feature.feature-domain .feature__image-set-img21 {
  top: 57px;
  left: -36px;
  width: 354px;
}
.feature.feature-domain .feature__image-set-img22 {
  top: 135px;
  right: -56px;
  width: 300px;
}

.feature.feature-editor .block-icon.animated div:nth-child(3) {
  -webkit-animation: blockIcon1 1s 1s forwards;
          animation: blockIcon1 1s 1s forwards;
}
.feature.feature-editor .block-icon.animated div:nth-child(1) {
  -webkit-animation: blockIcon2 1s 1s forwards;
          animation: blockIcon2 1s 1s forwards;
}
.feature.feature-editor .block-icon.animated div:nth-child(2) {
  -webkit-animation: blockIcon3 1s 1s forwards;
          animation: blockIcon3 1s 1s forwards;
}
.feature.feature-editor .block-icon.animated div:nth-child(4) {
  -webkit-animation: blockIcon4 1s 1s forwards;
          animation: blockIcon4 1s 1s forwards;
}
.feature.feature-editor .feature__image-set-img31 {
  top: -50px;
  left: -85px;
  width: 500px;
}
.feature.feature-editor .feature__image-set-img32 {
  top: 13px;
  right: -85px;
  width: 388px;
}
.feature.feature-editor .feature__image-set-img33 {
  top: 340px;
  left: -35px;
  width: 182px;
}

.feature.feature-subscribers .block-icon.animated div:nth-child(1) {
  -webkit-animation: blockIcon1 1s 1s forwards;
          animation: blockIcon1 1s 1s forwards;
}
.feature.feature-subscribers .block-icon.animated div:nth-child(2) {
  -webkit-animation: blockIcon2 1s 1s forwards;
          animation: blockIcon2 1s 1s forwards;
}
.feature.feature-subscribers .block-icon.animated div:nth-child(4) {
  -webkit-animation: blockIcon3 1s 1s forwards;
          animation: blockIcon3 1s 1s forwards;
}
.feature.feature-subscribers .block-icon.animated div:nth-child(3) {
  -webkit-animation: blockIcon4 1s 1s forwards;
          animation: blockIcon4 1s 1s forwards;
}
.feature.feature-subscribers .feature__image-set-img41 {
  top: 57px;
  left: -36px;
  width: 305px;
}
.feature.feature-subscribers .feature__image-set-img42 {
  top: 95px;
  right: -56px;
  width: 140px;
}
.feature.feature-subscribers .feature__image-set-img43 {
  top: 215px;
  right: -15px;
  width: 312px;
}

.feature.feature-plagiarism .block-icon.animated div:nth-child(2) {
  -webkit-animation: blockIcon1 1s 1s forwards;
          animation: blockIcon1 1s 1s forwards;
}
.feature.feature-plagiarism .block-icon.animated div:nth-child(4) {
  -webkit-animation: blockIcon2 1s 1s forwards;
          animation: blockIcon2 1s 1s forwards;
}
.feature.feature-plagiarism .block-icon.animated div:nth-child(3) {
  -webkit-animation: blockIcon3 1s 1s forwards;
          animation: blockIcon3 1s 1s forwards;
}
.feature.feature-plagiarism .block-icon.animated div:nth-child(1) {
  -webkit-animation: blockIcon4 1s 1s forwards;
          animation: blockIcon4 1s 1s forwards;
}
.feature.feature-plagiarism .feature__image-set-img51 {
  top: 225px;
  right: -70px;
  width: 132px;
}
.feature.feature-plagiarism .feature__image-set-img52 {
  top: 89px;
  left: -70px;
  width: 500px;
}

.feature.feature-seo .block-icon.animated div:nth-child(4) {
  -webkit-animation: blockIcon1 1s 1s forwards;
          animation: blockIcon1 1s 1s forwards;
}
.feature.feature-seo .block-icon.animated div:nth-child(3) {
  -webkit-animation: blockIcon2 1s 1s forwards;
          animation: blockIcon2 1s 1s forwards;
}
.feature.feature-seo .block-icon.animated div:nth-child(1) {
  -webkit-animation: blockIcon3 1s 1s forwards;
          animation: blockIcon3 1s 1s forwards;
}
.feature.feature-seo .block-icon.animated div:nth-child(2) {
  -webkit-animation: blockIcon4 1s 1s forwards;
          animation: blockIcon4 1s 1s forwards;
}
.feature.feature-seo .feature__image-set-img61 {
  top: -20px;
  left: -36px;
  width: 256px;
}
.feature.feature-seo .feature__image-set-img62 {
  top: 310px;
  left: -16px;
  width: 184px;
}
.feature.feature-seo .feature__image-set-img63 {
  top: 80px;
  right: -56px;
  width: 256px;
}

.feature.feature-analytics .block-icon.animated div:nth-child(3) {
  -webkit-animation: blockIcon1 1s 1s forwards;
          animation: blockIcon1 1s 1s forwards;
}
.feature.feature-analytics .block-icon.animated div:nth-child(1) {
  -webkit-animation: blockIcon2 1s 1s forwards;
          animation: blockIcon2 1s 1s forwards;
}
.feature.feature-analytics .block-icon.animated div:nth-child(2) {
  -webkit-animation: blockIcon3 1s 1s forwards;
          animation: blockIcon3 1s 1s forwards;
}
.feature.feature-analytics .block-icon.animated div:nth-child(4) {
  -webkit-animation: blockIcon4 1s 1s forwards;
          animation: blockIcon4 1s 1s forwards;
}
.feature.feature-analytics .feature__image-set-img71 {
  top: 57px;
  left: -36px;
  width: 384px;
}
.feature.feature-analytics .feature__image-set-img72 {
  top: 220px;
  right: -50px;
  width: 255px;
}

.about {
  margin-top: 200px;
  display: inline-flex;
}
.about .about__avatar {
  color: white;
  background-color: var(--brand-darkblue-color);
}
.about__review {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  font-size: 11px;
  letter-spacing: 1px;
  line-height: 16px;
  font-weight: 300;
  margin-right: 42px;
  padding: 66px 34px;
}
.about__review-author {
  font-size: 12px;
  letter-spacing: 1px;
  line-height: 16px;
  color: var(--page-color);
  font-weight: 700;
}
.about__review.review1, .about__review.review4 {
  min-width: 554px;
  height: 262px;
  background-color: #ffffff;
  border: 2px solid #000000;
}
.about__review.review2, .about__review.review5 {
  min-width: 326px;
  height: 523px;
  background-color: #f7f9fa;
}
.about__review.review3 {
  min-width: 377px;
  height: 389px;
  background-color: #ffffff;
  border: 10px solid #f3f5f6;
}
.about__avatar {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 33px;
  height: 33px;
  border-radius: 16px;
  background-color: var(--brand-hotpink-color);
  border: 1px solid #000000;
  font-size: 12px;
  letter-spacing: 1px;
  color: #000000;
  font-weight: 500;
}
.about .feature.feature-about .block-icon.animated div:nth-child(1) {
  -webkit-animation: blockIcon1 1s 1s forwards;
          animation: blockIcon1 1s 1s forwards;
}
.about .feature.feature-about .block-icon.animated div:nth-child(2) {
  -webkit-animation: blockIcon2 1s 1s forwards;
          animation: blockIcon2 1s 1s forwards;
}
.about .feature.feature-about .block-icon.animated div:nth-child(4) {
  -webkit-animation: blockIcon3 1s 1s forwards;
          animation: blockIcon3 1s 1s forwards;
}
.about .feature.feature-about .block-icon.animated div:nth-child(3) {
  -webkit-animation: blockIcon4 1s 1s forwards;
          animation: blockIcon4 1s 1s forwards;
}
.about .feature.feature-about .feature__content-wrapper {
  max-width: 400px;
  margin-left: 0px;
}
.about .feature.feature-about .feature__image-set {
  display: flex;
  width: 100%;
  margin-top: -120px;
}
.about .feature.feature-about .feature__image-set .container-half {
  border: 0px;
  background: transparent;
}
.about .btn {
  margin-top: 50px;
  min-width: 335px;
}
@media all and (max-width: 767.98px) {
  .about .feature.feature-about .feature__content-wrapper {
    margin-left: auto;
  }
  .about .feature__image-set {
    margin-top: -120px;
  }
  .about .feature__image-set-wrapper {
    transform: scale(0.7);
  }
  .about .btn {
    min-width: 290px;
  }
}
@media all and (max-width: 575.98px) {
  .about .feature__image-set-wrapper {
    transform: scale(0.5);
  }
}
@media all and (max-width: 383.98px) {
  .about .feature__image-set-wrapper {
    transform: scale(0.4);
  }
}

.cta .feature.feature-cta .block-icon.animated div:nth-child(2) {
  -webkit-animation: blockIcon1 1s 1s forwards;
          animation: blockIcon1 1s 1s forwards;
}
.cta .feature.feature-cta .block-icon.animated div:nth-child(4) {
  -webkit-animation: blockIcon2 1s 1s forwards;
          animation: blockIcon2 1s 1s forwards;
}
.cta .feature.feature-cta .block-icon.animated div:nth-child(3) {
  -webkit-animation: blockIcon3 1s 1s forwards;
          animation: blockIcon3 1s 1s forwards;
}
.cta .feature.feature-cta .block-icon.animated div:nth-child(1) {
  -webkit-animation: blockIcon4 1s 1s forwards;
          animation: blockIcon4 1s 1s forwards;
}
.cta .feature.feature-cta .feature__content-wrapper {
  max-width: 400px;
}
.cta .feature.feature-cta .feature__image-set .container-half {
  border: 0px;
  background: transparent;
}
.cta .feature.feature-cta .feature__image-set img {
  transition: 300ms;
}
.cta .feature.feature-cta .feature__image-set-img91 {
  bottom: -73px;
  left: -70px;
  width: 831px;
}
.cta .button-text {
  color: white;
  right: -87px;
  top: -38px;
  font-weight: 600;
}
.cta .button {
  margin-top: 50px;
  min-width: 335px;
  top: 17px;
}
@media all and (max-width: 991.98px) {
  .cta .feature.feature-cta {
    margin-top: 0px;
  }
}
@media all and (max-width: 767.98px) {
  .cta .feature.feature-cta .feature__image-set-img93 {
    bottom: 460px;
    right: -40px;
  }
  .cta .feature.feature-cta .feature__image-set-img94 {
    bottom: 520px;
    right: -60px;
  }
  .cta .feature.feature-cta .feature__image-set-img95 {
    bottom: 600px;
    right: -120px;
  }
  .cta .btn {
    min-width: 290px;
  }
}

.seo {
  margin-bottom: 100px;
}

.roadmap {
  display: flex;
  align-items: center;
  height: 100vh;
  min-height: 740px;
}
.roadmap > .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-height: 640px;
  background-color: var(--footer-color);
  height: calc(100vh - 150px);
}
.roadmap > .container .h2 {
  margin-bottom: 0px;
  font-weight: 700;
}
.roadmap > .container > p {
  text-align: center;
}
.roadmap-set {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.roadmap-group {
  width: 23%;
}
.roadmap-head {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  text-transform: uppercase;
  height: 45px;
  border-radius: 4px;
  background-color: #fcd064;
  border: 1px solid #000000;
  margin: 15px 0px;
}
.roadmap-item {
  height: 92px;
  border-radius: 4px;
  border: 1px solid #000000;
  padding: 15px 20px;
  margin-bottom: 15px;
}
.roadmap-item strong {
  font-size: 14px;
}
.roadmap-item p {
  margin: auto;
}
@media all and (max-width: 1151.98px) {
  .roadmap {
    height: auto;
    padding-bottom: 70px;
  }
  .roadmap > .container {
    height: auto;
  }
  .roadmap-group {
    width: 48%;
  }
}
@media all and (max-width: 767.98px) {
  .roadmap {
    height: auto;
    min-height: auto;
    max-height: none;
    margin-top: 50px;
  }
}
@media all and (max-width: 575.98px) {
  .roadmap-group {
    width: 100%;
  }
}

.footer {
  background-color: var(--footer-color);
  font-size: 12px;
  color: var(--page-color);
  font-weight: 400;
}
.footer__body {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 50px 100px;
}
.footer__block p {
  margin: 16px 0 30px;
  color: var(--page-color);
}
.footer__logo {
  margin-bottom: 30px;
}
.footer__logo img {
  height: 30px;
}
.footer__menu-t {
  color: var(--page-color);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer__menu {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
.footer__menu-col.m-r {
  margin-right: 60px;
}
.footer__menu-item {
  margin-bottom: 10px;
}
.footer__menu-item a {
  position: relative;
  font-size: 12px;
  color: var(--page-color-opacity);
  text-decoration: none;
}
.footer__menu-item a:hover {
  color: var(--page-color) 40;
  text-decoration: underline;
}
.footer__menu-item a.soon:before {
  position: absolute;
  top: 0px;
  left: 100%;
  margin-left: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  content: "soon";
  width: 27px;
  height: 12px;
  border-radius: 4px;
  background-color: var(--brand-goldenrod-color);
  border: 1px solid #000;
  font-size: 6px;
  line-height: 10px;
  color: var(--page-color);
  font-weight: 700;
  text-transform: uppercase;
}
.footer__menu-item span {
  font-size: 12px;
  border-radius: 99px;
  padding: 2px 5px;
  background-color: var(--page_bg_color);
  color: var(--brand-blue-color);
  margin-left: 20px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
.footer__bottom {
  width: 100%;
  height: 90px;
  padding: 20px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid #00000010;
}
.footer__bottom-item {
  position: relative;
  margin: 0 30px;
}
.footer__bottom-item:first-child:before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  left: -15px;
  width: 5px;
  height: 5px;
  background-color: var(--brand-blue-color);
  transform: translateY(-50%);
}
.footer__bottom-item:last-child {
  color: var(--brand-blue-color);
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer__bottom-item a {
  font-size: 12px;
  color: var(--page-color-opacity);
  text-decoration: none;
}
.footer__bottom-item a:hover {
  color: var(--page-color) 40;
  text-decoration: underline;
}
.footer__bottom-item .icon-copyrights {
  display: block;
  width: 14px;
  height: 14px;
  margin-right: 7px;
}
.footer__bottom-item p {
  margin: auto;
}
.footer__socials a {
  color: var(--brand-blue-color);
  font-size: 16px;
  margin-right: 13px;
  text-decoration: none;
}
.footer__socials a:hover {
  color: var(--page-color);
}
.footer .container {
  padding-left: 10px;
  padding-right: 10px;
}
.footer p {
  font-size: 12px;
}
@media all and (max-width: 1151.98px) {
  .footer__body {
    padding: 50px 40px;
  }
  .footer__menu {
    flex-direction: column;
  }
  .footer__menu-col.m-r {
    margin-right: 0;
  }
}
@media all and (max-width: 767.98px) {
  .footer__body {
    flex-wrap: wrap;
  }
  .footer__block:first-child {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
  }
  .footer__logo {
    margin-bottom: 7px;
    margin-right: 30px;
  }
  .footer__bottom {
    flex-wrap: wrap;
  }
  .footer__socials {
    display: flex;
    justify-content: center;
  }
  .footer__menu, .footer__menu-t {
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media all and (max-width: 575.98px) {
  .footer__block {
    width: 100%;
    margin-bottom: 40px;
  }
  .footer__bottom {
    height: auto;
  }
}

.quotes-item {
  min-width: 25%;
}
.quotes-item-photo {
  background-color: var(--brand-goldenrod-color);
}

.roadmap {
  height: auto;
}
.roadmap > .container {
  height: auto;
}

body {
  font-size: 14px;
}

strong {
  font-weight: 700;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
ul li {
  position: relative;
  margin: 7px 0;
}

.logo img {
  height: 30px;
}
.logo img:last-child {
  height: 24px;
  display: none;
}

hr {
  border: 0px;
  margin: 30px 0;
}
hr:after {
  display: block;
  content: "";
  height: 0px;
  width: 40px;
  border-top: 1px solid var(--page-color);
}

.block-icon {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 22px;
  height: 22px;
}
.block-icon div {
  width: 10px;
  height: 10px;
  background-color: #00000014;
}
.block-icon.soon:after, .block-icon.released:after {
  position: absolute;
  left: 35px;
  top: -2px;
  width: 93px;
  height: 26px;
  border-radius: 4px;
  border: 0.95px solid #000000;
  font-size: 12px;
  color: #2d2e2e;
  font-weight: 700;
  text-align: center;
  left: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.block-icon.soon:after {
  background-color: #ffd06c;
  content: "SOON";
}
.block-icon.released:after {
  background-color: #41f9b3;
  content: "RELEASED";
}

.toggle-expand, .toggle-collapse {
  position: relative;
  height: auto;
  min-height: 0%;
}
.toggle-expand:after, .toggle-collapse:after {
  content: "";
  position: absolute;
  bottom: -15px;
  right: 50%;
  width: 10px;
  height: 10px;
  margin-right: -5px;
  border-right: 1px solid var(--page-color);
  border-bottom: 1px solid var(--page-color);
  transition: all 0.2s;
  transform: rotate(45deg);
}
.toggle-expand {
  min-height: 100%;
}
.toggle-expand:after {
  transform: rotate(-135deg);
}

@media all and (max-width: 767.98px) {
  body {
    font-size: 12px;
  }
}
@media all and (max-width: 575.98px) {
  .logo img:last-child {
    display: block;
  }
  .logo img:first-child {
    display: none;
  }
}
