@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
}

body {
  overflow-x: hidden;
  max-width: 100%;
  width: 100vw;
  margin: 0 auto;
}

header, .header_inner, main, footer {
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}

.header_inner, .wireframe_text_container, .cases, .services, .footer_textarea {
  width: 1440px;
}

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

.header {
  z-index: 100;
  background-color: white;
  width: 100%;
}

.header_fixed {
  position: fixed;
  left: 0;
  top: 0;
}

.header_inner {
  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: 15px 0;
  background-color: white;
}
.header_inner .menu-burger__header {
  display: none;
}

.logo {
  color: #000;
  font-family: Blinker;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  text-decoration: none;
}

@media screen and (max-width: 1480px) {
  .logo {
    margin-left: 30px;
  }
}
.navigation {
  font-family: Comfortaa;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.navigation ul {
  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;
}
.navigation ul li {
  list-style-type: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.navigation ul li:not(:first-child) {
  margin-left: 50px;
}
.navigation ul a {
  text-decoration: none;
  color: black;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.navigation ul li:hover:not(:nth-child(4)) {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}

@media screen and (max-width: 1060px) {
  .navigation {
    display: none;
  }
}
.menu-burger__header {
  display: block;
}

.navigation_services a {
  border: 1px solid black;
  border-radius: 25px;
  padding: 7px 12px;
}
.navigation_services a:hover {
  background-color: black;
  color: white;
}

.social_icons a {
  text-decoration: none;
}
.social_icons a:not(:first-child) {
  margin-left: 15px;
}
.social_icons svg:hover path {
  fill: red;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.mobile_navigation {
  display: none;
}

@media screen and (max-width: 1480px) {
  .social_icons {
    margin-right: 30px;
  }
}
@media screen and (max-width: 1060px) {
  header .social_icons {
    display: none;
  }
  .header_inner .menu-burger__header {
    display: block;
  }
  .menu-burger__header {
    position: relative; /* задаем относительное позиционирование */
    width: 40px; /* определяем размеры блока */
    height: 35px;
    display: block;
    margin-left: 10px;
    margin-right: 30px;
  }
  .menu-burger__header span, .menu-burger__header:after, .menu-burger__header:before {
    height: 3px;
    width: 100%;
    position: absolute;
    background: #000000;
    margin: 0 auto;
  }
  .menu-burger__header span {
    top: 16px;
  }
  .menu-burger__header:after, .menu-burger__header:before {
    content: "";
  }
  .menu-burger__header:after {
    bottom: 5px;
  }
  .menu-burger__header:before {
    top: 5px;
  }
  .menu-burger__header.open-menu span {
    opacity: 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .menu-burger__header.open-menu:before {
    -webkit-transform: rotate(38deg);
        -ms-transform: rotate(38deg);
            transform: rotate(38deg);
    top: 16px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
  .menu-burger__header.open-menu:after {
    -webkit-transform: rotate(-38deg);
        -ms-transform: rotate(-38deg);
            transform: rotate(-38deg);
    bottom: 16px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
  .mobile_navigation {
    display: none;
    text-align: center;
    height: calc(100vh - 65px);
    padding-bottom: 30px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .mobile_navigation 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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: calc(100vh - 200px);
    list-style-type: none;
  }
  .mobile_navigation li {
    margin-top: 30px;
    font-family: Comfortaa;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }
  .mobile_navigation li a {
    text-decoration: none;
    color: black;
  }
  .mobile_navigation li a:not(:first-child) svg {
    margin-left: 15px;
    margin-top: 30px;
  }
  .mobile_navigation.open-menu {
    display: block !important;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
}
.wireframe {
  background-image: url(/img/wireframe.jpg);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  min-height: calc(100vh - 60px);
  max-width: 100vw;
  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;
}
.wireframe .wireframe_text_container {
  margin-top: -400px;
  margin-left: -150px;
  max-width: 800px;
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.wireframe .wireframe_text_container h2 {
  margin-left: -100px;
  color: black;
  font-family: "Blinker", sans-serif;
  font-size: 70px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.wireframe .wireframe_text_container h1 {
  margin-left: -100px;
  margin-top: 10px;
  color: black;
  font-family: IBM Plex Mono;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.wireframe .wireframe_text_container h1 span {
  border: 3px solid black;
  border-radius: 25px;
  padding: 1px 13px;
}
.wireframe .scroll {
  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;
  bottom: 90px;
  width: 40px;
  height: 40px;
  border: 2px solid black;
  border-radius: 50%;
  position: absolute;
  animation: down 1.5s infinite;
  -webkit-animation: down 1.5s infinite;
}
.wireframe .scroll a {
  margin: 0 auto;
  display: block;
  min-width: 60px;
  min-height: 60px;
}
.wireframe .scroll::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 12px;
  width: 14px;
  height: 14px;
  border-left: 2px solid black;
  border-bottom: 2px solid black;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@keyframes down {
  0% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  20% {
    -webkit-transform: translateY(15px);
            transform: translateY(15px);
  }
  40% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}
@-webkit-keyframes down {
  0% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  20% {
    -webkit-transform: translateY(15px);
            transform: translateY(15px);
  }
  40% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}
@media screen and (max-width: 1165px) {
  .wireframe .wireframe_text_container {
    margin-left: 0px;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    margin-top: 0px;
  }
  .wireframe .wireframe_text_container h2 {
    font-size: 50px;
    text-align: center;
  }
  .wireframe .wireframe_text_container h1 {
    text-align: center;
    margin-left: 0px;
    font-size: 20px;
  }
}

@media screen and (max-width: 1165px) {
  .wireframe {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    background-blend-mode: normal;
    background-image: url(/img/wireframe_pre_mobile.jpg);
    background-position: center bottom;
  }
  .wireframe .wireframe_text_container {
    margin-top: 100px;
  }
  .wireframe .wireframe_text_container h2 {
    margin-left: 0px;
  }
  .wireframe .scroll {
    border: 2px solid white;
  }
  .wireframe .scroll::before {
    border-left: 2px solid white;
    border-bottom: 2px solid white;
  }
}
@media screen and (max-width: 640px) {
  .wireframe {
    background-blend-mode: normal;
    background-image: url(/img/wireframe.mobile.jpg);
  }
  .wireframe .wireframe_text_container {
    margin-top: 100px;
    max-width: 400px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .wireframe .wireframe_text_container h2 {
    color: black;
  }
  .wireframe .wireframe_text_container h1 {
    color: black;
  }
  .wireframe .wireframe_text_container h1 span {
    border: 2px solid black;
  }
}
@media screen and (max-width: 540px) {
  .wireframe .wireframe_text_container {
    margin-top: 40px;
  }
}
.about {
  background-image: url(/img/about.jpg);
  background-repeat: no-repeat;
  background-position: top left;
  background-size: cover;
  min-height: 100vh;
  max-width: 100vw;
  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;
}

.textarea {
  max-width: 420px;
  margin-left: 600px;
}
.textarea h3 {
  color: #FFF;
  font-family: IBM Plex Mono;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
.textarea h3:not(:first-child) {
  margin-top: 30px;
}
.textarea p {
  margin-top: 10px;
  font-family: IBM Plex Mono;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #FFF;
}
.textarea .social_icons {
  margin-top: 30px;
}
.textarea .social_icons a {
  text-decoration: none;
}
.textarea .social_icons a:not(:first-child) {
  margin-left: 15px;
}
.textarea .social_icons svg:hover path {
  fill: red;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

@media screen and (max-width: 1070px) {
  .textarea {
    margin-left: 50%;
    margin-right: 30px;
  }
}
@media screen and (max-width: 875px) {
  .about {
    background-blend-mode: color-burn;
    background-color: rgba(0, 0, 0, 0.459);
  }
  .textarea {
    margin: 0 30px;
  }
}
@media screen and (max-width: 750px) {
  .about {
    background-blend-mode: normal;
    background-image: url(/img/about.mobile.jpg);
    background-position: left;
  }
  .textarea {
    margin: 0 30px;
  }
}
@media screen and (max-width: 700px) {
  .textarea h3 {
    font-size: 20px;
  }
  .textarea p {
    font-size: 12px;
  }
  .textarea .social_icons {
    margin-top: 15px;
  }
}
.cases {
  margin: 0 auto;
  max-width: 100%;
}
.cases h3 {
  padding-top: 90px;
  text-align: center;
  font-family: IBM Plex Mono;
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.mySwiper .swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: black;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: scale(2);
      -ms-transform: scale(2);
          transform: scale(2);
}
.mySwiper .swiper-button-next, .mySwiper .swiper-button-prev {
  color: black;
}

.slide_textarea {
  width: 100%;
  max-width: 810px;
  margin: 0 auto;
}
.slide_textarea h3 {
  text-align: center;
  font-family: IBM Plex Mono;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
.slide_textarea p {
  text-align: justify;
  margin-top: 15px;
  font-family: IBM Plex Mono;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.slide_textarea p span {
  font-weight: 400;
}

.slide_review_area {
  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: 810px;
  margin: 0 auto;
  margin-top: 70px;
  padding-bottom: 50px;
}
.slide_review_area img {
  margin: 20px 30px 20px 0;
  width: 150px;
  height: 150px;
  border-radius: 150px;
  -webkit-box-shadow: 10px 10px 24px 0px rgba(166, 180, 200, 0.7), -12px -12px 20px 0px rgba(255, 255, 255, 0.8);
          box-shadow: 10px 10px 24px 0px rgba(166, 180, 200, 0.7), -12px -12px 20px 0px rgba(255, 255, 255, 0.8);
}
.slide_review_area svg {
  margin-top: 10px;
}
.slide_review_area svg path:hover {
  fill: red;
}
.slide_review_area a:hover svg path {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  fill: red;
}

.slide_review_area_text p {
  text-align: justify;
  font-family: IBM Plex Mono;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.slide_review_area_text h4 {
  margin-top: 5px;
  font-family: Comfortaa;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

@media screen and (max-width: 930px) {
  .cases h3 {
    margin-top: 30px;
  }
  .slide_textarea, .slide_review_area {
    width: 100%;
    max-width: 85%;
  }
  .slide_review_area {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    /* text-align: center; */
    margin-top: 30px;
  }
  .slide_review_area img {
    width: 100px;
    height: 100px;
  }
  .slide_review_area_text p {
    /* text-align: center; */
  }
}
@media screen and (max-width: 700px) {
  .slide_textarea h3 {
    font-size: 20px;
  }
  .slide_textarea p {
    font-size: 12px;
  }
  .slide_review_area {
    margin-top: 10px;
  }
  .slide_review_area_text p {
    font-size: 12px;
  }
  .slide_review_area_text h4 {
    font-size: 14px;
  }
}
@media screen and (max-width: 600px) {
  .slide_textarea, .slide_review_area {
    max-width: 75%;
  }
}
.services {
  margin: 0 auto;
  padding-top: 90px;
  padding-bottom: 90px;
  max-width: 100%;
}
.services h3 {
  text-align: center;
  font-family: IBM Plex Mono;
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.services_area {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 1440px;
  max-width: 100%;
}

.services_item {
  max-width: 330px;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: white;
  -webkit-box-shadow: 10px 10px 24px 0px rgba(166, 180, 200, 0.7), -12px -12px 20px 0px rgba(255, 255, 255, 0.8);
          box-shadow: 10px 10px 24px 0px rgba(166, 180, 200, 0.7), -12px -12px 20px 0px rgba(255, 255, 255, 0.8);
  border: 1px solid var(--border-low, #C9C9C9);
  border-radius: 25px;
}
.services_item img {
  max-width: 100%;
  border-radius: 25px 25px 0 0;
}

.services_item:not(:first-child) {
  margin-left: 30px;
}

.services_item_textarea {
  min-height: 270px;
  margin: 15px 15px 0 15px;
  border-bottom: 1px solid black;
}
.services_item_textarea h4 {
  text-align: center;
  font-family: Comfortaa;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.services_item_textarea h5 {
  text-align: center;
  font-family: IBM Plex Mono;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.services_item_textarea p {
  margin-top: 30px;
  font-family: IBM Plex Mono;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.services_item_buttonarea p {
  text-align: center;
  margin-top: 15px;
  font-family: Comfortaa;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.services_item_buttonarea button {
  margin-top: 30px;
  margin-bottom: 30px;
  border: 2px solid #000;
  border-radius: 25px;
  background-color: white;
  text-align: center;
  font-family: IBM Plex Mono;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  padding: 10px 40px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.services_item_buttonarea button:hover {
  cursor: pointer;
  color: white;
  background-color: black;
}

@media screen and (max-width: 1480px) {
  .services_area {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .services_item {
    margin: 15px 15px 15px;
  }
  .services_item_textarea {
    min-height: 280px;
  }
}
@media screen and (max-width: 700px) {
  .services_item_textarea {
    min-height: 230px;
  }
  .services_item_textarea h4 {
    font-size: 16px;
  }
  .services_item_textarea h5 {
    font-size: 12px;
  }
  .services_item_textarea p {
    font-size: 12px;
  }
  .services_item_buttonarea p {
    font-size: 16px;
  }
  .services_item_buttonarea button {
    margin-top: 15px;
    color: black;
  }
}
.contacts {
  background-image: url(/img/contacts.jpg);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  min-height: 100vh;
  max-width: 100vw;
  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;
}

.contacts_textarea h2 {
  color: #000;
  font-family: IBM Plex Mono;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.contacts_textarea h2 span {
  border: 3px solid black;
  border-radius: 25px;
  padding: 1px 13px;
}
.contacts_textarea h3 {
  margin-top: 30px;
  color: #000;
  font-family: "Blinker", sans-serif;
  font-size: 70px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.contacts_textarea .social_icons {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}
.contacts_textarea .social_icons a {
  text-decoration: none;
}
.contacts_textarea .social_icons a:not(:first-child) {
  margin-left: 10px;
}
.contacts_textarea .social_icons svg:hover path {
  fill: red;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

@media screen and (max-width: 1150px) {
  .contacts {
    background-position: top right;
  }
}
@media screen and (max-width: 1030px) {
  .contacts_textarea h2 {
    font-size: 20px;
  }
  .contacts_textarea h3 {
    margin-top: 10px;
    font-size: 50px;
  }
  .contacts_textarea .social_icons {
    margin-top: 10px;
  }
  .contacts_textarea .social_icons a:not(:first-child) {
    margin-left: 5px;
  }
  .contacts_textarea .social_icons a svg {
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 900px) {
  .contacts {
    background-image: url(/img/contacts_screamer.png);
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: 250px;
  }
}
footer {
  background-color: black;
  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;
}

.footer_textarea {
  margin-top: 60px;
}
.footer_textarea nav ul {
  list-style-type: none;
  font-family: Comfortaa;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  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;
}
.footer_textarea nav li {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.footer_textarea nav li:not(:first-child) {
  margin-left: 50px;
}
.footer_textarea nav li:hover {
  -webkit-transform: scale(1.2);
      -ms-transform: scale(1.2);
          transform: scale(1.2);
}
.footer_textarea nav a {
  text-decoration: none;
  color: #fff;
}

.footer_social_iconsarea {
  margin-top: 30px;
  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;
}
.footer_social_iconsarea .services_pay_icons {
  margin-top: 30px;
}

.social_iconsarea_icons {
  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;
}
.social_iconsarea_icons a:not(:first-child) {
  margin-left: 15px;
}
.social_iconsarea_icons svg {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.social_iconsarea_icons a:hover svg {
  -webkit-transform: scale(1.2);
      -ms-transform: scale(1.2);
          transform: scale(1.2);
}

.social_iconsarea_text {
  margin-top: 15px;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.social_iconsarea_text p, .social_iconsarea_text a {
  color: #FFF;
  text-align: center;
  font-family: IBM Plex Mono;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
}
.social_iconsarea_text a {
  margin-top: 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.social_iconsarea_text a:hover {
  -webkit-transform: scale(1.2);
      -ms-transform: scale(1.2);
          transform: scale(1.2);
}
.social_iconsarea_text .reserved {
  margin-top: 30px;
}
.social_iconsarea_text .info {
  padding-left: 10px;
  padding-right: 10px;
  max-width: 600px;
  color: grey !important;
  font-size: 10px;
}
.social_iconsarea_text .info a {
  color: grey !important;
  font-size: 10px;
}
.social_iconsarea_text p:last-child {
  margin-top: 15px;
}

.services_pay_icons {
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin-top: 10px !important;
  padding-bottom: 30px;
  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-wrap: wrap;
      flex-wrap: wrap;
}
.services_pay_icons img {
  margin-top: 10px;
  max-height: 40px;
  height: 40px;
}
.services_pay_icons img:not(:first-child) {
  margin-left: 15px;
}

@media screen and (max-width: 650px) {
  .footer_textarea nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer_textarea nav li {
    margin-left: 0 !important;
    margin-top: 10px;
  }
}