@font-face {
  font-family: "Fa brands 400";
  src: url('../fonts/fa-brands-400.woff2') format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fa solid 900";
  src: url('../fonts/fa-solid-900.woff2') format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Poppins;
  src: url('../fonts/Poppins-Bold.ttf') format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Poppins;
  src: url('../fonts/Poppins-SemiBold.ttf') format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Poppins;
  src: url('../fonts/Poppins-Regular.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Poppins;
  src: url('../fonts/Poppins-Light.ttf') format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Fa;
  src: url('../fonts/fa-regular.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: #222;
  --dark-grey: #999;
  --royal-blue: #c0392b;
  --white: white;
  --white-smoke-2: #f1f2f3;
  --white-smoke: #f7f7f7;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.w-checkbox {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

.w-checkbox:before {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox:after {
  content: " ";
  clear: both;
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox-input {
  float: left;
  margin: 4px 0 0 -20px;
  line-height: normal;
}

.w-checkbox-input--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 2px;
  width: 12px;
  height: 12px;
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-color: #3898ec;
}

.w-checkbox-input--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  color: #333;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

h1 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Poppins, sans-serif;
  font-size: 90px;
  font-weight: 600;
  line-height: 1.3em;
}

h2 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Poppins, sans-serif;
  font-size: 48px;
  font-weight: 300;
  line-height: 1.25em;
}

h3 {
  color: var(--black);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Poppins, sans-serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.2em;
}

h4 {
  color: var(--black);
  letter-spacing: .2px;
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Poppins, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4em;
}

h5 {
  color: var(--black);
  letter-spacing: .2px;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Poppins, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.55em;
}

h6 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6em;
}

p {
  margin-bottom: 10px;
}

a {
  text-decoration: none;
}

ul {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
  font-family: Poppins, sans-serif;
}

li {
  color: var(--dark-grey);
  margin-bottom: 24px;
  padding-left: 40px;
  font-size: 15px;
  font-weight: 600;
  list-style-type: disc;
}

label {
  margin-bottom: 5px;
  font-family: Poppins, sans-serif;
  font-weight: 700;
  display: block;
}

strong {
  color: var(--black);
  font-weight: 600;
}

blockquote {
  text-align: center;
  letter-spacing: .2px;
  background-image: url('../images/quote-img_1quote-img.jpg');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: 38px;
  background-attachment: scroll;
  border-left: 5px #e2e2e2;
  margin-top: 40px;
  margin-bottom: 40px;
  padding-top: 60px;
  padding-left: 20px;
  padding-right: 20px;
  font-family: Poppins, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.6;
}

.section {
  padding-top: 80px;
  padding-bottom: 60px;
  overflow: hidden;
}

.section.without-top-spacing {
  padding-top: 30px;
  padding-bottom: 30px;
}

.section.without-bottom-spacing {
  padding-bottom: 0;
}

.white-text {
  color: #fff;
  font-weight: 300;
}

.white-text.mid {
  text-align: left;
  font-family: Poppins, sans-serif;
  line-height: 25px;
}

.base-container {
  flex-direction: column;
  max-width: 1200px;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.base-container._2 {
  margin-bottom: 40px;
}

.button {
  z-index: 1;
  cursor: pointer;
  margin-left: auto;
  margin-right: auto;
  padding: 21px 32px;
  font-family: Poppins, sans-serif;
  font-weight: 600;
  line-height: 1.15;
  text-decoration: none;
  transition: background-color .25s;
  position: relative;
}

.button:hover {
  opacity: 1;
  background-color: #dc0d06;
}

.button.light {
  color: #fff;
  border: 1px solid #ffffff4d;
}

.button.light:hover {
  background-color: #dc0d0600;
}

.button.black {
  color: #fff;
  border: 1px solid #000;
  padding: 20px 35px;
}

.button.black:hover {
  background-color: #0000;
}

.primary-button-blue-icon {
  margin-top: 3px;
  margin-left: 8px;
  font-family: "Fa solid 900", sans-serif;
  font-size: 10px;
}

.button-background {
  width: 100%;
  height: 100%;
  display: inline-block;
  position: absolute;
  inset: 0%;
  transform: translate(-100%);
}

.button-background.blue {
  background-color: var(--royal-blue);
  transform: none;
}

.button-background.white {
  border: 1px solid var(--white);
  background-color: #fff;
  transform: translate(-100%);
}

.primary-button-blue {
  border: 1px solid var(--royal-blue);
  background-color: var(--royal-blue);
  color: var(--white);
  flex: none;
  align-items: center;
  padding: 22px 30px;
  font-family: Poppins, sans-serif;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  display: flex;
  position: relative;
}

.primary-button-blue.password-page {
  justify-content: center;
  width: 100%;
}

.primary-button-blue-text {
  margin-bottom: 0;
  line-height: 1;
  position: relative;
}

.primary-button-blue-text.white-text {
  z-index: 11;
}

.primary-button-blue-icon-con {
  margin-bottom: 0;
}

.button-con {
  cursor: pointer;
  margin-top: 20px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.button-con.black {
  background-color: #000;
}

.button-con.black.margin-left {
  margin-left: 50px;
}

.button-con.desctop-display-none {
  display: none;
}

.button-con.margin-top {
  margin-top: 30px;
}

.home-banner {
  background-color: #27c9c9;
  height: 100vh;
  position: relative;
}

.navbar {
  z-index: 999;
  background-color: #0000;
  width: 100%;
  padding-right: 30px;
  position: fixed;
}

.brand {
  background-color: var(--white);
  justify-content: center;
  align-items: center;
  width: 212px;
  height: 125px;
  padding-top: 0;
  font-family: Poppins, sans-serif;
  font-size: 38px;
  font-weight: 600;
  line-height: 1;
  display: flex;
}

.brand.mobile {
  display: none;
}

.brand._404-page {
  width: auto;
  height: 70px;
  padding-top: 30px;
}

.logo-con {
  align-items: center;
  display: flex;
}

.navbar-con {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.nav-menu {
  align-items: center;
  padding-right: 20px;
  display: flex;
}

.nav-link {
  color: var(--white);
  padding-left: 3px;
  padding-right: 3px;
  line-height: 36px;
  text-decoration: none;
  display: flex;
  position: relative;
}

.nav-link:visited {
  color: var(--royal-blue);
}

.border-bottom-left {
  border-bottom: 1px solid var(--white);
  width: 0%;
  height: 100%;
  position: absolute;
  left: 50%;
}

.border-bottom-right {
  border-bottom: 1px solid var(--white);
  width: 0%;
  height: 100%;
  position: absolute;
  inset: 0% 50% 0% auto;
}

.navigation-wrapper {
  align-items: center;
  display: flex;
}

.dropdown-nav-link {
  color: var(--dark-grey);
  margin-left: -20px;
  padding: 5px 0;
  font-family: Poppins, sans-serif;
  transition: color .2s;
  display: flex;
}

.dropdown-nav-link:hover, .dropdown-nav-link.w--current {
  color: var(--royal-blue);
}

.slider {
  height: 100vh;
}

.left-arrow {
  justify-content: center;
  align-items: center;
  height: 68px;
  display: none;
  inset: auto 292px 0% auto;
}

.right-arrow {
  color: var(--black);
  justify-content: center;
  align-items: center;
  height: 68px;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  font-weight: 600;
  display: none;
  inset: auto 0 0% auto;
}

.icon {
  display: none;
}

.banner-slide-1 {
  background-image: linear-gradient(#0006, #0006), url('../images/home-banner-1.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

.banner-slide-1.home-3 {
  background-color: var(--black);
  background-image: linear-gradient(#00000091, #00000091), url('../images/1.jpg');
  background-position: 0 0, 100%;
  background-size: auto, auto 100%;
}

.slide-nav {
  display: none;
}

.paragraph-8 {
  color: var(--black);
  margin-bottom: 0;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  font-weight: 600;
}

.icon-2 {
  display: none;
}

.banner-slide-content-con {
  justify-content: flex-start;
  align-items: center;
  height: 100vh;
  margin-left: 70px;
  display: flex;
}

.banner-slider-heading {
  color: var(--white);
  text-align: left;
  max-width: 720px;
  margin-top: 20px;
  margin-bottom: 0;
  font-size: 90px;
  font-weight: 300;
  line-height: 1.1em;
}

.sidebar {
  z-index: 1;
  background-color: var(--white);
  flex-direction: column;
  justify-content: flex-end;
  width: 70px;
  height: 100%;
  display: flex;
  position: absolute;
  inset: 0% auto auto 0%;
}

.sidebar-con {
  flex-direction: column;
  flex: 0 auto;
  justify-content: flex-end;
  align-items: center;
  height: 100vh;
  padding-bottom: 20px;
  display: flex;
}

.sidebar-text {
  color: #bbb;
  letter-spacing: 5px;
  flex: 0 auto;
  margin-bottom: 0;
  font-family: Poppins, sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.71;
  display: block;
}

.home-sidebar-text {
  flex-direction: row;
  flex: 0 auto;
  align-items: center;
  width: 420px;
  margin-bottom: 35vh;
  display: flex;
  transform: rotate(270deg);
}

.sidebar-socials-con {
  flex-direction: column;
  display: flex;
}

.social-icon {
  color: #bbb;
  justify-content: center;
  font-family: "Fa brands 400", sans-serif;
  font-size: 18px;
  text-decoration: none;
  transition: color .3s;
  display: flex;
}

.social-icon:hover {
  color: var(--royal-blue);
}

.social-icon.mb-2vh {
  margin-bottom: 2vh;
}

.social-icon.mb-2vh.last-item {
  margin-bottom: 0;
}

.gray-paragraph {
  color: var(--dark-grey);
  font-family: Poppins, sans-serif;
}

.testimonials {
  padding-top: 80px;
  padding-bottom: 80px;
}

.testimonials-slider-con {
  width: 100%;
  max-width: 895px;
  margin-top: -40px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 60px;
  padding-right: 60px;
  position: relative;
}

.testimonials-mask {
  position: static;
  overflow: visible;
}

.testimonials-slider {
  background-color: #0000;
  width: 100%;
  max-width: 750px;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  position: static;
  overflow: hidden;
}

.icon-5, .icon-6 {
  color: #000;
  font-family: Poppins, sans-serif;
  font-size: 20px;
  font-weight: 700;
}

.slide-nav-3 {
  display: none;
}

.testimonials-quote-icon {
  color: var(--royal-blue);
  text-align: center;
  margin-bottom: 0;
  font-family: "Fa solid 900", sans-serif;
  font-size: 62px;
  font-weight: 900;
  line-height: 1;
}

.testimonials-quote {
  text-align: center;
  max-width: 930px;
  margin-top: 56px;
  margin-bottom: 0;
  font-family: Poppins, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.67;
}

.testimonials-item-wrapper {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.testimonials-quote-author {
  margin-top: 55px;
  font-family: Poppins, sans-serif;
  display: flex;
}

.author-position {
  color: var(--dark-grey);
  margin-bottom: 0;
}

.author-img-con {
  border-radius: 50%;
  width: 80px;
  height: 80px;
  margin-right: 25px;
}

.heading-9 {
  margin-top: 0;
  margin-bottom: 5px;
}

.testimonials-author {
  flex-direction: column;
  justify-content: center;
  display: flex;
}

.right-arrow-3, .left-arrow-3 {
  width: 30px;
  height: 30px;
}

.testimonials-slide-1 {
  height: auto;
}

.background-text-big {
  color: var(--white-smoke);
  text-align: center;
  width: 100%;
  margin-bottom: 0;
  font-family: Poppins, sans-serif;
  font-size: 110px;
  font-weight: 700;
  line-height: 1;
}

.background-text-big.left-aligment {
  text-align: right;
  margin-top: -60px;
}

.nav-item-text {
  color: var(--white);
  margin-bottom: 5px;
  font-weight: 600;
}

.dark-text {
  color: var(--black);
}

.primary-button-white-wrapper {
  transition: color .1s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.button-bg-white {
  background-color: var(--white);
  color: #0000;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
}

.primary-button-white-arrow {
  opacity: 0;
  color: var(--black);
  margin-bottom: 0;
  display: none;
}

.primary-button-white-text {
  color: var(--black);
  margin-bottom: 0;
  line-height: 1.2em;
}

.primary-button-white {
  border: 1px solid var(--white);
  padding: 20px 30px;
  font-family: Poppins, sans-serif;
  font-weight: 600;
  text-decoration: none;
  display: block;
  position: relative;
}

.section-title-center {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 780px;
  margin-bottom: 60px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.contacts-wrapper {
  grid-column-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  padding-left: 30px;
  padding-right: 30px;
}

.paragraph {
  color: var(--dark-grey);
  letter-spacing: .2px;
  margin-bottom: 0;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6em;
  text-decoration: none;
}

.paragraph.contacts-paragraph {
  text-align: right;
  margin-bottom: 15px;
}

.paragraph.text-center-mobile-landscape {
  padding-top: 10px;
  padding-bottom: 10px;
}

.paragraph.contacts-link {
  transition: all .2s;
}

.paragraph.contacts-link:hover {
  color: var(--royal-blue);
}

.blue-background {
  background-color: var(--royal-blue);
}

.contacts-with-background {
  justify-content: space-between;
  padding-top: 90px;
  padding-bottom: 90px;
  display: flex;
}

.contacts-with-background.contact-2 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.contacts-with-bg-text {
  width: 80%;
  margin-right: 80px;
}

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

.mb-30 {
  margin-bottom: 30px;
}

.navigation-tablet-close {
  display: none;
}

.footer {
  background-color: #000;
  padding-top: 80px;
  padding-bottom: 80px;
  overflow: hidden;
}

.footer-social-icons-wrapper {
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  display: flex;
}

.footer-social-icon {
  color: var(--white);
  margin-right: 30px;
  font-family: "Fa brands 400", sans-serif;
  font-size: 18px;
  text-decoration: none;
  transition: all .3s;
}

.footer-social-icon:hover {
  color: var(--royal-blue);
}

.footer-social-icon.last-child {
  margin-right: 0;
}

.about-wrapper {
  align-items: center;
  display: flex;
}

.about-right-block {
  flex-direction: column;
  align-items: flex-start;
  width: 50%;
  margin-left: 8%;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.about-left-block {
  justify-content: center;
  align-items: center;
  width: 42%;
  height: 540px;
  display: flex;
}

.about-title-wrapper {
  align-items: center;
  margin-bottom: 30px;
  display: flex;
}

.hidden {
  display: none;
}

.slider-about {
  background-color: #0000;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  width: 540px;
  height: 90%;
  transform: rotate(90deg);
}

.mask-about {
  width: 540px;
}

.slider-about-left-arrow {
  background-color: var(--black);
  width: 52px;
  height: 52px;
  position: absolute;
  top: auto;
  left: 0%;
  right: 50px;
}

.slider-about-right-arrow {
  background-color: #eee;
  width: 52px;
  height: 52px;
  position: absolute;
  inset: auto -50px 0% 0%;
}

.shevron-up-icon {
  color: var(--white);
  font-size: 15px;
}

.shevron-down-icon {
  color: var(--black);
  font-size: 15px;
}

.about-slide {
  width: 100%;
  height: 100%;
}

.conracts-with-bg-button {
  justify-content: flex-end;
  align-items: flex-start;
  width: 20%;
  display: flex;
}

.flex-horizontal {
  align-items: center;
  width: 100%;
  display: flex;
}

.about-slide-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

.services-wrapper {
  position: relative;
}

.about-heading {
  letter-spacing: .2px;
}

.about-heading.white {
  color: var(--white);
}

.blog-section-title {
  margin-bottom: 60px;
  padding-left: 15px;
  padding-right: 15px;
}

.about-big-number {
  -webkit-text-fill-color: transparent;
  background-image: url('../images/robert-fertala-65.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 0;
  margin-right: 20px;
  font-family: Poppins, sans-serif;
  font-size: 250px;
  font-weight: 700;
  line-height: 1;
}

.footer-brand {
  color: var(--white);
}

.footer-brand.w--current {
  color: var(--white);
  padding-left: 0;
  font-family: Poppins, sans-serif;
}

.brand-text {
  margin-bottom: 0;
  font-family: Poppins, sans-serif;
  font-size: 34px;
  font-weight: 600;
  line-height: 1;
}

.brand-text.footer {
  padding: 0;
}

.grid-counter {
  grid-column-gap: 30px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

.counter-number {
  color: var(--royal-blue);
  text-align: center;
  letter-spacing: .2px;
  font-family: Poppins, sans-serif;
  font-size: 46px;
  font-weight: 600;
  line-height: 1.2;
}

.counter-text {
  color: var(--dark-grey);
  text-align: center;
  letter-spacing: .2px;
  margin-bottom: 0;
  font-family: Poppins, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
}

.sidenav-dropdown-link {
  color: var(--dark-grey);
  margin-left: 20px;
  margin-right: 0;
  padding-left: 0;
  padding-right: 10px;
  font-family: Poppins, sans-serif;
  display: flex;
}

.sidenav-dropdown-link.w--current {
  color: var(--royal-blue);
}

.flex-horizontal-center {
  justify-content: center;
  align-items: center;
  display: flex;
}

.utility-page-wrap {
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100vw;
  height: 90vh;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.utility-page-wrap.password-page {
  justify-content: center;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 260px;
  display: flex;
}

.utility-page-form {
  flex-direction: column;
  display: flex;
}

.banner-title {
  color: var(--white);
  text-align: center;
  letter-spacing: .2px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 50px;
  font-weight: 300;
}

.about-us-image {
  object-fit: cover;
  width: 50%;
  height: 280px;
  display: block;
}

.about-us-image.left-image {
  margin-right: 15px;
}

.flex-vertical-center {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.services-grid-with-list {
  grid-column-gap: 30px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  margin-bottom: 20px;
}

.services-list {
  margin-top: 0;
  margin-bottom: 30px;
  padding-left: 0;
  list-style-type: disc;
}

.flex-vertical {
  flex-direction: column;
  display: flex;
}

.flex-vertical.align-start {
  align-items: flex-start;
}

.services-grid-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  max-height: 580px;
}

.fw-light {
  font-weight: 300;
}

.testimonials-image {
  border-radius: 50%;
}

.paragraph-medium {
  color: var(--dark-grey);
  font-family: Poppins, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
}

.portfolio-metro-item {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  min-height: 240px;
  position: relative;
}

.portfolio-item-link {
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  display: flex;
  position: absolute;
  inset: 15px 15px auto auto;
}

.blue-text {
  color: var(--royal-blue);
}

._404-title {
  color: var(--royal-blue);
  margin-top: 0;
  font-weight: 700;
}

._404-text {
  text-align: center;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 50px;
  font-weight: 600;
}

.body-with-background {
  background-color: var(--white-smoke);
}

.contacts-section {
  display: flex;
}

.contacts-image-wrapper {
  background-image: url('../images/robert-fertala-1.jpg');
  background-position: 0%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  width: 55%;
  height: 700px;
}

.contacts-content-wrapper {
  width: 45%;
  padding: 50px 60px;
}

.contacts-title {
  margin-top: 10px;
  font-size: 34px;
}

.contacts-input {
  color: var(--royal-blue);
  letter-spacing: .2px;
  border: 2px solid #eee;
  border-radius: 0;
  min-height: 60px;
  margin-bottom: 20px;
  padding: 10px 24px;
  font-family: Poppins, sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.6;
  transition: all .2s;
}

.contacts-input:focus {
  border-color: var(--royal-blue);
}

.contacts-input::placeholder {
  font-weight: 400;
}

.contacts-input.contacts-textarea {
  min-height: 120px;
}

.contacts-form {
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: flex-start;
  margin-top: 40px;
  margin-bottom: 0;
  display: flex;
}

.contacts-grid {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  padding-left: 40px;
  padding-right: 40px;
}

.contacts-content-item-wrapper {
  margin-bottom: 25px;
}

.contacts-content-item-wrapper.last-item, .contacts-form-wrapper {
  margin-bottom: 0;
}

.mb-15 {
  margin-bottom: 15px;
}

.location-map-wrapper {
  position: relative;
}

.location-map-wrapper.home-page {
  margin-bottom: 60px;
}

.password-title {
  margin-bottom: 60px;
  font-weight: 600;
}

.footer-rights-wrapper {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 20px;
  display: flex;
}

.footer-rights {
  color: #ffffffb3;
  font-family: Poppins, sans-serif;
  font-size: 14px;
}

.licensing-images-block {
  width: 100%;
  margin-top: 40px;
}

.footer-wrapper {
  justify-content: space-between;
  margin-bottom: 40px;
  padding-left: 60px;
  padding-right: 60px;
  display: flex;
}

.footer-brand-wrapper {
  flex-direction: column;
  align-items: flex-start;
  width: 30%;
  display: flex;
}

.nav-links-wrapper {
  overflow: hidden;
}

.base-container-2 {
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.landing-home-image-link {
  margin-bottom: 20px;
  padding: 25px;
  position: relative;
}

.password-image {
  max-width: 160px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.banner-slide-content-copy {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 60%;
  padding-left: 5%;
  font-weight: 400;
  display: flex;
}

.btn-wrapper {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  display: flex;
}

.feature-card-description {
  z-index: 10;
  grid-column-gap: 16px;
  grid-row-gap: 2rem;
  flex-flow: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: flex;
  position: relative;
}

.tripple-grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr .25fr;
  grid-auto-rows: auto;
  grid-auto-columns: .5fr;
  margin-bottom: 60px;
  display: grid;
}

.services-card-2 {
  grid-column-gap: 0px;
  grid-row-gap: 36px;
  background-color: var(--black);
  border-top: 1px #f3f6fc;
  border-bottom: 1px solid #f3f6fc;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  place-items: flex-start start;
  height: 100%;
  padding: 36px;
  display: flex;
}

.list {
  padding-left: 0;
}

.intro-wrapper {
  z-index: 10;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
  position: relative;
}

.button-2 {
  background-color: var(--royal-blue);
  color: #fff;
  text-align: center;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: 1px solid #090b19;
  border-radius: 0;
  justify-content: center;
  align-items: center;
  margin-left: 0;
  margin-right: 0;
  padding: 16px 28px;
  font-size: 11px;
  text-decoration: none;
  transition: all .4s cubic-bezier(.25, .46, .45, .94);
  display: flex;
  position: relative;
  overflow: hidden;
}

.button-2:hover {
  background-color: var(--black);
  color: #090b19;
  border-color: #e2e7f1;
}

.button-2.grey-outline {
  color: #090b19;
  background-color: #090b1900;
  border-color: #e2e7f1;
}

.button-2.grey-outline:hover {
  color: #fff;
  background-color: #090b19;
  border-color: #090b19;
}

.button-2.grey-outline.small {
  background-color: var(--royal-blue);
}

.icon-7 {
  z-index: 10;
  background-color: var(--royal-blue);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 60px;
  min-width: 60px;
  height: 60px;
  min-height: 60px;
  display: flex;
  position: relative;
}

.card-hover-item {
  grid-column-gap: 16px;
  grid-row-gap: 36px;
  border-top: 1px #f3f6fc;
  border-bottom: 1px #f3f6fc;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  place-items: flex-start stretch;
  padding: 0;
  text-decoration: none;
  display: grid;
  position: relative;
  overflow: hidden;
}

.clip {
  position: relative;
  overflow: hidden;
}

.icon-1 {
  filter: brightness(200%);
}

.wrapper {
  z-index: 10;
  width: 100%;
  max-width: 1400px;
  position: relative;
}

.card-button-wrapper {
  display: flex;
}

.body-display {
  color: #6e7488;
  font-size: 16px;
  line-height: 1.6em;
}

.body-display.white-text {
  color: #fff;
}

.subtitle {
  z-index: 10;
  color: #090b19;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 400;
  position: relative;
}

.heading-in-column {
  margin-bottom: .5em;
  font-size: 2.2em;
  line-height: 1.6em;
}

.section-2 {
  z-index: 10;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 120px 5vw;
  display: flex;
  position: relative;
}

.section-2.clip {
  padding-top: 60px;
  padding-bottom: 70px;
}

.heading {
  z-index: 10;
  color: var(--white);
  margin-bottom: 0;
  font-size: 2em;
  position: relative;
}

.feature-card-info {
  grid-column-gap: 16px;
  grid-row-gap: 24px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.services-grid {
  grid-column-gap: 1px;
  grid-row-gap: 1px;
  border-top: 1px solid #f3f6fc;
  border-left: 1px solid #f3f6fc;
  border-right: 1px solid #f3f6fc;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-rows: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.card-circle {
  background-color: #f3f6fc;
  border-radius: 100%;
  width: 6vw;
  max-width: 800px;
  height: 6vw;
  max-height: 800px;
  position: absolute;
  inset: -6vw -6vw auto auto;
}

.subtitle-wrapper {
  margin-bottom: 18px;
  overflow: hidden;
}

.button-text {
  z-index: 10;
  color: #fff;
  position: relative;
}

.card {
  background-color: #fff;
  border: 1px solid #eef0f5;
  box-shadow: 0 2px 12px #14142b14;
}

.card.faqs-item {
  cursor: pointer;
  transform-style: preserve-3d;
  justify-content: space-between;
  padding: 60px 64px;
  transition: transform .3s;
  display: flex;
  box-shadow: 0 2px 7px #14142b0a;
}

.card.faqs-item:hover {
  transform: translate3d(0, -6px, .01px);
}

.container-default {
  max-width: 1316px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.acordion-body {
  width: 100%;
  overflow: hidden;
}

.accordion-title {
  margin-bottom: 0;
  font-size: 28px;
  font-weight: 300;
}

.bg-dots {
  z-index: -1;
  position: absolute;
}

.bg-dots.bottom-left-0 {
  bottom: 0;
  left: 0;
}

.bg-dots.bottom-left-0.width-16 {
  width: 16%;
}

.bg-dots.top-right-0 {
  top: 0;
  right: 0;
}

.bg-dots.top-right-0.width-16 {
  width: 16%;
}

.accordion-spacer {
  min-height: 16px;
}

.accordion-spacer.min-h-8px {
  min-height: 8px;
}

.top-section {
  padding-top: 130px;
}

.top-section.pd-top-100px {
  padding-top: 100px;
}

.top-section.pd-top-100px.pd-bottom-200px {
  flex-flow: column;
  padding-bottom: 100px;
  display: flex;
}

.position-relative---z-index-1 {
  z-index: 1;
  position: relative;
}

.accordion-btn-line {
  background-color: #0a215b;
  border-radius: 20px;
  width: 18px;
  height: 2px;
  position: absolute;
}

.accordion-btn-line.vertical {
  width: 2px;
  height: 18px;
}

.color-neutral-400 {
  color: #d6d9e2;
}

.color-neutral-400.mg-bottom-0 {
  margin-bottom: 3rem;
}

.accordion-side {
  margin-right: 24px;
}

.accordion-side.right-side {
  margin-left: 24px;
  margin-right: 0;
}

.grid-1-column {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.accordion-item---button-container {
  cursor: pointer;
  border: 1px solid #d6d9e2;
  justify-content: center;
  align-items: center;
  min-width: 50px;
  max-width: 50px;
  min-height: 50px;
  max-height: 50px;
  display: flex;
}

.accordion-content-wrapper {
  flex-direction: column;
  justify-content: center;
  display: flex;
}

.accordion-content-wrapper.width-660px {
  max-width: 660px;
}

.accordion-header {
  align-items: center;
  display: flex;
}

.inner-container._880px {
  max-width: 880px;
}

.inner-container._1024px {
  max-width: 1024px;
}

.bg-neutral-800 {
  background-color: #0a215b;
}

.bg-neutral-800.faqs-bg {
  z-index: -1;
  background-color: var(--black);
  min-height: 515px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.mg-bottom-0 {
  margin-bottom: 0;
}

.process-component {
  grid-column-gap: 3.75rem;
  grid-row-gap: 3.75rem;
  flex-flow: column;
  display: flex;
}

.div-block-59 {
  position: absolute;
  inset: 3% 5% auto auto;
}

.paragraph-27 {
  text-align: left;
  font-family: Poppins, sans-serif;
  font-size: 15px;
}

.padding-section-large {
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
}

.features-card-img {
  border-radius: 0;
  margin-bottom: 30px;
}

.container-2 {
  width: 1000px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.btn-wrapper-2 {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
  display: flex;
}

.features-wrapper {
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.features-card {
  transform-origin: 50% 0;
  text-align: center;
  -webkit-text-fill-color: inherit;
  background-color: #fff;
  background-clip: border-box;
  border-radius: 15px;
  flex-direction: column;
  align-items: center;
  padding: 40px;
  display: flex;
  position: sticky;
  top: 150px;
}

.features-card.fourth {
  grid-column-gap: 1.8rem;
  grid-row-gap: 1.8rem;
  flex-flow: row;
  top: 195px;
}

.features-card.third {
  grid-column-gap: 1.8rem;
  grid-row-gap: 1.8rem;
  flex-flow: row;
  margin-bottom: 15px;
  top: 180px;
}

.features-card.second {
  grid-column-gap: 1.8rem;
  grid-row-gap: 1.8rem;
  flex-flow: row;
  margin-bottom: 30px;
  top: 165px;
}

.features-card.first {
  grid-column-gap: 1.8rem;
  grid-row-gap: 1.8rem;
  border-radius: 0;
  flex-flow: row;
  margin-bottom: 45px;
  box-shadow: 0 2px 9px 5px #c0c0c033;
}

.features-card-title {
  text-align: left;
  letter-spacing: -1px;
  margin-bottom: 12px;
  font-family: Poppins, sans-serif;
  font-size: 23px;
  font-weight: 600;
  line-height: 32px;
}

.features-right {
  grid-row-gap: 200px;
  flex-direction: column;
  width: 60%;
  display: flex;
  position: relative;
}

.padding-global {
  width: 100%;
  padding-left: 2rem;
  padding-right: 2rem;
}

.div-block-58 {
  flex-flow: column;
  display: flex;
}

.section-process {
  background-color: #fff;
}

.features-left {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  align-items: flex-start;
  width: 30%;
  max-width: 450px;
  display: flex;
  position: sticky;
  top: 150px;
}

.paragraph-28 {
  margin-top: 10px;
  font-size: 16px;
}

.container-large {
  width: 100%;
  max-width: 75rem;
  margin-left: auto;
  margin-right: auto;
}

.text-block-5 {
  color: var(--royal-blue);
  font-family: Poppins, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 35px;
}

.nav-links-wrapper {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  display: flex;
}

.container-3 {
  margin-top: 4rem;
  padding-top: 0;
}

.checkbox {
  width: 16px;
  height: 16px;
}

.text-block-6 {
  text-align: center;
  margin-top: 8px;
  font-family: Poppins, sans-serif;
  font-size: 11px;
  line-height: 15px;
}

.checkbox-label {
  font-size: 12px;
  line-height: 16px;
}

.section-3 {
  background-image: url('../images/ID-2-1-p-500.png');
  background-position: 0 20px;
  background-repeat: no-repeat;
  background-size: 300px;
  justify-content: center;
  align-items: center;
  margin-top: 5%;
  padding: 4% 4% 20%;
  display: flex;
  position: relative;
}

.section-3.backgrounf {
  background-color: #fff;
  background-image: none;
  flex-flow: column;
  margin-top: 0%;
  padding-bottom: 4%;
}

.image-column {
  transform: scale3d(1none, 1none, 1none);
  transform-style: preserve-3d;
  border-radius: 0;
  width: 80%;
  min-height: 74vh;
  position: relative;
  overflow: hidden;
}

.display-none {
  display: none;
}

.hover-image {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  inset: 0%;
}

.hover-image._6 {
  object-fit: cover;
  background-image: none;
  justify-content: center;
  align-items: center;
  display: flex;
}

.code-embed-2 {
  object-fit: cover;
  width: 100%;
  height: 100%;
  min-height: 0;
}

.clone-me-2 {
  z-index: 99999;
  display: none;
  position: fixed;
  inset: auto 20px 20px auto;
}

.button_call-2 {
  color: #fff;
  background-color: #f66a18;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 55px;
  height: 55px;
  display: flex;
  box-shadow: 0 10px 30px -10px #00000026;
}

.icon-embed-small {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  display: flex;
}

@media screen and (min-width: 1280px) {
  .section {
    padding-top: 130px;
    padding-bottom: 130px;
  }

  .sidebar-text {
    letter-spacing: 6px;
  }

  .social-icon.mb-2vh.last-item {
    margin-bottom: 2vh;
  }

  .testimonials {
    padding-top: 130px;
    padding-bottom: 130px;
  }

  .section-title-center {
    margin-bottom: 70px;
  }

  .footer {
    background-position: -4%;
    background-size: auto 420px;
    padding: 100px 80px;
  }

  .blog-section-title {
    margin-bottom: 70px;
  }

  .grid-counter {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .utility-page-wrap {
    height: 100vh;
  }

  .utility-page-content {
    width: 300px;
  }

  .banner-title {
    color: var(--white);
    text-align: center;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 50px;
  }

  .portfolio-metro-item {
    min-height: 290px;
  }

  .contacts-image-wrapper {
    background-position: 0%;
    background-size: auto;
    background-attachment: fixed;
    height: 900px;
  }

  .contacts-content-wrapper {
    padding-left: 80px;
    padding-right: 80px;
  }

  .contacts-title {
    font-size: 43px;
  }

  .contacts-form {
    margin-top: 60px;
  }

  .location-map-wrapper {
    padding-right: 70px;
  }

  .footer-rights-wrapper {
    margin-top: 30px;
  }

  .base-container-2 {
    border-width: 1px;
    border-color: #000;
    border-top-style: none;
    border-bottom-style: none;
    border-right-style: none;
  }

  .card-hover-item {
    padding: 0;
  }
}

@media screen and (min-width: 1440px) {
  .nav-link {
    margin-right: 40px;
  }

  .background-text-big {
    font-size: 140px;
  }

  .services-grid-with-list {
    margin-bottom: 40px;
  }

  .portfolio-metro-item {
    min-height: 330px;
  }

  .footer-wrapper {
    padding-left: 80px;
    padding-right: 80px;
  }

  .banner-slide-content-copy {
    width: 50%;
  }

  .services-card-2 {
    padding: 48px;
  }

  .accordion-title {
    font-size: 30px;
  }
}

@media screen and (min-width: 1920px) {
  .banner-slide-1 {
    background-size: cover;
  }

  .background-text-big {
    font-size: 180px;
  }

  .background-text-big.left-aligment {
    padding-right: 40px;
  }

  .footer {
    background-position: -2%;
    background-size: contain;
  }

  .portfolio-metro-item {
    min-height: 450px;
  }

  .contacts-image-wrapper {
    background-size: auto;
  }

  .contacts-title {
    font-size: 48px;
  }

  .landing-home-image-link {
    transition: all .3s;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 70px;
  }

  h2 {
    font-size: 40px;
  }

  h3 {
    font-size: 30px;
  }

  blockquote {
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .button {
    object-fit: fill;
    margin-left: auto;
    margin-right: auto;
    display: block;
    position: static;
  }

  .button.black {
    border-style: none;
  }

  .button-background.blue {
    height: 100%;
    transform: none;
  }

  .button-background.white.black-switch {
    transform: translate(-149%);
  }

  .button-background.white {
    transform: translate(-100%);
  }

  .button-con.black {
    margin-left: 0;
  }

  .button-con.margin-top {
    margin-top: 40px;
  }

  .brand {
    width: 160px;
    height: 83px;
    padding: 20px 25px;
    font-size: 36px;
  }

  .brand.mobile {
    align-items: center;
    padding: 0;
    display: flex;
  }

  .navbar-con {
    width: 100%;
    transition: all .3s;
  }

  .nav-menu {
    background-color: var(--white);
    width: 100%;
    max-width: 320px;
    padding-right: 0;
  }

  .nav-link {
    border-top: 1px solid var(--white-smoke-2);
    border-bottom: 1px solid var(--white-smoke-2);
    border-left: 1px solid var(--white-smoke-2);
    align-items: center;
    width: 100%;
    margin-right: 0;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 35px;
    position: relative;
  }

  .nav-link.tablet-link {
    padding-top: 12px;
    padding-bottom: 12px;
    font-weight: 600;
  }

  .border-bottom-left, .border-bottom-right {
    display: none;
  }

  .dropdown-nav-link {
    color: var(--black);
    border-bottom: 1px solid #f1f2f3;
    border-right: 1px solid #f1f2f3;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .dropdown-nav-link.w--current {
    color: var(--royal-blue);
  }

  .navbar-button-con {
    display: none;
  }

  .menu-button {
    background-color: #0000;
    padding: 4px;
  }

  .menu-button.w--open {
    background-color: #0000;
  }

  .banner-slide-content-con {
    padding-left: 140px;
    padding-right: 140px;
  }

  .banner-slider-heading {
    width: 100%;
    max-width: 620px;
    font-size: 70px;
  }

  .sidebar-text {
    letter-spacing: 6px;
  }

  .testimonials {
    padding-top: 80px;
    padding-bottom: 80px;
    overflow: hidden;
  }

  .testimonials-slider-con {
    max-width: 675px;
  }

  .testimonials-quote-icon {
    font-size: 45px;
  }

  .testimonials-quote {
    max-width: 555px;
    margin-top: 33px;
    font-size: 21px;
  }

  .testimonials-quote-author {
    margin-top: 30px;
  }

  .background-text-big {
    font-size: 14vw;
  }

  .background-text-big.left-aligment {
    margin-top: -40px;
  }

  .nav-item-text {
    color: var(--black);
    margin-bottom: 0;
  }

  .dark-text.mobile {
    margin-top: 10px;
    font-size: 32px;
  }

  .section-title-center {
    margin-bottom: 60px;
  }

  .contacts-wrapper {
    padding-left: 15px;
    padding-right: 15px;
  }

  .contacts-with-background {
    align-items: center;
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .contacts-with-bg-text {
    width: 70%;
  }

  .image {
    width: 28px;
    max-width: 28px;
  }

  .navigation-tablet-close {
    justify-content: flex-end;
    align-items: center;
    height: 100%;
    padding-right: 30px;
  }

  .navigation-tablet-close.w--open {
    background-color: var(--white);
    text-align: right;
    flex-direction: row;
    justify-content: center;
    padding-right: 12px;
    font-family: Poppins, sans-serif;
  }

  .nav-tablet-close-icon {
    margin-top: 11px;
  }

  .footer {
    background-position: 0 100%;
    background-size: auto 240px;
    padding: 60px 15px;
  }

  .footer-social-icons-wrapper {
    margin-top: 0;
  }

  .about-right-block {
    margin-left: 3%;
  }

  .about-left-block {
    width: 345px;
  }

  .slider-about {
    height: 345px;
    display: flex;
  }

  .conracts-with-bg-button {
    width: 30%;
  }

  .services-wrapper {
    justify-content: flex-end;
  }

  .about-heading {
    font-size: 24px;
  }

  .blog-section-title {
    margin-bottom: 60px;
  }

  .nav-menu-top-wrapper-tablet {
    justify-content: space-between;
    align-items: center;
    height: 83px;
    padding-left: 15px;
    display: flex;
  }

  .about-big-number {
    font-size: 140px;
  }

  .grid-counter {
    grid-column-gap: 30px;
    grid-row-gap: 40px;
    grid-template-columns: 1fr 1fr;
  }

  .counter-number {
    font-size: 38px;
  }

  .banner-title {
    font-size: 40px;
  }

  .about-us-image {
    width: 49%;
  }

  .services-grid-with-list {
    margin-bottom: 0;
  }

  .portfolio-metro-item {
    min-height: 360px;
  }

  ._404-title {
    font-size: 90px;
  }

  .contacts-section {
    flex-wrap: wrap;
  }

  .contacts-image-wrapper {
    background-position: 50% 0;
    background-attachment: scroll;
    width: 100%;
    height: 450px;
  }

  .contacts-content-wrapper {
    text-align: center;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 0;
    padding-left: 15px;
    padding-right: 15px;
  }

  .contacts-title {
    font-size: 32px;
  }

  .contacts-form {
    align-items: center;
  }

  .contacts-grid {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .footer-wrapper {
    flex-wrap: wrap;
    padding-left: 40px;
    padding-right: 40px;
  }

  .footer-brand-wrapper {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 50px;
  }

  .landing-home-image-link {
    margin-bottom: 40px;
    padding: 0;
  }

  .tripple-grid {
    grid-row-gap: 36px;
    grid-template-columns: 1fr 1fr;
  }

  .services-card-2 {
    padding: 36px 24px;
  }

  .heading-in-column {
    font-size: 2em;
  }

  .section-2 {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .services-grid {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-columns: 1fr 1fr;
  }

  .card.faqs-item {
    padding: 56px 48px;
  }

  .accordion-spacer {
    min-height: 12px;
  }

  .top-section {
    padding-top: 100px;
  }

  .top-section.pd-top-100px {
    padding-top: 80px;
  }

  .padding-section-large {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .padding-global {
    padding-left: 1.875rem;
    padding-right: 1.875rem;
  }

  .container-large {
    max-width: 100%;
  }

  .nav-links-wrapper {
    flex-flow: column;
  }

  .section-3 {
    margin-top: 10%;
    padding-bottom: 10%;
  }

  .image-column {
    width: 100%;
    min-height: 70vh;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 20px;
  }

  h5 {
    font-size: 16px;
  }

  .section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .button {
    margin-left: 0;
    margin-right: 0;
    display: block;
    position: relative;
    bottom: 0;
    left: 0;
  }

  .left-arrow {
    left: 0;
    right: auto;
  }

  .right-arrow {
    right: 0;
  }

  .banner-slide-1.home-3 {
    background-image: linear-gradient(#00000080, #00000080), url('../images/1.jpg');
    background-position: 0 0, 0%;
  }

  .banner-slide-content-con {
    margin-left: 0;
    padding-left: 15px;
    padding-right: 15px;
  }

  .banner-slider-heading {
    width: 100%;
    max-width: none;
    font-size: 40px;
  }

  .sidebar {
    display: none;
  }

  .testimonials {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .testimonials-quote {
    font-size: 18px;
  }

  .background-text-big.left-aligment {
    margin-top: -60px;
  }

  .dark-text.mobile {
    font-size: 32px;
  }

  .section-title-center {
    margin-bottom: 40px;
  }

  .contacts-wrapper {
    grid-column-gap: 20px;
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
  }

  .paragraph.contacts-paragraph {
    text-align: center;
  }

  .contacts-with-background {
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .contacts-with-bg-text {
    text-align: center;
    width: 100%;
    margin-bottom: 30px;
    margin-right: 0;
  }

  .footer {
    background-image: none;
    background-position: 0 0;
    background-repeat: repeat;
    background-size: auto;
    padding-bottom: 50px;
    padding-left: 0;
    padding-right: 0;
  }

  .about-wrapper {
    flex-wrap: wrap;
  }

  .about-right-block {
    width: 100%;
    margin-left: 0%;
    padding-left: 0;
    padding-right: 0;
  }

  .about-left-block {
    width: 100%;
    height: 300px;
    margin-bottom: 40px;
  }

  .about-title-wrapper {
    max-width: 500px;
  }

  .slider-about {
    width: 300px;
    height: 100%;
    min-height: 95vw;
  }

  .mask-about {
    width: 300px;
    height: 100%;
  }

  .conracts-with-bg-button {
    width: auto;
  }

  .flex-horizontal.wrap-landscape-mobile {
    flex-wrap: wrap;
  }

  .about-heading {
    font-size: 44px;
  }

  .blog-section-title {
    margin-bottom: 40px;
  }

  .text-center-mobile-landscape {
    text-align: center;
  }

  .footer-brand {
    padding-left: 0;
  }

  .banner-title {
    font-size: 32px;
  }

  .about-us-image {
    width: 100%;
  }

  .about-us-image.left-image {
    margin-bottom: 15px;
    margin-right: 0;
  }

  .services-grid-with-list {
    grid-column-gap: 30px;
    grid-row-gap: 0px;
    grid-template-columns: 1fr;
  }

  .flex-vertical.align-start.align-center-mobile-landscape {
    align-items: center;
  }

  .services-grid-image {
    max-height: 300px;
  }

  .services-grid-image.hidden-mobile-landscape {
    display: none;
  }

  .portfolio-metro-item {
    min-height: 440px;
  }

  ._404-text {
    font-size: 32px;
  }

  .contacts-image-wrapper {
    width: 100%;
    height: 400px;
  }

  .contacts-content-wrapper {
    text-align: center;
    width: 100%;
    padding-top: 40px;
  }

  .contacts-title {
    font-size: 30px;
  }

  .contacts-grid {
    grid-template-columns: 1fr;
  }

  .contacts-content-item-wrapper {
    text-align: center;
  }

  .footer-rights-wrapper {
    flex-wrap: wrap;
  }

  .footer-wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  .tripple-grid {
    grid-row-gap: 24px;
    grid-template-columns: 1fr;
  }

  .section-2 {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .card.faqs-item {
    padding: 40px 32px;
  }

  .container-default {
    padding-left: 20px;
    padding-right: 20px;
  }

  .accordion-title {
    font-size: 20px;
    line-height: 30px;
  }

  .top-section, .top-section.pd-top-100px {
    padding-top: 64px;
  }

  .accordion-side {
    margin-right: 16px;
  }

  .accordion-side.right-side {
    margin-left: 16px;
  }

  .padding-section-large {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
  }

  .features-wrapper {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
  }

  .features-right {
    width: 100%;
  }

  .padding-global {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .features-left {
    width: 100%;
    padding-bottom: 50px;
  }

  .image-column {
    width: 100%;
  }

  .clone-me-2 {
    z-index: 9000;
    display: block;
    bottom: 70px;
    right: 15px;
  }

  .button_call-2 {
    background-color: #ffbf41;
    width: 45px;
    height: 45px;
  }
}

@media screen and (max-width: 479px) {
  blockquote {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .white-text.mid {
    font-size: 13px;
    line-height: 22px;
  }

  .button {
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .primary-button-blue.width-max-mobile {
    justify-content: center;
    width: 100%;
  }

  .button-con.max-width-mobile {
    justify-content: center;
    width: 100%;
    margin-top: 15px;
  }

  .brand.mobile {
    margin-top: 6px;
  }

  .banner-slider-heading {
    font-size: 38px;
  }

  .testimonials-slider-con {
    margin-top: -20px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .background-text-big.left-aligment {
    display: none;
  }

  .section-title-center {
    margin-bottom: 20px;
  }

  .text-center.fw-light {
    font-size: 24px;
  }

  .footer-social-icons-wrapper {
    justify-content: center;
    margin-top: 30px;
  }

  .about-title-wrapper {
    flex-wrap: wrap;
  }

  .brand-text.footer {
    font-size: 28px;
  }

  .grid-counter {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .counter-number {
    font-size: 36px;
  }

  .counter-text {
    font-size: 15px;
  }

  .about-us-image {
    height: 220px;
  }

  .flex-vertical.max-width-mobile {
    align-items: center;
    width: 100%;
    margin-bottom: 30px;
  }

  .services-grid-image {
    max-height: 250px;
  }

  .portfolio-metro-item {
    min-height: 330px;
  }

  ._404-text {
    font-size: 22px;
  }

  .contacts-image-wrapper {
    height: 300px;
  }

  .contacts-grid {
    padding-left: 0;
    padding-right: 0;
  }

  .contacts-content-item-wrapper.last-item {
    margin-bottom: 0;
  }

  .footer-rights-wrapper {
    flex-wrap: wrap;
    margin-top: 0;
  }

  .footer-rights, .footer-wrapper {
    margin-bottom: 10px;
  }

  .footer-brand-wrapper {
    flex-direction: column;
  }

  .landing-home-image-link {
    margin-bottom: 40px;
  }

  .banner-slide-content-copy {
    width: 80%;
  }

  .tripple-grid {
    grid-template-columns: 1fr;
    width: 100%;
    margin-bottom: 36px;
  }

  .services-card-2 {
    padding: 36px 18px;
  }

  .icon-7 {
    margin-bottom: 36px;
  }

  .heading-in-column {
    font-size: 1.8em;
  }

  .section-2 {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .card.faqs-item {
    padding-left: 24px;
    padding-right: 24px;
  }

  .container-default {
    padding-left: 16px;
    padding-right: 16px;
  }

  .accordion-title {
    font-size: 18px;
    line-height: 26px;
  }

  .top-section, .top-section.pd-top-100px {
    padding-top: 48px;
  }

  .accordion-btn-line {
    width: 14px;
  }

  .accordion-btn-line.vertical {
    height: 14px;
  }

  .accordion-item---button-container {
    min-width: 40px;
    max-width: 40px;
    min-height: 40px;
    max-height: 40px;
  }

  .process-component {
    grid-row-gap: 2rem;
  }

  .paragraph-27 {
    font-size: 14px;
  }

  .padding-section-large {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .features-card.fourth, .features-card.third, .features-card.second, .features-card.first {
    flex-flow: column;
    padding: 15px;
  }

  .features-card-title {
    font-size: 1.2rem;
  }

  .padding-global {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .features-left {
    padding-left: 15px;
    padding-right: 15px;
  }

  .section-3 {
    flex-flow: column;
    padding-right: 8%;
  }

  .image-column {
    order: -1;
    width: 100%;
    min-height: 350px;
    margin-top: 20px;
    margin-left: 4%;
    display: block;
  }

  .clone-me-2 {
    bottom: 70px;
    right: 13px;
  }

  .button_call-2 {
    background-color: var(--royal-blue);
    border: .5px solid #9c9c9c;
    width: 45px;
    height: 45px;
  }
}

#w-node-_7c9adaf1-c7c5-b3ec-52cd-519c731c54da-f3843c1c {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_7c9adaf1-c7c5-b3ec-52cd-519c731c54ed-f3843c1c {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-c0bb0921-f241-cc40-20c1-0310b09c13cd-f3843c1c, #w-node-c0bb0921-f241-cc40-20c1-0310b09c13d2-f3843c1c, #w-node-c0bb0921-f241-cc40-20c1-0310b09c13d7-f3843c1c, #w-node-c0bb0921-f241-cc40-20c1-0310b09c13dc-f3843c1c {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center;
}

#w-node-_1b5c9873-53f3-bed0-e852-6d7aa5a5e612-f3843c1c {
  grid-area: 1 / 3 / 2 / 4;
  place-self: center end;
}

#w-node-a4010a07-9fa6-48db-7560-7b0a84ab4ed8-f3843c1c, #w-node-a4010a07-9fa6-48db-7560-7b0a84ab4edd-f3843c1c {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 991px) {
  #w-node-_1b5c9873-53f3-bed0-e852-6d7aa5a5e60b-f3843c1c {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_1b5c9873-53f3-bed0-e852-6d7aa5a5e60b-f3843c1c {
    grid-column: span 1 / span 1;
  }

  #w-node-_1b5c9873-53f3-bed0-e852-6d7aa5a5e612-f3843c1c {
    grid-area: 2 / 1 / 3 / 2;
    justify-self: start;
  }
}


@font-face {
  font-family: 'Fa brands 400';
  src: url('../fonts/fa-brands-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa solid 900';
  src: url('../fonts/fa-solid-900.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa';
  src: url('../fonts/fa-regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}