:root {
  --black: #222;
  --white-smoke: #f7f7f7;
  --dark-grey: #999;
  --gold: #c1b39b;
  --royal-blue: #bb8d11;
  --white: #012049;
  --white-smoke-2: #f1f2f3;
}

.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;
}

body {
  color: #333;
  font-family: Arial, Helvetica Neue, Helvetica, 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(--white-smoke);
  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);
  background-image: url('../images/Blue-ellipse_1Blue-ellipse.jpg');
  background-position: 15px;
  background-repeat: no-repeat;
  background-size: auto;
  margin-bottom: 24px;
  padding-left: 40px;
  font-size: 15px;
  font-weight: 600;
  list-style-type: none;
}

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: 80px;
  overflow: hidden;
}

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

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

.white-text {
  color: #fff;
}

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

.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 {
  background-color: var(--royal-blue);
  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;
}

.inline-link-button {
  color: var(--royal-blue);
  justify-content: flex-start;
  align-items: center;
  font-family: Poppins, sans-serif;
  text-decoration: none;
  display: flex;
}

.inline-link-paragraph {
  color: var(--royal-blue);
  margin-bottom: 0;
  margin-right: 7px;
  font-family: Poppins, sans-serif;
  font-weight: 600;
  text-decoration: none;
}

.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);
  color: var(--white-smoke);
  background-color: #0000;
  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.width-max-mobile {
  color: var(--white-smoke);
}

.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;
  display: flex;
  position: relative;
  overflow: hidden;
}

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

.button-con.black.full-width {
  display: none;
}

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

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

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

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

.button-con.max-width-mobile.contact-2 {
  justify-content: center;
}

.home-banner {
  background-color: var(--black);
  background-image: linear-gradient(#00000080, #00000080), url('../images/WhatsApp-Image-2024-10-23-at-10.58.06-1.jpeg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  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.transparent {
  background-color: #0000;
}

.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 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  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;
}

.navbar-search-icon {
  color: #fff;
  cursor: pointer;
  padding-bottom: 4px;
  font-family: "Fa solid 900", sans-serif;
}

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

.dropdown-toggle {
  margin-right: 30px;
  padding: 0;
  font-family: Poppins, sans-serif;
}

.nav-dropdown {
  position: relative;
}

.dropdown-nav-list.w--open {
  background-color: #0000;
  width: 100%;
  min-width: 200px;
  padding-top: 30px;
  top: 30px;
  left: -20px;
}

.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);
}

.dropdown-icon, .search, .navigation-search-wrapper {
  display: none;
}

.search-bottom-line {
  display: flex;
}

.search-bottom-line-blue {
  background-color: var(--royal-blue);
  width: 100%;
  height: 3px;
}

.search-bottom-line-gray {
  color: #2223;
  background-color: #2223;
  height: 3px;
}

.search-button {
  border: 1px solid var(--royal-blue);
  color: var(--white);
  background-color: #0000;
  padding: 19px 30px;
  font-family: Poppins, sans-serif;
  font-weight: 600;
  line-height: 1;
  transition: color .2s;
  position: relative;
}

.search-button:hover {
  color: var(--royal-blue);
}

.banner-slide-content-con {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin-left: 70px;
  padding-top: 30px;
  display: flex;
}

.banner-slide-content {
  flex-direction: column;
  align-items: center;
  font-weight: 400;
  display: flex;
}

.banner-slider-heading {
  color: var(--white);
  text-align: center;
  max-width: 720px;
  margin-top: 20px;
  margin-bottom: 0;
  font-size: 75px;
  font-weight: 700;
  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;
}

.awesome-services-slider {
  padding-top: 150px;
  padding-bottom: 100px;
  padding-left: 5vw;
  overflow: hidden;
}

.awesome-services-container {
  justify-content: space-between;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.heading-2 {
  margin-top: 0;
  font-weight: 300;
}

.awesome-services-left-block {
  max-width: 280px;
  margin-right: 80px;
}

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

.awesome-services-right-block {
  flex: 1;
  position: relative;
}

.services-blue-background {
  background-color: var(--royal-blue);
  width: 100%;
  height: 185px;
}

.awesome-services-background {
  color: var(--white-smoke);
  text-align: right;
  padding-top: 20px;
  font-family: Poppins, sans-serif;
  font-size: 10vw;
  font-weight: 700;
  line-height: 1;
}

.slider-awesome-services {
  background-color: #0000;
  flex-direction: column;
}

.mask-awesome-services {
  height: 220px;
}

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

.slider-container {
  width: 100%;
  padding-left: 65px;
  padding-right: 65px;
  position: absolute;
  inset: 70px 0% auto;
}

.left-arrow-services {
  background-color: #eee;
  width: 69px;
  height: 39px;
  inset: 100px auto 0% -424px;
}

.right-arrow-services {
  background-color: var(--black);
  width: 69px;
  height: 39px;
  inset: 100px auto 0% -356px;
}

.icon-3 {
  font-family: Poppins, sans-serif;
  font-size: 15px;
  font-weight: 700;
}

.icon-4 {
  color: var(--black);
  font-family: Poppins, sans-serif;
  font-size: 15px;
  font-weight: 700;
}

.slide-info-con {
  background-color: var(--white);
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  padding: 20px;
  display: flex;
  box-shadow: 0 3px 20px #00000014;
}

.slide-image {
  flex: none;
  margin-right: 20px;
}

.blue-heading {
  color: var(--royal-blue);
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 600;
}

.slide-paragraph {
  color: var(--white-smoke);
  letter-spacing: .2px;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

.slider-image {
  width: 56px;
}

.testimonials {
  background-color: var(--white);
  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: var(--royal-blue);
  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 {
  color: var(--white-smoke);
  text-align: center;
  max-width: 930px;
  margin-top: 56px;
  margin-bottom: 0;
  font-family: Poppins, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.7;
}

.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: #002d68;
  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 {
  color: var(--white-smoke);
  text-align: right;
  margin-top: -60px;
}

.semibold-text {
  color: var(--white-smoke);
  font-weight: 400;
}

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

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

.arrow-right {
  font-family: "Fa solid 900", sans-serif;
  font-size: 10px;
}

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

.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;
}

.contacts-item-wrapper {
  display: flex;
}

.contacts-info-wrapper {
  flex-direction: column;
  margin-left: 35px;
  display: flex;
}

.contacts-info-wrapper.contact-2 {
  margin-left: 20px;
}

.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.text-center {
  color: var(--white-smoke);
}

.paragraph.mv-20 {
  color: var(--white-smoke-2);
  margin-top: 20px;
  margin-bottom: 20px;
}

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

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

.contacts-icon {
  color: var(--royal-blue);
  font-family: "Fa solid 900", sans-serif;
  font-size: 36px;
  line-height: 50px;
}

.contacts-icon.contact-2 {
  font-size: 26px;
}

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

.mb-30 {
  color: var(--white);
  margin-bottom: 30px;
}

.slide-awesome-services {
  width: 48%;
  height: 185px;
  margin-right: 20px;
}

.dropdown-nav-list-wrappper {
  background-color: var(--white);
  border: 1px solid #0000002e;
  padding: 20px;
  box-shadow: 0 0 10px #0000000a;
}

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

.footer {
  background-color: var(--white);
  padding-top: 80px;
  padding-bottom: 80px;
  overflow: hidden;
}

.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-smoke);
  font-size: 15px;
}

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

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

.flex-horizontal {
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

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

.services-item-wrapper {
  width: 33.33%;
  margin-left: 15px;
  margin-right: 15px;
}

.services-lightbox {
  width: 100%;
  position: relative;
}

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

.services-content-wrapper {
  z-index: 2;
  background-color: var(--white);
  margin-top: -40px;
  margin-left: 20px;
  margin-right: 20px;
  padding: 30px 28px;
  position: relative;
}

.services-item-overlay {
  z-index: 1;
  background-color: #2220;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
}

.services-plus-icon {
  opacity: 0;
  color: var(--white);
  font-size: 24px;
  line-height: 24px;
}

.services-item-shadow {
  z-index: -1;
  opacity: 1;
  position: absolute;
  inset: 0%;
  box-shadow: 0 40px 40px #00000014;
}

.services-wrapper {
  position: relative;
}

.services-numbers-wrapper {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: flex;
  position: absolute;
  inset: 190px 0% auto;
}

.services-numbers-wrapper.wrap-tablet {
  z-index: 3;
}

.services-number-item {
  color: var(--royal-blue);
  text-align: right;
  letter-spacing: .2px;
  width: 33.33%;
  margin-left: 15px;
  margin-right: 15px;
  padding-right: 40px;
  font-family: Poppins, sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
}

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

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

.about-big-number {
  background-image: linear-gradient(180deg, var(--royal-blue), white);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 0;
  margin-right: 20px;
  font-family: Poppins, sans-serif;
  font-size: 170px;
  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;
}

.text-bold {
  letter-spacing: .2px;
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 700;
}

.text-bold.white {
  color: #fff;
  font-family: Poppins, sans-serif;
}

.text-bold.white-big {
  color: #fff;
  font-family: Poppins, sans-serif;
  font-size: 20px;
  font-weight: 400;
}

.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;
}

.title-center {
  text-align: center;
  margin-bottom: 25px;
}

.title-center.white {
  color: #fff;
}

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

.navbar-transparent-logo {
  z-index: 999;
  background-color: #0000;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-right: 50px;
  display: flex;
  position: fixed;
}

.contacts-with-image {
  background-image: linear-gradient(#0006, #0006), url('../images/WhatsApp-Image-2024-10-23-at-10.58.06-2.jpeg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
}

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

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

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

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

.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;
}

.services-grid-image.hidden-mobile-landscape {
  aspect-ratio: auto;
  object-fit: contain;
}

.services-title-spacing {
  margin-bottom: 30px;
  margin-right: 150px;
}

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

.full-width {
  width: 100%;
  height: 100%;
}

.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;
}

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

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

.navbar-dark-logo {
  z-index: 999;
  background-color: var(--white);
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-right: 50px;
  display: flex;
}

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

.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-input.selec {
  color: var(--dark-grey);
  background-color: #fff;
  font-weight: 400;
}

.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-form.contact-2 {
  align-items: center;
}

.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 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-direction: column;
  align-items: flex-start;
  width: 30%;
  display: flex;
}

.nav-link-icon {
  width: auto;
  margin-right: 10px;
  font-family: Fa, sans-serif;
  display: block;
}

.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;
}

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

.contacts-2-content-wrapper {
  width: 55%;
  padding-left: 60px;
  padding-right: 0;
}

.contacts-2-form-wrapper {
  background-color: var(--white);
  text-align: center;
  width: 50%;
  padding: 50px 40px;
  box-shadow: 0 0 30px 10px #00000014;
}

.contact-2-adress-wrapper {
  margin-top: 40px;
}

.contact-2-heading {
  margin-bottom: 20px;
  font-size: 48px;
}

.image-2 {
  max-width: 80%;
}

.hero-bottom-content-wrapper {
  grid-column-gap: 3.1rem;
  grid-row-gap: 3.1rem;
  filter: drop-shadow(0 20px 5px #000000b3);
  background-color: #f8f8f833;
  border-radius: .3rem;
  justify-content: center;
  align-items: center;
  width: 85%;
  padding: 2.8rem;
  display: flex;
}

.hero-card {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.link {
  color: #fff;
}

.link.white-big {
  font-family: Poppins, sans-serif;
  font-size: 20px;
  font-weight: 400;
}

.hero-line {
  background-color: var(--dark-grey);
  width: 1px;
}

.text-down-block {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.solid-subtitle-line {
  background-color: #fff;
  width: 40%;
  height: 100%;
}

.solid-subtitle-line.dark {
  background-color: #70778866;
}

.text-blok {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.subtitle-3 {
  color: #000;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-right: 0;
  font-size: 10px;
  line-height: 1.3em;
}

.icon-7 {
  z-index: 10;
  background-color: #f3f6fc;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 60px;
  min-width: 60px;
  height: 60px;
  min-height: 60px;
  display: flex;
  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;
}

.left-intro {
  grid-column-gap: 12px;
  grid-template-rows: auto;
  grid-template-columns: 36px 1fr;
  grid-auto-columns: auto;
  grid-auto-flow: column;
  display: grid;
}

.left-intro.center {
  grid-template-columns: 36px 1fr;
  place-items: center;
}

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

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

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

.button-3 {
  color: #fff;
  text-align: center;
  letter-spacing: 3px;
  text-transform: uppercase;
  background-color: #090b19;
  border: 1px solid #090b19;
  border-radius: 100px;
  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-3:hover {
  color: #090b19;
  background-color: #e2e7f1;
  border-color: #e2e7f1;
}

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

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

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

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

.heading-12 {
  font-size: 30px;
  font-weight: 300;
}

.heading-4 {
  z-index: 10;
  margin-top: 15px;
  font-size: 30px;
  font-weight: 300;
  position: relative;
}

.wrapper {
  z-index: 10;
  border-radius: 20px;
  width: 100%;
  max-width: none;
  margin-top: 50px;
  position: relative;
}

.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;
}

.image-10 {
  max-width: 50%;
}

.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;
}

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

.section-4.clip {
  padding-top: 50px;
  padding-bottom: 0;
}

.subtitle-line {
  background-color: #fff3;
  background-image: none;
  width: 36px;
  height: 1px;
  margin-left: 0;
  display: flex;
}

.subtitle-line.dark {
  background-color: #e1e4ee;
}

.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;
}

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

.services-card-2 {
  grid-column-gap: 0px;
  grid-row-gap: 36px;
  background-image: url('../images/WhatsApp-Image-2024-10-23-at-10.58.02-6.jpeg');
  background-position: 0 0;
  background-size: auto;
  border-top: 1px #f3f6fc;
  border-bottom: 1px solid #f3f6fc;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  height: 100%;
  padding: 36px;
  display: grid;
}

.video-wrapper-2 {
  justify-content: center;
  align-items: center;
  margin-top: 50px;
  display: flex;
}

.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;
}

.container-3 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
  overflow: visible;
}

.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-3 {
  object-fit: cover;
  width: 100%;
  height: 100%;
  min-height: 0;
}

.section-3 {
  padding-top: 120px;
  padding-bottom: 120px;
  position: relative;
}

.section-3.video {
  background-color: var(--white);
  margin-bottom: 100px;
  padding-top: 50px;
}

.text-span-5 {
  color: var(--royal-blue);
  font-weight: 700;
}

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

.div-block {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
  display: flex;
}

.button-flect-horizontal {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.text-block {
  font-size: 20px;
  line-height: 25px;
}

.success-message-2 {
  background-color: #fff;
}

.section-2 {
  flex: 1;
  padding: 140px 5% 0;
}

.section-2.gradient-first-section {
  background-image: linear-gradient(#00000080, #00000080), url('../images/Untitled-design-20_1Untitled design (20).avif');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  min-height: 300px;
  padding-top: 0;
  display: flex;
  position: relative;
  overflow: hidden;
}

.container {
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.rich-text-block {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.polityka-prywatno-ci {
  color: #fff;
}

.section-5 {
  padding-top: 40px;
  padding-bottom: 40px;
}

.polityka-prywatno-ci-wrapper {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.heading-34 {
  font-size: 18px;
}

.bold-text-11 {
  margin-top: 15px;
  font-size: 18px;
  display: block;
}

.paragraph-17 {
  font-size: 16px;
}

.text-span-69 {
  font-size: 1.1rem;
  font-weight: 700;
}

.text-span-70 {
  font-size: 18px;
}

.checkbox-label {
  color: var(--white-smoke);
  text-align: left;
  font-size: 11px;
  line-height: 15px;
}

.checkbox-field {
  margin-top: 10px;
  margin-bottom: 20px;
}

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

.paragraph-18 {
  font-size: 11px;
  line-height: 15px;
}

.link-2 {
  color: var(--royal-blue);
  font-weight: 400;
}

.paragraph-19 {
  color: var(--white-smoke);
  margin-top: 20px;
  margin-bottom: 0;
  font-size: 11px;
  line-height: 15px;
}

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

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

.heading-50 {
  font-size: 18px;
}

.paragraph-22 {
  padding-bottom: 20px;
  font-size: 16px;
}

.text-span-75 {
  font-size: 18px;
}

.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;
  }

  .slide-info-con {
    padding: 30px;
  }

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

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

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

  .services-item-shadow {
    opacity: 0;
  }

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

  .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-form {
    margin-top: 60px;
  }

  .contacts-form.contact-2 {
    margin-top: 40px;
  }

  .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;
  }

  .contacts-2-content-wrapper {
    padding-right: 40px;
  }

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

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

  .dropdown-toggle {
    margin-right: 0;
  }

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

  .slide-awesome-services {
    width: 32%;
  }

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

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

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

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

  .section-2.gradient-first-section {
    background-image: linear-gradient(#fff, #5d9fd7 57%, #22427b);
  }
}

@media screen and (min-width: 1920px) {
  .awesome-services-slider {
    padding-left: 15vw;
  }

  .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;
  }

  .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;
  }

  .white-text.text-center-mobile-landscape {
    color: var(--gold);
    font-size: 16px;
  }

  .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.black.full-width {
    background-color: #0000;
    border: 1px #000;
    width: 100%;
    display: flex;
  }

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

  .button-con.contacts-with-image-button {
    margin-top: 20px;
  }

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

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

  .brand.transparent {
    width: 180px;
  }

  .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 {
    color: var(--white-smoke);
    padding-top: 12px;
    padding-bottom: 12px;
    font-weight: 600;
  }

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

  .dropdown-toggle {
    justify-content: space-between;
    width: 100%;
    height: 45px;
    display: flex;
  }

  .nav-dropdown {
    width: 100%;
    padding-top: 0;
    padding-bottom: 0;
    overflow: hidden;
  }

  .dropdown-nav-list {
    background-color: var(--white);
    display: block;
    position: static;
  }

  .dropdown-nav-list.w--open {
    border-bottom: 0 #0000;
    padding-top: 0;
    padding-bottom: 0;
  }

  .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);
  }

  .dropdown-nav-link.last-dropdown-item {
    border-bottom-style: none;
  }

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

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

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

  .dropdown-icon {
    justify-content: center;
    align-items: center;
    margin-top: 13px;
    margin-bottom: 0;
    margin-right: 13px;
    font-size: 18px;
    display: flex;
    position: absolute;
  }

  .dropdown-icon-con {
    border: 1px solid var(--white-smoke-2);
    flex: none;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    display: flex;
    position: relative;
  }

  .search-input {
    border: 1px solid var(--white);
    letter-spacing: .2px;
    width: 100%;
    height: 53px;
    margin-bottom: 0;
    padding-top: 14px;
    padding-bottom: 14px;
    padding-left: 0;
    font-family: Poppins, sans-serif;
    font-size: 15px;
    font-weight: 300;
  }

  .search-input:focus {
    border-style: none;
  }

  .search {
    margin-bottom: 0;
    display: block;
  }

  .navigation-search-wrapper {
    color: var(--black);
    flex-direction: column;
    width: 100%;
    margin-top: 0;
    padding-bottom: 30px;
    padding-left: 30px;
    padding-right: 30px;
    display: flex;
  }

  .search-input-con {
    width: 100%;
  }

  .search-bottom-line {
    display: flex;
  }

  .search-bottom-line-blue {
    background-color: var(--royal-blue);
    width: 100%;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .search-bottom-line-gray {
    background-color: #2223;
    height: 3px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .search-button {
    z-index: 1;
    border: 1px solid var(--royal-blue);
    background-color: #0000;
    width: 100%;
    margin-top: 0;
    padding: 19px 30px;
    font-family: Poppins, sans-serif;
    font-size: 14px;
    line-height: 1;
    transition: color .2s;
    position: relative;
  }

  .search-button.home-2 {
    background-color: var(--royal-blue);
    margin-top: 15px;
    transition-property: all;
  }

  .search-button.home-2:hover {
    background-color: var(--white);
  }

  .mobile-button-con {
    margin-top: 60px;
  }

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

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

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

  .awesome-services-slider {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .heading-2 {
    font-size: 30px;
  }

  .awesome-services-left-block {
    max-width: 195px;
    margin-right: 55px;
  }

  .services-blue-background {
    height: 125px;
  }

  .slider-awesome-services {
    height: 150px;
  }

  .slider-container {
    padding-left: 30px;
    padding-right: 30px;
    top: 30px;
  }

  .left-arrow-services {
    top: 220px;
    left: -280px;
  }

  .right-arrow-services {
    top: 220px;
    left: -212px;
  }

  .slide-info-con {
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
  }

  .slide-image {
    margin-right: 15px;
  }

  .blue-heading {
    font-size: 30px;
  }

  .slide-paragraph {
    font-size: 15px;
  }

  .slider-image {
    width: 50px;
  }

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

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

  .icon-5, .icon-6 {
    color: var(--royal-blue);
  }

  .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;
  }

  .semibold-text {
    font-size: 45px;
    line-height: 1.1em;
  }

  .nav-item-text {
    color: var(--white-smoke);
    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-info-wrapper {
    margin-left: 15px;
  }

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

  .slide-awesome-services {
    width: 48%;
    height: 125px;
  }

  .dropdown-nav-list-wrappper {
    box-shadow: none;
    border-style: none;
    padding: 0 0 0 45px;
  }

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

  .image.navbar-dark {
    filter: invert();
  }

  .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 {
    filter: invert();
    margin-top: 11px;
  }

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

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

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

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

  .flex-horizontal {
    flex-flow: column;
  }

  .services-item-wrapper {
    width: 100%;
    margin-bottom: 30px;
  }

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

  .services-numbers-wrapper.wrap-tablet {
    flex-wrap: wrap;
    width: 20%;
    inset: 190px 0% 0% auto;
  }

  .services-number-item {
    width: 100%;
    margin-bottom: 365px;
  }

  .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;
  }

  .text-bold.white-big {
    font-size: 18px;
  }

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

  .navbar-transparent-logo {
    padding-right: 30px;
  }

  .contacts-with-image {
    padding-top: 80px;
    padding-bottom: 80px;
  }

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

  .services-title-spacing {
    margin-right: 60px;
  }

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

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

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

  .navbar-dark-logo {
    padding-right: 30px;
  }

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

  .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;
  }

  .contacts-2-wrapper {
    flex-wrap: wrap-reverse;
  }

  .contacts-2-content-wrapper {
    width: 100%;
    margin-bottom: 50px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .contacts-2-form-wrapper {
    width: 100%;
  }

  .contact-2-adress-wrapper {
    margin-top: 20px;
  }

  .contact-2-heading {
    font-size: 42px;
  }

  .hero-bottom-content-wrapper {
    grid-column-gap: 2.4rem;
    grid-row-gap: 2.4rem;
    flex-flow: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    width: 100%;
    padding-left: 2rem;
    padding-right: 2rem;
    display: grid;
  }

  .link.white-big {
    font-size: 18px;
  }

  .hero-line {
    display: none;
  }

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

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

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

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

  .container-3 {
    width: 100%;
    padding-top: 0;
    padding-bottom: 0;
  }

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

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

@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;
  }

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

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

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

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

  .sidebar {
    display: none;
  }

  .awesome-services-slider {
    padding: 60px 15px;
  }

  .awesome-services-container {
    flex-direction: column;
  }

  .heading-2 {
    text-align: center;
    margin-bottom: 8px;
  }

  .awesome-services-left-block {
    text-align: center;
    max-width: 100%;
    margin-right: 0;
  }

  .awesome-services-right-block {
    margin-top: 20px;
  }

  .awesome-services-background {
    text-align: right;
    padding-top: 50px;
    font-size: 11vw;
  }

  .left-arrow-services {
    left: -30px;
  }

  .right-arrow-services {
    left: 36px;
  }

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

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

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

  .semibold-text {
    font-size: 45px;
    line-height: 1.1em;
  }

  .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;
  }

  .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%;
  }

  .services-item-wrapper {
    margin-left: 0;
    margin-right: 0;
  }

  .services-content-wrapper {
    min-height: 200px;
  }

  .services-numbers-wrapper.wrap-tablet {
    width: 20%;
  }

  .services-number-item {
    margin-bottom: 390px;
    margin-left: 0;
    margin-right: 0;
  }

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

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

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

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

  .title-center {
    margin-bottom: 15px;
  }

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

  .contacts-with-image {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .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;
  }

  .services-title-spacing {
    text-align: center;
    margin-right: 0;
  }

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

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

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

  .footer-wrapper, .contacts-2-content-wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  .contacts-2-form-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }

  .contact-2-heading {
    font-size: 26px;
  }

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

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

  .image-column {
    width: 100%;
  }

  .container-3 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 0;
    display: block;
  }

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

  .section-2.gradient-first-section {
    padding-top: 150px;
  }

  .paragraph-17, .paragraph-22 {
    font-size: .9rem;
  }

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

  .button_call-2 {
    background-color: #393b6a;
  }
}

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

  .white-text.text-center-mobile-landscape {
    margin-bottom: -5px;
    font-size: 15px;
  }

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

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

  .button-con.black.full-width {
    background-color: #0000;
  }

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

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

  .awesome-services-background {
    padding-top: 60px;
    padding-left: 190px;
    font-size: 14.5vw;
    overflow: hidden;
  }

  .slider-awesome-services {
    height: 220px;
  }

  .left-arrow-services, .right-arrow-services {
    top: 140px;
  }

  .slide-info-con {
    padding-left: 30px;
    padding-right: 30px;
  }

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

  .testimonials-quote {
    max-width: none;
    font-size: 16px;
    line-height: 1.6;
  }

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

  .semibold-text {
    font-size: 40px;
  }

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

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

  .slide-awesome-services {
    width: 100%;
  }

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

  .services-content-wrapper {
    min-height: auto;
    padding: 20px;
  }

  .services-numbers-wrapper.wrap-tablet {
    right: 35px;
  }

  .services-number-item {
    margin-bottom: 365px;
    padding-right: 0;
  }

  .title-center {
    font-size: 28px;
    line-height: 1.2em;
  }

  .contacts-with-image {
    background-image: linear-gradient(#0000004d, #0000004d), url('../images/WhatsApp-Image-2024-10-23-at-10.58.06-2.jpeg');
    background-position: 0 0, 80%;
  }

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

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

  .services-grid-image.hidden-mobile-landscape {
    max-height: 350px;
    margin-top: 30px;
    margin-bottom: 30px;
    display: block;
  }

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

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

  .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;
  }

  .contacts-2-content-wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  .hero-bottom-content-wrapper {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    justify-content: flex-start;
    align-items: flex-start;
    width: 80%;
    padding: 2rem 1.5rem;
    display: flex;
  }

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

  .button-text {
    font-weight: 500;
  }

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

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

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

  .container-3 {
    align-items: center;
    padding-top: 0;
    padding-bottom: 0;
  }

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

  .button-flect-horizontal {
    flex-flow: column;
  }

  .paragraph-17, .paragraph-22 {
    font-size: .8rem;
  }

  .button_call-2 {
    background-color: #393b6a;
  }
}

#w-node-d1c8f24c-207d-6a7b-db3a-b8cf1440fe87-de6447d5 {
  place-self: center stretch;
}

#w-node-d1c8f24c-207d-6a7b-db3a-b8cf1440fe89-de6447d5 {
  grid-area: 1 / 2 / 2 / 3;
  align-self: center;
}

#w-node-d1c8f24c-207d-6a7b-db3a-b8cf1440fe92-de6447d5, #w-node-d1c8f24c-207d-6a7b-db3a-b8cf1440fe96-de6447d5, #w-node-d1c8f24c-207d-6a7b-db3a-b8cf1440fea2-de6447d5, #w-node-d1c8f24c-207d-6a7b-db3a-b8cf1440fea6-de6447d5, #w-node-d1c8f24c-207d-6a7b-db3a-b8cf1440feb2-de6447d5, #w-node-d1c8f24c-207d-6a7b-db3a-b8cf1440feb6-de6447d5 {
  align-self: start;
}

#w-node-_90fe226d-db66-7476-fdde-a5fac13081a4-de6447d5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_90fe226d-db66-7476-fdde-a5fac13081b7-de6447d5, #w-node-c044d3b3-5b22-ed4c-7589-bce6d30e5ed1-de6447d5, #w-node-c044d3b3-5b22-ed4c-7589-bce6d30e5ed4-de6447d5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}


@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;
}