:root {
  --primary-black-color: #000;
  --primary-white-color: #fff;

  --text-grey-color: #4d4d4d;
  --text-orange-color: #fd8500;

  --main-font-family: "Inter", sans-serif;
  --second-family: "Roboto", sans-serif;
  --third-font-family: "Poppins", sans-serif;

  --accent-color: #52faf3;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

a {
  text-decoration: none;
}

button {
  cursor: pointer;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

iframe {
  border: none;
  display: block;
}

body {
  font-family: var(--main-font-family);
  overflow-x: hidden;
}

/* Utils */
.flex-centered {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.social-link-icon {
  fill: var(--primary-white-color);
}
.social-link-icon:hover {
  fill: var(--accent-color);
  -webkit-transition: fill 0.3s ease, -webkit-backdrop-filter 0.3s ease;
  transition: fill 0.3s ease, -webkit-backdrop-filter 0.3s ease;
  -o-transition: fill 0.3s ease, backdrop-filter 0.3s ease;
  transition: fill 0.3s ease, backdrop-filter 0.3s ease;
  transition: fill 0.3s ease, backdrop-filter 0.3s ease, -webkit-backdrop-filter 0.3s ease;
}

/* Header */

.nav-logo {
  width: 239px;
  height: 78px;
}

.nav-link_styled {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-black-color);
}

.demo-btn {
  width: 240px;
  height: 60px;
  background: -o-linear-gradient(left, #3d69f3 0%, #7c61f0 100%);
  background: -webkit-gradient(linear, left top, right top, from(#3d69f3), to(#7c61f0));
  background: linear-gradient(90deg, #3d69f3 0%, #7c61f0 100%);
  font-weight: 500;
  font-size: 19px;
  line-height: 133%;
  -webkit-transition: background 0.3s ease, -webkit-backdrop-filter 0.3s ease;
  transition: background 0.3s ease, -webkit-backdrop-filter 0.3s ease;
  -o-transition: background 0.3s ease, backdrop-filter 0.3s ease;
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, -webkit-backdrop-filter 0.3s ease;
}

.search-wrap {
  width: 200px;
}

.search-input {
  background-image: url("../images/icon-search.png");
  background-repeat: no-repeat;
  background-position: 12px 12px;
  width: 45px;
  height: 45px;
  background-color: rgba(0, 0, 0, 0.15);
  border: none;
  border-radius: 50%;
  -webkit-transition: width 0.4s ease-in-out, border-radius 0.4s ease-in-out;
  -o-transition: width 0.4s ease-in-out, border-radius 0.4s ease-in-out;
  transition: width 0.4s ease-in-out, border-radius 0.4s ease-in-out;
  padding: 12px;
  margin-right: 27px;
}

.search-input:focus {
  width: 200px;
  border-radius: 30px;
  padding-left: 40px;
}

@media (max-width: 768px) {
  .nav-link_styled {
    font-size: 18px;
  }

  .demo-btn {
    font-size: 18px;
    height: 50px;
  }
}

@media (max-width: 1500px) {
  .demo-btn {
    width: 200px;
    height: 50px;
  }
}
/* Dropdown products */
.nav-link.dropdown-toggle::after {
  display: none;
}

.dropdown-menu {
  font-family: var(--second-family);
  padding: 15px;
}

.dropdown_main-title {
  font-weight: 700;
  font-size: 14px;
  line-height: 120%;
  letter-spacing: 0.01em;
  color: rgba(77, 77, 77, 0.64);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-grey-color);
}
.dropdown-item:hover,
.dropdown-item:focus {
  color: #7c61f0;
}
.dropdown_icon {
  border-radius: 5px;
  width: 50px;
  height: 50px;
  background: rgba(18, 43, 78, 0.05);
  padding: 10px;
}
.dropdown_title {
  font-weight: 500;
  font-size: 16px;
  line-height: 125%;
}

.dropdown_sub-title {
  font-weight: 400;
  font-size: 14px;
  line-height: 129%;
  opacity: 0.7;
}

/* Hero section */
.bg-hero {
  position: relative;
  padding-top: 118px;
  padding-bottom: 80px;
  background: -o-linear-gradient(
      244deg,
      rgba(48, 0, 101, 0.72) 0%,
      rgba(73, 70, 231, 0.72) 55.21%,
      rgba(168, 47, 252, 0.72) 90.14%
    ),
    url("../images/hero-background.png");
  background: linear-gradient(
      206deg,
      rgba(48, 0, 101, 0.72) 0%,
      rgba(73, 70, 231, 0.72) 55.21%,
      rgba(168, 47, 252, 0.72) 90.14%
    ),
    url("../images/hero-background.png");
  background-size: cover;
}

/* Sidebar */
.side-pannel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
  margin-top: 200px;
}
.soc-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
}
.follow-text-styled {
  font-weight: 600;
  font-size: 22px;
  -webkit-transform: rotate(90deg) translate(-60px);
  -ms-transform: rotate(90deg) translate(-60px);
  transform: rotate(90deg) translate(-60px);
  white-space: nowrap;
}
.social-icon {
  width: 25px;
  height: 25px;
}

/* Hero Title and Subheading */
.subheading-styles {
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.02em;
  color: #ffc17a;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 38px;
}
.hero-title-styled {
  font-weight: 700;
  font-size: 48px;
  line-height: 120%;
  margin-bottom: 55px;
}

.hero-text {
  font-weight: 400;
  font-size: 24px;
  line-height: 140%;
  max-width: 840px;
}

.bg-register {
  background-color: var(--primary-white-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-radius: 16px;
  padding: 31px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  max-width: 788px;
}

.input-text {
  font-family: var(--third-font-family);
  font-weight: 400;
  font-size: 15px;
  color: #b2afb6;
}
.input-styles {
  font-weight: 600;
  font-size: 24px;
  color: #311e47;
}
.register-btn-styles {
  -webkit-box-shadow: 0 7px 33px 0 rgba(110, 109, 192, 0.5);
  box-shadow: 0 7px 33px 0 rgba(110, 109, 192, 0.5);
  background: -o-linear-gradient(right, #7c61f0 0%, #0970f7 100%);
  background: -webkit-gradient(linear, right top, left top, from(#7c61f0), to(#0970f7));
  background: linear-gradient(270deg, #7c61f0 0%, #0970f7 100%);
  border-radius: 11px;
  width: 270px;
  height: 65px;
  font-weight: 600;
  font-size: 22px;
  margin-top: 20px;
}

.learn-more-link {
  font-weight: 600;
  font-size: 24px;
}
.arrow-down-icon {
  width: 30px;
  height: 40px;
  margin-left: 15px;
}

/* Slider */
.slider-container {
  max-width: 800px;
  margin: auto;
}

.slick-slide div {
  height: 100%;
}

.slider-elipse-decor {
  display: block;
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-image: url(../images/slider-bg-elipse.svg);
  width: 602px;
  height: 755px;
  background-repeat: no-repeat;
  background-size: contain;
}

.slider-item-styled {
  width: auto !important;
}
.slick-slider img {
  padding: 10px;
  height: 100%;
  width: auto;
  border-radius: 10px;
}

.prev-arrow,
.next-arrow {
  position: absolute;
  background: transparent;
  border: none;
  padding: 10px;
  cursor: pointer;
}

.prev-arrow svg,
.next-arrow svg {
  width: 36px;
  height: 26px;
}

.prev-arrow {
  bottom: 0;
  right: 40%;
}

.next-arrow {
  bottom: 0;
  right: 15%;
}

@media (max-width: 1400px) {
  .subheading-styles {
    font-size: 18px;
    gap: 20px;
    margin-bottom: 18px;
  }

  .hero-title-styled {
    font-size: 36px;
    margin-bottom: 30px;
  }

  .hero-text {
    font-size: 18px;
    max-width: 700px;
  }

  .bg-register {
    padding: 25px;
    max-width: 688px;
  }

  .input-styles {
    font-size: 20px;
  }

  .register-btn-styles {
    height: 55px;
    width: 150px;
    font-weight: 600;
    font-size: 18px;
    margin-top: 10px;
  }

  .slick-slider img {
    height: 392px;
  }
}

@media (max-width: 1200px) {
  .slider-container {
    max-width: 600px;
  }

  .slider-elipse-decor {
    top: 65%;
  }

  .prev-arrow,
  .next-arrow {
    bottom: -10%;
  }
}

@media (max-width: 768px) {
  .hero-title-styled {
    font-size: 36px;
  }

  .hero-text {
    font-size: 18px;
  }

  .register-btn-styles {
    font-size: 18px;
  }

  .side-pannel {
    display: none;
  }

  .slider-container {
    max-width: 400px;
  }

  .slick-slider img {
    height: 292px;
  }

  .register-btn-styles {
    width: 100%;
  }
}

/* GET Started section*/

.get-started__collage {
  margin-top: 100px;
}

.get-started_content-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 40px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 0 15px;
}

.get-started_title {
  font-weight: 700;
  font-size: 48px;
  color: var(--text-orange-color);
}

.get-started_text {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.4;
  letter-spacing: 0.03em;
  color: var(--text-grey-color);
}

.learn-more-link-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  max-width: 382px;
  height: 65px;
  background: -o-linear-gradient(38deg, #4268f3 0%, #7c61f0 97.67%);
  background: linear-gradient(52deg, #4268f3 0%, #7c61f0 97.67%);
  color: var(--primary-white-color);
  font-weight: 700;
  font-size: 24px;
  margin: 0 auto;
}

.get-started-section-decor-1 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background-image: url("../images/get-started_dots-left.svg");
  background-size: contain;
  background-repeat: no-repeat;
  width: 144px;
  height: 199px;
}
.get-started-section-decor-2 {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  background-image: url("../images/get-started_dots-right-up.svg");
  background-size: contain;
  background-repeat: no-repeat;
  width: 228px;
  height: 275px;
}
.get-started-section-decor-3 {
  position: absolute;
  bottom: 0;
  right: 16%;
  z-index: -1;
  background-image: url("../images/get-started_dots-right-down.svg");
  background-size: contain;
  background-repeat: no-repeat;
  width: 287px;
  height: 150px;
}

@media (min-width: 1450px) {
  .get-started-section-decor-1 {
    width: 244px;
    height: 299px;
  }
  .get-started-section-decor-2 {
    width: 328px;
    height: 375px;
  }
  .get-started-section-decor-3 {
    width: 487px;
    height: 350px;
  }
}

@media (max-width: 1400px) {
  .get-started__collage {
    margin-top: 100px;
  }

  .get-started_content-wrap {
    gap: 30px;
    padding: 0 10px;
  }

  .get-started_title {
    font-weight: 700;
    font-size: 36px;
    color: var(--text-orange-color);
  }

  .get-started_text {
    font-size: 20px;
  }

  .learn-more-link-2 {
    font-size: 20px;
  }
}

@media (max-width: 990px) {
  .get-started__collage {
    margin-top: 0;
  }
}

/* Audience section */

.audience-section {
  background-image: url("../images/audiences_background.svg");
  background-repeat: no-repeat;
  background-size: cover;
}

.audience_sub-title {
  font-weight: 700;
  font-size: 24px;
  line-height: 80%;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-grey-color);
}

.audience_title {
  font-weight: 700;
  font-size: 58px;
  line-height: 112%;
  color: var(--text-grey-color);
  margin-top: 20px;
}

.audience_text {
  font-weight: 500;
  font-size: 24px;
  line-height: 103%;
  text-align: justify;
  color: var(--text-grey-color);
}

.audience_btn {
  border-radius: 7px;
  width: 352px;
  height: 65px;
  background: -o-linear-gradient(left, #5265f0 0%, #7961f0 100%);
  background: -webkit-gradient(linear, left top, right top, from(#5265f0), to(#7961f0));
  background: linear-gradient(90deg, #5265f0 0%, #7961f0 100%);
}

.img-fluid {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.shadow {
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1400px) {
  .audience_title {
    font-size: 36px;
  }

  .audience_text {
    font-size: 18px;
  }

  .audience_btn {
    font-size: 18px;
    height: 50px;
  }
}

/* Platform section */

.platform-section {
  padding-top: 149px;
  background-color: #f7f7f7;
}

.platform_sub-title {
  font-weight: 700;
  font-size: 24px;
  line-height: 80%;
  letter-spacing: 0.04em;
}

.platform_title {
  font-weight: 700;
  font-size: 48px;
  line-height: 80%;
  margin-top: 43px;
}

.platform_text {
  font-weight: 500;
  font-size: 20px;
  line-height: 160%;
}

.platform_btn-primary,
.platform_btn-outline-primary {
  border-radius: 14px;
  background: -o-linear-gradient(left, #4967f2 0%, #7c61f0 100%);
  background: -webkit-gradient(linear, left top, right top, from(#4967f2), to(#7c61f0));
  background: linear-gradient(90deg, #4967f2 0%, #7c61f0 100%);
  color: var(--primary-white-color);
}

.platform_img-fluid {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 40px;
}

.shadow-sm {
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.stat-group {
  position: absolute;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 13px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 300px;
}

.stat-item {
  width: 150px;
  height: 150px;
}
.stat-number {
  font-size: 40px;
}

.stat-item {
  border-radius: 14px 14px 0 14px;
  width: 100px;
  height: 100px;
  background-color: #81a8c4;
  opacity: 0.7;

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.stat-number {
  font-weight: 300;
  font-size: 24px;
  line-height: 67%;
  text-align: center;
  color: #122b4e;
}

.platform-section-decor-1 {
  position: absolute;
  top: 73px;
  left: 120px;
  z-index: 1;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: -o-radial-gradient(circle, #5165f0, #5165f080);
  background: radial-gradient(circle, #5165f0, #5165f080);
  -webkit-filter: blur(35px);
  filter: blur(35px);
}
.platform-section-decor-2 {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  background-image: url("../images/platform-right-up-decor.svg");
  background-size: contain;
  width: 156px;
  height: 154px;
}
.platform-section-decor-3 {
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  background-image: url("../images/platform-left-down-decor.svg");
  background-size: contain;
  width: 267px;
  height: 211px;
}

.platform-section-decor-4 {
  position: absolute;
  display: none;
  top: 450px;
  right: 35%;
  width: 116px;
  height: 116px;
  border-radius: 50%;
  background: -o-radial-gradient(circle, #ffd558, rgba(255, 213, 88, 0));
  background: radial-gradient(circle, #ffd558, rgba(255, 213, 88, 0));
  -webkit-filter: blur(35px);
  filter: blur(35px);
}

@media (min-width: 1000px) {
  .platform-section-decor-4 {
    display: block;
  }

  .platform_img-fluid {
    margin-top: 200px;
  }
}

@media (min-width: 1200px) {
  .platform-section {
    padding-left: 133px;
  }
}

@media (min-width: 1300px) {
  .stat-group {
    left: -15%;
  }
}

@media (min-width: 1450px) {
  .platform-section-decor-3 {
    display: block;
  }

  .stat-group {
    width: 400px;
    left: -25%;
  }

  .stat-item {
    width: 150px;
    height: 150px;
  }
  .stat-number {
    font-size: 40px;
  }
}

@media (max-width: 1400px) {
  .platform_title {
    font-size: 36px;
  }

  .platform_text {
    font-size: 18px;
  }
}

/* Lead generation */

.lead-section-bg {
  background-image: url("../images/lead-generation_background.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right;
}

.lead-text-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 30px;
  color: var(--text-grey-color);
}

.lead_sub-title {
  font-weight: 700;
  font-size: 20px;
  line-height: 96%;
  letter-spacing: 0.05em;
}

.lead_title {
  font-weight: 700;
  font-size: 34px;
  line-height: 113%;
}

.lead_text {
  font-weight: 500;
  font-size: 20px;
  line-height: 124%;
}

.lead_btn-link {
  color: var(--primary-white-color);
  background: -o-linear-gradient(left, #7c61f0 0%, #4867f2 100%);
  background: -webkit-gradient(linear, left top, right top, from(#7c61f0), to(#4867f2));
  background: linear-gradient(90deg, #7c61f0 0%, #4867f2 100%);
  border-radius: 10px;
  width: 282px;
  height: 64px;
  font-weight: 700;
  font-size: 27px;
  line-height: 105%;
}

@media (max-width: 1400px) {
  .lead_title {
    font-size: 36px;
  }

  .lead_text {
    font-size: 18px;
  }

  .lead_btn-link {
    font-size: 18px;
    height: 50px;
  }

  .lead-section-bg {
    background-size: cover;
  }

  .lead-second-img {
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 990px) {
  .lead-section-bg {
    background-size: cover;
  }
}

@media (max-width: 1400px) {
  .lead-second-img {
    width: 300px;
    height: 300px;
  }
}

/* Content services */
.content-section-bg {
  background: rgba(207, 207, 209, 0.3);
}
.flex-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 50px;
}

.content_sub-title {
  font-weight: 700;
  font-size: 24px;
  line-height: 80%;
  letter-spacing: 0.04em;
  color: var(--text-grey-color);
}

.content_title {
  font-weight: 700;
  font-size: 48px;
  line-height: 80%;
  color: var(--text-grey-color);
}

.content_text {
  font-weight: 400;
  font-size: 20px;
  line-height: 124%;
  color: var(--text-grey-color);
}

.content_btn-link {
  border-radius: 10px;
  max-width: 370px;
  height: 71px;
  background: -o-linear-gradient(280deg, #4667f2 0%, #7c61f0 99.01%);
  background: linear-gradient(170deg, #4667f2 0%, #7c61f0 99.01%);
  color: var(--primary-white-color);
  font-weight: 500;
  font-size: 22px;
  line-height: 140%;
}

@media (max-width: 1400px) {
  .content_title {
    font-size: 36px;
  }

  .content_text {
    font-size: 18px;
  }

  .content_btn-link {
    font-size: 18px;
    height: 50px;
  }
}

/* Reviews */

.reviews_title {
  font-weight: 700;
  font-size: 48px;
  line-height: 80%;
  color: var(--text-grey-color);
}

.reviews_text {
  font-weight: 500;
  font-size: 24px;
  line-height: 107%;
  margin-top: 40px;
  color: var(--text-grey-color);
}

.stats {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.stats-left {
  border-radius: 20px 20px 0 0;

  -webkit-box-shadow: 0 4px 30px -20px rgba(0, 0, 0, 0.59);
  box-shadow: 0 4px 30px -20px rgba(0, 0, 0, 0.59);
  background: #4d66f1;
}

.stats-right {
  border-radius: 0 0 20px 20px;

  background: rgba(217, 217, 217, 0.3);
}

.stats-right_link {
  border-radius: 5px;
  width: 261px;
  height: 59px;
  background: -o-linear-gradient(left, #4867f2 0%, #7c61f0 100%);
  background: -webkit-gradient(linear, left top, right top, from(#4867f2), to(#7c61f0));
  background: linear-gradient(90deg, #4867f2 0%, #7c61f0 100%);
  font-weight: 700;
  font-size: 24px;
  line-height: 87%;
}

@media (max-width: 1400px) {
  .reviews_title {
    font-size: 36px;
  }

  .reviews_text {
    font-size: 18px;
  }

  .stats-right_link {
    font-size: 18px;
    height: 50px;
  }
}

@media (min-width: 990px) {
  .stats-left {
    border-radius: 20px 0 0 20px;
  }

  .stats-right {
    border-radius: 0 20px 20px 0;
  }
}

/* Footer */

.footer-bg {
  background-image: url("../images/footer-background.svg");
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--primary-white-color);
}

.footer-subtitle {
  font-weight: 700;
  font-size: 24px;
  line-height: 83%;
  color: var(--primary-white-color);
  margin-bottom: 30px;
}

.footer-nav-item:not(:last-child) {
  margin-bottom: 20px;
}

.footer-nav-link {
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  color: var(--primary-white-color);
}

.footer-bottom-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.footer-design-text {
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
}

.footer_social-wrap {
  border: 1px solid var(--primary-white-color);
  border-radius: 20px;
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  background: -o-linear-gradient(287deg, #7c61f0 0%, #5865f1 100%);
  background: linear-gradient(163deg, #7c61f0 0%, #5865f1 100%);
  padding: 40px;
  max-width: 482px;
}

.footer_social-title {
  font-size: 32vpx;
}

.footer_social-link {
  border: solid 1px var(--primary-white-color);
  border-radius: 50%;
  display: block;
  width: 52px;
  height: 52px;
  padding: 12px;
}

.footer_social-link svg {
  width: 100%;
  height: 100%;
}

@media (max-width: 990px) {
  .container-center {
    text-align: center;
  }
  .footer-subtitle {
    font-size: 24px;
  }

  .footer-nav-link {
    font-size: 18px;
  }

  .footer_info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px !important;
  }

  .footer_social-wrap {
    margin: 0 auto;
  }
  .footer-bottom-container {
    margin-top: 30px;
  }
}

@media (min-width: 1000px) {
  .footer-nav {
    padding-top: 120px;
  }
}

@media (max-width: 1400px) {
  .footer-bottom-container {
    gap: 20px;
    font-size: 12px;
  }

  .footer_social-wrap {
    padding: 30px;
  }

  .footer-nav-link {
    font-size: 16px;
  }
}

@media (max-width: 1200px) {
  .footer-bottom-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

@media (min-width: 1530px) {
  .footer_social-title {
    font-size: 48px;
  }
}
