@import url("https://web-archive.nli.org.il/National_Library/cs_/https://fonts.googleapis.com/css2?family=Rubik:wght@400;700;900&display=swap");
@import url("https://web-archive.nli.org.il/National_Library/cs_/https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;800&display=swap");
html {
  direction: ltr;
  scroll-behavior: smooth;
  scroll-margin-top: 80px;
  max-width: 100vw;
  overflow-x: hidden;
}

/* ================= GENERAL */
*,
*::after,
::before {
  box-sizing: border-box;
}

body {
  font-family: "Rubik", "Open Sans", "Helvetica Neue", sans-serif;
}

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

.txt-left,
.text-left {
  text-align: left;
}

.txt-center,
.text-center {
  text-align: center;
}

.txt-right,
.text-right {
  text-align: right;
}

.txt-small,
.text-small {
  font-size: 0.875rem;
}

.txt-white,
.text-white {
  color: white;
}

.txt-blue,
.text-blue {
  color: #2a4365;
}

.b-slant {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 96%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 100% 96%, 0 100%);
}

.mobile-hide {
  display: none;
}

.desktop-hide {
  display: block;
}

.full-width {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

@media (min-width: 37.5em) {
  .mobile-hide {
    display: block;
  }
  .desktop-hide {
    display: none;
  }
}
/* AMIMATIONS */
.fadeIn {
  animation: fadeInAnimation both;
  animation-timeline: view(70% 5%);
}

@keyframes fadeInAnimation {
  from {
    opacity: 0;
    transform: translateY(200px) scale(0.3);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
/* ====================== COLORS _colors.scss */
.txt-color-dark {
  color: #2d3748;
}

.txt-color-light {
  color: #eff2f6;
}

/* ====================== TYPOGRAPHY _ typography.scss */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", "Rubik", san-serif;
  clear: both;
}

p {
  margin-bottom: 1.5em;
}

dfn,
cite,
em,
i {
  font-style: italic;
}

blockquote {
  margin: 0 1.5em;
}

address {
  margin: 0 0 1.5em;
}

pre {
  background: #eee;
  font-family: "Courier 10 Pitch", courier, monospace;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}

code,
kbd,
tt,
var {
  font-family: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

abbr,
acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}

mark,
ins {
  background: #fff9c0;
  text-decoration: none;
}

big {
  font-size: 125%;
}

/* ===================== ELEMENTS _elements.scss */
.btn-default {
  color: #222222;
  background-color: white;
  border-color: white;
  transition: all 0.35s;
}

.btn-default:hover,
.btn-default:focus,
.btn-default.focus,
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
  color: #222222;
  background-color: #f2f2f2;
  border-color: #ededed;
}

.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
  background-image: none;
}

.btn-default.disabled,
.btn-default[disabled],
fieldset[disabled] .btn-default,
.btn-default.disabled:hover,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default:hover,
.btn-default.disabled:focus,
.btn-default[disabled]:focus,
fieldset[disabled] .btn-default:focus,
.btn-default.disabled.focus,
.btn-default[disabled].focus,
fieldset[disabled] .btn-default.focus,
.btn-default.disabled:active,
.btn-default[disabled]:active,
fieldset[disabled] .btn-default:active,
.btn-default.disabled.active,
.btn-default[disabled].active,
fieldset[disabled] .btn-default.active {
  background-color: white;
  border-color: white;
}

.btn-default .badge {
  color: #eff2f6;
  background-color: #222222;
}

.btn-primary {
  color: #fff;
  background-color: #2a4365;
  border-color: #2a4365;
  transition: all 0.35s;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
  color: #fff;
  background-color: #2c5282;
  border-color: #2c5282;
}

.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
  background-image: none;
}

.btn-primary.disabled,
.btn-primary[disabled],
fieldset[disabled] .btn-primary,
.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled.focus,
.btn-primary[disabled].focus,
fieldset[disabled] .btn-primary.focus,
.btn-primary.disabled:active,
.btn-primary[disabled]:active,
fieldset[disabled] .btn-primary:active,
.btn-primary.disabled.active,
.btn-primary[disabled].active,
fieldset[disabled] .btn-primary.active {
  background-color: #2a4365;
  border-color: #2a4365;
}

.btn-primary .badge {
  color: #2a4365;
  background-color: white;
}

.btn {
  font-family: "Open Sans", "Helvetica Neue", Arial, sans-serif;
  border: none;
  border-radius: 6px;
  font-weight: 700;
  text-transform: uppercase;
}

.btn-xl {
  padding: 15px 30px;
}

.btn-md {
  padding: 10px 20px;
}

/* ====================== HEADER */
.site-header {
  text-align: center;
}
.site-header a,
.site-header a:visited {
  color: #eff2f6;
  text-decoration: none;
}
.site-header .site-branding {
  margin-bottom: 2.5em;
}

/* ====================== THANKS */
.site-thx section {
  min-height: 10vh;
}
.site-thx .headline {
  margin-top: 10vh;
}
.site-thx .headline__title {
  color: white;
}
.site-thx .script {
  font-size: 1.25rem;
}
.site-thx .script .script__name {
  font-weight: 400;
  margin: 0 auto;
  max-width: 15ch;
}
.site-thx .script .script__quote {
  text-align: left;
  margin: 0.2em 0;
  margin-left: 3em;
  max-width: 25ch;
}
.site-thx .script .script__instructions {
  text-align: left;
  margin: 0;
  margin-top: 1em;
}
.site-thx .script .script__fade {
  text-align: right;
  font-weight: 400;
  font-size: 1.125rem;
  margin: 0;
}
.site-thx .contact-details {
  display: flex;
  margin-top: 3em;
  justify-content: space-between;
}
.site-thx .section-thx-about .title__about span {
  display: block;
  font-size: 0.7em;
  font-weight: 400;
}

/* ============== DIGITAL */
.site-digital .section__content {
  max-width: 65ch;
}

.site-header-digital .close-icon,
.site-header-digital .hamburger-icon,
.site-header-digital a,
.site-header-digital a:visited {
  color: #2d3748;
}

.site-main-digital .hero-digital {
  height: auto;
  min-height: 75vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: -2rem;
}
.site-main-digital .hero-digital img {
  display: block;
  width: 100%;
  height: 75vh;
  position: absolute;
  top: 80px;
  left: 0;
  z-index: -25;
  -o-object-fit: cover;
     object-fit: cover;
  background-position: center;
  font-family: "object-fit:cover"; /* Safari 6.0 - 9.0 */
  filter: grayscale(50%);
}
.site-main-digital .hero-digital .texture {
  width: 100%;
  height: 75vh;
  position: absolute;
  top: 80px;
  left: 0;
  z-index: -15;
  background: url("/National_Library/oe_/https://www.shepaz.com/assets/textures/cross-stripes.png");
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.5;
}
.site-main-digital .hero-digital .headline {
  padding: 1em;
  text-align: center;
  align-self: center;
  color: #eff2f6;
  max-width: 85ch;
  margin-top: 15vh;
  text-shadow: 2px 2px 20px #000000;
}
.site-main-digital .hero-digital .headline .headline__top {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0;
}
.site-main-digital .hero-digital .headline .headline__title {
  margin: 0;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
}
.site-main-digital .hero-digital .headline .healine__desc {
  margin-bottom: 1.5em;
  font-size: 2m;
  font-weight: 700;
  line-height: 1.4em;
  max-width: 35ch;
}

.what-digital {
  min-height: 10vh;
  height: auto;
  background-color: #2d3748;
  color: #e2e8f0;
  height: auto;
}
.what-digital .what__content {
  max-width: 65ch;
  font-size: 1.25rem;
}
.what-digital .what__content p {
  margin-bottom: 0em;
}
.what-digital .comp-type-container {
  padding: 3em 0;
}

.site-digital .comp-type-container {
  justify-content: center;
}
.site-digital .comp-type-container .service-box {
  margin: 0 2em;
}
.site-digital .services-container {
  flex-direction: row;
  justify-content: space-around;
  flex-wrap: wrap;
}
.site-digital .services-container .service-box {
  min-width: 25%;
}

.why-digital,
.whyus-digital {
  background-color: #2d3748;
  color: #e2e8f0;
  height: auto;
}

.why-digital .why__content {
  max-width: 65ch;
  margin: 0 auto;
  font-size: 1.125rem;
}

.whyus-digital .whyus__image {
  margin: 0 auto;
}
.whyus-digital .whyus__content {
  font-size: 1.125rem;
}

.site-digital .section-carousel {
  margin-bottom: 3em;
}
.site-digital .section-carousel .carousle__slide {
  max-height: 90vh;
  margin: 0 auto;
  -o-object-fit: scale-down;
  object-fit: scale-down;
}

.testimonials__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 100%;
}
.testimonials__content .card {
  background: #fff;
  box-shadow: 0px 10px 13px -6px rgba(0, 0, 0, 0.08), 0px 20px 31px 3px rgba(0, 0, 0, 0.09), 0px 8px 20px 7px rgba(0, 0, 0, 0.02);
  margin: 1em 1em;
  padding: 0 1em;
  border-radius: 6px;
  border: 0;
  text-align: center;
}
.testimonials__content .card .card-img-top {
  max-width: 100px;
  border-radius: 50%;
  margin: -15px auto 0;
  box-shadow: 0px 10px 13px -6px rgba(0, 0, 0, 0.08), 0px 20px 31px 3px rgba(0, 0, 0, 0.09), 0px 8px 20px 7px rgba(0, 0, 0, 0.02);
  width: 100px;
  height: 100px;
}
.testimonials__content .card .card-body h5 {
  color: #3182ce;
  font-size: 1.5em;
  margin: 1em;
  padding: 0;
}
.testimonials__content .card .card-body h5 span {
  margin: 0;
  font-size: 0.8em;
  color: #2d3748;
}
.testimonials__content .card .card-body p {
  font-size: 1.1em;
  color: #555;
  padding: 0 2em;
}

.dgtl_fit {
  text-align: right;
  max-width: 75ch;
  margin: 0 auto;
}
.dgtl_fit .dgtl_fit_list .dgtl_fit_item {
  margin-bottom: 0.5em;
}

@media (min-width: 37.5em) {
  .site-digital .site-header-digital .site-title a,
  .site-digital .site-header-digital .site-title a:visited {
    color: #2a4365;
  }
  .site-digital .site-header-digital a,
  .site-digital .site-header-digital a:visited {
    color: #eff2f6;
    font-weight: 700;
  }
  .site-digital .site-main-digital .hero-digital {
    height: auto;
    min-height: 75vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .site-digital .site-main-digital .hero-digital img {
    display: block;
    width: 100%;
    height: 75vh;
    position: absolute;
    top: 80px;
    left: 0;
    z-index: -25;
    -o-object-fit: cover;
       object-fit: cover;
    background-position: center;
    font-family: "object-fit:cover";
  }
  .site-digital .site-main-digital .hero-digital .texture {
    width: 100%;
    height: 75vh;
    position: absolute;
    top: 80px;
    left: 0;
    z-index: -15;
    background: url("/National_Library/oe_/https://www.shepaz.com/assets/textures/cross-stripes.png");
    -o-object-fit: cover;
       object-fit: cover;
    opacity: 1;
  }
  .site-digital .site-main-digital .hero-digital .headline {
    padding: 1em;
    text-align: center;
    align-self: center;
    color: #eff2f6;
    max-width: 70ch;
    margin-top: 20vh;
    text-shadow: 2px 2px 20px #000000;
  }
  .site-digital .site-main-digital .hero-digital .headline .headline__top {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0;
  }
  .site-digital .site-main-digital .hero-digital .headline .headline__title {
    margin: 0;
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
  }
  .site-digital .site-main-digital .hero-digital .headline .healine__desc {
    margin-top: 0;
    font-size: 1.5em;
    font-weight: 700;
    line-height: 1.2em;
    max-width: 45ch;
  }
  .site-digital .site-main-digital .what-digital {
    text-align: center;
  }
  .site-digital .site-main-digital .what-digital .what__content {
    font-size: 1.25rem;
  }
  .site-digital .site-main-digital .what-digital .comp-type-container {
    display: flex;
    justify-content: center;
  }
  .site-digital .site-main-digital .what-digital .comp-type-container .service-box {
    max-width: 30%;
    margin: 0 2em;
  }
  .site-digital .site-main-digital .why-digital {
    height: auto;
    text-align: center;
  }
  .site-digital .site-main-digital .why-digital .why__content {
    font-size: 1.25rem;
  }
  .site-digital .site-main-digital .why-digital .whyus__image {
    max-width: 50%;
    margin: 0 auto;
  }
  .site-digital .site-main-digital .why-digital .whyus__content {
    text-align: center;
    font-size: 1.25rem;
  }
  .site-digital .site-main-digital .testimonials__content {
    flex-direction: row;
    margin: 0 auto;
  }
  .site-digital .site-main-digital .testimonials__content .card {
    max-width: 30%;
  }
  .site-digital .site-main-digital .pricing-digital {
    max-width: 65ch;
    margin: 0 auto;
  }
  .site-digital .site-main-digital .pricing-digital .pricing-plan {
    border-bottom: none;
    flex-basis: 100%;
    padding: 25px 50px;
  }
  .site-digital .site-main-digital .pricing-digital .pricing-plan:last-child {
    border-left: none;
  }
  .site-digital .site-main-digital .pricing-digital .pricing-table {
    flex-direction: row;
  }
}
/* ========================= PR lp */
.site-pr .site-branding a,
.site-pr .site-branding a:visited {
  color: #2d3748;
}
.site-pr i, .site-pr {
  color: #2a4365;
}
.site-pr .hero-pr {
  position: relative;
}
.site-pr .hero-pr .btn {
  font-size: 0.75em;
}
.site-pr .hero-pr .headline {
  padding: 1em;
  text-align: center;
  align-self: center;
}
.site-pr .hero-pr .headline .headline__title {
  font-size: 2.25rem;
  font-weight: 900;
}
.site-pr .hero-pr .headline .headline__sub {
  display: block;
  font-size: 0.5em;
  font-weight: 600;
  padding: 1em 0;
}
.site-pr .hero-pr .hero-pr-img {
  z-index: -10;
}
.site-pr .hero-pr .headline__readmore {
  margin: 3em 2em;
}
.site-pr .pr-about .about__content {
  text-align: right;
}
.site-pr .services-pr {
  padding: 0.5em 0;
  text-align: center;
}
.site-pr .services-pr img {
  max-width: 200px;
  margin: 0 auto;
}
.site-pr .services-pr .services__img {
  width: 5%;
  margin: 0 auto;
}
.site-pr .services-pr .service__desc {
  text-align: center;
}
.site-pr .services-pr .service__pr-1 {
  padding: 2em;
}
.site-pr .services-pr .service__pr-2 {
  padding: 2em;
}
.site-pr .services-pr .service__pr-3 {
  padding: 2em;
}
.site-pr .services-pr .service__pr-4 {
  padding: 2em;
}
.site-pr .whyus-pr {
  background-color: #2a4365;
  color: white;
}
.site-pr .whyus-pr .whyus__image {
  margin: 1em;
}
.site-pr .whyus-pr .whyus__content {
  max-width: 75ch;
  font-size: 1.125rem;
  margin: 0 auto;
}
.site-pr .whyus-pr a {
  color: #2a4365;
  margin: 3em;
}
.site-pr .section-carousel {
  margin-bottom: 2em;
}
.site-pr .section-carousel a,
.site-pr .section-carousel a:visited {
  color: #2d3748;
  text-decoration: none;
}
.site-pr .section-carousel .carousle__slide {
  max-height: 50vh;
  margin: 0 auto;
  -o-object-fit: scale-down;
     object-fit: scale-down;
}

@media (min-width: 37.5em) {
  .site-pr .section__title--main {
    font-size: 2.25rem;
    margin-bottom: 0.5em;
  }
  .site-pr .hero-pr {
    display: grid;
    grid-template-columns: 3fr 4fr 1fr;
    align-items: center;
    height: 72vh;
  }
  .site-pr .hero-pr .hero-img-pr {
    grid-column: 2/4;
    grid-row: 1/-1;
    max-height: 80%;
  }
  .site-pr .hero-pr .headline {
    padding: 1em;
    text-align: right;
    align-self: center;
    max-width: 60ch;
  }
  .site-pr .hero-pr .headline--pr {
    padding: 1em;
    padding-right: 6em;
    grid-column: 1/2;
    grid-row: 1/-1;
    justify-self: end;
  }
  .site-pr .hero-pr .headline--pr .headline__title {
    font-size: 3rem;
  }
  .site-pr .hero-pr .headline--pr .headline__sub {
    display: block;
    font-size: 0.5em;
    font-weight: 600;
    padding: 0.5em 0;
    max-width: 25ch;
  }
  .site-pr .hero-pr .headline--pr .btn {
    font-size: 1em;
  }
  .site-pr .hero-pr .headline__readmore a {
    color: #2d3748;
  }
  .site-pr .pr-about .about__content {
    text-align: right;
  }
  .site-pr .pr-about .about__content__about {
    -moz-column-count: 1;
         column-count: 1;
    max-width: 60ch;
  }
  .site-pr .services-pr .services-pr-all {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .site-pr .services-pr .services-pr-all .service__pr {
    max-width: 50%;
    margin: 0 auto;
  }
  .site-pr .services-pr .services-pr-all .service__pr .service__title {
    text-align: center;
    max-width: 30ch;
  }
  .site-pr .services-pr .services-pr-all .service__pr .service__desc {
    max-width: 45ch;
    margin: 0 auto;
  }
  .site-pr .section-pr-who .about__content_who {
    max-width: 60ch;
  }
  .site-pr .whyus-pr .whyus-pr-container {
    display: flex;
  }
  .site-pr .whyus-pr .whyus-pr-container .whyus__image {
    -o-object-fit: scale-down;
       object-fit: scale-down;
  }
  .site-pr .whyus-pr .whyus-pr-container .whyus__content {
    padding: 0 2em;
  }
  .site-pr .section-carousel {
    height: 90vh;
  }
  .site-pr .section-carousel .carousle__slide {
    max-height: 70vh;
    margin: 0 auto;
    -o-object-fit: scale-down;
       object-fit: scale-down;
  }
}
/* ================================ SAMBA */
.site-samba .section__content {
  max-width: 65ch;
}

.site-header-samba a,
.site-header-samba a:visited {
  color: #2d3748;
}

.section__content .section__subtitle {
  text-align: center;
  margin: 2em auto;
}

.hero-samba {
  height: auto;
  min-height: 75vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-samba video {
  display: block;
  width: 100%;
  height: 75vh;
  position: absolute;
  top: 80px;
  left: 0;
  z-index: -25;
  -o-object-fit: cover;
     object-fit: cover;
  background-position: center;
  font-family: "object-fit:cover";
}
.hero-samba video::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 75vh;
  top: 80px;
  left: 0;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: -10;
}
.hero-samba .texture {
  width: 100%;
  height: 75vh;
  position: absolute;
  top: 80px;
  left: 0;
  z-index: -15;
  background: url("/National_Library/oe_/https://www.shepaz.com/assets/textures/cross-stripes.png");
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.4;
}
.hero-samba .headline {
  padding: 1em;
  text-align: center;
  align-self: center;
  color: #eff2f6;
  max-width: 85ch;
  margin-top: 20vh;
  text-shadow: 2px 2px 20px #000000;
}
.hero-samba .headline .headline__top {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0;
}
.hero-samba .headline .headline__title {
  margin: 0;
  font-size: 2.25rem;
  font-weight: 900;
}
.hero-samba .headline .healine__desc {
  display: block;
  margin-bottom: 1.5em;
  font-size: 0.6em;
  font-weight: 400;
  line-height: 1.4em;
  max-width: 35ch;
}

.what-samba {
  min-height: 10vh;
  height: auto;
}
.what-samba .what__content {
  max-width: 65ch;
  font-size: 1.25rem;
}

.why-samba {
  background-color: #2d3748;
  color: #eff2f6;
  height: auto;
}
.why-samba .why__content {
  max-width: 65ch;
  margin: 0 auto;
  font-size: 1.125rem;
}

.whyus-samba .whyus__image {
  margin: 0 auto;
}
.whyus-samba .whyus__content {
  font-size: 1.125rem;
}

.testimonials__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 100%;
}
.testimonials__content .card {
  background: #fff;
  box-shadow: 0px 10px 13px -6px rgba(0, 0, 0, 0.08), 0px 20px 31px 3px rgba(0, 0, 0, 0.09), 0px 8px 20px 7px rgba(0, 0, 0, 0.02);
  margin: 1em 1em;
  padding: 0 1em;
  border-radius: 6px;
  border: 0;
  text-align: center;
}
.testimonials__content .card .card-img-top {
  max-width: 100px;
  border-radius: 50%;
  margin: -15px auto 0;
  box-shadow: 0px 10px 13px -6px rgba(0, 0, 0, 0.08), 0px 20px 31px 3px rgba(0, 0, 0, 0.09), 0px 8px 20px 7px rgba(0, 0, 0, 0.02);
  width: 100px;
  height: 100px;
}
.testimonials__content .card .card-body h5 {
  color: #3182ce;
  font-size: 1.5em;
  margin: 1em;
  padding: 0;
}
.testimonials__content .card .card-body h5 span {
  margin: 0;
  font-size: 0.8em;
  color: #2d3748;
}
.testimonials__content .card .card-body p {
  font-size: 1.1em;
  color: #555;
  padding: 0 2em;
}

.pricing-samba {
  max-width: 100%;
  margin: 0 auto;
}
.pricing-samba .section__subtitle {
  margin: 1em auto;
  font-size: 1.2em;
  text-align: center;
}
.pricing-samba .panel {
  background-color: #fff;
  border-radius: 6px;
  position: relative;
  width: 100%;
  z-index: 10;
}
.pricing-samba .pricing-table {
  display: flex;
  flex-direction: column;
}
.pricing-samba .pricing-table * {
  text-align: center;
  margin: 0 auto;
}
.pricing-samba .pricing-plan {
  margin: 0 auto;
  padding: 25px;
  padding-bottom: 0;
}
.pricing-samba .pricing-plan:last-child {
  border-bottom: none;
}
.pricing-samba .pricing-img {
  margin-bottom: 25px;
  max-width: 100%;
  margin: 0 auto;
}
.pricing-samba .pricing-header {
  color: #3182ce;
  font-size: 2.25rem;
  font-weight: 600;
  letter-spacing: 1px;
}
.pricing-samba .pricing-header span {
  display: block;
  font-size: 0.6em;
}
.pricing-samba .pricing-features {
  margin: 0 auto;
  font-weight: 600;
  letter-spacing: 1px;
  margin: 1em;
  list-style: none;
  padding: 0;
}
.pricing-samba .pricing-features-item {
  border-top: 1px solid rgba(42, 67, 101, 0.3137254902);
  font-size: 1rem;
  line-height: 1.5;
  padding: 1em 0;
  margin: 0 auto;
  max-width: 25ch;
}
.pricing-samba .pricing-features-item .pricing-smedia-icons i {
  margin: 0 0.5em;
}
.pricing-samba .pricing-price {
  color: #3182ce;
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
}
.pricing-samba .pricing-button {
  border-radius: 10px;
  display: inline-block;
  margin: 25px 0;
  padding: 15px 35px;
  text-decoration: none;
  transition: all 150ms ease-in-out;
}
.pricing-samba .pricing-button:hover,
.pricing-samba .pricing-button:focus {
  background-color: rgba(42, 67, 101, 0.3137254902);
}
.pricing-samba .pricing-button.is-featured {
  background-color: #3182ce;
  color: #fff;
}
.pricing-samba .pricing-button.is-featured:hover,
.pricing-samba .pricing-button.is-featured:active {
  background-color: #2b6cb0;
}
.pricing-samba .pricing-fine-print {
  text-align: center;
}
.pricing-samba .pricing-fine-print ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
}

@media (min-width: 37.5em) {
  .hero-samba .headline {
    margin-top: 25vh;
  }
  .hero-samba .headline .headline__top {
    font-size: 1.25rem;
  }
  .hero-samba .headline .headline__title {
    font-size: 4rem;
  }
  .hero-samba video {
    display: block;
    width: 100%;
    height: 75vh;
    position: absolute;
    top: 80px;
    left: 0;
    z-index: -25;
    -o-object-fit: cover;
       object-fit: cover;
    background-position: center;
    font-family: "object-fit:cover";
  }
  .hero-samba video::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 75vh;
    top: 80px;
    left: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: -10;
  }
  .what-samba {
    text-align: center;
  }
  .what-samba .what__content {
    font-size: 1.25rem;
  }
  .why-samba {
    height: auto;
    text-align: center;
  }
  .why-samba .why__content {
    font-size: 1.25rem;
  }
  .whyus-samba .whyus__image {
    max-width: 50%;
    margin: 0 auto;
  }
  .whyus-samba .whyus__content {
    text-align: center;
    font-size: 1.25rem;
  }
  .testimonials__content {
    flex-direction: row;
    margin: 0 auto;
  }
  .testimonials__content .card {
    max-width: 30%;
  }
  .pricing-samba {
    max-width: 65ch;
    margin: 0 auto;
  }
  .pricing-samba .pricing-plan {
    border-bottom: none;
    flex-basis: 100%;
    padding: 25px 50px;
  }
  .pricing-samba .pricing-plan:last-child {
    border-left: none;
  }
  .pricing-samba .pricing-table {
    flex-direction: row;
  }
}
/* ================================ </SAMBA */
/* ================================ dg4orgs */
.site-dg4orgs .section__content {
  max-width: 65ch;
}

.site-header-dg4orgs a,
.site-header-dg4orgs a:visited {
  color: #2d3748;
}

.section__content .section__subtitle {
  text-align: center;
  margin: 2em auto;
}

.hero-dg4orgs {
  height: auto;
  min-height: 70svh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-dg4orgs video {
  display: block;
  width: 100%;
  height: 75svh;
  position: absolute;
  top: 80px;
  left: 0;
  z-index: -25;
  -o-object-fit: cover;
  object-fit: cover;
  background-position: center;
  font-family: "object-fit:cover";
}

.hero-dg4orgs video::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 75svh;
  top: 80px;
  left: 0;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: -10;
}

.hero-dg4orgs .texture {
  width: 100%;
  height: 75svh;
  position: absolute;
  top: 80px;
  left: 0;
  z-index: -15;
  background: url("/National_Library/oe_/https://www.shepaz.com/assets/textures/cross-stripes.png");
  -o-object-fit: cover;
  object-fit: cover;
  opacity: 0.6;
}

.hero-dg4orgs .headline {
  padding: 1em;
  text-align: center;
  align-self: center;
  color: #e2e8f0;
  max-width: 85ch;
  margin-top: 20svh;
  text-shadow: 2px 2px 20px #000000;
}

.hero-dg4orgs .headline .headline__top {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0;
}

.hero-dg4orgs .headline .headline__title {
  margin: 0;
  font-size: 2.25rem;
  font-weight: 900;
}

.hero-dg4orgs .headline .healine__desc {
  display: block;
  margin-bottom: 1.5em;
  font-size: 0.6em;
  font-weight: 400;
  line-height: 1.4em;
  max-width: 35ch;
}

.what-dg4orgs {
  min-height: 10vh;
  height: auto;
  background-color: #2d3748;
  color: #e2e8f0;
  height: auto;
}

.what-dg4orgs .what__content {
  max-width: 65ch;
  font-size: 1.25rem;
}

.what-dg4orgs .what__content p {
  margin-bottom: 0em;
}

.site-dg4orgs .services-container {
  flex-direction: row;
  justify-content: space-around;
  flex-wrap: wrap;
}
.site-dg4orgs .services-container .service-box {
  min-width: 25%;
}

.why-dg4orgs,
.whyus-dg4orgs {
  background-color: #2d3748;
  color: #e2e8f0;
  height: auto;
}

.why-dg4orgs .why__content {
  max-width: 65ch;
  margin: 0 auto;
  font-size: 1.125rem;
}

.whyus-dg4orgs .whyus__image {
  margin: 0 auto;
}

.whyus-dg4orgs .whyus__content {
  font-size: 1.125rem;
}

.site-dg4orgs .section-carousel {
  margin-bottom: 3em;
}

.site-dg4orgs .section-carousel .carousle__slide {
  max-height: 90svh;
  margin: 0 auto;
  -o-object-fit: scale-down;
  object-fit: scale-down;
}

.testimonials__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 100%;
}

.testimonials__content .card {
  background: #fff;
  box-shadow: 0px 10px 13px -6px rgba(0, 0, 0, 0.08), 0px 20px 31px 3px rgba(0, 0, 0, 0.09), 0px 8px 20px 7px rgba(0, 0, 0, 0.02);
  margin: 1em 1em;
  padding: 0 1em;
  border-radius: 6px;
  border: 0;
  text-align: center;
}

.testimonials__content .card .card-img-top {
  max-width: 100px;
  border-radius: 50%;
  margin: -15px auto 0;
  box-shadow: 0px 10px 13px -6px rgba(0, 0, 0, 0.08), 0px 20px 31px 3px rgba(0, 0, 0, 0.09), 0px 8px 20px 7px rgba(0, 0, 0, 0.02);
  width: 100px;
  height: 100px;
}

.testimonials__content .card .card-body h5 {
  color: #3182ce;
  font-size: 1.5em;
  margin: 1em;
  padding: 0;
}

.testimonials__content .card .card-body h5 span {
  margin: 0;
  font-size: 0.8em;
  color: #2d3748;
}

.testimonials__content .card .card-body p {
  font-size: 1.1em;
  color: #555;
  padding: 0 2em;
}

.pricing-dg4orgs {
  /* min-width: 100%; */
  margin: 0 auto;
}

.pricing-dg4orgs .section__subtitle {
  margin: 1em auto;
  font-size: 1.2em;
  text-align: center;
}

.pricing-dg4orgs .panel {
  background-color: #fff;
  border-radius: 6px;
  position: relative;
  width: 100%;
  z-index: 10;
}

.pricing-dg4orgs .pricing-table {
  display: flex;
  flex-direction: column;
}

.pricing-dg4orgs .pricing-table * {
  text-align: center;
  margin: 0 auto;
}

.pricing-dg4orgs .pricing-plan {
  margin: 0 auto;
  padding: 25px;
  padding-bottom: 0;
}

.pricing-dg4orgs .pricing-plan:last-child {
  border-bottom: none;
}

.pricing-dg4orgs .pricing-img {
  margin-bottom: 25px;
  max-width: 100%;
  margin: 0 auto;
}

.pricing-dg4orgs .pricing-header {
  color: #3182ce;
  font-size: 2.25rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.pricing-dg4orgs .pricing-header span {
  display: block;
  font-size: 0.6em;
}

.pricing-dg4orgs .pricing-features {
  margin: 0 auto;
  font-weight: 600;
  letter-spacing: 1px;
  margin: 1em;
  list-style: none;
  padding: 0;
}

.pricing-dg4orgs .pricing-features-item {
  border-top: 1px solid rgba(42, 67, 101, 0.3137254902);
  font-size: 1rem;
  line-height: 1.5;
  padding: 1em 0;
  margin: 0 auto;
  /* max-width: 25ch; */
}

.pricing-dg4orgs .pricing-features-item h3 {
  /* background-color: sienna; */
  line-height: 1.3;
  padding-bottom: 0.2em;
}

.pricing-dg4orgs .pricing-features-item p {
  /* background-color: teal; */
  font-weight: normal;
}

.pricing-dg4orgs .pricing-features-item .pricing-smedia-icons i {
  margin: 0 0.5em;
}

.pricing-dg4orgs .pricing-price {
  color: #3182ce;
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
}

.pricing-dg4orgs .pricing-button {
  border-radius: 10px;
  display: inline-block;
  margin: 25px 0;
  padding: 15px 35px;
  text-decoration: none;
  transition: all 150ms ease-in-out;
}

.pricing-dg4orgs .pricing-button:hover,
.pricing-dg4orgs .pricing-button:focus {
  background-color: rgba(42, 67, 101, 0.3137254902);
}

.pricing-dg4orgs .pricing-button.is-featured {
  background-color: #3182ce;
  color: #fff;
}

.pricing-dg4orgs .pricing-button.is-featured:hover,
.pricing-dg4orgs .pricing-button.is-featured:active {
  background-color: #2b6cb0;
}

.pricing-dg4orgs .pricing-fine-print {
  text-align: center;
}

.pricing-dg4orgs .pricing-fine-print ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
}

@media (min-width: 37.5em) {
  .hero-dg4orgs .headline {
    margin-top: 25svh;
  }
  .hero-dg4orgs .headline .headline__top {
    font-size: 1.25rem;
  }
  .hero-dg4orgs .headline .headline__title {
    font-size: 4rem;
  }
  .hero-dg4orgs video {
    display: block;
    width: 100%;
    height: 75svh;
    position: absolute;
    top: 80px;
    left: 0;
    z-index: -25;
    -o-object-fit: cover;
    object-fit: cover;
    background-position: center;
    font-family: "object-fit:cover";
  }
  .hero-dg4orgs video::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 75svh;
    top: 80px;
    left: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: -10;
  }
  .what-dg4orgs {
    text-align: center;
  }
  .what-dg4orgs .what__content {
    font-size: 1.25rem;
  }
  .why-dg4orgs {
    height: auto;
    text-align: center;
  }
  .why-dg4orgs .why__content {
    font-size: 1.25rem;
  }
  .whyus-dg4orgs .whyus__image {
    max-width: 50%;
    margin: 0 auto;
  }
  .whyus-dg4orgs .whyus__content {
    text-align: center;
    font-size: 1.25rem;
  }
  .testimonials__content {
    flex-direction: row;
    margin: 0 auto;
  }
  .testimonials__content .card {
    max-width: 30%;
  }
  .pricing-dg4orgs {
    max-width: 65ch;
    margin: 0 auto;
  }
  .pricing-dg4orgs .pricing-plan {
    border-bottom: none;
    flex-basis: 100%;
    padding: 25px 50px;
  }
  .pricing-dg4orgs .pricing-plan:last-child {
    border-left: none;
  }
  .pricing-dg4orgs .pricing-table {
    flex-direction: row;
  }
}
/* ================================ </dg4orgs */
/* ================================ pr4orgs */
.site-pr4orgs .section__content {
  max-width: 65ch;
}

.site-header-pr4orgs a,
.site-header-pr4orgs a:visited {
  color: #2d3748;
}

.section__content .section__subtitle {
  text-align: center;
  margin: 2em auto;
}

.hero-pr4orgs {
  height: auto;
  min-height: 71svh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-pr4orgs video,
.hero-pr4orgs img {
  display: block;
  width: 100%;
  height: 85svh;
  position: absolute;
  top: 80px;
  left: 0;
  z-index: -25;
  -o-object-fit: cover;
  object-fit: cover;
  background-position: center;
  font-family: "object-fit:cover";
}

.hero-pr4orgs video::after img:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 85svh;
  top: 80px;
  left: 0;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: -10;
}

.hero-pr4orgs .texture {
  width: 100%;
  height: 85svh;
  position: absolute;
  top: 80px;
  left: 0;
  z-index: -15;
  background: url("/National_Library/oe_/https://www.shepaz.com/assets/textures/cross-stripes.png");
  -o-object-fit: cover;
  object-fit: cover;
  opacity: 0.99;
}

.hero-pr4orgs .headline {
  padding: 1em;
  text-align: center;
  align-self: center;
  color: #e2e8f0;
  max-width: 85ch;
  margin-top: 30svh;
  text-shadow: 2px 2px 20px #000000;
}

.hero-pr4orgs .headline .headline__top {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0;
}

.hero-pr4orgs .headline .headline__title {
  margin: 0;
  font-size: 2rem;
  font-weight: 900;
}

.hero-pr4orgs .headline .healine__desc {
  display: block;
  margin-bottom: 1.5em;
  font-size: 0.6em;
  font-weight: 400;
  line-height: 1.4em;
  max-width: 35ch;
}

.what-pr4orgs {
  min-height: 10vh;
  height: auto;
  background-color: #2d3748;
  color: #e2e8f0;
  height: auto;
}

.pricing-pr4orgs {
  min-height: 30svh;
  height: auto;
  background-color: #e2e8f0;
  color: #2d3748;
  height: auto;
  text-align: center;
  margin-bottom: 1.2em;
}
.pricing-pr4orgs .section__title {
  margin-top: 1.2em !important;
}
.pricing-pr4orgs p {
  margin-bottom: 2em;
}

.what-pr4orgs .what__content {
  max-width: 65ch;
  font-size: 1.25rem;
}

.what-pr4orgs .what__content p {
  margin-bottom: 0em;
}

.site-pr4orgs .services-container {
  flex-direction: row;
  justify-content: space-around;
  flex-wrap: wrap;
}
.site-pr4orgs .services-container .service-box {
  min-width: 25%;
}
.site-pr4orgs .services-container .service-box a {
  background-color: #2d3748;
  color: white;
}

.why-pr4orgs,
.whyus-pr4orgs {
  background-color: #2d3748;
  color: #e2e8f0;
  height: auto;
}

.why-pr4orgs .why__content {
  max-width: 65ch;
  margin: 0 auto;
  font-size: 1.125rem;
}

.whyus-pr4orgs .whyus__image {
  margin: 0 auto;
}

.whyus-pr4orgs .whyus__content {
  font-size: 1.125rem;
}

.site-pr4orgs .section-carousel {
  margin-bottom: 3em;
}

.site-pr4orgs .section-carousel .carousle__slide {
  max-height: 90vh;
  margin: 0 auto;
  -o-object-fit: scale-down;
  object-fit: scale-down;
}

@media (min-width: 37.5em) {
  .hero-pr4orgs .headline {
    margin-top: 30svh;
    max-width: 65ch;
  }
  .hero-pr4orgs .headline .headline__top {
    font-size: 1.25rem;
  }
  .hero-pr4orgs .headline .headline__title {
    font-size: 3rem;
  }
  .hero-pr4orgs video {
    display: block;
    width: 100%;
    height: 75vh;
    position: absolute;
    top: 80px;
    left: 0;
    z-index: -25;
    -o-object-fit: cover;
    object-fit: cover;
    background-position: center;
    font-family: "object-fit:cover";
  }
  .hero-pr4orgs video::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 75vh;
    top: 80px;
    left: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: -10;
  }
  .what-pr4orgs {
    border-color: 2px solid sienna !important;
    text-align: center;
  }
  .what-pr4orgs .what__content p {
    font-size: 1.25rem;
    max-width: 50ch;
    margin-left: auto;
    margin-right: auto;
  }
  .why-pr4orgs {
    height: auto;
    text-align: center;
  }
  .why-pr4orgs .why__content {
    font-size: 1.25rem;
  }
  .whyus-pr4orgs .whyus__image {
    max-width: 50%;
    margin: 0 auto;
  }
  .whyus-pr4orgs .whyus__content {
    text-align: center;
    font-size: 1.25rem;
  }
  .whyus-pr4orgs .whyus__content p {
    max-width: 50ch;
    margin-left: auto;
    margin-right: auto;
  }
}
/* ================================ </pr4orgs */
/* ====================== FOOTER */
.site-footer {
  background-color: #1a202c;
  color: #a0aec0;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  text-align: center;
  margin: 0;
  margin-top: auto;
}
.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer a, .site-footer a:visited {
  color: #a0aec0;
}
.site-footer .site-title {
  margin: 0;
}
.site-footer .site-title a, .site-footer .site-title a:visited {
  color: #a0aec0;
}
.site-footer .footer-social {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin: 0;
  padding: 0;
}
.site-footer .footer-social li {
  margin: 0 1em;
}
.site-footer .footer-social a, .site-footer .footer-social a:visited {
  font-size: 1.5rem;
}
.site-footer .link__header {
  margin-bottom: 0;
}
.site-footer .footer-links {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 2;
  color: #a0aec0;
}
.site-footer .site-info hr {
  width: 65%;
  opacity: 0.2;
}
.site-footer .site-info span {
  display: block;
}

@media (min-width: 768px) {
  .site-footer ul {
    list-style: none;
    padding: 0;
    margin: 1em;
  }
  .site-footer .footer-links {
    display: flex;
    flex-direction: row;
    justify-content: center;
    text-align: right;
  }
  .site-footer .site-info span {
    display: inline-block;
  }
}
/* ====================== NAVIGATION */
.main-navigation {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 20%;
  z-index: 100;
  transform: translateX(-100%);
  transition: transform ease-out 250ms;
}
.main-navigation .menu {
  background-color: #2a4365;
  height: 100vh;
}
.main-navigation .menu .nav__social {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
}
.main-navigation .menu .nav__social li {
  margin: 0 2em;
}
.main-navigation .menu .nav__social a {
  font-size: 1.125rem;
}
.main-navigation .menu .lang-flag {
  font-size: 1.5em;
}
.main-navigation ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.main-navigation ul ul {
  display: none;
}
.main-navigation li {
  text-align: center;
  margin: 0;
}
.main-navigation a {
  display: inline-block;
  text-decoration: none;
  padding: 4.5454545455vh 0;
  line-height: 0;
  width: 100%;
  color: #eff2f6;
  text-decoration: none;
  text-transform: uppercase;
}
.btn-menu {
  position: absolute;
  top: 1em;
  right: 0.5em;
  font-size: 1.5em;
  color: #eff2f6;
  background: transparent;
  border: 0;
}

.close-icon {
  display: none;
}

body.nav-is-open .hamburger-icon {
  display: none;
}
body.nav-is-open .close-icon {
  display: block;
}
body.nav-is-open .main-navigation {
  transform: translateX(0%);
}

@media screen and (min-width: 37.5em) {
  .main-navigation {
    position: static;
    display: block;
    width: 100%;
    transform: translateX(0%);
  }
  .main-navigation .menu {
    height: 0;
  }
  .main-navigation ul {
    display: flex;
    flex-direction: row;
    justify-content: center;
    height: auto;
    background: transparent;
  }
  .main-navigation li {
    position: relative;
    margin: 0 1.5em;
  }
  .main-navigation a {
    display: block;
    padding: 0;
  }
  .main-navigation .only-mobile {
    display: none;
  }
  .menu-toggle {
    display: none;
  }
  .nav__social {
    display: none;
  }
}
/* ====================== PORTFOLIO 2022-04 */
#portfolio .porfolio-container {
  display: flex;
  flex-direction: column;
  justify-items: space-around;
  align-items: center;
  min-height: 55vh;
  text-align: center;
}
#portfolio .porfolio-container i, #portfolio .porfolio-container h3, #portfolio .porfolio-container h4 {
  color: #2a4365;
}
#portfolio .porfolio-container a {
  color: #2a4365;
  text-decoration: none;
}
#portfolio .porfolio-container .portfolio-box {
  margin: 2em 1em;
}
#portfolio .porfolio-container .portfolio-box .service-text {
  color: #2d3748;
}
#portfolio .porfolio-container .portfolio-box a {
  color: white;
  padding: 0.25em 0.5em;
}

#portfolio-carousel {
  padding-top: 10px;
}
#portfolio-carousel .container h4 {
  max-width: 60ch;
  text-align: center;
  margin-right: auto;
  margin-left: auto;
}
#portfolio-carousel .container img {
  margin-left: auto;
  margin-right: auto;
  max-height: 60vh;
}

@media (min-width: 37.5em) {
  #portfolio .porfolio-container {
    flex-direction: row;
    justify-content: space-around;
  }
  #portfolio .porfolio-container .portfolio-box {
    max-width: 30%;
  }
  #portfolio .porfolio-container .portfolio-box .service-text {
    color: #2d3748;
  }
}
/* ================================ PRIVACY */
.body-privacy {
  background-color: black;
}

.headline {
  margin-top: 1em;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1em;
  max-width: 75ch;
}

/* ================================ PRIVACY */
.section-start-page {
  text-align: center;
  background-image: url(/National_Library/oe_/https://www.shepaz.com/assets/img/startparty-op-40.webp?v=1.0);
  -o-object-fit: fill;
     object-fit: fill;
}
.section-start-page h3 {
  margin-bottom: 3em;
}
.section-start-page .start-link-btn {
  margin-bottom: 4em;
}

/* ============== HIGHTECH */
.site-hightech {
  text-align: left;
}
.site-hightech .texture {
  opacity: 0.85;
}
.site-hightech .hero-hightech .headline {
  margin-top: 0;
}
.site-hightech .hero-hightech .headline__title {
  padding: 0 0.1em;
  font-size: 1.875rem;
}
.site-hightech .hero-hightech .headline__sub {
  line-height: 1.625;
  font-weight: 600;
}
.site-hightech .section-hightech-about {
  text-align: left;
}
.site-hightech .section-hightech-about .about__content_hightech {
  width: 90cw;
}
.site-hightech .about__content_hightech .hightech_box {
  margin-top: 2em;
}
.site-hightech .about__content_hightech .hightech_box ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-hightech .about__content_hightech .hightech_box ul li {
  margin: 1em 0;
}
.site-hightech .whyus-hightech {
  background-color: #2a4365;
  color: #fff;
}
.site-hightech .whyus-hightech .whyus-hightech-container {
  max-width: 80ch;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 37.5em) {
  .site-hightech .hero-hightech {
    max-height: 75vh;
  }
  .site-hightech .hero-hightech .headline {
    max-width: 80ch;
  }
  .site-hightech .hero-hightech .headline__title {
    padding: 0 0.7em;
    font-size: 2.25rem;
  }
  .site-hightech .hero-hightech .headline__sub {
    line-height: 1.625;
  }
  .site-hightech .section-hightech-about {
    text-align: left;
  }
  .site-hightech .section-hightech-about .about__content_hightech {
    width: 90cw;
    -moz-columns: 2;
         columns: 2;
  }
  .site-hightech .section-hightech-who .section-hightech-who {
    height: 100vh;
  }
  .site-hightech .about__content_hightech {
    display: grid;
    gap: 2em;
    grid-template-columns: repeat(3, 1fr);
    justify-items: center;
  }
  .site-hightech .about__content_hightech .hightech_box ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .site-hightech .about__content_hightech .hightech_box ul li {
    margin: 1em 0;
  }
  .site-hightech .whyus-hightech {
    background-color: #2a4365;
    color: #fff;
  }
  .site-hightech .whyus-hightech .whyus-hightech-container {
    max-width: 80ch;
    margin-left: auto;
    margin-right: auto;
  }
  .site-hightech .whyus-hightech .whyus-hightech-container .whyus__content {
    -moz-columns: 2;
         columns: 2;
    -moz-column-gap: 2em;
         column-gap: 2em;
  }
  .site-hightech .whyus-hightech .whyus-hightech-container .whyus__content p:first-child {
    margin-top: 0;
  }
  .site-hightech .section-hightech-carousel .hightech-portfolio-container {
    max-width: 80ch;
    margin-left: auto;
    margin-right: auto;
    color: #2a4365;
  }
  .site-hightech .section-hightech-carousel .hightech-portfolio-container img {
    max-height: 50vh;
    margin-left: auto;
    margin-right: auto;
  }
}
/* ====================== FRONT */
.section {
  height: auto;
  max-width: 100vw;
  padding: 2em;
}
.section .section__title {
  text-align: center;
  font-weight: 900;
  font-size: 1.875rem;
  margin: 0;
  line-height: 1;
}
.section .section__content {
  margin: 0 auto;
  max-width: 85ch;
}
.section .section__hr {
  width: 12%;
  height: 4px;
  border: none;
  background-color: #2a4365;
  margin: 2em auto;
}
.section .section__hr--white {
  height: 4px;
  border: none;
  background-color: white;
  width: 12%;
  margin: 2em auto;
}
.section p {
  line-height: 1.625;
}

.hero-fp {
  height: auto;
  width: 100%;
  min-height: calc(100vh - 199px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.hero-fp img {
  display: block;
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -25;
  -o-object-fit: cover;
     object-fit: cover;
  background-position: center;
  font-family: "object-fit:cover";
}
.hero-fp .texture {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -15;
  background: url("./assets/textures/cross-stripes.png");
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.8;
}
.hero-fp .headline {
  padding-top: 16.6666666667vh;
  text-align: center;
}
.hero-fp .headline__title {
  color: #eff2f6;
  line-height: 1.2;
  margin: 1em;
  z-index: 15;
  font-size: 2.25rem;
}
.hero-fp .headline__title .color-highlight {
  background-color: #2a4365;
  color: #eff2f6;
  padding: 0.2em;
}
.hero-fp .headline__title .headline__sub {
  display: block;
  z-index: 15;
  line-height: 1.625;
  font-size: 0.55em;
  font-weight: 400;
}
.hero-fp .section__cta {
  z-index: 15;
}
.hero-fp .btn {
  margin: 2em;
}
.hero-fp a,
.hero-fp a:visited {
  color: #eff2f6;
}
.hero-fp a:hover {
  color: white;
}
.hero-fp .headline__readmore {
  margin: 2.5em;
}

@media (min-width: 37.5em) {
  .hero-fp {
    height: auto;
    width: 100%;
  }
  .hero-fp .headline {
    max-width: 80ch;
  }
  .hero-fp .headline .headline__title {
    margin-bottom: 0.5em;
    margin: 1em auto;
    font-size: 3rem;
  }
}
.section-fp-about {
  background-color: #2a4365;
  color: #eff2f6;
  text-align: center;
}
.section-fp-about .about__content {
  max-width: 85ch;
  font-size: 1.125rem;
}
.section-fp-about a {
  color: #2a4365;
  margin: 3em;
}

@media (min-width: 37.5em) {
  .section-fp-about .about__content {
    -moz-column-count: 2;
         column-count: 2;
    text-align: right;
    -moz-column-gap: 2em;
         column-gap: 2em;
    -moz-column-fill: balance;
         column-fill: balance;
    margin-bottom: 2em;
    line-height: 1.5;
  }
  .section-fp-about .about__content > p:first-child {
    margin-top: 0;
  }
  .section-fp-about .about__content_en {
    -moz-column-count: 2;
         column-count: 2;
    text-align: left;
    -moz-column-gap: 2em;
         column-gap: 2em;
    -moz-column-fill: balance;
         column-fill: balance;
    margin-bottom: 2em;
    line-height: 1.5;
  }
  .section-fp-about .about__content_en > p:first-child {
    margin-top: 0;
  }
}
.section-fp-services .section__title {
  margin-bottom: 1em;
}
.section-fp-services .services-container {
  display: flex;
  flex-direction: column;
  justify-items: space-around;
  align-items: start;
  text-align: center;
}
.section-fp-services .services-container i, .section-fp-services .services-container em, .section-fp-services .services-container h3 {
  color: #2a4365;
}
.section-fp-services .services-container a {
  color: #2a4365;
  text-decoration: none;
}
.section-fp-services .services-container .service-box {
  margin: 3em 0;
}
.section-fp-services .services-container .service-box .service-text {
  color: #2d3748;
}
.section-fp-services .services-container .service-box a {
  color: white;
  padding: 0.25em 0.5em;
}

@media (min-width: 768px) {
  .section-fp-services .services-container {
    flex-direction: row;
    justify-content: space-between;
  }
  .section-fp-services .services-container .service-box {
    width: 20%;
    margin: 0 1em;
  }
  .section-fp-services .services-hr {
    display: none;
  }
}
.section-fp-portolio {
  margin: 0;
  padding: 0;
  color: white;
  display: flex;
  flex-wrap: wrap;
}
.section-fp-portolio p {
  margin: 0;
}
.section-fp-portolio .port-item {
  position: relative;
}
.section-fp-portolio .port-item a {
  text-decoration: none;
}
.section-fp-portolio .port-item .port__img {
  opacity: 1;
  display: block;
  width: 100%;
  height: auto;
  transition: 0.5s ease;
  backface-visibility: hidden;
}
.section-fp-portolio .port-item:hover .port__img {
  opacity: 0.3;
}
.section-fp-portolio .port-item .port__overlay {
  width: 100%;
  height: 100%;
  background: #2a4365;
  transition: 0.5s ease;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
  padding: 1em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.section-fp-portolio .port-item .port__overlay .port__name {
  color: white;
  font-size: 1rem;
}
.section-fp-portolio .port-item .port__overlay .port__desc {
  color: white;
  width: 80%;
  margin: 0 auto;
  font-size: 0.875rem;
}
.section-fp-portolio .port-item .port__overlay .port__link {
  text-decoration: underline;
  color: white;
}
.section-fp-portolio .port-item:hover .port__overlay {
  opacity: 1;
}
.section-fp-portolio [class^=port-item] {
  display: none;
}
.section-fp-portolio .port-item-1 {
  display: block;
}
.section-fp-portolio .port-item-2 {
  display: block;
}
.section-fp-portolio .port-item-3 {
  display: block;
}

@media screen and (min-width: 768px) {
  .section-fp-portolio .port-item {
    width: 50%;
  }
  .section-fp-portolio .port-item .port__overlay .port__name {
    color: white;
    font-size: 1.125rem;
  }
  .section-fp-portolio .port-item .port__overlay .port__desc {
    color: white;
    width: 80%;
    margin: 0 auto;
    font-size: 0.875rem;
  }
  .section-fp-portolio .port-item .port__overlay .port__link {
    text-decoration: underline;
    color: white;
  }
  .section-fp-portolio [class^=port-item] {
    display: block;
  }
  .section-fp-portolio .port-item-6 {
    display: none;
  }
}
@media screen and (min-width: 952px) {
  .section-fp-portolio .port-item {
    width: 33.333334%;
  }
  .section-fp-portolio .port-item .port__overlay .port__name {
    color: white;
    font-size: 1.125rem;
  }
  .section-fp-portolio .port-item .port__overlay .port__desc {
    color: white;
    width: 80%;
    margin: 0 auto;
    font-size: 0.875rem;
  }
  .section-fp-portolio .port-item .port__overlay .port__link {
    text-decoration: underline;
    color: white;
  }
  .section-fp-portolio [class^=port-item] {
    display: block;
  }
}
.section-fp-clients {
  background-color: white;
  height: auto;
}
.section-fp-clients .logos-wall {
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.section-fp-clients img.clientlogo {
  max-width: 100px;
  max-height: 60px;
  height: auto;
  margin: 22px;
  -o-object-fit: scale-down;
     object-fit: scale-down;
  transition: all 0.5s linear;
}
.section-fp-clients img.clientlogo:hover {
  transition: filter 0.5s ease-in-out; /* Ch 23+, Saf 6.0+, BB 10.0+ */
  filter: grayscale(0%); /* FF 35+ */
}
.section-fp-clients .img-color {
  transition: filter 0.5s ease-in-out; /* Ch 23+, Saf 6.0+, BB 10.0+ */
  filter: grayscale(0%); /* FF 35+ */
}
.section-fp-clients .img-gray {
  transition: filter 0.5s ease-in-out; /* Ch 23+, Saf 6.0+, BB 10.0+ */
  filter: grayscale(100%); /* FF 35+ */
}

@media (min-width: 768px) {
  .section-fp-clients {
    background-color: white;
  }
  .section-fp-clients .logos-wall {
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.section-tech-team h3,
.section-fp-team h3 {
  color: #2d3748;
  font-size: 1.875rem;
}
.section-tech-team .person__name_m,
.section-fp-team .person__name_m {
  display: none;
}
.section-tech-team .person__name,
.section-fp-team .person__name {
  display: block;
  text-align: center;
  margin: 1em 0;
  padding-top: 1em;
}
.section-tech-team .person__desc,
.section-fp-team .person__desc {
  display: block;
}
.section-tech-team .team__container,
.section-fp-team .team__container {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.section-tech-team .team__container .person,
.section-fp-team .team__container .person {
  height: 180px;
  width: 120px;
  background-repeat: no-repeat;
  background-position: center center;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  border-radius: 26px;
  border: 2px solid white;
}
.section-tech-team .team__container .person .info,
.section-fp-team .team__container .person .info {
  position: absolute;
  bottom: 0;
  right: 0;
  text-align: center;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 0 0 26px 26px;
}
.section-tech-team .team__container .person .info h4,
.section-fp-team .team__container .person .info h4 {
  color: #eff2f6;
  font-size: 0.875rem;
  margin: 0;
}
.section-tech-team .team__container .person .info p,
.section-fp-team .team__container .person .info p {
  color: #eff2f6;
  font-size: 0.875rem;
  margin-top: 0.5em;
}
@media (min-width: 37.5em) {
  .section-tech-team .team__container,
  .section-fp-team .team__container {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-around;
  }
  .section-tech-team .team__container .person,
  .section-fp-team .team__container .person {
    height: 250px;
    width: 250px;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 26px;
  }
}

.section-fp-blog {
  background-color: #2a4365;
  color: #ebf8ff;
}
.section-fp-blog .blog__example {
  background-color: white;
  color: #2a4365;
  padding: 1.1em;
  margin: 0px 1em;
}
.section-fp-blog .blog__about {
  padding: 1em;
}

@media (min-width: 768px) {
  .section-fp-blog .fp-blog-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5%;
    max-width: 100ch;
    margin-right: auto;
    margin-left: auto;
  }
  .section-fp-blog .blog__example {
    max-width: 45%;
  }
}
.question-answer__accordion > .answer {
  display: none;
}

.active > .answer {
  display: block;
  padding-bottom: 1.3rem;
  color: #2a4365;
}

.active img {
  transform: rotate(180deg);
  transition: all 0.3s ease-in;
}

.accordion__wrapper {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.questions__accordions {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.question-answer__accordion {
  width: 98%;
  border-bottom: 1px solid #e8e8ea;
}

.title__question {
  font-weight: 400;
  font-size: 1.2rem;
  color: var(--veryDarkGrayBlue);
  margin: 1.4rem 0rem;
}

.question {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  transition: 0.4s;
}

.active h3 {
  font-weight: 700;
}

.question img {
  align-self: center;
}

@media (min-width: 768px) {
  .section-fp-faq .question-answer__accordion > .answer {
    display: none;
  }
  .section-fp-faq .active > .answer {
    display: block;
    padding-bottom: 1.3rem;
    color: #2a4365;
  }
  .section-fp-faq .active img {
    transform: rotate(180deg);
    transition: all 0.3s ease-in;
  }
  .section-fp-faq .accordion__wrapper {
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  .section-fp-faq .questions__accordions {
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  .section-fp-faq .question-answer__accordion {
    width: 60ch;
    border-bottom: 1px solid #e8e8ea;
  }
  .section-fp-faq .title__question {
    font-weight: 400;
    font-size: 1.2rem;
    color: #2a4365;
    margin: 1.4rem 0rem;
  }
  .section-fp-faq .question {
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    transition: 0.4s;
  }
  .section-fp-faq .active h3 {
    font-weight: 700;
  }
  .section-fp-faq .question img {
    align-self: center;
  }
}
.section-fp-contact {
  color: #eff2f6;
  text-align: center;
  background-color: #2d3748;
  padding-bottom: 1em;
}
.section-fp-contact p {
  font-size: 1.125rem;
  color: #eff2f6;
  max-width: 60ch;
  margin: 0 auto;
  margin-bottom: 1em;
}
.section-fp-contact p a,
.section-fp-contact p a:visited {
  font-size: 1.5rem;
  color: #eff2f6;
}
.section-fp-contact .contact-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.section-fp-contact .pr_fit {
  text-align: right;
  max-width: 65ch;
  margin: 0 auto;
}
.section-fp-contact .pr_fit .pr_fit_list .pr_fit_item {
  margin-bottom: 0.5em;
}
.section-fp-contact .contact-form .contact-from__input {
  width: 100%;
  margin-bottom: 1em;
}
.section-fp-contact .contact-form .contact-from__input label {
  display: inline-block;
  font-size: 0.875rem;
  margin: 0.5em;
}
.section-fp-contact .contact-form .contact-from__input input,
.section-fp-contact .contact-form .contact-from__input textarea {
  float: left;
  border-radius: 6px;
  padding: 0.3em;
  resize: none;
}
.section-fp-contact .contact-form .contact-from__input iframe {
  display: block;
  margin: 3rem 0;
}
.section-fp-contact .contact-form .contact-from__input .form-control {
  padding: 0.5em;
}
.section-fp-contact .contact-form .contact-form__submit {
  margin-top: 1em;
  margin-bottom: 3em;
}
.section-fp-contact .contact-form .contact-form__disclaimer {
  display: block;
  padding: 2em 0;
}
.section-fp-contact .contact-container-en .contact-from__input input,
.section-fp-contact .contact-container-en .contact-from__input textarea {
  float: left;
}

@media (min-width: 768px) {
  .section-fp-contact {
    padding-bottom: 4em;
  }
  .section-fp-contact .pr_fit {
    text-align: right;
    max-width: 65ch;
    margin: 0 auto;
  }
  .section-fp-contact .pr_fit .pr_fit_list .pr_fit_item {
    margin-bottom: 0.5em;
    text-align: right;
  }
  .section-fp-contact .contact-container {
    width: 80%;
    margin: 0 auto;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
  }
  .section-fp-contact .contact-form {
    text-align: right;
    margin: 0 5em;
  }
  .section-fp-contact .contact-form .contact-from__input {
    margin: 1.1em 0;
    width: 100%;
  }
  .section-fp-contact .contact-form .contact-from__input input {
    float: left;
  }
  .section-fp-contact .contact-container-en .contact-from__input {
    margin: 1.1em 0;
    width: 100%;
  }
  .section-fp-contact .contact-container-en .contact-from__input input,
  .section-fp-contact .contact-container-en .contact-from__input textarea {
    float: right;
  }
}/*# sourceMappingURL=style.css.map */