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

:root {
  --paragraph-with-white-background: #666;
  --secondary-heading: #373737;
  --primary-color: #b69d74;
  --background-color: #083548;
  --paragraph-color: #b0b0b0;
  --heading-color: #f0f0f0;
  --secondary-background: #eee;
  --white: white;
}

.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: var(--paragraph-with-white-background);
  font-family: Rubik, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
}

h1 {
  color: var(--secondary-heading);
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 56px;
  font-weight: 600;
  line-height: 70px;
}

h2 {
  color: var(--secondary-heading);
  max-width: 700px;
  font-size: 46px;
  font-weight: 600;
  line-height: 60px;
}

h3 {
  color: var(--secondary-heading);
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 30px;
  font-weight: 700;
  line-height: 46px;
}

h4 {
  color: var(--secondary-heading);
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 30px;
  font-weight: 500;
  line-height: 46px;
}

h5 {
  color: var(--secondary-heading);
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
}

h6 {
  color: var(--secondary-heading);
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 600;
  line-height: 26px;
}

p {
  margin-bottom: 10px;
}

a {
  color: var(--primary-color);
  font-weight: 400;
  line-height: 24px;
  text-decoration: none;
  transition: color .3s ease-in;
}

ul {
  grid-column-gap: 20px;
  color: #fff;
  flex-direction: row;
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 0;
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
  list-style-type: none;
  display: flex;
}

ol {
  grid-row-gap: 12px;
  color: #666;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 20px;
  margin-bottom: 20px;
  padding-left: 20px;
  font-size: 15px;
  font-weight: 300;
  line-height: 23px;
  display: flex;
}

img {
  object-fit: cover;
  width: 100%;
  display: inline-block;
}

blockquote {
  border-left: 6px solid var(--primary-color);
  background-color: #f5f5f5;
  border-radius: 2px;
  margin-top: 25px;
  margin-bottom: 40px;
  padding: 20px 170px 20px 20px;
  font-size: 18px;
  line-height: 30px;
}

.default-text {
  z-index: 2;
  white-space: nowrap;
  margin-left: 3px;
  font-family: Rubik, sans-serif;
  font-weight: 500;
  position: relative;
}

.default-text:hover {
  color: #fff;
}

.nav-link {
  color: #bdbdbd;
  letter-spacing: .25px;
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  text-decoration: none;
  transition: color .3s ease-out;
  display: flex;
}

.nav-link:hover {
  color: #fff;
  font-weight: 400;
}

.nav-link:focus-visible, .nav-link[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0277bd;
  outline: 2px solid #0050bd;
}

.nav-link.w--current {
  color: var(--primary-color);
}

.main-logo-wrapper, .main-logo-wrapper.w--current {
  max-width: 230px;
}

.navbar {
  z-index: 9999999;
  color: #fff;
  background-color: #0000;
  border-bottom: 1px solid #0000;
  width: 100%;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
  position: fixed;
  top: 0;
}

.nav-list {
  flex: none;
  padding-left: 0;
  padding-right: 0;
  text-decoration: none;
}

.nav-menu-wrapper {
  flex-direction: row;
  padding-left: 0;
  display: block;
}

.button-hover-color {
  z-index: 1;
  background-color: var(--primary-color);
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.button-hover-color.initially-off {
  z-index: -1;
  height: 0%;
}

.nav-menu {
  grid-column-gap: 20px;
  color: #fff;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
  display: flex;
}

.primary-button {
  color: #fff;
  text-align: center;
  cursor: pointer;
  background-color: #0000;
  border: 2px solid #0000;
  border-radius: 5px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 46px;
  padding: 0;
  display: flex;
  position: relative;
  overflow: hidden;
}

.primary-button:hover {
  border-style: solid;
  box-shadow: 0 0 20px #ffd70033;
}

.primary-button.submit-button {
  width: auto;
  max-width: 100px;
  height: auto;
  padding: 8px 28px;
  display: block;
}

.primary-button.submit-button:hover {
  color: #fff;
}

.hover-text {
  z-index: 2;
  grid-column-gap: 0px;
  color: #fff;
  white-space: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-family: Icofont, sans-serif;
  font-size: 20px;
  display: flex;
  position: relative;
}

.nav-button-list {
  flex: 1;
  margin-left: 10px;
  display: block;
}

.navbar-wrapper {
  border-bottom: 1px #bdbdbd99;
  justify-content: space-between;
  align-items: center;
  padding-top: 23px;
  padding-bottom: 23px;
  display: flex;
}

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

.container.gap-60px {
  grid-row-gap: 60px;
  align-items: stretch;
  display: flex;
}

.container.static {
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
  position: static;
}

.container.change-log {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.cross-icon {
  display: none;
}

.menu-button {
  padding-bottom: 15px;
}

.banner {
  text-align: center;
  background-image: linear-gradient(188deg, #000, #0d6489 100%, #fff);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 0;
  padding-top: 192px;
  padding-bottom: 104px;
  display: flex;
}

.default-button {
  color: #fff;
  background-color: #0000;
  border: 1px solid #fff;
  border-radius: 2px;
  justify-content: center;
  align-items: center;
  width: auto;
  padding: 13px 21px;
  font-family: Rubik Semibold;
  line-height: 26px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.default-button:hover {
  color: var(--primary-color);
}

.default-button.w--current:hover {
  color: #fff;
}

.style-guide-wrapper {
  grid-row-gap: 60px;
  flex-direction: column;
  display: flex;
}

.style-guide-wrapper.button-style {
  grid-row-gap: 40px;
  position: relative;
}

.style-guide-section-heading {
  margin-bottom: 0;
}

.font-details-text {
  margin-left: 0;
  margin-right: 0;
  line-height: 20px;
}

.paragraph-heading {
  color: #4d4d4d;
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
}

.heading-details-block {
  grid-column-gap: 20px;
  display: flex;
}

.color-box {
  background-color: #083548;
  border-radius: 2px;
  justify-content: center;
  align-items: center;
  width: auto;
  min-width: 180px;
  max-width: none;
  min-height: 100px;
  margin-bottom: 6px;
  padding: 40px 20px;
  display: flex;
}

.color-box.heading-color-with-white-background {
  background-color: var(--secondary-heading);
  background-image: none;
  max-width: 180px;
}

.color-box.heading-color-with-white-background-secondary {
  background-color: var(--paragraph-with-white-background);
  background-image: none;
  max-width: 180px;
  box-shadow: 0 10px 20px #7a48df1a;
}

.color-box.background {
  background-color: var(--background-color);
  background-image: none;
}

.color-box.paragraph-color {
  background-color: var(--paragraph-color);
  background-image: none;
}

.color-box.heading-color {
  background-color: var(--heading-color);
  background-image: none;
  border: 1px #dfdfdf;
}

.color-box.background-secondary {
  background-color: var(--secondary-background);
  background-image: none;
}

.color-box.primary {
  background-color: var(--primary-color);
  background-image: none;
}

.color-box.different-background {
  background-color: var(--primary-color);
}

.sub-title-of-style-guide {
  color: #475467;
  min-width: 100px;
  margin-right: 0;
  font-weight: 400;
  line-height: 20px;
}

.color-container {
  grid-column-gap: 30px;
  flex-direction: row;
  display: flex;
}

.color-details {
  grid-row-gap: 10px;
  flex-direction: column;
  display: flex;
}

.color-code-and-opacity {
  grid-row-gap: 6px;
  flex-direction: column;
  display: flex;
}

.color-code {
  color: #929292;
  font-weight: 400;
  line-height: 24px;
}

.block-title {
  color: #101828;
  text-transform: uppercase;
  margin-bottom: 30px;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
}

.color-wrapper {
  grid-row-gap: 50px;
  flex-direction: column;
  display: flex;
}

.heading-details {
  grid-row-gap: 11px;
  flex-direction: column;
  display: flex;
}

.style-title {
  color: #101828;
  text-transform: uppercase;
  font-size: 36px;
  font-weight: 400;
  line-height: 43px;
}

.color-block {
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  display: flex;
}

.style-color-container {
  grid-column-gap: 60px;
  display: flex;
}

.base-section {
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.headings-wrapper {
  grid-row-gap: 40px;
  flex-direction: column;
  display: flex;
}

.divider-of-styleguide {
  background-color: #101828;
  max-width: 240px;
  min-height: 3px;
  margin-top: 11px;
}

.divider-of-styleguide.white {
  background-color: #fff;
}

.heading-block {
  grid-row-gap: 16px;
  flex-direction: column;
  max-width: 555px;
  display: flex;
}

.colored-section {
  background-color: #eee;
  margin-top: 80px;
  padding-top: 80px;
  padding-bottom: 175px;
  overflow: hidden;
}

.contact-form-block {
  grid-row-gap: 20px;
  flex-direction: column;
  margin-bottom: 0;
  padding-left: 28px;
  display: flex;
  position: relative;
}

.contact-form-block.demo {
  padding-left: 0;
}

.field-block {
  grid-column-gap: 20px;
  flex-direction: row;
  justify-content: space-between;
  display: flex;
}

.input {
  background-color: #f9f9f9;
  border: 1px solid #f5f5f5;
  border-radius: 2px;
  width: 100%;
  max-height: 40px;
  margin-bottom: 0;
  padding: 10px 11px;
}

.input.text-area {
  min-height: 100px;
}

.caption {
  max-width: 750px;
  font-size: 20px;
  line-height: 30px;
}

.form-field {
  grid-row-gap: 7px;
  flex-direction: column;
  width: 100%;
  display: flex;
}

.contact-form {
  grid-row-gap: 20px;
  color: #475467;
  background-color: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  flex-direction: column;
  max-width: 480px;
  padding: 30px;
  display: flex;
}

.form-texts {
  grid-row-gap: 5px;
  flex-direction: column;
  margin-bottom: 10px;
  display: flex;
}

.subscribe-button {
  background-color: var(--background-color);
  border-radius: 30px;
  height: 46px;
  padding: 11px 40px;
  font-weight: 400;
}

.subscribe-button.demo {
  justify-content: center;
  align-items: center;
  display: flex;
  position: static;
}

.subscribe-button.margin-left {
  margin-left: 6px;
  line-height: 24px;
}

.hero-banner {
  background-image: linear-gradient(#00000080, #00000080), linear-gradient(188deg, #000 19%, #1c77c200 44%, #fff0), url('../images/Untitled-design-62_1.webp');
  background-position: 0 0, 0 0, 50% 100%;
  background-size: auto, auto, cover;
  margin-top: 0;
  overflow: hidden;
}

.hero-grid {
  grid-column-gap: 50px;
  grid-template-rows: auto;
  align-items: end;
  padding-top: 175px;
  position: relative;
}

.hero-slider-wrapper {
  position: relative;
}

.hero-image-background {
  object-fit: cover;
  min-width: 640px;
  position: absolute;
  inset: auto -100px 0% auto;
}

.hero-image {
  z-index: 1;
  max-width: 480px;
  height: 720px;
  position: relative;
}

.hero-contents {
  grid-row-gap: 20px;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 0;
  display: flex;
  overflow: hidden;
}

.counter-card-wrapper {
  display: flex;
  position: absolute;
  inset: auto auto 0% 0%;
}

.counter-card {
  grid-row-gap: 15px;
  background-color: var(--background-color);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px 20px;
  display: flex;
}

.counter-card.low-opacity-card {
  background-color: #0000004d;
}

.hero-heading {
  color: var(--heading-color);
  font-size: 52px;
}

.primary-paragraph {
  color: var(--heading-color);
  font-weight: 400;
}

.main-button {
  color: #fff;
  cursor: pointer;
  border: 1px solid #0000;
  border-radius: 2px;
  justify-content: center;
  align-items: center;
  width: 222px;
  padding: 16px 19px;
  font-family: Rubik Medium;
  display: flex;
  position: relative;
  overflow: hidden;
}

.main-button:hover {
  color: #fff;
}

.list-block {
  grid-row-gap: 16px;
  flex-direction: column;
  display: flex;
}

.footer {
  padding-top: 120px;
  position: relative;
}

.footer.footer-gap {
  grid-row-gap: 120px;
  background-color: #000;
  flex-direction: column;
  align-items: stretch;
  margin-top: 120px;
  padding-top: 60px;
  display: flex;
}

.footer-link {
  color: var(--paragraph-color);
  justify-content: flex-start;
  text-decoration: none;
  transition: color .4s ease-out;
}

.footer-link:hover {
  color: #fff;
}

.footer-wrapper {
  grid-column-gap: 60px;
  justify-content: flex-start;
  align-items: center;
  padding-bottom: 60px;
  display: flex;
}

.footer-bottom {
  border-top: 1px solid #98a2b3;
  justify-content: space-between;
  align-items: center;
  padding-top: 25px;
  padding-bottom: 25px;
  display: flex;
}

.footer-copyright {
  color: var(--paragraph-color);
  font-size: 15px;
  line-height: 22px;
}

.footer-block {
  grid-row-gap: 30px;
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.information-container {
  grid-row-gap: 30px;
  color: var(--paragraph-color);
  flex-direction: column;
  max-width: 325px;
  display: flex;
}

.social-icon {
  color: #98a2b3;
  background-color: #0000;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  padding: 7px;
  font-family: Icofont, sans-serif;
  transition: transform .3s, color .4s cubic-bezier(.25, .46, .45, .94);
  display: flex;
}

.social-icon:hover {
  transform: translate(0, -3px);
}

.social-icon.youtube:hover {
  color: red;
}

.social-icon.facebook {
  align-items: center;
  display: flex;
}

.social-icon.facebook:hover {
  color: #1877f2;
}

.social-icon.linkedin:hover {
  color: #0077b5;
}

.social-icon.instagram:hover {
  color: #e1306c;
}

.social-icon.twitter:hover {
  color: #1da1f2;
}

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

.social-icon-container {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-weight: 400;
  display: flex;
}

.text-link {
  color: var(--primary-color);
  font-weight: 400;
}

.text-link:hover {
  color: #fff;
}

.footer-title {
  color: #fff;
  white-space: nowrap;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
}

.information-wrapper {
  grid-row-gap: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.information-wrapper.extra-margin-top-20px {
  margin-top: 20px;
}

.information-wrapper.extra-margin-top-20px.cta {
  background-color: #fff;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: -20px;
  padding: 27px;
  box-shadow: 0 2px 5px #0003;
}

.information-block {
  grid-column-gap: 15px;
  align-items: center;
  display: flex;
}

.footer-icon {
  background-color: var(--primary-color);
  color: #fff;
  cursor: pointer;
  border-radius: 50%;
  padding: 10px;
  font-family: Icofont, sans-serif;
  line-height: 17px;
  transition: color .4s ease-out, background-color .2s, transform .3s cubic-bezier(.25, .46, .45, .94);
}

.footer-icon:hover {
  color: gold;
  background-color: #30aca6;
  border-color: #30aca6;
  transform: scale(1.1);
}

.information-text {
  line-height: 26px;
}

.opening-times {
  grid-row-gap: 6px;
  flex-direction: column;
  display: flex;
}

.hours-title {
  color: var(--heading-color);
  font-weight: 400;
}

.footer-paragraph {
  color: var(--paragraph-color);
  margin-bottom: 0;
}

.number {
  color: var(--heading-color);
  font-size: 30px;
  font-weight: 700;
  line-height: 36px;
}

.counter-title {
  color: var(--paragraph-color);
  font-size: 14px;
  font-weight: 500;
  line-height: 17px;
}

.hero-slider {
  background-color: #0000;
  flex-direction: column;
  align-items: flex-end;
  height: 100%;
}

.hidden {
  display: none;
}

.experience {
  z-index: 1;
  grid-column-gap: 14px;
  background-color: var(--primary-color);
  color: #fff;
  border-radius: 2px;
  justify-content: space-between;
  align-items: center;
  max-width: 50%;
  padding: 16px 14px;
  display: flex;
  position: absolute;
  inset: 378px 0% auto auto;
}

.experience-years {
  font-size: 40px;
  font-weight: 600;
  line-height: 40px;
}

.sub-text {
  text-align: left;
  font-size: 14px;
  font-weight: 500;
  line-height: 17px;
}

.hero-image-wrapper {
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  display: flex;
  position: relative;
}

.name-wrapper {
  z-index: 1;
  color: var(--primary-color);
  background-color: #fff;
  border-radius: 2px;
  padding: 20px 25px;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  position: absolute;
  bottom: 155px;
  right: 191px;
}

.navigation-wrapper {
  color: #000;
  background-color: #fff;
  border-radius: 2px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  max-width: 40px;
  max-height: 40px;
  padding: 8px;
  font-family: Icofont, sans-serif;
  font-size: 24px;
  transition: background-color .5s cubic-bezier(.23, 1, .32, 1), color .2s;
  display: flex;
  inset: auto 168px 40px auto;
  transform: rotate(180deg);
}

.navigation-wrapper:hover {
  background-color: var(--primary-color);
  color: #fff;
}

.navigation-wrapper.right-arrow {
  right: 127px;
  transform: none;
}

.about {
  padding-top: 117px;
  padding-bottom: 205px;
  position: relative;
}

.about-grid {
  grid-column-gap: 60px;
  grid-template-rows: auto;
  position: relative;
}

.logo-container {
  grid-column-gap: 28px;
  margin-top: 42px;
  display: flex;
}

.logo-wrapper {
  background-color: #f5f5f5;
  border-radius: 2px;
  justify-content: center;
  align-items: center;
  padding: 7px 5px;
  transition: transform .3s;
  display: flex;
}

.logo-wrapper:hover {
  transform: scale(1.1)translate(0, -5px);
}

.about-logo {
  max-width: 50px;
}

.section-name {
  color: var(--primary-color);
  margin-bottom: 6px;
  font-weight: 500;
  line-height: 24px;
}

.section-heading {
  margin-top: 0;
  margin-bottom: 10px;
  line-height: 50px;
}

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

.section-heading.less-width {
  max-width: 460px;
}

.about-image {
  z-index: 1;
  aspect-ratio: auto;
  object-fit: cover;
  border-radius: 4px;
  max-width: 520px;
  height: 100%;
  min-height: 500px;
  position: relative;
}

.image-wrapper {
  position: relative;
}

.award-image-wrapper {
  z-index: 2;
  text-align: center;
  background-color: #fff;
  border-radius: 0%;
  justify-content: center;
  align-items: center;
  max-width: none;
  padding: 11px 13px;
  display: flex;
  position: absolute;
  inset: auto -58px -27px auto;
  box-shadow: 0 2px 5px #0003;
}

.contents {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.bold-text {
  color: var(--secondary-heading);
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 500;
  line-height: 24px;
}

.bold-text.extra-margin {
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Rubik, sans-serif;
  font-weight: 500;
}

.section-paragraph {
  max-width: 560px;
  margin-bottom: 0;
}

.section-paragraph.white-paragraph {
  color: var(--paragraph-color);
}

.award-image {
  width: auto;
}

.award-block-texts {
  font-size: 14px;
  position: absolute;
}

.award-text {
  color: #d6881d;
  max-width: 10ch;
  font-weight: 400;
  line-height: 20px;
}

.award-year {
  color: #000;
  font-size: 24px;
  font-weight: 500;
  line-height: 30px;
}

.why-choose-us-grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  position: relative;
}

.card {
  grid-row-gap: 4px;
  text-align: center;
  border: 1px solid #0000001a;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 44px;
  display: flex;
}

.card-icon {
  color: var(--primary-color);
  width: 80px;
  margin-bottom: 6px;
  font-family: Icofont, sans-serif;
  font-size: 50px;
  line-height: 50px;
}

.card-title {
  color: var(--secondary-heading);
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
}

.services-grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  width: 100%;
}

.services-contents {
  grid-row-gap: 10px;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 450px;
  display: flex;
}

.services-image {
  max-width: 80px;
  margin-bottom: 10px;
}

.flex-container {
  grid-column-gap: 28px;
  grid-row-gap: 28px;
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: .75fr 1fr;
  display: flex;
}

.service-card {
  border: 1px solid #0000001a;
  border-radius: 1px;
  padding: 40px 20px 20px 40px;
  position: relative;
}

.external-link-block {
  max-width: 30px;
  display: block;
  position: absolute;
  inset: 20px 30px auto auto;
}

.external-link-block.static {
  cursor: pointer;
  max-width: 50px;
  position: static;
}

.testimonials {
  padding-top: 120px;
  padding-bottom: 25px;
  position: relative;
}

.middle-allign-wrapper {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-left: 5%;
  padding-right: 5%;
  display: flex;
}

.testimonial-card {
  grid-row-gap: 20px;
  border: 1px solid #0000001a;
  flex-direction: column;
  width: 100%;
  max-width: 360px;
  padding: 30px 26px;
  display: flex;
}

.client-block {
  grid-column-gap: 13px;
  align-items: center;
  display: flex;
}

.client-image {
  border-radius: 50%;
  max-width: 40px;
  height: 40px;
}

.client-name {
  color: var(--secondary-heading);
  font-weight: 400;
  line-height: 24px;
}

.client-position {
  color: var(--primary-color);
  font-size: 14px;
  line-height: 22px;
}

.star-icon {
  color: #f4af0b;
  font-family: Icofont, sans-serif;
  font-size: 24px;
}

.star-icon-wrapper {
  grid-column-gap: 10px;
  display: flex;
}

.faq {
  padding-top: 120px;
  padding-bottom: 195px;
  position: relative;
}

.faq-grid {
  grid-template-rows: auto;
  position: relative;
}

.faq-contents {
  flex-direction: column;
}

.faq-image {
  max-width: 300px;
  min-height: 355px;
  margin-top: 30px;
}

.dropdown-menu {
  z-index: auto;
  color: #fff;
  text-align: left;
  cursor: pointer;
  background-color: #f4f4f4;
  border: 1px solid #0000001a;
  flex-direction: column;
  width: 100%;
  max-width: 750px;
  display: flex;
  position: relative;
}

.dropdown-contents {
  background-color: #fff;
  width: 100%;
  display: flex;
  position: static;
  overflow: hidden;
}

.dropdown-texts {
  color: var(--paragraph-with-white-background);
  padding-bottom: 20px;
  padding-left: 30px;
  padding-right: 30px;
}

.dropdown-switch {
  color: #000;
  background-color: #fff;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 30px;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: visible;
}

.dropdown-title {
  color: var(--secondary-heading);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.dropdown-wrapper {
  grid-row-gap: 0px;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-top: 30px;
  display: flex;
}

.call-to-action {
  background-color: var(--background-color);
  padding-top: 0;
  padding-bottom: 0;
  position: relative;
}

.cta-image {
  min-width: 500px;
  max-width: 820px;
  height: 100%;
  position: absolute;
  inset: 0% 0% auto auto;
}

.cta-block {
  z-index: 1;
  grid-row-gap: 16px;
  background-color: var(--background-color);
  flex-direction: column;
  align-items: flex-start;
  max-width: 620px;
  margin-right: 0;
  padding-top: 120px;
  padding-bottom: 120px;
  padding-right: 20px;
  display: flex;
  position: relative;
}

.cta-image-block {
  min-width: 531px;
}

.subscribe-banner {
  grid-row-gap: 60px;
  background-color: var(--primary-color);
  border-radius: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 945px;
  margin-left: auto;
  margin-right: auto;
  padding: 80px 50px;
  display: flex;
}

.subscribe-form {
  grid-column-gap: 13px;
  justify-content: space-around;
  display: flex;
}

.form-input {
  color: #fff;
  background-color: #0000;
  border: 1px solid #fff;
  border-radius: 2px;
  height: 46px;
  margin-bottom: 0;
  padding: 11px 20px;
  transition: border-color .2s;
}

.form-input:focus {
  border-color: var(--background-color);
}

.form-input::placeholder {
  color: #fff;
}

.slider {
  grid-column-gap: 30px;
  width: 200%;
  margin-top: 60px;
  display: flex;
}

.case {
  grid-row-gap: 30px;
  color: #fff;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  max-width: 360px;
  display: flex;
}

.case-title {
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
}

.hover-overlay {
  background-color: #fff6;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 20px;
}

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

.grid.margin-60px {
  margin-top: 60px;
}

.blog-card {
  background-color: #f5f5f5;
  border: 1px solid #eee;
  border-radius: 2px;
  flex-direction: column;
  max-width: 360px;
  display: flex;
}

.blog-title {
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  transition: transform .3s, color .3s;
}

.blog-title:hover {
  color: var(--primary-color);
  transform: translate(0, -5px);
}

.card-body {
  grid-row-gap: 50px;
  flex-direction: column;
  align-items: flex-start;
  padding: 40px 28px 30px;
  display: flex;
}

.card-body.service-body {
  grid-row-gap: 12px;
  padding: 24px 30px 42px;
}

.icon {
  color: #000;
  font-family: Icofont, sans-serif;
  line-height: 16px;
}

.inner-slider {
  grid-column-gap: 30px;
  justify-content: flex-start;
  width: 100%;
  display: flex;
}

.page-title {
  color: var(--heading-color);
  margin-top: 0;
}

.breadcrumbs {
  color: #f0f0f099;
}

.main-paragraph {
  max-width: 750px;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 24px;
}

.blogs-section {
  padding-top: 116px;
  position: relative;
  overflow: hidden;
}

.widget-block {
  grid-row-gap: 30px;
  flex-direction: column;
  display: flex;
}

.tags-container {
  grid-column-gap: 6px;
  grid-row-gap: 10px;
  color: var(--secondary-heading);
  flex-wrap: wrap;
  display: flex;
}

.author-image {
  border: 2px solid #0277bd;
  border-radius: 50%;
  max-width: 30px;
  min-height: 30px;
  transition: transform .2s;
}

.author-image:hover {
  transform: scale(1.1);
}

.left-column {
  grid-row-gap: 20px;
  flex-direction: column;
  width: 100%;
  max-width: 740px;
  display: flex;
}

.image {
  border-radius: 2px;
}

.image.margin-both-sides {
  margin-top: 22px;
  margin-bottom: 40px;
}

.case-study-name {
  color: #373737;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 30px;
  font-weight: 500;
  line-height: 45px;
}

.case-study-name.white-color {
  color: #fff;
}

.news-card {
  grid-column-gap: 12px;
  align-items: stretch;
  width: 100%;
  display: flex;
}

.blog-details-wrapper {
  grid-row-gap: 20px;
  flex-direction: column;
  display: flex;
}

.blog-footer {
  border-top: 1px solid #ccc;
  justify-content: space-between;
  align-items: stretch;
  margin-top: 34px;
  padding-top: 20px;
  display: flex;
}

.author-information-block {
  grid-column-gap: 10px;
  align-items: center;
  display: flex;
}

.news-card-wrapper {
  grid-row-gap: 20px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.category-container {
  grid-row-gap: 26px;
  color: #475467;
  flex-direction: column;
  display: flex;
}

.social-share {
  grid-column-gap: 22px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: relative;
}

.sidebar {
  grid-row-gap: 60px;
  flex-direction: column;
  width: 100%;
  max-width: none;
  display: flex;
}

.category-wrapper {
  width: 100%;
  max-width: 270px;
  margin-top: 8px;
}

.blog-details-blcok {
  grid-column-gap: 16px;
  color: #475467;
  justify-content: flex-start;
  align-items: center;
  font-weight: 400;
  display: flex;
}

.two-column-grid {
  grid-column-gap: 60px;
  grid-template-rows: auto;
  grid-template-columns: 2fr 1fr;
  width: 100%;
}

.semi-title {
  color: var(--secondary-heading);
  text-transform: none;
  font-size: 20px;
  font-weight: 500;
  line-height: 26px;
}

.category {
  grid-column-gap: 10px;
  padding: 0 10px;
  display: flex;
}

.red-text {
  color: #ef4646;
  font-weight: 400;
}

.heading-and-summery {
  grid-row-gap: 14px;
  flex-direction: column;
  display: flex;
}

.title-and-summery-block {
  flex-direction: column;
  display: flex;
}

.heading-limit-mask {
  max-height: 52px;
  margin-top: 18px;
  overflow: hidden;
}

.heading-limit-mask.case-study {
  margin-top: 8px;
}

.news-title {
  color: var(--secondary-heading);
  word-break: break-all;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
}

.related-post {
  margin-bottom: -13px;
  font-size: 20px;
  line-height: 24px;
}

.related-post-container {
  grid-row-gap: 60px;
  flex-direction: column;
  margin-top: 80px;
  display: flex;
  position: relative;
}

.title-border {
  background-color: #e7e7e7;
  width: 68px;
  height: 2px;
}

.title-with-border {
  grid-row-gap: 10px;
  flex-direction: column;
  display: flex;
}

.search-button-icon {
  background-color: #0000;
  font-family: Icofont, sans-serif;
  line-height: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
}

.search {
  border: 1px solid #eee;
  min-height: 50px;
  margin-bottom: 0;
  padding: 14px 14px 14px 20px;
  line-height: 22px;
}

.search-container {
  flex-direction: row;
  width: 100%;
  margin-bottom: 0;
  display: flex;
  position: relative;
}

.education-grid {
  grid-column-gap: 0px;
  grid-template-rows: auto;
  margin-top: 145px;
  position: relative;
}

.about-us-video {
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 810px;
  height: 500px;
  margin-top: 47px;
  display: flex;
}

.team-grid {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  position: relative;
}

.team-card {
  grid-row-gap: 20px;
  flex-direction: column;
  display: flex;
}

.team-member {
  height: 200px;
  transition: transform .4s;
}

.team-member:hover {
  transform: scale(1.1);
}

.team-info-wrapper {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.name-and-position-wrapper {
  grid-row-gap: 4px;
  flex-direction: column;
  display: flex;
}

.phone-icon {
  color: var(--paragraph-with-white-background);
  background-color: #f5f5f5;
  border-radius: 50%;
  padding: 6px 10px;
  font-family: Icofont, sans-serif;
}

.contact {
  padding-top: 160px;
  position: relative;
}

.contact-grid {
  grid-column-gap: 60px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
}

.highlight-text {
  color: var(--secondary-heading);
  max-width: 425px;
  font-size: 36px;
  font-weight: 500;
  line-height: 44px;
}

.highlight-text.small {
  font-size: 30px;
  font-weight: 400;
  line-height: 30px;
}

.office-hours-container {
  grid-row-gap: 10px;
  flex-direction: column;
  display: flex;
  position: relative;
}

.office-information-container {
  grid-row-gap: 20px;
  flex-direction: column;
  display: flex;
  position: relative;
}

.office-information-wrapper {
  grid-row-gap: 84px;
  flex-direction: column;
  display: flex;
}

.office-hours-block {
  grid-column-gap: 40px;
  white-space: nowrap;
  background-color: #fff;
  justify-content: space-between;
  margin-top: 10px;
  padding: 30px 40px 67px;
  display: flex;
}

.contact-form-wrapper {
  background-color: #b69d741a;
  border-radius: 5px;
  margin-bottom: 0;
  padding: 60px 44px;
  position: relative;
}

.form-headings {
  grid-row-gap: 22px;
  flex-direction: column;
  margin-bottom: 30px;
  display: flex;
}

.two-input-wrapper {
  grid-column-gap: 10px;
  display: flex;
}

.contact-form-field {
  border: 1px solid #eee;
  border-radius: 4px;
  min-height: 50px;
  margin-bottom: 0;
  padding: 13px 15px;
  line-height: 24px;
  transition: border-color .4s;
}

.contact-form-field:focus {
  border-color: var(--background-color);
}

.contact-form-field.text-area {
  min-height: 160px;
}

.form {
  grid-row-gap: 20px;
  flex-direction: column;
  display: flex;
}

.office-hours {
  grid-row-gap: 10px;
  flex-direction: column;
  display: flex;
}

.map-image-wrapper {
  margin-top: 100px;
}

.map-image {
  min-height: 250px;
  max-height: 400px;
}

.blogs {
  padding-top: 80px;
  position: relative;
}

.pagtination-button {
  color: var(--paragraph-with-white-background);
  background-color: #f5f5f5;
  border-style: none;
  margin-top: 80px;
  padding: 9px;
  font-family: Icofont, sans-serif;
  font-size: 22px;
  line-height: 22px;
}

.license-section {
  margin-top: 80px;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
  overflow: hidden;
}

.license-wrapper {
  color: #000;
  max-width: 555px;
}

.license-main-text {
  margin-bottom: 60px;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}

.license-block {
  grid-row-gap: 12px;
  flex-direction: column;
  margin-top: 40px;
  display: flex;
}

.license-title {
  color: #4d4d4d;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
}

.license-paragraph {
  margin-bottom: 4px;
}

.license-link-block {
  grid-row-gap: 6px;
  flex-direction: column;
  display: flex;
}

.changelog-section {
  color: #000;
  padding-top: 80px;
  padding-bottom: 431px;
  position: relative;
  overflow: hidden;
}

.changelog-wrapper {
  grid-row-gap: 10px;
  flex-direction: column;
  display: flex;
}

.version-title {
  font-size: 24px;
  font-weight: 500;
  line-height: 36px;
}

.version-description {
  line-height: 28px;
}

.page-wrapper {
  overflow: hidden;
}

.squre-blocks {
  z-index: -1;
  background-color: #d9d9d933;
  width: 400px;
  height: 350px;
  position: absolute;
  inset: 140px -250px auto auto;
  transform: rotate(12.5deg);
}

.squre-blocks.bottom-left {
  top: 551px;
  left: -115px;
  right: auto;
}

.squre-blocks.testimonial {
  top: 198px;
  right: -187px;
}

.squre-blocks.faq {
  inset: auto auto 257px -186px;
}

.squre-blocks.about {
  top: 306px;
  right: -202px;
}

.blur-background-div {
  z-index: -1;
  background-color: var(--primary-color);
  filter: blur(200px);
  border-radius: 328px;
  width: 324px;
  height: 328px;
  position: absolute;
  inset: 100px auto auto -113px;
}

.blur-background-div.education {
  inset: 50px 0% auto auto;
}

.blur-background-div.testimonial-background {
  opacity: .5;
  inset: auto -188px -162px auto;
}

.blur-background-div.faq-background {
  opacity: .5;
  inset: 40px auto auto -120px;
}

.blur-background-div.blog-background {
  opacity: .5;
  top: 10px;
  left: -180px;
}

.blur-background-div.blog-background.bottom-right {
  inset: auto -200px -200px auto;
}

.blur-background-div.opacity-low {
  opacity: .5;
  width: 450px;
  height: 450px;
  inset: auto 20% 0% auto;
}

.blur-background-div.opacity-low.contact-form-background {
  inset: -220px -160px auto auto;
}

.blur-background-div.opacity-low.team-card-background {
  top: 1px;
  left: 95px;
}

.blur-background-div.opacity-low.testimonial {
  inset: auto -220px 200px auto;
}

.blur-background-div.opacity-low.blog-page {
  inset: -50px -100px auto auto;
}

.blur-background-div.opacity-low.blog-page-second {
  top: 380px;
}

.blur-background-div.opacity-low.blog-page-third {
  width: 250px;
  height: 250px;
  inset: auto -110px 335px auto;
}

.secondary-button {
  background-color: var(--primary-color);
  border: 2px solid #0000;
  border-radius: 2px;
  margin-top: 45px;
  padding: 11px 33px;
  font-weight: 500;
  transition-property: all;
  transition-duration: .35s;
}

.secondary-button:hover {
  border: 2px solid var(--background-color);
  color: var(--background-color);
  background-color: #0000;
  transform: translate(0, -4px);
}

.secondary-button.contact-button {
  margin-top: 30px;
  padding: 14px 22px;
}

.secondary-button.submit-button {
  border-radius: 4px;
  margin-top: 0;
  padding: 13px 45px;
}

.secondary-button.primary-color {
  background-color: var(--background-color);
  padding-left: 39px;
  padding-right: 39px;
}

.secondary-button.primary-color:hover {
  color: var(--white);
}

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

.video-button {
  justify-content: center;
  align-items: center;
  max-width: 44px;
  display: flex;
  position: static;
}

.play-button {
  color: red;
  background-color: #fff;
  border-radius: 50%;
  font-family: Icofont, sans-serif;
  font-size: 82px;
  line-height: 80px;
}

.play-button.pause {
  color: #000;
  font-size: 50px;
  line-height: 40px;
}

.pause-button-wrapper {
  position: absolute;
  inset: auto 0% 10px auto;
}

.archive-link {
  color: #475467;
  background-color: #f5f5f5;
  border-radius: 2px;
  padding: 8px 10px;
  transition: background-color .2s ease-out, color .3s ease-in;
  display: flex;
}

.archive-link:hover {
  background-color: var(--background-color);
  color: #fff;
}

.dropdown-icon {
  color: #bdbdbd;
  right: -20px;
}

.contact-us-button {
  border: 1px solid var(--primary-color);
  background-color: var(--primary-color);
  color: #fff;
  border-radius: 2px;
  padding: 14px 22px;
  font-weight: 500;
  transition: border-color .35s ease-out, background-color .2s, transform .3s ease-in;
}

.contact-us-button:hover {
  background-color: #0000;
  border: 1px solid #fff;
  transform: translate(0, -5px);
}

.empty-block {
  background-color: var(--background-color);
  color: #fff;
  text-align: center;
}

.dynamic-links {
  cursor: pointer;
  font-weight: 400;
  transition: transform .3s;
}

.dynamic-links:hover {
  transform: translate(5px);
}

.overflow-hidden-mask {
  border-radius: 5px;
  position: relative;
  overflow: visible;
}

.overflow-hidden-mask.blog-image {
  border-radius: 0;
}

.overflow-hidden-mask.popular-post {
  width: 100%;
  max-width: 150px;
}

.testimonial-slider {
  background-color: #0000;
  height: 100%;
  overflow: hidden;
}

.navigation {
  color: var(--background-color);
  justify-content: center;
  align-items: center;
  font-family: Icofont, sans-serif;
  display: flex;
}

.mask {
  max-width: 390px;
  overflow: visible;
}

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

.section.features {
  background-color: #b69d741a;
}

.section.case-study {
  background-image: url('../images/Mask-group_1Mask group.webp'), linear-gradient(to bottom, var(--background-color), var(--background-color));
  background-position: 50%, 0 0;
  background-size: cover, auto;
}

.section.faq {
  padding-bottom: 50px;
}

.section.testimonials {
  padding-bottom: 25px;
}

.section.default {
  padding-bottom: 0;
}

.section.default.cta {
  padding-left: 5%;
  padding-right: 5%;
}

.section.video {
  background-image: linear-gradient(188deg, #000, #0d6489 100%, #fff);
}

.section.about {
  padding-bottom: 100px;
}

.section.no-bottom-padding {
  padding-bottom: 0;
  overflow: hidden;
}

.breadcrumb-link {
  color: #f0f0f099;
}

.breadcrumb-link:hover {
  color: #f0f0f0;
}

.breadcrumb-block {
  grid-column-gap: 4px;
  color: #f0f0f099;
  display: flex;
}

.license-link {
  transition-duration: .2s;
  transition-timing-function: ease;
}

.license-link:hover {
  color: var(--primary-color);
}

.navigation-icon {
  transition: color .2s;
}

.navigation-icon:hover {
  color: var(--primary-color);
}

.card-thumbnail {
  transition: transform 1s cubic-bezier(.39, .575, .565, 1);
}

.card-thumbnail:hover {
  transform: scale(1.2);
}

.card-thumbnail.service {
  height: 220px;
}

.read-more-link {
  grid-column-gap: 15px;
  justify-content: center;
  align-items: center;
  transition: transform .25s, color .3s ease-out;
  display: flex;
}

.read-more-link:hover {
  color: var(--primary-color);
  transform: translate(10px);
}

.popular-post-thumbnail {
  height: 100%;
  transition: transform 1s cubic-bezier(.175, .885, .32, 1.275);
}

.popular-post-thumbnail:hover {
  transform: scale(1.2);
}

.share-icon {
  font-family: Icofont, sans-serif;
}

.share-text {
  grid-column-gap: 7px;
  color: #1877f2;
  white-space: nowrap;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  padding-left: 8px;
  padding-right: 10px;
  position: absolute;
}

.share-text.twitter {
  color: #1da1f2;
  right: 25px;
  transform: translate(0, 64px);
}

.share-text.pin {
  color: #e60023;
  right: -15px;
  transform: translate(0, 97px);
}

.share-text.facebook {
  right: 50px;
  transform: translate(0, 35px);
}

.footer-divider {
  display: none;
}

.message-sent {
  background-color: var(--background-color);
  color: #fff;
  font-weight: 400;
}

.message-failed {
  color: #fff;
  text-align: center;
  background-color: #ff2b2b;
}

.nav-dropdown-toggle {
  padding: 0 20px 0 0;
}

.dropdown-menu-link {
  color: #ececec;
  white-space: pre;
  margin: 0;
  padding: 10px 48px 13px 30px;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  transition: background-color .3s;
}

.dropdown-menu-link:hover {
  background-color: #0277bd;
}

.dropdown-menu-link.bottom-link {
  padding-bottom: 20px;
}

.dropdown-menu-link.top-link {
  padding-top: 18px;
}

.dropdown-menu-link.border-up-and-down {
  border-top: 1px solid #40597a;
  border-bottom: 1px solid #40597a;
}

.nav-dropdown {
  background-color: #354b67;
  border-radius: 10px;
  flex-direction: column;
  align-items: stretch;
  display: none;
  top: 40px;
  box-shadow: 0 10px 30px #0006;
}

.nav-dropdown.w--open {
  z-index: 999999;
  box-shadow: 0 10px 30px #0006;
}

.hover-animation-block {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  display: flex;
}

._404-wrapper {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  display: flex;
}

._404-text {
  color: #083548;
  font-size: 300px;
  font-weight: 300;
  line-height: 300px;
}

._404-image {
  max-width: 130px;
}

._404-image-wrapper {
  background-color: #475467;
  border: 5px solid #fff;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 210px;
  height: 210px;
  display: flex;
  box-shadow: 0 0 40px #b69d744d;
}

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

._404-paragraph {
  max-width: 800px;
  margin-bottom: 0;
  font-size: 20px;
  line-height: 30px;
}

.quote-button {
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  background-color: #b69d7400;
  border-radius: 4px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  transition: background-color .2s, color .3s ease-in;
}

.quote-button:hover {
  background-color: var(--primary-color);
  color: #fff;
}

.service-features-card {
  text-align: center;
  background-color: #f5f5f5;
  border: 1px solid #dcdcdc;
  border-radius: 2px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px;
  display: flex;
}

._60px-image {
  max-width: 60px;
}

.service-title {
  color: #000;
  margin-top: 30px;
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 500;
  line-height: 21px;
}

.service-block {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 70px;
  display: flex;
}

.service-sidebar {
  background-color: #f5f5f5;
  border: 1px solid #dcdcdc;
  border-radius: 2px;
  flex-direction: column;
  width: 100%;
  max-width: 360px;
  display: flex;
}

.sidebar-heading {
  background-color: var(--primary-color);
  color: var(--white);
  padding-top: 18px;
  padding-bottom: 17px;
  padding-left: 30px;
  font-size: 18px;
  font-weight: 500;
  line-height: 21px;
}

.sidebar-link {
  color: #000;
  border-bottom: 1px solid #dfdfdf;
  padding-top: 19px;
  padding-bottom: 19px;
  padding-left: 30px;
  font-weight: 500;
  line-height: 26px;
  display: block;
}

.sidebar-link.w--current {
  color: var(--primary-color);
}

.main-block {
  width: 100%;
  max-width: 720px;
}

.post-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 30px;
  font-weight: 500;
  line-height: 46px;
}

.bottom-padding {
  background-color: #f5f5f5;
  width: 100%;
  height: 5px;
  position: relative;
  top: -2px;
}

.blur-background {
  z-index: -1;
  filter: blur(200px);
  background-color: #b69d74;
  border-radius: 328px;
  width: 324px;
  height: 328px;
  position: absolute;
  inset: 100px auto auto -113px;
}

.blur-background.opacity-low {
  opacity: .5;
  width: 450px;
  height: 450px;
  inset: auto 20% 0% auto;
}

.blur-background.opacity-low.blog-page-second {
  top: 380px;
}

.blur-background.opacity-low.blog-page {
  inset: -50px -100px auto auto;
}

.blur-background.opacity-low.blog-page-third {
  width: 250px;
  height: 250px;
  inset: auto -110px 335px auto;
}

.category-link {
  color: var(--primary-color);
  font-weight: 500;
}

.border {
  background-color: #d2d2d2;
  width: 100%;
  height: 1px;
}

.case-study-description {
  margin-top: -20px;
}

.case-study-description h3 {
  color: #000;
  margin-top: 20px;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
}

.contact-us-banner {
  background-color: var(--primary-color);
  border-radius: 10px;
  flex-direction: row;
  justify-content: space-between;
  padding-top: 58px;
  padding-left: 53px;
  padding-right: 40px;
  display: flex;
}

.contact-paragraph {
  color: #fffc;
  margin-top: 12px;
  margin-bottom: 30px;
}

.contact-image {
  max-width: 240px;
}

.contact-contents {
  padding-bottom: 58px;
}

.template-paragraph {
  color: #757575;
  font-size: 13px;
  line-height: 20px;
}

.product-title {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  flex-direction: column;
  padding-top: 5px;
  padding-bottom: 5px;
  display: flex;
}

.extra-height {
  height: 70px;
}

.product-buy-button {
  background-color: #4353ff;
  border-radius: 2px;
  justify-content: center;
  align-items: center;
  height: 40px;
  padding-left: 18px;
  padding-right: 18px;
  font-size: 14px;
  font-weight: 300;
  line-height: 24px;
  transition: background-color .2s;
  display: flex;
}

.product-buy-button:hover {
  background-color: #0055d4;
}

.contact-us-link {
  color: #000;
  transition: color .5s;
}

.contact-us-link:hover {
  color: #5e42ff;
}

.preview-buttons-wrapper {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  white-space: nowrap;
  justify-content: center;
  align-items: center;
  display: flex;
}

.view-templates-button {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  border: 1px solid #ebebeb;
  border-radius: 2px;
  align-items: center;
  height: 40px;
  padding: 9px 18px;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  transition: background-color .3s;
  display: flex;
}

.view-templates-button:hover {
  background-color: #e4e4e4;
}

._10px-svg {
  max-width: 14px;
}

.buy-template-wrapper {
  z-index: 100000;
  background-color: #fff;
  border-top: 1px solid #00000026;
  justify-content: space-between;
  align-items: center;
  padding-top: 0;
  padding-right: 10px;
  display: flex;
  position: fixed;
  inset: auto 0% 0%;
}

.buy-now-thumbnail {
  width: 110px;
  margin-top: -1px;
}

.template-name {
  color: #000;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 500;
  line-height: 26px;
  transition: color .3s;
}

.product-template-info {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  display: flex;
}

.delete-this-for-production {
  margin-top: -110px;
}

.text-span {
  background-image: linear-gradient(357deg, var(--primary-color), #fff0 50%);
}

.div-block {
  height: 25px;
  display: flex;
}

.image-2 {
  width: 20px;
}

.heading {
  color: #009b00;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 5px;
  font-size: 14px;
  font-weight: 300;
}

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

.image-3 {
  z-index: 1;
  width: 90%;
  position: relative;
}

.div-block-2 {
  background-color: var(--primary-color);
  width: 90%;
  height: 500px;
  position: absolute;
  inset: 0% auto auto -7%;
}

.div-block-3 {
  background-color: var(--primary-color);
  width: 100%;
  height: 50%;
  position: absolute;
  inset: -3% 0% auto 2%;
}

.cell {
  border-left: 4px solid var(--primary-color);
}

.heading-2 {
  color: var(--primary-color);
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  font-size: 40px;
  font-weight: 400;
}

.paragraph {
  color: var(--secondary-background);
}

.div-block-4 {
  padding-left: 20px;
}

.div-block-5 {
  color: var(--primary-color);
  margin-bottom: 10px;
  display: flex;
}

.image-4 {
  flex: 0 auto;
  width: 25px;
  height: 25px;
  margin-right: 5px;
  display: block;
}

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

.checkbox-label-2 {
  font-size: 14px;
  line-height: 22px;
}

.text-span-2 {
  color: var(--primary-color);
  font-weight: 400;
}

.text-span-3, .text-span-4 {
  font-weight: 400;
}

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

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

.contacts-with-image {
  background-image: linear-gradient(#0006, #0006), url('../images/Mariusz-Kobyłecki-poziom-18_1.webp');
  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;
}

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

.button-background.white {
  border: 1px solid #012049;
}

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

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

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

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

.primary-button-transparent {
  color: #f7f7f7;
  border: 1px solid #f7f7f7;
  align-items: center;
  padding: 22px 30px;
  font-weight: 600;
  line-height: 1;
  display: flex;
  position: relative;
}

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

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

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

.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-2 {
  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-50 {
  font-size: 18px;
}

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

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

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

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

.paragraph-23 {
  margin-bottom: 0;
  padding-top: 10px;
  font-size: 10px;
  line-height: 10px;
}

@media screen and (min-width: 1440px) {
  .section-2.gradient-first-section {
    background-image: linear-gradient(#fff, #5d9fd7 57%, #22427b);
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 48px;
    line-height: 60px;
  }

  h2 {
    max-width: 500px;
  }

  p {
    max-width: 100%;
  }

  .nav-link {
    color: #fff;
    padding: 0 5px;
  }

  .main-logo-wrapper {
    z-index: 1;
  }

  .nav-list {
    border-bottom: 1px #fff3;
    padding-top: 16px;
    padding-bottom: 16px;
    display: flex;
  }

  .nav-menu-wrapper {
    background-color: #0000;
    border-radius: 0;
    flex-direction: row;
    padding-left: 0;
    padding-right: 0;
    display: block;
    top: 0;
  }

  .nav-menu {
    text-align: center;
    background-color: #081830;
    border-radius: 0;
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;
    margin-top: 0;
    padding: 20px 25px 30px;
    display: flex;
    box-shadow: 0 8px 50px #0000000d;
  }

  .nav-button-list {
    text-align: center;
    flex: 1;
    justify-content: center;
    align-items: center;
    padding-left: 0;
    display: flex;
  }

  .hamburger-icon {
    color: #fff;
    background-color: #fff0;
    border: 1px #0000;
    flex-direction: row;
    font-size: 28px;
    display: block;
  }

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

  .container.gap-60px {
    overflow: visible;
  }

  .cross-icon {
    background-color: #0000;
    flex-direction: row;
    font-family: Icofont, sans-serif;
    font-size: 24px;
    font-style: normal;
    display: none;
  }

  .hamburger-and-close-icon-wrapper {
    align-items: center;
    display: flex;
  }

  .menu-button {
    flex-direction: row;
    padding: 0;
    display: block;
  }

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

  .banner, .hero-banner {
    padding-top: 150px;
  }

  .hero-grid {
    grid-row-gap: 30px;
    grid-template-columns: 1fr;
    padding-top: 0;
  }

  .hero-image-background {
    min-width: auto;
    max-width: 430px;
    right: -75px;
  }

  .hero-image {
    max-width: 360px;
    height: 550px;
  }

  .hero-contents {
    max-width: 650px;
    margin-top: 0;
  }

  .counter-card-wrapper {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .footer {
    margin-top: 80px;
  }

  .footer.footer-gap {
    grid-row-gap: 0px;
    margin-top: 60px;
    padding-top: 80px;
  }

  .footer-wrapper {
    flex-wrap: wrap;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    padding-top: 0;
    padding-bottom: 40px;
  }

  .footer-block {
    width: 100%;
    max-width: none;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .footer-block.less-width-block {
    max-width: 40%;
  }

  .footer-block.first-block {
    max-width: 50%;
  }

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

  .experience {
    grid-column-gap: 10px;
    top: 222px;
  }

  .hero-image-wrapper {
    justify-content: flex-end;
    align-items: flex-end;
  }

  .name-wrapper {
    padding: 10px;
    font-size: 18px;
  }

  .about-grid {
    grid-row-gap: 30px;
    grid-template-columns: 1fr;
  }

  .logo-container {
    width: 100%;
  }

  .section-heading, .about-image {
    max-width: none;
  }

  .contents {
    width: 100%;
  }

  .section-paragraph {
    max-width: none;
  }

  .why-choose-us-grid {
    grid-template-columns: 1fr 1fr;
  }

  .services-contents {
    text-align: center;
    justify-content: center;
    align-items: center;
    max-width: none;
  }

  .flex-container {
    grid-row-gap: 60px;
    flex-direction: column;
  }

  .testimonial-card {
    max-width: 340px;
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .faq-contents {
    text-align: center;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .faq-image {
    max-width: 400px;
    min-height: 200px;
  }

  .dropdown-menu {
    align-items: stretch;
    min-width: auto;
  }

  .dropdown-wrapper {
    justify-content: center;
    align-items: center;
  }

  .cta-image {
    display: none;
  }

  .cta-block {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .cta-image-block {
    display: none;
  }

  .slider {
    width: 300vw;
  }

  .case-title {
    font-size: 16px;
    line-height: 26px;
  }

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

  .inner-slider {
    width: 150vw;
  }

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

  .sidebar {
    grid-column-gap: 30px;
    flex-flow: wrap;
  }

  .two-column-grid {
    grid-column-gap: 0px;
    grid-row-gap: 60px;
    flex-direction: column;
    grid-template-columns: 1fr;
    display: flex;
  }

  .education-grid {
    grid-row-gap: 40px;
    flex-direction: column-reverse;
    grid-template-columns: 1fr;
    margin-top: 80px;
    display: flex;
  }

  .team-grid {
    grid-template-columns: 1fr 1fr;
    place-items: center;
  }

  .team-member {
    max-width: 262px;
  }

  .contact {
    padding-top: 100px;
  }

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

  .map-image-wrapper {
    margin-top: 80px;
  }

  .squre-blocks {
    display: none;
  }

  .secondary-button.primary-color {
    margin-top: 0;
  }

  .testimonial-slider {
    width: 100%;
  }

  .navigation.right-side {
    right: 30px;
  }

  .mask {
    max-width: 370px;
  }

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

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

  .section.about {
    padding-bottom: 100px;
  }

  .footer-divider {
    background-color: #98a2b3;
    width: 100%;
    height: 1px;
    padding-bottom: 0;
    padding-right: 0;
    display: block;
  }

  .nav-dropdown-toggle {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .nav-dropdown {
    border-radius: 10px;
    position: absolute;
    top: auto;
    left: 100px;
  }

  ._404-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }

  .service-block {
    grid-column-gap: 70px;
    grid-row-gap: 70px;
    flex-direction: column-reverse;
    align-items: flex-start;
  }

  .main-block {
    max-width: none;
  }

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

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

  .button-background.white {
    transform: none;
  }

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

@media screen and (max-width: 767px) {
  h3 {
    margin-bottom: 0;
  }

  blockquote {
    padding-right: 20px;
  }

  .nav-link {
    display: inline-block;
  }

  .main-logo-wrapper {
    z-index: 1;
  }

  .nav-menu {
    background-color: #081830;
    border-radius: 0;
    padding-bottom: 30px;
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .cross-icon {
    font-size: 30px;
    font-style: normal;
    line-height: 40px;
    display: none;
  }

  .color-wrapper {
    flex-direction: column;
  }

  .style-color-container {
    grid-row-gap: 20px;
    flex-direction: column;
  }

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

  .footer {
    margin-top: 60px;
  }

  .footer-wrapper {
    grid-template-columns: 1fr;
    padding-top: 0;
    padding-bottom: 0;
  }

  .footer-bottom {
    grid-row-gap: 10px;
    text-align: center;
    flex-flow: column;
    display: flex;
  }

  .footer-copyright {
    max-width: 389px;
    font-size: 14px;
    line-height: 20px;
  }

  .footer-block {
    flex-direction: column;
  }

  .footer-block.less-width-block {
    max-width: 34%;
  }

  .footer-block.first-block {
    max-width: 52%;
  }

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

  .logo-container {
    justify-content: space-between;
  }

  .section-heading {
    font-size: 32px;
    line-height: 48px;
  }

  .award-image-wrapper {
    max-width: 150px;
    right: -24px;
  }

  .award-block-texts {
    font-size: 12px;
  }

  .award-year {
    font-size: 20px;
    line-height: 26px;
  }

  .card, .service-card {
    padding: 20px;
  }

  .external-link-block {
    max-width: 20px;
    top: 10px;
    right: 10px;
  }

  .external-link-block.static {
    max-width: 30px;
  }

  .testimonial-card {
    max-width: none;
  }

  .faq-image {
    max-width: 280px;
    min-height: auto;
  }

  .dropdown-title {
    width: 100%;
  }

  .dropdown-wrapper {
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
  }

  .cta-block {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .subscribe-banner {
    grid-row-gap: 30px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .subscribe-form {
    grid-row-gap: 15px;
    flex-direction: column;
  }

  .slider {
    width: 340vw;
  }

  .case {
    grid-row-gap: 15px;
  }

  .case-title {
    font-size: 16px;
    line-height: 26px;
  }

  .hover-overlay {
    inset: 10px;
  }

  .grid {
    grid-template-columns: 1fr;
    align-content: center;
    place-items: center;
  }

  .inner-slider {
    width: 170vw;
  }

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

  .case-study-name {
    font-size: 28px;
  }

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

  .about-us-video {
    height: 350px;
  }

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

  .contact {
    padding-top: 80px;
  }

  .map-image-wrapper {
    margin-top: 70px;
  }

  .changelog-section {
    margin-top: 40px;
    margin-bottom: -40px;
  }

  .subscribe-form-block {
    width: 100%;
  }

  .play-button {
    font-size: 40px;
    line-height: 40px;
  }

  .play-button.pause {
    font-size: 35px;
    line-height: 35px;
  }

  .testimonial-slider {
    display: flex;
  }

  .navigation.right-side {
    right: 0;
  }

  .mask {
    max-width: none;
    overflow: hidden;
  }

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

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

  .dropdown-menu-link {
    padding-left: 15px;
    padding-right: 15px;
  }

  .nav-dropdown {
    min-width: 150px;
    top: 0;
    left: 80px;
  }

  .nav-dropdown.w--open {
    border-radius: 10px;
  }

  ._404-text {
    font-size: 150px;
    line-height: 200px;
  }

  ._404-image {
    max-width: 90px;
  }

  ._404-image-wrapper {
    width: 150px;
    height: 150px;
  }

  ._404-paragraph {
    font-size: 16px;
    line-height: 26px;
  }

  .contact-us-banner {
    flex-direction: column;
    align-items: center;
  }

  .delete-this-for-production {
    display: none;
  }

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

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

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

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

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

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

@media screen and (max-width: 479px) {
  h1 {
    margin-top: 0;
    font-size: 30px;
    line-height: 45px;
  }

  h2 {
    font-size: 24px;
    line-height: 36px;
  }

  p {
    line-height: 23px;
  }

  a {
    color: var(--primary-color);
  }

  .nav-link.w--current {
    padding-top: 0;
    padding-bottom: 0;
  }

  .main-logo-wrapper {
    padding-left: 0;
  }

  .nav-list {
    border-bottom-style: none;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .nav-menu {
    grid-row-gap: 10px;
    text-align: center;
    overflow: hidden;
  }

  .nav-button-list {
    padding-left: 0;
  }

  .hamburger-icon {
    background-color: #fff0;
    font-size: 25px;
  }

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

  .cross-icon {
    color: #fff;
    font-size: 25px;
  }

  .banner {
    padding-top: 100px;
    padding-bottom: 60px;
  }

  .color-container {
    grid-row-gap: 20px;
    flex-direction: column;
  }

  .style-title {
    font-size: 26px;
  }

  .heading-block {
    align-items: flex-start;
  }

  .contact-form-block {
    padding-left: 0;
  }

  .field-block {
    grid-row-gap: 20px;
    flex-direction: column;
  }

  .contact-form {
    padding-left: 20px;
    padding-right: 20px;
  }

  .subscribe-button {
    min-width: 100px;
    height: 40px;
  }

  .subscribe-button.margin-left {
    padding-top: 8px;
  }

  .hero-banner {
    padding-top: 120px;
  }

  .hero-grid {
    grid-row-gap: 50px;
    grid-template-rows: auto auto auto;
  }

  .hero-image {
    max-width: 360px;
    height: auto;
  }

  .counter-card-wrapper {
    display: flex;
    bottom: 0%;
  }

  .counter-card {
    grid-row-gap: 5px;
    padding: 10px;
  }

  .hero-heading {
    font-size: 35px;
    line-height: 40px;
  }

  .footer.footer-gap {
    padding-top: 40px;
  }

  .footer-wrapper {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .footer-bottom {
    text-align: center;
    border-top-style: none;
  }

  .footer-copyright {
    grid-row-gap: 10px;
    flex-direction: column;
    display: flex;
  }

  .footer-block.less-width-block, .footer-block.first-block {
    border-bottom: 1px solid #98a2b3;
    max-width: 100%;
  }

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

  .information-block {
    grid-column-gap: 15px;
  }

  .information-text {
    color: var(--primary-color);
  }

  .number {
    font-size: 22px;
  }

  .counter-title {
    text-align: center;
    font-size: 12px;
  }

  .experience {
    padding: 10px;
    inset: auto 0% 5% auto;
  }

  .hero-image-wrapper {
    justify-content: center;
    align-items: center;
  }

  .name-wrapper {
    bottom: 114px;
    right: 149px;
  }

  .logo-container {
    grid-column-gap: 28px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .award-image-wrapper {
    max-width: 110px;
    padding: 5px;
  }

  .award-year {
    display: none;
  }

  .why-choose-us-grid {
    grid-template-columns: 1fr;
  }

  .card {
    border-style: solid;
  }

  .card-icon {
    width: 70px;
  }

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

  .faq-image {
    max-width: 220px;
    min-height: auto;
  }

  .dropdown-menu {
    grid-row-gap: 0px;
    justify-content: center;
    align-items: center;
  }

  .dropdown-texts {
    padding: 0 15px 15px;
    font-size: 14px;
    line-height: 21px;
  }

  .dropdown-switch {
    justify-content: space-between;
    padding: 15px;
  }

  .dropdown-title {
    white-space: pre-wrap;
    font-size: 15px;
  }

  .dropdown-wrapper {
    width: 100%;
    display: flex;
  }

  .cta-block {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .subscribe-banner {
    padding: 50px 20px;
  }

  .slider {
    grid-row-gap: 30px;
    flex-direction: column;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .case {
    align-items: center;
  }

  .card-body {
    padding: 20px;
  }

  .inner-slider {
    grid-row-gap: 30px;
    flex-direction: column;
    width: auto;
  }

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

  .case-study-name {
    font-size: 25px;
    line-height: 30px;
  }

  .blog-details-wrapper {
    align-content: flex-end;
  }

  .blog-footer {
    grid-row-gap: 20px;
    flex-direction: column;
  }

  .social-share {
    justify-content: flex-end;
  }

  .blog-details-blcok {
    grid-row-gap: 20px;
    flex-direction: column;
    align-items: flex-start;
  }

  .about-us-video {
    height: 200px;
  }

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

  .contact {
    padding-top: 60px;
  }

  .office-hours-block {
    grid-row-gap: 30px;
    flex-direction: column;
  }

  .contact-form-wrapper {
    padding: 40px 15px;
  }

  .two-input-wrapper {
    grid-row-gap: 20px;
    flex-direction: column;
  }

  .map-image-wrapper {
    margin-top: 60px;
  }

  .blogs {
    padding-top: 60px;
  }

  .license-section {
    margin-top: 40px;
  }

  .license-main-text {
    margin-bottom: 0;
    font-size: 16px;
    line-height: 24px;
  }

  .license-title {
    font-size: 18px;
    line-height: 27px;
  }

  .license-paragraph {
    font-size: 14px;
    line-height: 21px;
  }

  .changelog-section {
    margin-bottom: -20px;
  }

  .separator {
    display: none;
  }

  .overflow-hidden-mask.popular-post {
    max-width: 100px;
  }

  .navigation.right-side {
    right: -15px;
  }

  .navigation.left-side {
    left: -15px;
  }

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

  .section.testimonials {
    padding-bottom: 0;
  }

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

  .footer-divider {
    display: none;
  }

  .nav-dropdown-toggle {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .nav-dropdown {
    margin-top: 20px;
    display: none;
    position: static;
  }

  ._404-text {
    font-size: 100px;
    line-height: 160px;
  }

  ._404-image {
    max-width: 60px;
  }

  ._404-image-wrapper {
    width: 100px;
    height: 100px;
  }

  .contact-us-banner {
    padding-top: 35px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .text-span {
    line-height: 50px;
  }

  .heading {
    font-size: 12px;
  }

  .div-block-2 {
    height: 300px;
  }

  .link-block {
    color: var(--primary-color);
  }

  .contacts-with-image {
    background-image: linear-gradient(#0000004d, #0000004d), url('../images/Mariusz-Kobyłecki-poziom-18_1.webp');
    background-position: 0 0, 100%;
  }

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

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

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

#w-node-a07225bc-ed39-ca4c-92c4-efcd2cf95374-847a341b {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-_32b25e28-c780-1561-09e7-1e526a16fe34-847a341b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_68613188-062d-0b15-6a13-9bc5707c8422-847a341b {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_92479be0-1514-1df4-03ba-aa6860d30147-847a341b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a39c1754-fe83-29ae-97a4-415964243e84-847a341b {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_8d39bcbf-edbf-7d25-d061-0efbec931488-847a341b {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

#w-node-_639ed0ba-08db-aea2-90b2-d0e0564a4aa4-847a341b, #w-node-b1caf5f4-5a41-1ebf-2c03-5b4c5b84b9fc-847a341b, #w-node-ca94a021-48f0-d0fb-eac1-269c5c0eea13-847a341b, #w-node-_19fa7241-deee-7f31-8c73-2e8ceae7c3a2-847a341b, #w-node-eb1e3f92-4e4a-ca4d-d59a-eec40636deff-847a341b, #w-node-_26c91efe-9da2-2053-f04a-4c5bf73cada7-847a341b, #w-node-_30c8a7be-08a8-11dd-497a-c971f7b706c1-847a341b, #w-node-_53a0d671-afcf-bdbe-f2f6-fa22afa12efe-847a341b, #w-node-a04719ae-1cdc-1cb7-fb10-e3609af078cd-847a341b, #w-node-_40c5c5b2-013b-5114-ba63-ec2a57f4e321-847a341b, #w-node-_40c5c5b2-013b-5114-ba63-ec2a57f4e350-847a341b, #w-node-_40c5c5b2-013b-5114-ba63-ec2a57f4e351-847a341b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}


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