@import "bootstrap.min.css";
:root {
  --ps-color-black: #2E3841;
  --ps-color-dark: #1C2B36;
  --ps-color-text: #5D646C;
  --ps-color-title: #202B38;
  --ps-color-navbar: #1C252F;
  --ps-color-white: white;
  --ps-color-grey-dark: #636F7D;
  --ps-color-grey-2: #BBC5D1;
  --ps-color-grey: #eceff1;
  --ps-color-grey-4: #cfd8dc;
  --ps-color-grey-light: #F6F6F6;
  --ps-color-grey-light-2: #FAFAFA;
  --ps-color-orange-2: #ED652B;
  --ps-color-orange: #ffa000;
  --ps-color-red-dark: #d9534f;
  --ps-color-red: #ff0000;
  --ps-color-blue-dark: #495057;
  --ps-color-blue-2: #403AF4;
  --ps-color-blue: #37aee2;
  --ps-color-purple: #8A2BE2;
  --ps-color-purple-light: #B13CF1;
  --ps-color-salat: #dff0d8;
  --ps-color-green: #3c763d;
  --ps-color-yellow: #fff9e8;
  --ps-color-rose: #fff1ea;
  --ps-color-facebook: #283B76;
  --ps-color-viber: #451D65;
  --ps-font-family: "Montserrat", sans-serif;
  --ps-font-title: "Unbounded", sans-serif;
}

b,
strong {
  color: var(--ps-color-title);
  font-weight: 600;
}

.text-orange {
  color: var(--ps-color-orange-2) !important;
}

.text-red {
  color: var(--ps-color-red) !important;
}

.text-blue {
  color: var(--ps-color-blue) !important;
}

.text-bold {
  color: var(--ps-color-title);
  font-weight: 600;
}

.badge {
  border-radius: 10rem;
}

.text-bg-dark {
  background-color: var(--ps-color-black) !important;
  color: var(--ps-color-white) !important;
}

.btn {
  box-shadow: none;
  padding: 0.475rem 2rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 4%;
  text-transform: uppercase;
  white-space: nowrap;
}

.btn-danger {
  background-color: var(--ps-color-orange-2);
  border-color: var(--ps-color-orange-2);
}

.btn.show,
.btn-danger:active,
.btn-danger:hover {
  background-color: var(--ps-color-title);
  border-color: var(--ps-color-title);
}

.btn-outline-secondary {
  color: var(--ps-color-title);
  border-color: var(--ps-color-grey-dark);
}

.btn-outline-secondary:hover {
  background-color: var(--ps-color-orange-2);
  border-color: var(--ps-color-orange-2);
}

.btn-close:focus {
  box-shadow: none;
}

.rounded-circle {
  border-radius: 50% !important;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  height: 42px;
  width: 42px;
}

.form-control,
.form-select {
  border-radius: 0;
  background-color: var(--ps-color-white);
  border: none;
  color: var(--ps-color-grey-dark);
  font-size: 0.75rem;
  box-shadow: none !important;
  transition: all 0.3s ease;
}

.form-select,
.form-control {
  border: 1px solid var(--ps-color-grey-4);
}

select {
  cursor: pointer;
}

.form-check-input[type=checkbox] {
  cursor: pointer;
  border-radius: 0;
}

.form-check-input:checked {
  background-color: var(--ps-color-black);
  border-color: var(--ps-color-black);
}

.form-check-input:focus {
  box-shadow: none;
}

body {
  background-color: var(--ps-color-white);
  color: var(--ps-color-text);
  font-family: var(--ps-font-family);
  font-size: 1rem;
  font-weight: 400;
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
}

main {
  -webkit-box-flex: 1;
  flex: 1 0 auto;
}

.container {
  max-width: 100vw;
  width: 100%;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}

h1,
.h1 {
  color: var(--ps-color-title);
  font-family: var(--ps-font-family);
  font-size: clamp(1.25rem, 1.0625rem + 0.9375vw, 2rem);
  font-weight: 700;
}

h2,
.h2 {
  color: var(--ps-color-title);
  font-family: var(--ps-font-family);
  font-size: clamp(1.125rem, 1.0313rem + 0.4688vw, 1.5rem);
  font-weight: 600;
}

h3,
.h3 {
  color: var(--ps-color-title);
  font-family: var(--ps-font-family);
  font-size: clamp(1rem, 0.9063rem + 0.4688vw, 1.375rem);
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.2rem);
  font-weight: 600;
}

.title span {
  color: var(--ps-color-orange-2);
}

.content__title {
  display: block;
  margin-bottom: 1rem;
}
.content__title span {
  color: var(--ps-color-orange-2);
}
.content h2,
.content h3 {
  margin-bottom: 1rem;
}
.content p,
.content ul,
.content ol {
  color: var(--ps-color-text);
}
.content a {
  color: var(--ps-color-text);
  -webkit-text-decoration: underline dashed var(--ps-color-grey-4);
          text-decoration: underline dashed var(--ps-color-grey-4);
  transition: color 0.15s ease-in-out;
}
.content a:hover {
  color: var(--ps-color-orange-2);
}
.content ul,
.content ol {
  padding-left: 1rem;
}

blockquote,
.blockquote {
  background-color: var(--ps-color-grey-light);
  border-left: 5px solid var(--ps-color-orange-2);
  color: var(--ps-color-title) !important;
  font-size: 1rem;
  font-weight: 500;
  padding: 1.5rem 2rem;
}

blockquote p {
  margin-bottom: 0;
}

.img-responsive {
  max-width: 100%;
  height: auto;
}

section {
  flex: 1 0 auto;
}

.ps_navbar {
  animation: wrapper 2.5s forwards;
  background-color: var(--ps-color-grey-light-2);
  opacity: 0;
  z-index: 1021;
}
.ps_navbar.opaqe {
  box-shadow: 0px -2px 12px rgba(0, 0, 0, 0.1);
}
.ps_navbar .navbar-toggler {
  position: absolute;
  left: 320px;
  border: none;
}
.ps_navbar .navbar-toggler:focus {
  box-shadow: none;
}
.ps_navbar .navbar-toggler .navbar-toggler-icon {
  background-image: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ps-color-title);
  font-size: 1.375rem;
}
.ps_navbar .navbar-collapse {
  justify-content: flex-end;
  margin-right: 4rem;
}
.ps_navbar .navbar-collapse .title_menu {
  display: none;
  font-size: 1.175rem;
  font-weight: 600;
  color: var(--ps-color-title);
  margin-bottom: 0.5rem;
}
.ps_navbar .navbar-collapse .navbar-nav {
  display: flex;
  gap: 0.5rem;
}
.ps_navbar .navbar-collapse .nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ps-color-title);
  white-space: nowrap;
  transition: color 0.3s ease-in-out;
}
.ps_navbar .navbar-collapse .nav-link.active, .ps_navbar .navbar-collapse .nav-link:hover {
  color: var(--ps-color-orange-2);
}
.ps_navbar .wrapper {
  display: flex;
}
.ps_navbar .wrapper .translit_wrap {
  position: relative;
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}
.ps_navbar .wrapper .translit_wrap .translit__link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 500;
  background-color: var(--ps-color-grey-light-2);
  border: none;
  color: var(--ps-color-text);
  outline: none;
  text-transform: uppercase;
  padding: 0.375rem 0.75rem;
}
.ps_navbar .wrapper .translit_wrap .translit__link::after {
  content: none;
}
.ps_navbar .wrapper .translit_wrap .translit__link > i {
  font-size: 1.2rem;
  color: var(--ps-color-text);
}
.ps_navbar .wrapper .translit_wrap .translit {
  font-size: 0.8rem;
  font-weight: 500;
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.12);
  background-color: var(--ps-color-grey-light-2);
  border: none;
  border-radius: 0;
  color: var(--ps-color-black);
  text-transform: uppercase;
  min-width: 45px;
  width: auto;
  top: calc(100% + 8px);
  padding: 0.25rem 0;
}
.ps_navbar .wrapper .translit_wrap .translit .translit_item {
  color: var(--ps-color-black);
  display: flex;
  justify-content: center;
  text-decoration: none;
  padding: 0.25rem 0.75rem;
}
.ps_navbar .wrapper .translit_wrap .translit .translit_item.active {
  color: var(--ps-color-orange-2);
}
.ps_navbar .wrapper .connection_wrap {
  position: relative;
}
.ps_navbar .wrapper .connection_wrap .btn_mobile {
  background-image: url(../img/btn_mobile.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 42%;
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.12);
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  position: fixed;
  right: 1.5rem;
  top: 42%;
}
.ps_navbar .wrapper .connection_wrap .connection {
  background-color: var(--ps-color-grey-light-2);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.12);
  border: none;
  border-radius: 0;
  top: calc(100% + 8px);
  right: 0;
  left: auto;
  min-width: 320px;
  padding: 1rem 1rem 2rem;
  width: -moz-fit-content;
  width: fit-content;
}
.ps_navbar .wrapper .connection_wrap .connection__title {
  display: block;
  font-size: 1.175rem;
  font-weight: 600;
  color: var(--ps-color-title);
  margin-bottom: 1rem;
  margin-left: 0.8rem;
}
.ps_navbar .wrapper .connection_wrap .connection .dropdown_close {
  display: none;
  position: absolute;
  top: 1rem;
  right: 1rem;
}
.ps_navbar .wrapper .connection_wrap .connection__item {
  font-weight: 500;
  min-width: -moz-fit-content;
  min-width: fit-content;
}
.ps_navbar .wrapper .connection_wrap .connection__item .item__body {
  font-size: 0.9rem;
}
.ps_navbar .wrapper .connection_wrap .connection__item .item__body > p {
  color: var(--ps-color-grey-dark);
  margin-bottom: 0;
}
.ps_navbar .wrapper .connection_wrap .connection__item .item__body > p a {
  color: var(--ps-color-orange-2);
  text-decoration: none;
}
.ps_navbar .wrapper .connection_wrap .connection__item .item__body > p a:hover {
  color: var(--ps-color-red-dark);
  -webkit-text-decoration: underline dashed;
          text-decoration: underline dashed;
  transition: color 0.3s ease-in-out;
}
.ps_navbar .wrapper .connection_wrap .connection__item .item__hr {
  border: none;
  border-top: 1px solid var(--ps-color-grey-dark);
}
.ps_navbar .wrapper .connection_wrap .connection__item .item__time {
  color: var(--ps-color-grey-dark);
  font-size: 0.9rem;
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}
.ps_navbar .wrapper .connection_wrap .connection__item .item__time p {
  margin-bottom: 0;
}

.breadcrumbs.mobile {
  display: none;
}
.breadcrumbs {
  padding: 0 0 1.5rem 0;
}
.breadcrumbs .breadcrumb {
  background-color: transparent;
  padding: 0;
  margin-bottom: 0;
}
.breadcrumbs .breadcrumb .breadcrumb-item {
  color: var(--ps-color-grey-2);
  font-weight: 500;
}
.breadcrumbs .breadcrumb .breadcrumb-item a {
  color: var(--ps-color-orange-2);
  text-decoration: none;
  transition: color 0.125s ease-in-out;
}
.breadcrumbs .breadcrumb .breadcrumb-item a:hover {
  color: var(--ps-color-grey-dark);
  text-decoration: none;
}
.breadcrumbs .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: "\f105";
  font-family: "Font Awesome 5 Pro";
  font-weight: 300;
  color: var(--ps-color-grey-2);
  margin: 0 0.5rem;
}

/* header */
@keyframes wrapper {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes preloader {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
header {
  animation: wrapper 2.5s forwards;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  opacity: 0;
  background-color: var(--ps-color-white);
  position: relative;
  overflow: hidden;
  width: 100%;
  z-index: 11;
}

.header {
  margin-bottom: clamp(1rem, 0.273rem + 3.636vw, 3rem);
  padding: 1rem 0 0;
  position: relative;
  height: -moz-fit-content;
  height: fit-content;
}
.header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/header/header_bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: -100% center;
  opacity: 0.0185;
  z-index: -1;
}
.header__title {
  animation: wrapper 3.5s forwards;
  opacity: 0;
  position: absolute;
  width: calc(100% - 3rem);
  height: auto;
  z-index: 3;
}
.header__title .title {
  font-family: var(--ps-font-title);
  font-size: clamp(2rem, 0.925rem + 5.375vw, 6.3rem);
  font-weight: 900;
  line-height: 1.175;
  letter-spacing: 2%;
  text-transform: uppercase;
  transition: color 0.8s ease-in-out;
  text-align: left;
}
.header__title .title span {
  transition: color 0.8s ease-in-out;
}
.header__title .title .active {
  color: var(--ps-color-title);
}
.header__title .title.parallax-text {
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateY(0);
}
.header__title .description {
  margin-top: clamp(1rem, calc(0.636rem + 1.818vw), 2rem);
  max-width: 500px;
}
.header__title .description p {
  /* color: var(--ps-color-title); */
  font-size: clamp(1rem, 0.9688rem + 0.1563vw, 1.125rem);
  font-weight: 500;
  margin-bottom: .5rem;
}
.header__title .header__btn {
  margin-top: 2.5rem;
}
.header__img {
  animation: wrapper 0.5s forwards;
  opacity: 0;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  margin-top: 8rem;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.header__img img {
  width: 100%;
  max-width: 700px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  transition: transform 0.1s linear;
  margin-left: 20rem;
}
.header__slogan {
  position: absolute;
  bottom: 28%;
  width: calc(100% - 3rem);
  display: flex;
  justify-content: space-between;
}
.header__slogan .slogan__left,
.header__slogan .slogan__right {
  font-size: 1rem;
  font-weight: 500;
  color: var(--ps-color-grey-dark);
}
.header__slogan .slogan__left {
  display: flex;
  gap: 1rem;
}
.header__slogan .slogan__left .slogan__avatar {
  display: none;
}
.header__slogan .slogan__left .slogan__avatar img {
  border: 2px solid var(--ps-color-white);
  border-radius: 100%;
  box-shadow: -4px 4px 10px 0px rgba(0, 0, 0, 0.12);
  height: 46px;
  width: 46px;
}
.header__slogan .slogan__left .slogan__avatar img:not(:first-child) {
  margin-left: -1rem;
}
.header__slogan .slogan__left p {
  max-width: 200px;
}
.header__slogan .slogan__right {
  max-width: 200px;
  text-align: right;
}
.header__textTwo {
  bottom: 12%;
  position: absolute;
  display: flex;
  justify-content: center;
  width: calc(100% - 3rem);
  z-index: 2;
}
.header__textTwo .title__two {
  font-size: 2.375rem;
  font-weight: 600;
  letter-spacing: 4%;
  opacity: 0;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  transform: translateY(40px);
}
.header__textTwo .title__two.visible {
  opacity: 1;
  transform: translateY(0);
}
.header__textTwo .title__two span {
  transition: color 0.6s ease-in-out;
}
.header__textTwo .title__two span + span {
  transition: color 1.2s ease-in-out;
}
.header__textTwo .title__two .active {
  color: var(--ps-color-orange-2);
}

#preloader {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999999;
  background: #fff;
}
#preloader .preloader {
  width: 35px;
  height: 35px;
  display: inline-block;
  padding: 0px;
  border-radius: 100%;
  border: 2px solid;
  border-top-color: currentcolor;
  border-right-color: currentcolor;
  border-bottom-color: currentcolor;
  border-left-color: currentcolor;
  border-top-color: rgba(12, 144, 206, 0.65);
  border-bottom-color: rgba(12, 144, 206, 0.15);
  border-left-color: rgba(12, 144, 206, 0.65);
  border-right-color: rgba(12, 144, 206, 0.15);
  animation: preloader 0.8s linear infinite;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -17.5px;
  transform: translate(-50%, -50%);
}

.services {
  margin: 1rem 0 3rem;
}
.services .services__title {
  font-size: clamp(1.25rem, 1.0625rem + 0.9375vw, 2rem);
  font-family: var(--ps-font-title);
  font-weight: 900;
  letter-spacing: 4%;
  margin-bottom: 3rem;
  text-transform: uppercase;
  text-align: center;
}
.services .services__title span {
  transition: color 0.6s ease-in-out;
}
.services .services__title span + span {
  transition: color 1s ease-in-out;
}
.services .services__title .active {
  color: var(--ps-color-orange-2);
}
.services__wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1rem;
}
.services__item {
  background-color: var(--ps-color-grey-light);
  height: 240px;
  overflow: hidden;
  position: relative;
  transition: all 0.175s ease-in-out;
}
.services__item .item__head {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem;
}
.services__item .item__head h3 {
  color: var(--ps-color-title);
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.2rem);
  transition: color 0.175s ease-in-out;
}
.services__item .item__head .prise {
  color: var(--ps-color-title);
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.175s ease-in-out;
  white-space: nowrap;
}
.services__item .item__text {
  padding: 1.5rem;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.services__item .item__text p {
  color: var(--ps-color-text);
  line-height: 1.25rem;
  margin-bottom: 0;
  transition: color 0.175s ease-in-out;
}
.services__item .mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  display: block;
  text-decoration: none;
}
.services__item:hover {
  background-color: var(--ps-color-orange-2);
}
.services__item:hover .item__head h3,
.services__item:hover .item__head .prise,
.services__item:hover .item__text p {
  color: var(--ps-color-white);
}
.services__content {
  display: flex;
  position: relative;
  background: var(--ps-color-white);
  padding: 0;
  width: 100%;
  margin: 0 auto;
  height: 100vh;
  font-weight: 500;
}
.services__content .title {
  margin-bottom: 1rem;
}
.services__content .title.mob {
  display: none;
}
.services__content .img_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  overflow: hidden;
  width: 50%;
}
.services__content .img_wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.services__content .img_wrap img.lazy {
  display: block;
  overflow: hidden;
  background: transparent url(../img/lazy-loader.gif) no-repeat center center;
}
.services__content .content_wrap {
  position: relative;
  padding: 2rem;
  width: 50%;
}
.services__content .content_wrap .title {
  font-size: clamp(1.25rem, 1.1125rem + 0.6875vw, 1.8rem);
  font-weight: 800;
  letter-spacing: 2%;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  max-width: calc(100% - 1.5rem);
}
.services__content .content_wrap .desc {
  font-size: clamp(0.9rem, 0.875rem + 0.125vw, 1rem);
  line-height: 1.275;
}
.services__content .content_wrap .desc a {
  color: var(--ps-color-orange-2);
  transition: color 0.175s ease-in-out;
}
.services__content .content_wrap .desc a:hover {
  -webkit-text-decoration: underline dashed;
          text-decoration: underline dashed;
}
.services__content .content_wrap hr {
  border: none;
  border-top: 1px solid var(--ps-color-grey-4);
  margin: 1.5rem 0;
  opacity: 1;
}
.services__content .content_wrap .price p {
  color: var(--ps-color-grey-dark);
  font-size: 1rem;
}
.services__content .content_wrap .price p span {
  color: var(--ps-color-title);
	display: block;
  font-weight: 600;
}
.services__content .content_wrap .iteracion {
  list-style-type: none;
  padding-left: 0;
  font-size: clamp(0.9rem, 0.875rem + 0.125vw, 1rem);
}
.services__content .content_wrap .iteracion li {
  color: var(--ps-color-grey-dark);
  font-weight: 500;
  display: flex;
  flex-direction: column;
  margin-bottom: .5rem;
}
.services__content .content_wrap .iteracion li span,
.services__content .content_wrap .iteracion li p {
  color: var(--ps-color-title);
  font-weight: 600;
}
.services__content .content_wrap .btn_wrap {
  margin: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.services__content .content_wrap .btn_wrap .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.services__content .content_wrap .btn_wrap .btn {
	padding: 0.675rem 3rem;
}
.services__content .content_wrap .btn_wrap p {
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0;
}
.services__content .content_wrap .btn_wrap p a {
  color: var(--ps-color-orange-2);
  display: block;
  text-align: right;
  text-decoration: none;
  transition: color 0.175s ease-in-out;
}
.services__content .content_wrap .btn_wrap p a:hover {
  -webkit-text-decoration: underline dashed;
          text-decoration: underline dashed;
}
.services__content .content_wrap .content__more {
  position: absolute;
  bottom: 2rem;
  width: calc(100% - 4rem);
  height: 180px;
}
.services__content .content_wrap .content__more .more {
  display: flex;
  position: relative;
  white-space: nowrap;
  gap: 1rem;
}
.services__content .content_wrap .content__more .more::after {
  background-color: transparent;
  border-bottom: 1px solid var(--ps-color-grey-4);
  content: "";
  height: 0;
  width: 100%;
  position: relative;
  margin: 0;
  top: 13px;
}
.services__content .content_wrap .content__more .more_button {
  display: flex;
  justify-content: space-between;
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
}
.services__content .mfp_close {
  font-size: 1.75rem;
  width: 60px;
  height: 60px;
  line-height: 0;
}
.services__content .mfp_close::before {
  content: "\f00d";
  font-family: "Font Awesome 5 Pro";
  font-weight: 300;
}
.services__load {
  margin-top: 2rem;
  text-align: center;
}

.mfp-bg {
  background-color: rgba(255, 255, 255, 0.375);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  opacity: 1;
}

.mfp-container {
  padding: 0;
}
.mfp-container .mfp-arrow {
  display: flex;
  width: calc(50% - .5rem);
  height: 130px;
  top: auto;
  bottom: 0;
  padding: 0;
  background-color: var(--ps-color-grey-light);
  opacity: 1;
  margin-top: 2rem;
}
.mfp-container .mfp-arrow:hover {
  background-color: var(--ps-color-orange-2);
}
.mfp-container .mfp-arrow:hover .custom-info {
  color: var(--ps-color-white);
}
.mfp-container .mfp-arrow:hover .custom-info .mfp_item p {
  color: var(--ps-color-white);
}
.mfp-container .mfp-arrow:hover .custom-info .mfp_item::before, .mfp-container .mfp-arrow:hover .custom-info .mfp_item::after {
  color: var(--ps-color-orange-2) !important;
}
.mfp-container .mfp-arrow.mfp-arrow-left {
  left: 0;
}
.mfp-container .mfp-arrow.mfp-arrow-right {
  right: 0;
}
.mfp-container .mfp-arrow .custom-info {
  color: var(--ps-color-title);
  font-weight: 500;
  display: flex;
  width: 100%;
}
.mfp-container .mfp-arrow .custom-info .mfp_item {
  display: flex;
  align-items: center;
	height: 130px;
  width: 100%;
}
.mfp-container .mfp-arrow .custom-info .mfp_item img {
	display: block;
  width: clamp(70px, -27.348px + 9.823vw, 120px);
	min-height: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0;
	font-family: 'object-fit: cover;';
}
.mfp-container .mfp-arrow .custom-info .mfp_item p {
  display: flex;
  flex-direction: column;
	justify-content: space-around;
  height: 100%;
  gap: 1rem;
  font-size: 0.9rem;
  font-weight: 700;
  margin: 0 1rem;
  line-height: 1.275;
}
.mfp-container .mfp-arrow .custom-info .mfp_item p span {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
}
.mfp-container .mfp-arrow .custom-info .mfp_item.prev {
  justify-content: flex-start;
  text-align: left;
}
.mfp-container .mfp-arrow .custom-info .mfp_item.prev::before {
  color: var(--ps-color-title);
  /*content: "\f053";*/
	content: none;
  font-family: "Font Awesome 5 Pro";
  font-weight: 300;
  position: absolute;
  left: 0.5rem;
}
.mfp-container .mfp-arrow.mfp-arrow-right .custom-info {
  justify-content: flex-end;
}
.mfp-container .mfp-arrow.mfp-arrow-right .custom-info .mfp_item.next {
  justify-content: flex-end;
  text-align: right;
}
.mfp-container .mfp-arrow.mfp-arrow-right .custom-info .mfp_item.next::after {
  color: var(--ps-color-title);
  /*content: "\f054";*/
	content: none;
  font-family: "Font Awesome 5 Pro";
  font-weight: 300;
  position: absolute;
  right: 0.5rem;
}
.mfp-container .mfp-arrow::before,
.mfp-container .mfp-arrow::after {
  border: none;
  margin: 0;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.webdesign {
  margin-bottom: 5rem;
}
.webdesign__wrap {
  background-color: var(--ps-color-grey-light);
  display: flex;
  max-height: 524px;
  overflow: hidden;
  gap: 2rem;
}
.webdesign__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  position: relative;
}
.webdesign__content .badge {
  position: absolute;
  width: -moz-fit-content;
  width: fit-content;
  top: 1.5rem;
}
.webdesign__content .btn {
  width: -moz-fit-content;
  width: fit-content;
}
.webdesign__price {
  margin: 1rem 0;
}
.webdesign__price span {
  color: var(--ps-color-title);
  font-weight: 600;
}
.webdesign__img {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  max-width: 60%;
  width: auto;
}
.webdesign__img img {
  min-height: 100%;
  min-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left;
     object-position: left;
  margin-top: 3rem;
}

.mission {
  padding: 3rem 0;
}
.mission__title {
  top: 60px;
}
.mission__title .title__mission {
  font-family: var(--ps-font-title);
  font-size: clamp(1.25rem, 1.0625rem + 0.9375vw, 2rem);
  font-weight: 900;
  letter-spacing: 4%;
  text-transform: uppercase;
	padding-right: 2.5rem;
}
.mission__title .title__mission span {
  transition: color 0.6s ease-in-out;
}
.mission__title .title__mission span + span {
  transition: color 1s ease-in-out;
}
.mission__title .title__mission .active {
  color: var(--ps-color-orange-2);
}
.mission__title .title__slogan {
  display: inline-block;
  font-size: clamp(1.2rem, 1.075rem + 0.625vw, 1.7rem);
  font-weight: 600;
  color: var(--ps-color-title);
  letter-spacing: 0;
  text-transform: inherit;
  margin-top: 1rem;
  margin-bottom: 3rem;
  line-height: 1.2;
}
.mission__text {
  margin-bottom: clamp(0rem, -1.091rem + 5.455vw, 3rem);
}
.mission__text span {
  color: var(--ps-color-grey-2);
  transition: color 0.8s ease-in-out;
}
.mission__text span.active {
  color: var(--ps-color-title);
}
.mission__text > h3 {
  font-size: clamp(1rem, 0.9063rem + 0.4688vw, 1.375rem);
  margin-bottom: 1rem;
}
.mission__text .show_more {
  display: none;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ps-color-orange-2);
  cursor: pointer;
}

.faq_home {
  background-color: var(--ps-color-grey-light-2);
  padding: clamp(3rem, 2.273rem + 3.636vw, 5rem) 0;
}
.faq_home__title {
  margin-bottom: 1rem;
  line-height: 1.2;
  padding-right: 2.5rem;
  top: 60px;
}
.faq_home__title .title {
  color: var(--ps-color-title);
  display: inline-block;
  font-family: var(--ps-font-title);
  font-size: clamp(1rem, 0.8125rem + 0.9375vw, 1.75rem);
  font-weight: 900;
  letter-spacing: 4%;
  text-transform: uppercase;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.faq__collapse {
  border-bottom: 1px solid var(--ps-color-grey-4);
  margin-bottom: 1rem;
}
.faq__collapse summary::marker,
.faq__collapse summary::-webkit-details-marker {
  content: none;
  display: none;
}
.faq__collapse summary {
  display: flex;
  align-items: center;
  position: relative;
  padding-bottom: 1rem;
  padding-right: 2rem;
}
.faq__collapse summary::before {
  background-color: var(--ps-color-orange-2);
  border-radius: 100%;
  color: var(--ps-color-white);
  content: "\f175";
  font-family: "Font Awesome 5 Pro";
  font-weight: 300;
  font-size: 0.9rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 0;
  height: 25px;
  width: 25px;
  top: 0;
}
.faq__collapse[open] > summary::before {
  content: "\f176";
}
.faq__collapse:not(.collapse-close) > .collaps__title {
  cursor: pointer;
}
.faq__collapse:is(details):where([open])::collapse__content {
  height: auto;
}
.faq .collapse__title > h3 {
  margin-bottom: 0;
}
.faq .collapse__content {
  margin-top: 1rem;
  color: var(--ps-color-text);
	padding-right: 2.5rem;
  padding-bottom: 1rem;
}

.advert__top {
  animation: wrapper 2.5s forwards;
  opacity: 0;
  height: 2.2rem;
  width: 100%;
}
.advert__top .alert {
  border-radius: 0;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  height: 100%;
  width: 100%;
  padding: 0 1.5rem;
  margin-bottom: 0;
  text-decoration: none;
}
.advert__top .alert .icon_alert {
  animation: flash 600ms linear 250ms 3 normal;
}
.advert__top.show {
  display: block !important;
}
.advert__top.hidden {
  display: none !important;
}

.advert__modal .modal-dialog {
  max-width: 600px;
  margin: 1.75rem auto;
}
.advert__modal .modal-dialog .alert {
  margin-bottom: 0;
}
.advert__modal .modal-dialog .alert .close {
  cursor: pointer;
  font-size: 2.3rem;
  font-weight: 300;
  padding: 0;
  position: absolute;
  background: none;
  border: none;
  top: 0;
  right: 0;
  z-index: 1;
  width: 3rem;
}
.advert__modal .advert__text {
  text-align: center;
}
.advert__modal .advert__text hr {
  margin: 1rem auto;
  width: 50%;
}

/* service_page */

.service_page {
  padding-bottom: 3rem;
}
.service_page .services__content {
  height: auto;
}
.service_page .services__content .img_wrap img {
  aspect-ratio: 1 / 1;
}
.services_page .services__more {
  display: flex;
  position: relative;
  white-space: nowrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
  margin-top: 1.5rem;
}
.services_page .services__more::after {
  background-color: transparent;
  border-bottom: 1px solid var(--ps-color-grey-4);
  content: "";
  height: 0;
  width: 100%;
  position: relative;
  margin: 0;
  top: 13px;
}

.footer {
  background-color: #000;
  padding-top: 2rem;
  position: relative;
}
.footer__logo {
  margin-bottom: 2rem;
}
.footer__title {
  color: var(--ps-color-grey-dark);
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.footer__time {
  color: var(--ps-color-white);
  font-size: 1rem;
  letter-spacing: 4%;
  margin-bottom: 1rem;
}
.footer__time p {
  margin-bottom: 0;
}
.footer__contact {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer__contact .phone_wrap {
  font-size: 1rem;
  font-weight: 500;
  display: flex;
  gap: 2rem;
}
.footer__contact .phone_wrap > p {
  color: var(--ps-color-grey-2);
  margin-bottom: 0.275rem;
}
.footer__contact .phone_wrap > p a {
  color: var(--ps-color-orange-2);
  text-decoration: none;
}
.footer__contact .phone_wrap > p a:hover {
  color: var(--ps-color-red-dark);
  -webkit-text-decoration: underline dashed;
          text-decoration: underline dashed;
  transition: color 0.3s ease-in-out;
}
.footer .copirayt {
  padding-bottom: 1.5rem;
  padding-top: 1.5rem;
  text-align: center;
}
.footer .copirayt p {
  color: var(--ps-color-grey-dark);
  font-size: 0.9rem;
  margin: 0;
}
.footer .copirayt__links {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 1rem;
}
.footer .copirayt__links a {
  color: var(--ps-color-white);
  font-size: 0.9rem;
  text-decoration: none;
}
.footer .copirayt__links a:hover {
  color: var(--ps-color-orange-2);
  transition: color 0.3s ease-in-out;
}
.footer .copirayt__social {
  display: flex;
  justify-content: flex-end;
  list-style: none;
  line-height: 0;
  padding: 0;
  margin: 0;
  gap: 0.75rem;
}
.footer .copirayt__social a {
  color: var(--ps-color-white);
  font-size: 1.5rem;
  text-decoration: none;
}
.footer .copirayt__social a:hover {
  color: var(--ps-color-orange-2);
  transition: color 0.3s ease-in-out;
}

.modal .modal-dialog {
  margin-top: 3rem;
}
.modal__content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: var(--ps-color-grey-light-2);
  background-clip: padding-box;
  outline: 0;
  padding: 1rem;
}
.modal__header {
  display: flex;
  flex-wrap: wrap;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.modal__header .title {
  color: var(--ps-color-title);
  font-size: 1.2rem;
  font-weight: 600;
}
.modal__header p {
  font-size: 0.9rem;
  margin: 0;
  color: var(--ps-color-text);
}
.modal__header .close {
  background-color: transparent;
  border: none;
  font-size: 1.5rem;
  line-height: 0;
  padding: 0;
  position: absolute;
  top: 0;
  right: 0;
  transition: color 0.175s ease-in-out;
  height: 2.5rem;
  width: 2.5rem;
}
.modal__header .close:hover {
  color: var(--ps-color-orange-2);
}
.modal__body {
  position: relative;
  flex: 1 1 auto;
}
.modal__body iframe {
  height: clamp(300px, 245.455px + 17.045vw, 450px);
}
.modal__body .lazy {
  display: block;
  overflow: hidden;
  background: transparent url(../img/lazy-loader.gif) no-repeat center center;
}
.modal__body .col-md-6 {
  flex: 1 1 auto;
  width: 45%;
}
.modal__body .politica {
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
}
.modal__body .politica label {
  font-weight: 500;
  font-size: 0.75rem;
  line-height: 1.275;
}
.modal__body .politica label a {
  color: var(--ps-color-orange-2);
  text-decoration: none;
  transition: color 0.175s ease-in-out;
}
.modal__body .politica label a:hover {
  -webkit-text-decoration: underline dashed;
          text-decoration: underline dashed;
}
.modal__body .input-file-container {
  border: 1px solid var(--ps-color-grey-4);
  background-color: var(--ps-color-white);
  position: relative;
  width: 100%;
  height: auto;
  min-height: -moz-max-content;
  min-height: max-content;
  text-align: center;
  padding: 1rem;
}
.modal__body .input-file-container .input-file {
  display: none;
}
.modal__body .input-file-container .input-file-label {
  cursor: pointer;
  color: var(--ps-color-grey-dark);
  font-size: 0.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding-bottom: 1rem;
  position: relative;
  z-index: 2;
}
.modal__body .input-file-container .input-file-label span {
  width: 75%;
  text-align: center;
  margin-bottom: 1.5rem;
}
.modal__body .input-file-container:hover .input-file-label {
  color: var(--ps-color-title);
}
.modal__body .input-file-container .file-name {
  margin-top: -2rem;
  width: 100%;
  text-align: center;
  color: var(--ps-color-grey-dark);
  font-size: 0.75rem;
  font-weight: 500;
  display: block;
}
.modal__body .input-file-container .file_list {
  list-style-type: none;
  padding-left: 0;
  margin: 1rem auto 0;
  font-size: 0.75rem;
  text-align: left;
  width: 70%;
}
.modal__body .input-file-container .file_list .file-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}
.modal__body .input-file-container .file_list .file-item .remove-btn {
  background: none;
  border: none;
  color: var(--ps-color-red);
  cursor: pointer;
  font-size: 0.75rem;
  transition: color 0.175s ease-in-out;
}
.modal__body .input-file-container .file_list .file-item .remove-btn:hover {
  color: var(--ps-color-red-2);
}
.modal__body label.captcha {
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
  margin-right: 1rem;
}
.modal__btn {
  margin: 0.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.modal__btn p {
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0;
}
.modal__btn p a {
  color: var(--ps-color-orange-2);
  display: block;
  text-align: right;
  text-decoration: none;
  transition: color 0.175s ease-in-out;
}
.modal__btn p a:hover {
  -webkit-text-decoration: underline dashed;
          text-decoration: underline dashed;
}

.modal-backdrop {
  background-color: rgba(225, 255, 255, 0.375);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  opacity: 1 !important;
}

/* scroll */
.scrollup {
  cursor: pointer;
  width: 30px;
  opacity: 0.95;
  position: fixed;
  bottom: 46%;
  right: 10px;
  display: none;
  text-align: center;
  z-index: 1018;
  transform: rotate(90deg);
}

.scrollup > span {
  color: var(--ps-color-grey-dark);
}

.scrollup:hover {
  opacity: 1;
}

a:active,
a:focus,
a:hover {
  outline: 0 none;
}

@media only screen and (max-width: 480px) {
  .scrollup {
    bottom: 26%;
    right: 0;
  }
}
.scrollup::after,
.scrollup::before {
  background-color: var(--ps-color-grey-dark);
  content: "";
  height: 1px;
  position: absolute;
  top: 50%;
  width: 70px;
}

.scrollup::after {
  right: -80px;
}

.scrollup::before {
  left: -80px;
}

@media (min-width: 576px) {
  .container,
  .container-sm {
    max-width: 100vw;
    width: 100%;
  }
}
@media (min-width: 768px) {
  .container,
  .container-md,
  .container-sm {
    max-width: 100vw;
    width: 100%;
  }
}
@media (min-width: 992px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm {
    max-width: 100vw;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 100vw;
    width: 100%;
  }
}
@media (min-width: 1400px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 100vw;
    width: 100%;
  }
}
/*==========  Desktop First Method  ==========*/
@media only screen and (max-width: 1399px) {
  .hidden-1399 {
    display: none !important;
  }
  .ps_navbar .translit_wrap {
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .services__item {
    height: 200px;
  }
}
@media only screen and (max-width: 1199px) {
  .hidden-1199 {
    display: none !important;
  }
  .ps_navbar > .container {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
  .ps_navbar > .container .navbar-collapse {
    background-color: var(--ps-color-grey-light-2);
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.125);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: auto !important;
    padding: 1rem;
  }
  .ps_navbar > .container .navbar-collapse .title_menu {
    display: inline-block;
  }
  .ps_navbar > .container .navbar-collapse .navbar-nav {
    line-height: 1.275;
    gap: 0;
  }
  .ps_navbar > .container .collapsing {
    transition: none;
  }
  .ps_navbar .wrapper {
    position: absolute;
    right: 1rem;
  }
  .ps_navbar .wrapper .connection_wrap .connection {
    right: -1rem;
    height: auto;
    overflow-y: auto;
  }
  .footer .copirayt__links {
    margin-bottom: 1rem;
  }
  .footer__contact .phone_wrap {
    flex-direction: column;
    gap: 0;
  }
}
@media only screen and (max-width: 991.99px) {
  .hidden-991 {
    display: none !important;
  }
  .breadcrumbs.mobile {
    display: flex;
  }
  .breadcrumbs.desctop {
    display: none;
  }
  .header__img {
    z-index: 1;
  }
  .mission__text .show_more {
    display: inline-block;
  }
	.main .mission__text .show_more {
    display: none;
  }
  .services__content {
    flex-direction: column;
    height: auto;
    padding: 1rem;
  }
  .services__content .title.mob {
    display: block;
    font-size: clamp(1.1rem, 0.7905rem + 1.5476vw, 1.75rem);
    font-weight: 700;
    padding-right: 3rem;
  }
  .services__content .img_wrap {
    height: clamp(300px, 214.286px + 26.786vw, 480px);
    width: 100%;
  }
  .services__content .content_wrap {
    margin-top: 1rem;
    padding: 0;
    width: 100%;
  }
  .services__content .content_wrap .title {
    display: none;
  }
  .services__content .content_wrap hr {
    margin: 1rem 0;
  }
  .services__content .content_wrap .content__more {
    height: auto;
    position: static;
    width: 100%;
  }
  .services__content .content_wrap .content__more .more_button {
    position: static;
  }
  .services__content .content_wrap .content__more .more_button .mfp-arrow {
    margin: 1rem 0;
    width: calc(50% - 1rem);
    position: relative;
    transform: none;
  }
  .services__content .content_wrap .content__more .more_button .mfp-arrow .mfp_item img {
    width: 120px;
  }
  .webdesign__wrap {
    flex-direction: column;
    gap: 0;
    max-height: none;
  }
  .webdesign__content .badge {
    position: static;
    margin-bottom: 2rem;
  }
  .webdesign__img {
    max-width: 100%;
  }
  .webdesign__img img {
    -o-object-position: 2rem;
       object-position: 2rem;
    margin-top: 1.5rem;
  }
  .service_page .services__content {
    padding: 1rem 0;
  }
  .footer .copirayt__social {
    position: absolute;
    top: 2rem;
    right: 1.5rem;
  }
}
@media only screen and (max-width: 767.99px) {
  .hidden-767 {
    display: none !important;
  }
  .breadcrumbs .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    margin: 0 0.15rem;
  }
  .header__img {
    margin-top: 17rem;
  }
  .header__img img {
    margin-left: 0;
  }
  .webdesign__img {
    max-height: 350px;
  }
  .webdesign__img img {
    -o-object-position: 2rem 2rem;
       object-position: 2rem 2rem;
  }
  .footer__contact {
    align-items: flex-start;
  }
  .footer__contact .footer__title {
    margin-bottom: 1rem;
  }
}
@media only screen and (max-width: 575.99px) {
  .hidden-575 {
    display: none !important;
  }
  .container {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .ps_navbar .navbar-toggler {
    right: 0.5rem;
    left: auto;
    padding: 0;
  }
  .ps_navbar .wrapper {
    right: 3.5rem;
  }
  .ps_navbar .wrapper .connection_wrap .btn_desctop {
    display: none;
  }
  .ps_navbar .wrapper .connection_wrap .btn_mobile {
    display: block;
    right: 1rem;
    opacity: 1;
    visibility: visible;
    transition: all 0.175s ease-in-out;
  }
  .ps_navbar .wrapper .connection_wrap .btn_mobile.show {
    opacity: 0;
    visibility: hidden;
    transition: all 0.175s ease-in-out;
  }
  .ps_navbar .wrapper .connection_wrap .connection {
    width: 100vw;
    right: -3.5rem;
  }
  .ps_navbar .wrapper .connection_wrap .connection .dropdown_close {
    display: block;
  }
  .ps_navbar .wrapper .connection_wrap .connection__title {
    margin-left: 0;
  }
  .ps_navbar .wrapper .connection_wrap .row > .col-12 {
    padding-right: 0;
    padding-left: 0;
  }
  .header__title {
    width: calc(100% - 2rem);
  }
	.service_page {
		padding-bottom: 1.5rem;
	}
  .mission {
    padding: 1.5rem 0;
  }
  .services__item .item__head,
  .services__item .item__text {
    padding: 1rem;
  }
  .services__content .content_wrap .content__more .more_button {
    display: block;
  }
  .services__content .content_wrap .content__more .more_button .mfp-arrow {
    width: 100%;
  }
}
@media only screen and (max-width: 479.99px) {
  .hidden-480 {
    display: none !important;
  }
  .breadcrumbs .breadcrumb {
    justify-content: center;
  }
  .breadcrumbs .breadcrumb .breadcrumb-item {
    font-size: 0.875rem;
  }
  .about_home {
    padding: 1rem 0 2.5rem;
  }
  .about_home__title h2 {
    margin-bottom: 2rem;
  }
  .about_home__text {
    margin-top: 1rem;
  }
  .webdesign {
    margin-bottom: 3rem;
  }
  .webdesign__content {
    padding: 1rem 1rem 1.5rem;
  }
  .webdesign__content .btn {
    width: 100%;
  }
  .webdesign__img {
    max-height: 275px;
  }
  .webdesign__img img {
    -o-object-position: 2rem 1rem;
       object-position: 2rem 1rem;
  }
	.mission__title .title__mission,
	.faq_home__title {
		padding-right: 0;
	}
  .footer .copirayt__br {
    display: block;
  }
  .modal__body .col-md-6 {
    width: 100%;
  }
}
@media only screen and (max-width: 419.99px) {
  .hidden-420 {
    display: none !important;
  }
  .ps_navbar .wrapper .connection_wrap .connection__item .btn {
    width: 100%;
  }
  .webdesign__img {
    max-height: 220px;
  }
  .webdesign__img img {
    -o-object-position: 1rem 0;
       object-position: 1rem 0;
  }
  .services__content .content_wrap .btn_wrap .btn {
    width: 100%;
  }
  .services__content .content_wrap .btn_wrap p a {
    text-align: left;
  }
  .modal__btn .btn {
    width: 100%;
  }
  .modal__btn p a {
    text-align: left;
  }
  .advert__modal .modal-body {
    padding-left: 0;
    padding-right: 0;
  }
	
	.footer .copirayt__social {
		position: static;
    justify-content: flex-start;
    margin-top: 2rem;
	}
}
@media only screen and (max-width: 359.99px) {
	.navbar-brand > img {width: 90%;}
	
  .services__wrap {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}