@font-face {
  font-family: "Nunito Sans";
  src: local(NunitoSans), url(../fonts/NunitoSans_7pt-Regular.ttf);
  font-weight: 400;
}
@font-face {
  font-family: "Nunito Sans";
  src: local(NunitoSans), url(../fonts/NunitoSans_7pt-Medium.ttf);
  font-weight: 500;
}
@font-face {
  font-family: "Nunito Sans";
  src: local(NunitoSans), url(../fonts/NunitoSans_7pt-SemiBold.ttf);
  font-weight: 600;
}
@font-face {
  font-family: "Nunito Sans";
  src: local(NunitoSans), url(../fonts/NunitoSans_7pt-Bold.ttf);
  font-weight: 700;
}
* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  font-family: "Nunito Sans", sans-serif;
}

h1 {
  color: #ffffff;
  font-family: "Nunito Sans", sans-serif;
  font-size: 96px;
  line-height: 100%;
  /* @else if $size == h5 and $device == desktop {
    font-size: 16px;
    line-height: 120%;
  } @else if $size == h5 and $device == mobile {
    font-size: 16px;
    line-height: 150%;
  } @else if $size == h6 and $device == desktop {
    font-size: 16px;
    line-height: 120%;
  } @else if $size == h6 and $device == mobile {
    font-size: 16px;
    line-height: 150%;
  } */
  /* @include responsive(s) {
    @include typeface-1(h1, mobile);
  } */
}

/* h2 {
  color: $white;
  @include typeface-1(h2, desktop);
  @include responsive(s) {
    @include typeface-1(h2, mobile);
  }
} */
/* h3 {
  color: $white;
  @include typeface-1(h3, desktop);
  @include responsive(s) {
    @include typeface-1(h3, mobile);
  }
} */
/* h4 {
  color: $white;
  @include typeface-1(h4, desktop);
  @include responsive(s) {
    @include typeface-1(h4, mobile);
  }
} */
@-webkit-keyframes marquee {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(-100%, 0);
    transform: translate(-100%, 0);
  }
}
@keyframes marquee {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(-100%, 0);
    transform: translate(-100%, 0);
  }
}
@-webkit-keyframes fade-1 {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}
@keyframes fade-1 {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}
.container {
  width: 100%;
  max-width: 1246px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  position: relative;
  min-height: 100vh;
  background-color: #0a0c0b;
}

svg {
  width: 100%;
}

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

.border {
  border: 1px solid red;
}

.cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Nunito Sans", sans-serif;
  font-size: 16px;
  line-height: 120%;
  /* @else if $size == h5 and $device == desktop {
    font-size: 16px;
    line-height: 120%;
  } @else if $size == h5 and $device == mobile {
    font-size: 16px;
    line-height: 150%;
  } @else if $size == h6 and $device == desktop {
    font-size: 16px;
    line-height: 120%;
  } @else if $size == h6 and $device == mobile {
    font-size: 16px;
    line-height: 150%;
  } */
  color: #0a0c0b;
  background-color: #37ff9f;
  padding: 1.6rem 2rem;
  font-weight: 700;
  border-radius: 2px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.cta img {
  margin-right: 1rem;
}
.cta:hover {
  background-color: rgba(0, 255, 255, 0.911);
}
@media (max-width: 768px) {
  .cta {
    padding: 1.4rem 1.6rem;
  }
}
@media (max-width: 576px) {
  .cta {
    font-size: 14px;
    padding: 12px 16px;
  }
  .cta img {
    display: none;
  }
}

header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 7.2rem;
  background-color: #131816;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 2050;
  border-bottom: 0.5px solid #37ff9f;
}
header .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
header .logo {
  max-width: 164px;
}
header .menu {
  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;
}
header .menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 3.2rem;
  margin-right: 6.4rem;
}
header .menu ul li a {
  position: relative;
  font-family: "Nunito Sans", sans-serif;
  font-size: 16px;
  line-height: 120%;
  /* @else if $size == h5 and $device == desktop {
    font-size: 16px;
    line-height: 120%;
  } @else if $size == h5 and $device == mobile {
    font-size: 16px;
    line-height: 150%;
  } @else if $size == h6 and $device == desktop {
    font-size: 16px;
    line-height: 120%;
  } @else if $size == h6 and $device == mobile {
    font-size: 16px;
    line-height: 150%;
  } */
  color: #ffffff;
}
header .menu ul li a:after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #37ff9f;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
header .menu ul li a:hover:after {
  width: 100%;
}
header .menu .hamburger {
  display: none;
  padding: 0px;
  margin-left: 24px;
}
header .menu .hamburger.is-active .hamburger-inner,
header .menu .hamburger.is-active .hamburger-inner::before,
header .menu .hamburger.is-active .hamburger-inner::after {
  background-color: #37ff9f;
}
header .menu .hamburger .hamburger-inner,
header .menu .hamburger .hamburger-inner::before,
header .menu .hamburger .hamburger-inner::after {
  background-color: #37ff9f;
}
header .menu-mobile {
  position: absolute;
  top: 8.6rem;
  height: calc(100vh - 86px);
  width: 100%;
  background: linear-gradient(115.6deg, rgba(0, 15, 9, 0.842) -7.5%, rgba(0, 19, 11, 0.877) 105.49%);
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
  padding: 4rem 1.5rem;
}
header .menu-mobile ul {
  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: 3rem;
}
header .menu-mobile ul li a {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.9rem;
  text-align: center;
  color: #ffffff;
}
@media (max-width: 991px) {
  header .menu ul {
    display: none;
  }
  header .menu .hamburger {
    display: block;
  }
}
@media (max-width: 768px) {
  header .logo {
    max-width: 164px;
  }
}
@media (max-width: 576px) {
  header {
    height: 6rem;
  }
  header .logo {
    max-width: 134px;
  }
  header .menu .hamburger {
    margin-left: 16px;
  }
}
@media (max-width: 375px) {
  header .logo {
    max-width: 120px;
  }
}

.menu-opened header .menu-mobile {
  opacity: 1;
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
}

.s-hero .container {
  position: relative;
}
.s-hero .image .figma {
  position: absolute;
  top: 162px;
  left: 75px;
  -webkit-animation: fade-1 6s infinite;
  animation: fade-1 6s infinite;
}
.s-hero .image .wordpress {
  position: absolute;
  top: 25px;
  right: 85px;
  -webkit-animation: fade-1 8s infinite;
  animation: fade-1 8s infinite;
}
.s-hero .image .reactjs {
  position: absolute;
  top: 470px;
  left: 45px;
  -webkit-animation: fade-1 12s infinite;
  animation: fade-1 12s infinite;
}
.s-hero .image .nextjs {
  position: absolute;
  top: 410px;
  right: 150px;
  -webkit-animation: fade-1 10s infinite;
  animation: fade-1 10s infinite;
}
.s-hero .social-media a {
  display: block;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 100%; /* 20px */
  text-decoration: underline;
}
.s-hero .social-media .instagram {
  position: absolute;
  top: 287px;
  left: 222px;
}
.s-hero .social-media .instagram-line {
  position: absolute;
  width: 14.6rem;
  height: 0.1rem;
  top: 296px;
  left: 326px;
  background-color: #ffffff;
}
.s-hero .social-media .behance {
  position: absolute;
  top: 84px;
  left: 318px;
}
.s-hero .social-media .behance-line {
  position: absolute;
  width: 14.6rem;
  height: 0.1rem;
  top: 158px;
  left: 383px;
  background-color: #ffffff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.s-hero .social-media .dribbble {
  position: absolute;
  top: 18px;
  left: 591px;
}
.s-hero .social-media .dribbble-line {
  position: absolute;
  top: 98px;
  left: 574px;
  width: 11.2rem;
  height: 0.1rem;
  background-color: #ffffff;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.s-hero .social-media .linkedin {
  position: absolute;
  top: 77px;
  right: 326px;
}
.s-hero .social-media .linkedin-line {
  position: absolute;
  width: 14.6rem;
  height: 0.1rem;
  top: 152px;
  right: 390px;
  background-color: #ffffff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.s-hero .social-media .github {
  position: absolute;
  top: 287px;
  right: 252px;
}
.s-hero .social-media .github-line {
  position: absolute;
  width: 14.6rem;
  height: 0.1rem;
  top: 300px;
  right: 328px;
  background-color: #ffffff;
}
.s-hero .content {
  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;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: url("../img/background.svg") no-repeat center center;
  background-size: cover;
  padding-top: 16.9rem;
  padding-bottom: 16.2rem;
}
.s-hero .content .social-media-mobile {
  display: none;
}
.s-hero .content .text {
  width: 100%;
  max-width: 59.2rem;
  text-align: center;
}
.s-hero .content .text h4 {
  color: #ffffff;
  font-family: "Nunito Sans", sans-serif;
  font-size: 16px;
  line-height: 120%;
  /* @else if $size == h5 and $device == desktop {
    font-size: 16px;
    line-height: 120%;
  } @else if $size == h5 and $device == mobile {
    font-size: 16px;
    line-height: 150%;
  } @else if $size == h6 and $device == desktop {
    font-size: 16px;
    line-height: 120%;
  } @else if $size == h6 and $device == mobile {
    font-size: 16px;
    line-height: 150%;
  } */
  font-weight: 500;
  letter-spacing: 1.4px;
  opacity: 0.75;
  margin-top: 2.4rem;
}
.s-hero .content .text h4 span {
  color: #37ff9f;
  opacity: 1;
}
.s-hero .content .text h1 {
  margin-top: 8px;
}
.s-hero .content .text span {
  display: inline-block;
  margin-top: 1.2rem;
  font-size: 2rem;
  font-weight: 500;
  color: #ffffff;
  opacity: 0.75;
  line-height: 100%;
}
@media (max-width: 1150px) {
  .s-hero .social-media .instagram-line {
    width: 11.2rem;
  }
  .s-hero .social-media .behance-line {
    width: 11.2rem;
  }
  .s-hero .social-media .dribbble {
    left: 53.6rem;
  }
  .s-hero .social-media .dribbble-line {
    left: 51.8rem;
  }
  .s-hero .social-media .linkedin-line {
    width: 11.2rem;
  }
  .s-hero .social-media .github-line {
    width: 11.2rem;
  }
}
@media (max-width: 1024px) {
  .s-hero .social-media {
    display: none;
  }
  .s-hero .content {
    padding-top: 11.2rem;
    padding-bottom: 11.2rem;
  }
  .s-hero .content .social-media-mobile {
    display: block;
    margin-top: 2.4rem;
  }
  .s-hero .content .social-media-mobile ul {
    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;
  }
  .s-hero .content .social-media-mobile ul li a img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    padding: 0.8rem;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .s-hero .content .social-media-mobile ul li a:hover img {
    background-color: #59efa7;
  }
  .s-hero .content .social-media-mobile ul li:not(:last-child) {
    margin-right: 12px;
  }
}
@media (max-width: 991px) {
  .s-hero .image .nextjs {
    right: 8.8rem;
  }
  .s-hero .image .wordpress {
    right: 45px;
  }
  .s-hero .image .figma {
    top: 112px;
  }
  .s-hero .image .reactjs {
    top: 430px;
    left: 11px;
  }
}
@media (max-width: 800px) {
  .s-hero .image .figma {
    width: 50px;
    top: 100px;
    left: 108px;
  }
  .s-hero .image .wordpress {
    width: 100px;
    right: 86px;
  }
  .s-hero .image .reactjs {
    width: 124px;
    top: 354px;
    left: 76px;
  }
  .s-hero .image .nextjs {
    width: 96px;
    right: 108px;
    top: 348px;
  }
}
@media (max-width: 576px) {
  .s-hero .image {
    display: none;
  }
  .s-hero .content {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
  .s-hero .content img {
    width: 156px;
  }
  .s-hero .content .text h1 {
    font-size: 5.8rem;
  }
  .s-hero .content .text span {
    max-width: 46rem;
    font-size: 1.6rem;
  }
}

.s-marquee {
  width: 100%;
  background-color: #37ff9f;
  padding: 2.65rem 0;
  overflow: hidden;
}
.s-marquee .content-marquee {
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  -webkit-animation: marquee 80s linear infinite;
  animation: marquee 80s linear infinite;
}
.s-marquee .content-marquee .item-marquee {
  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;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background-color: #59efa7;
  padding: 16px 32px;
  gap: 8px;
}
.s-marquee .content-marquee .item-marquee p {
  color: #0a0c0b;
  font-size: 18px;
  font-weight: 700;
  line-height: 150%; /* 27px */
  letter-spacing: 0.54px;
}
@media (max-width: 576px) {
  .s-marquee {
    padding: 2rem 0;
  }
  .s-marquee .content-marquee {
    -webkit-animation: marquee 20s linear infinite;
    animation: marquee 20s linear infinite;
  }
  .s-marquee .content-marquee .item-marquee {
    padding: 12px 24px;
  }
  .s-marquee .content-marquee .item-marquee img {
    width: 22px;
  }
  .s-marquee .content-marquee .item-marquee p {
    font-size: 14px;
  }
}

.s-skills {
  width: 100%;
  padding: 112px 0;
  background-color: #ffffff;
}
.s-skills .skills-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-bottom: 64px;
}
.s-skills .skills-title h2 {
  color: #02120a;
  font-size: 32px;
  font-weight: 700;
  line-height: 100%; /* 32px */
}
.s-skills .skills-title p {
  max-width: 409px;
  color: #7b7b7b;
  font-size: 18px;
  font-weight: 400;
  line-height: 132.5%;
}
.s-skills .skills-title p strong {
  color: #37ff9f;
}
.s-skills .skills-top ul,
.s-skills .skills-bottom ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 32px;
  overflow: hidden;
}
.s-skills .skills-top ul li,
.s-skills .skills-bottom ul li {
  width: 100%;
  background-color: #f1f5f3;
  padding: 32px;
}
.s-skills .skills-top ul li h3,
.s-skills .skills-bottom ul li h3 {
  color: #02120a;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 100%; /* 22px */
  margin-top: 16px;
  margin-bottom: 16px;
}
.s-skills .skills-top ul li p,
.s-skills .skills-bottom ul li p {
  color: #78797a;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 100%; /* 16px */
}
.s-skills .skills-top {
  padding-bottom: 32px;
}
@media (max-width: 1090px) {
  .s-skills .skills-title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding-bottom: 4rem;
  }
  .s-skills .skills-top ul li,
  .s-skills .skills-bottom ul li {
    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;
    text-align: center;
  }
}
@media (max-width: 850px) {
  .s-skills .skills-top ul,
  .s-skills .skills-bottom ul {
    grid-template-columns: 1fr;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .s-skills .skills-top ul li p,
  .s-skills .skills-bottom ul li p {
    max-width: 27.3rem;
  }
}
@media (max-width: 576px) {
  .s-skills {
    padding: 8rem 0;
  }
}

.s-about-me {
  padding-bottom: 112px;
  overflow: hidden;
}
.s-about-me .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: 1px solid rgba(89, 239, 166, 0.493);
  padding-top: 112px;
  padding-bottom: 112px;
}
.s-about-me .about-me-text {
  width: 100%;
  max-width: 612px;
  margin-right: 32px;
}
.s-about-me .about-me-text .text-content {
  width: 100%;
  max-width: 58.6rem;
}
.s-about-me .about-me-text .text-content span {
  display: inline-block;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  line-height: 120%;
  margin-bottom: 2.4rem;
}
.s-about-me .about-me-text .text-content h2 {
  color: #37ff9f;
  font-size: 40px;
  font-weight: 700;
  line-height: 120%; /* 48px */
}
.s-about-me .about-me-text .text-content .subtitle-about-me {
  color: #ffffff;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  margin-top: 0.4rem;
}
.s-about-me .about-me-text .text-content .description-about-me {
  color: rgba(255, 255, 255, 0.75);
  font-size: 16px;
  font-weight: 400;
  line-height: 150%; /* 24px */
  margin-top: 4rem;
}
.s-about-me .about-me-text .text-content .link-instagram {
  display: inline-block;
  color: #37ff9f;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%; /* 16.8px */
  margin-top: 24px;
  -webkit-transition: all 4s ease;
  transition: all 4s ease;
}
.s-about-me .about-me-text .text-content .link-instagram:hover {
  text-decoration-line: underline;
}
.s-about-me .about-me-text .about-me-experience-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 60px;
}
.s-about-me .about-me-text .about-me-experience-list li {
  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;
  gap: 8px;
  padding: 16px 18px;
  background-color: #59efa7;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.s-about-me .about-me-text .about-me-experience-list li p {
  color: #0a0c0b;
  font-size: 14px;
  font-weight: 600;
  line-height: 150%;
  letter-spacing: 0.54px;
}
.s-about-me .about-me-text .about-me-experience-list li:hover {
  background-color: rgba(89, 239, 166, 0.801);
}
.s-about-me .about-me-image {
  position: relative;
}
.s-about-me .about-me-image .img-about-me {
  width: 100%;
}
.s-about-me .about-me-image .element-1 {
  position: absolute;
  top: -50px;
  left: -108px;
}
.s-about-me .about-me-image .element-2 {
  position: absolute;
  bottom: -66px;
  right: -52px;
}
@media (max-width: 1090px) {
  .s-about-me .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .s-about-me .about-me-text {
    margin-right: 0;
  }
  .s-about-me .about-me-text .text-content {
    margin-top: 4rem;
    text-align: center;
  }
  .s-about-me .about-me-image .img-about-me {
    max-width: 45rem;
  }
  .s-about-me .about-me-image .element-1 {
    top: -40px;
    left: -88px;
    max-width: 315px;
  }
  .s-about-me .about-me-image .element-2 {
    max-width: 18rem;
    bottom: -35px;
    right: -35px;
  }
}
@media (max-width: 768px) {
  .s-about-me .about-me-text .about-me-experience-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
    margin-top: 4rem;
  }
  .s-about-me .about-me-text .about-me-experience-list li {
    width: 100%;
    max-width: 243px;
  }
}
@media (max-width: 576px) {
  .s-about-me {
    padding-bottom: 8rem;
  }
  .s-about-me .container {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}

.s-cases {
  scroll-margin-top: 130px;
  margin-bottom: 11.2rem;
  position: relative !important;
  width: 100%;
  height: 669px;
}
.s-cases .container .s-work-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.s-cases .container .s-work-title h2,
.s-cases .container .s-work-title p {
  color: #ffffff;
}
.s-cases .container .s-work-title h2 {
  font-weight: 600;
  font-size: 32px;
  line-height: 120%;
}
.s-cases .container .s-work-title p {
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 2px;
  background-image: linear-gradient(91.8deg, #d4d4d4 3.98%, #ffffff 86.98%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}
.s-cases .container .slide-cases-mobile {
  display: none;
  margin-top: 6rem;
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative !important;
}
.s-cases .container .slide-cases-mobile .swiper-wrapper {
  position: relative !important;
}
.s-cases .container .slide-cases-mobile .swiper-wrapper .swiper-slide {
  background-color: #f7f7f7;
  padding-top: 60px;
  padding-left: 60px;
  padding-right: 60px;
  padding-bottom: 45px;
}
.s-cases .container .slide-cases-mobile .swiper-wrapper .swiper-slide .case-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 50px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.s-cases .container .slide-cases-mobile .swiper-wrapper .swiper-slide .case-box .img-case img {
  width: 100%;
  max-width: 500px;
  -o-object-fit: cover;
  object-fit: cover;
}
.s-cases .container .slide-cases-mobile .swiper-wrapper .swiper-slide .case-box .case-box-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.s-cases .container .slide-cases-mobile .swiper-wrapper .swiper-slide .case-box .case-box-title h6 {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 150%;
  color: #030e15;
}
.s-cases .container .slide-cases-mobile .swiper-wrapper .swiper-slide .case-box .case-box-title a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
}
.s-cases .container .slide-cases-mobile .swiper-wrapper .swiper-slide .case-box .case-box-title a .project-link {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #030e15;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding-bottom: 0px;
}
.s-cases .container .slide-cases-mobile .swiper-wrapper .swiper-slide .case-box .case-box-title a:hover p {
  color: rgba(0, 8, 17, 0.9);
  text-decoration: underline;
}
.s-cases .container .slide-cases-mobile .swiper-wrapper .swiper-slide .case-box .case-box-title .arrow-mb-slide {
  display: none;
  pointer-events: none;
}
.s-cases .container .slide-cases-mobile .swiper-pagination-progressbar {
  background: #9a9d9e;
}
.s-cases .container .slide-cases-mobile .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #2d3235;
}
.s-cases .area-cases {
  position: relative;
  width: 100%;
  height: 501px;
  margin-top: 46px;
  margin-bottom: 46px;
  overflow: hidden;
}
.s-cases .area-cases .slide-image-cases {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  width: 1260px;
  pointer-events: none;
}
.s-cases .area-cases .slide-image-cases .swiper-wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.s-cases .area-cases .slide-image-cases .swiper-wrapper .swiper-slide {
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  max-width: 592px !important;
}
.s-cases .area-cases .slide-image-cases .swiper-wrapper .swiper-slide.swiper-slide-thumb-active, .s-cases .area-cases .slide-image-cases .swiper-wrapper .swiper-slide.swiper-slide-active, .s-cases .area-cases .slide-image-cases .swiper-wrapper .swiper-slide.swiper-slide-prev {
  opacity: 1;
}
.s-cases .area-cases .slide-image-cases .swiper-wrapper .swiper-slide.swiper-slide-next {
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.s-cases .area-cases .slide-image-cases .swiper-wrapper .swiper-slide .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  max-width: 592px;
  max-height: 501px;
  overflow: hidden;
  background-color: #e9e9e9;
}
.s-cases .area-cases .slide-image-cases .swiper-wrapper .swiper-slide .box img {
  display: block;
  width: 100%;
  min-height: 501px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -o-object-fit: cover;
  object-fit: cover;
}
.s-cases .area-cases .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.s-cases .area-cases .container .slide-about-case {
  width: 450px;
  height: 501px;
}
.s-cases .area-cases .container .slide-about-case .swiper-wrapper .swiper-slide {
  opacity: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.s-cases .area-cases .container .slide-about-case .swiper-wrapper .swiper-slide.swiper-slide-active {
  opacity: 1;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.s-cases .area-cases .container .slide-about-case .swiper-wrapper .swiper-slide .text-case {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.s-cases .area-cases .container .slide-about-case .swiper-wrapper .swiper-slide .text-case h4 {
  font-weight: 600;
  font-size: 24px;
  line-height: 150%;
  color: #ffffff;
  margin-bottom: 24px;
  width: 100%;
  max-width: 400px;
}
.s-cases .area-cases .container .slide-about-case .swiper-wrapper .swiper-slide .text-case ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 24px;
  padding-bottom: 32px;
}
.s-cases .area-cases .container .slide-about-case .swiper-wrapper .swiper-slide .text-case ul li {
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  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;
  gap: 8px;
  background-color: #37ff9f;
  padding: 10px 18px;
}
.s-cases .area-cases .container .slide-about-case .swiper-wrapper .swiper-slide .text-case ul li img {
  width: 18px;
  height: 18px;
}
.s-cases .area-cases .container .slide-about-case .swiper-wrapper .swiper-slide .text-case ul li span {
  font-weight: 500;
  font-size: 14px;
  line-height: 120%;
  color: #030e15;
}
.s-cases .area-cases .container .slide-about-case .swiper-wrapper .swiper-slide .text-case ul li:hover {
  background-color: rgba(55, 255, 158, 0.74);
}
.s-cases .area-cases .container .slide-about-case .swiper-wrapper .swiper-slide .text-case p {
  width: 100%;
  max-width: 450px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.03em;
  color: #d4d4d4;
  padding-bottom: 30px;
}
.s-cases .area-cases .container .slide-about-case .swiper-wrapper .swiper-slide .text-case strong {
  width: 100%;
  max-width: 416px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.03em;
  color: #f5f5f5;
}
.s-cases .area-cases .container .slide-about-case .swiper-wrapper .swiper-slide .text-case a {
  padding-top: 72px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
}
.s-cases .area-cases .container .slide-about-case .swiper-wrapper .swiper-slide .text-case a .project-link {
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #37ff9f;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  padding-bottom: 0px;
}
.s-cases .area-cases .container .slide-about-case .swiper-wrapper .swiper-slide .text-case a:hover p {
  color: rgba(55, 255, 158, 0.829);
  text-decoration: underline;
}
.s-cases .ctrl-slide {
  width: 1248px;
  padding: 0 15px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.s-cases .ctrl-slide .swiper-pagination {
  position: relative;
  bottom: 0;
  width: auto;
}
.s-cases .ctrl-slide .swiper-pagination.page-fraction {
  margin-left: -150px !important;
}
.s-cases .ctrl-slide .swiper-pagination.page-fraction.swiper-pagination-fraction {
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  color: #ffffff;
}
.s-cases .ctrl-slide .swiper-pagination.page-fraction.swiper-pagination-fraction span {
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  color: #ffffff;
}
.s-cases .ctrl-slide .swiper-pagination.pagination-box-cases.swiper-pagination-bullets {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.s-cases .ctrl-slide .swiper-pagination.pagination-box-cases.swiper-pagination-bullets .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #dadcdd;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  opacity: 1;
}
.s-cases .ctrl-slide .swiper-pagination.pagination-box-cases.swiper-pagination-bullets .swiper-pagination-bullet-active {
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  background: #37ff9f;
}
.s-cases .ctrl-slide .arrows-slide {
  width: 100%;
  max-width: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  gap: 10px;
}
.s-cases .ctrl-slide .arrows-slide .btn {
  width: 32px;
  height: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 1;
  cursor: pointer;
}
.s-cases .ctrl-slide .arrows-slide .btn img {
  min-width: 17px;
}
.s-cases .ctrl-slide .arrows-slide .btn-next {
  margin-top: -2px;
}
.s-cases .ctrl-slide .arrows-slide .btn.swiper-button-disabled {
  opacity: 0.25;
  pointer-events: none;
}
.s-cases .ctrl-slide .arrows-slide .btn:focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 2px var(--gray-900);
  box-shadow: 0 0 0 2px var(--gray-900);
}
@media (min-width: 2300px) {
  .s-cases .area-cases .slide-image-cases {
    left: 350px !important;
  }
}
@media (min-width: 2000px) {
  .s-cases .area-cases .slide-image-cases {
    left: 200px;
  }
  .s-cases .area-cases .slide-image-cases .swiper-wrapper .swiper-slide.swiper-slide-prev {
    opacity: 0.5;
  }
}
@media (max-width: 1999px) {
  .s-cases .area-cases .slide-image-cases {
    left: 150px;
  }
  .s-cases .area-cases .slide-image-cases .swiper-wrapper .swiper-slide.swiper-slide-prev {
    opacity: 0.6;
  }
}
@media (max-width: 1900px) {
  .s-cases .area-cases .slide-image-cases {
    left: 80px;
  }
}
@media (max-width: 1770px) {
  .s-cases .area-cases .slide-image-cases {
    left: -80px;
  }
}
@media (max-width: 1550px) {
  .s-cases .area-cases .slide-image-cases {
    left: -100px;
  }
}
@media (max-width: 1450px) {
  .s-cases .area-cases .slide-image-cases {
    left: -150px !important;
  }
}
@media (max-width: 1380px) {
  .s-cases .area-cases .slide-image-cases {
    left: -200px !important;
  }
}
@media (max-width: 1260px) {
  .s-cases {
    margin-bottom: 0;
  }
  .s-cases .container .slide-cases-mobile {
    display: block;
    pointer-events: all;
  }
  .s-cases .area-cases,
  .s-cases .ctrl-slide {
    display: none;
    pointer-events: none;
  }
}
@media (max-width: 1090px) {
  .s-cases .container .s-work-title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px;
  }
}
@media (max-width: 768px) {
  .s-cases .container .s-work-title h2 {
    font-size: 30px;
  }
}
@media (max-width: 700px) {
  .s-cases {
    height: 590px;
  }
  .s-cases .container .slide-cases-mobile .swiper-wrapper .swiper-slide {
    padding-top: 4rem;
    padding-left: 4rem;
    padding-right: 4rem;
    padding-bottom: 3rem;
  }
  .s-cases .container .slide-cases-mobile .swiper-wrapper .swiper-slide .case-box {
    gap: 3rem;
  }
  .s-cases .container .slide-cases-mobile .swiper-wrapper .swiper-slide .case-box .case-box-title h6 {
    font-size: 18px;
  }
  .s-cases .container .slide-cases-mobile .swiper-wrapper .swiper-slide .case-box .case-box-title .project-link,
  .s-cases .container .slide-cases-mobile .swiper-wrapper .swiper-slide .case-box .case-box-title .arrow-project-slide {
    display: none;
    pointer-events: none;
  }
  .s-cases .container .slide-cases-mobile .swiper-wrapper .swiper-slide .case-box .case-box-title .arrow-mb-slide {
    display: block;
    pointer-events: all;
  }
}
@media (max-width: 600px) {
  .s-cases {
    height: 480px;
  }
  .s-cases .container .slide-cases-mobile {
    margin-top: 4rem;
  }
  .s-cases .container .slide-cases-mobile .swiper-wrapper .swiper-slide {
    padding-top: 3rem;
    padding-left: 3rem;
    padding-right: 3rem;
    padding-bottom: 3rem;
  }
  .s-cases .container .slide-cases-mobile .swiper-wrapper .swiper-slide .case-box .img-case {
    max-width: 390px;
  }
}
@media (max-width: 480px) {
  .s-cases {
    height: 45rem;
  }
}
@media (max-width: 375px) {
  .s-cases {
    height: 38rem;
  }
  .s-cases .container .slide-cases-mobile {
    margin-top: 3rem;
  }
  .s-cases .container .slide-cases-mobile .swiper-wrapper .swiper-slide {
    padding-top: 2rem;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-bottom: 2rem;
  }
  .s-cases .container .slide-cases-mobile .swiper-wrapper .swiper-slide .case-box {
    gap: 2rem;
  }
  .s-cases .container .slide-cases-mobile .swiper-wrapper .swiper-slide .case-box .img-case {
    max-width: 400px;
  }
  .s-cases .container .slide-cases-mobile .swiper-wrapper .swiper-slide .case-box .case-box-title h6 {
    font-size: 16px;
  }
}

.s-call-to-action {
  padding-top: 112px;
  padding-bottom: 112px;
}
.s-call-to-action .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.s-call-to-action .call-to-action-title {
  width: 100%;
  max-width: 779px;
}
.s-call-to-action .call-to-action-title h2 {
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  line-height: 100%; /* 40px */
}
.s-call-to-action .call-to-action-title a {
  max-width: 190px;
  margin-top: 80px;
}
.s-call-to-action .social-media ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  overflow: hidden;
}
.s-call-to-action .social-media ul li a p {
  position: relative;
  right: -100%;
  opacity: 0;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  line-height: 150%;
  margin-right: 12px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.s-call-to-action .social-media ul li a img {
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.s-call-to-action .social-media ul li a:hover p {
  right: 0;
  opacity: 1;
}
.s-call-to-action .social-media ul li a:hover img {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}
.s-call-to-action .social-media ul li:not(:last-child) {
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  .s-call-to-action .call-to-action-title {
    max-width: 56rem;
  }
  .s-call-to-action .call-to-action-title h2 {
    font-size: 38px;
  }
}
@media (max-width: 768px) {
  .s-call-to-action .container {
    -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;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .s-call-to-action .call-to-action-title {
    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;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }
  .s-call-to-action .call-to-action-title h2 {
    font-size: 34px;
  }
  .s-call-to-action .social-media ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 16px;
    margin-top: 2.4rem;
  }
  .s-call-to-action .social-media ul li a p {
    display: none;
  }
  .s-call-to-action .social-media ul li a:hover p {
    display: none;
  }
}
@media (max-width: 576px) {
  .s-call-to-action {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
  .s-call-to-action .social-media ul li a p {
    display: none;
  }
  .s-call-to-action .social-media ul li a:hover p {
    display: none;
  }
}

footer {
  border-top: 2px solid #37ff9f;
  padding-top: 50px;
  padding-bottom: 50px;
  background-color: #131816;
}
footer .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
footer .right-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
footer .right-footer p {
  color: #ffffff;
  font-size: 15px;
  font-weight: 400;
  line-height: 120%;
  margin-right: 24px;
}
footer .right-footer .btn-scroll-top {
  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: 40px;
  height: 40px;
  background-color: transparent;
  cursor: pointer;
  opacity: 0.7;
  border-radius: 50%;
  border: 1.5px solid #37ff9f;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
footer .right-footer .btn-scroll-top:hover {
  background-color: #37ff9f;
}
@media (max-width: 768px) {
  footer {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  footer .container {
    -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: 1.6rem;
  }
}
@media (max-width: 576px) {
  footer .container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  footer .logo {
    width: 100%;
    max-width: 13.4rem;
  }
  footer .right-footer p {
    display: none;
  }
}