:root {
  --main-black: #020202;
  --color: #4dc8c2;
  --grey: #d9d9d9;
  --main-white: #d9d9d9;
  --light-black: #191919;
}

body {
  background-color: var(--main-black);
  color: #333;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

h1 {
  color: var(--color);
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Julius Sans One, sans-serif;
  font-size: 10rem;
  font-weight: 400;
  line-height: 8rem;
}

h2 {
  color: var(--color);
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Julius Sans One, sans-serif;
  font-size: 5rem;
  font-weight: 400;
  line-height: 4rem;
}

h3 {
  color: var(--color);
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 10px;
  padding-left: 40px;
  font-family: Open Sans, sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 3rem;
}

h4 {
  color: #d9d9d9;
  text-transform: uppercase;
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Open Sans, sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 2.2rem;
}

a {
  color: var(--grey);
  text-decoration: none;
}

ul {
  margin-top: 0;
  margin-bottom: 10px;
  padding-top: 0;
  padding-left: 20px;
  padding-right: 40px;
}

li {
  color: var(--main-white);
  padding-bottom: .5rem;
  font-family: Open Sans, sans-serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5rem;
}

.hero-section {
  max-width: 1440px;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
  padding-left: 60px;
  padding-right: 60px;
  position: relative;
}

.navbar {
  grid-column-gap: 5rem;
  grid-row-gap: 5rem;
  grid-template-rows: auto;
  grid-template-columns: .25fr .5fr .25fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  display: grid;
}

.navbar.mobile {
  grid-template-columns: .5fr;
  display: none;
}

.logo-container {
  align-items: stretch;
}

.logo-container.mobile {
  display: none;
}

.navlink-container {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  justify-content: space-around;
  align-items: center;
  display: flex;
}

.navlink-container.mobile {
  flex-flow: column;
}

.hero-flex-wrapper {
  justify-content: center;
  align-items: center;
  height: 80vh;
  display: flex;
}

.hero-text-wrapper {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.hero-upper-text-small {
  z-index: 1;
  color: var(--color);
  font-family: Julius Sans One, sans-serif;
  font-size: 2rem;
  line-height: 1rem;
  position: relative;
}

.heading {
  line-height: 7rem;
}

.white-small-hero-text {
  z-index: 1;
  opacity: .4;
  color: var(--main-white);
  font-family: Open Sans, sans-serif;
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 3rem;
  position: relative;
}

.navlink {
  color: var(--color);
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  font-family: Open Sans, sans-serif;
  font-size: 1rem;
  font-weight: 300;
  text-decoration: none;
  transition: color .4s;
}

.navlink:hover {
  color: var(--grey);
}

.main-buttom {
  color: var(--color);
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  background-color: #3898ec00;
  border: 1px solid #4dc8c266;
  font-family: Open Sans, sans-serif;
  font-size: 1rem;
  font-weight: 300;
  transition: background-color .4s;
}

.main-buttom:hover {
  background-color: #d9d9d91a;
}

.body {
  background-color: var(--main-black);
}

.service-section {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 100px;
  padding-left: 60px;
  padding-right: 60px;
}

.image {
  max-width: 4%;
  margin-bottom: 10px;
}

.flex-wrapper-center {
  z-index: 1;
  justify-content: center;
  align-items: center;
  max-width: 5%;
  max-height: none;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: relative;
}

.image-2 {
  opacity: .54;
  width: 100vw;
  max-width: none;
  display: none;
  overflow: clip;
}

.services-grid {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1.5fr 1.5fr;
  grid-auto-columns: 1fr;
  margin-top: 60px;
  display: grid;
}

.service-cell {
  background-color: var(--light-black);
  padding-top: 40px;
  padding-bottom: 40px;
  position: relative;
}

.small-divider {
  background-color: var(--color);
  width: 5%;
  height: 2px;
  margin-bottom: 0;
}

.cell-content {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: row;
  justify-content: space-between;
  width: 100%;
  margin-right: 0;
  padding-top: 30px;
  padding-left: 30px;
  display: flex;
}

.cell-content.vertical {
  flex-flow: column;
}

.large-divider {
  float: right;
  background-color: var(--color);
  width: 40%;
  height: 2px;
  margin-top: 10px;
}

.large-divider.full-width {
  width: 100%;
}

.heading-2 {
  margin-top: 30px;
  margin-bottom: 10px;
}

.heading-3 {
  margin-bottom: 10px;
}

.image-3 {
  width: 100%;
  max-width: none;
}

.image-4 {
  max-width: 90%;
}

.about-us-section {
  background-color: #4dc8c2;
  border-radius: 3rem;
  margin-top: 100px;
  margin-bottom: 0;
  padding: 60px 40px;
}

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

.subheading-wrapper {
  justify-content: flex-start;
  align-items: center;
  margin-top: 40px;
  display: flex;
}

.subheading-wrapper.right {
  justify-content: flex-end;
  align-items: center;
}

.heading-4 {
  color: var(--color);
}

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

.black.right {
  padding-right: 40px;
}

.mid-divider {
  background-color: var(--main-black);
  border-radius: 1rem;
  width: 37vw;
  height: 3px;
  margin-top: 10px;
}

.paragraph {
  max-width: 70vw;
}

.about-paragraph {
  color: var(--light-black);
  max-width: 90vh;
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
  font-family: Open Sans, sans-serif;
  font-size: 1rem;
}

.about-paragraph.full-width {
  max-width: none;
}

.about-paragraph.right {
  float: none;
}

.info-wrapper {
  margin-top: 20px;
}

.work-section {
  max-width: 1440px;
  margin-top: 100px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 60px;
  padding-left: 60px;
  padding-right: 60px;
}

.grid-work {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 60px;
  font-family: Open Sans, sans-serif;
  font-size: 1.2rem;
  display: grid;
}

.grid-cell {
  background-color: var(--light-black);
  padding-top: 20px;
  padding-bottom: 20px;
}

.img-wrapper {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  justify-content: flex-start;
  align-items: center;
  margin-top: 0;
  display: flex;
}

.cell-text {
  color: var(--grey);
  line-height: 1.5rem;
}

.list {
  padding-top: 0;
}

.image-with-padding {
  padding-top: 0;
  padding-left: 10px;
  padding-right: 10px;
  transition: all .4s;
}

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

.flex-wrapper-horizontal {
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
}

.contact-section {
  opacity: 1;
  background-image: linear-gradient(#02020280, #02020280), url('../images/chess-bcg-greyscale_1.avif');
  background-position: 0 0, 0 0;
  background-size: auto, auto;
  max-width: 1440px;
  margin-top: 100px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 60px;
  padding-left: 60px;
  padding-right: 60px;
}

.small-image {
  width: 60px;
  max-width: none;
  height: 60px;
  padding-left: 10px;
  padding-right: 10px;
  transition: all .4s;
}

.small-image:hover {
  transform: translate(35px);
}

.small-image.chessboard:hover {
  transform: rotate(45deg);
}

.cell-wrapper {
  flex-flow: column;
  display: flex;
}

.footer-dark {
  background-color: #f5f7fa;
  border-bottom: 1px solid #e4ebf3;
  padding: 50px 30px 15px;
  position: relative;
}

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

.footer-wrapper {
  justify-content: space-between;
  align-items: flex-start;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.footer-content {
  grid-column-gap: 70px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: auto auto 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

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

.title-small {
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
}

.footer-link {
  color: #1a1b1f;
  margin-top: 12px;
  margin-bottom: 6px;
  font-size: 14px;
  line-height: 16px;
  text-decoration: none;
}

.footer-link:hover {
  color: #1a1b1fbf;
}

.footer-social-block {
  justify-content: flex-start;
  align-items: center;
  margin-top: 12px;
  margin-left: -12px;
  display: flex;
}

.footer-social-link {
  margin-left: 12px;
}

.footer-divider {
  background-color: var(--color);
  width: 100%;
  height: 1px;
  margin-top: 70px;
  margin-bottom: 15px;
}

.footer-copyright-center {
  text-align: center;
  font-size: 14px;
  line-height: 16px;
}

.footer-wrapper {
  max-width: 1440px;
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 20px;
  display: block;
}

.footer-text {
  color: var(--grey);
  font-family: Open Sans, sans-serif;
  font-size: 1rem;
  line-height: 1.5rem;
  display: block;
}

.logo {
  color: var(--color);
  max-width: none;
  margin-bottom: 0;
  font-family: Julius Sans One, sans-serif;
  font-size: 1.5rem;
}

.logo.mobile {
  display: none;
}

.footer-contact-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.image-5 {
  max-width: 5%;
}

.div-block {
  display: flex;
}

.footer-info {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  display: flex;
}

.link {
  text-decoration: none;
}

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

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

.footer-light {
  border-bottom: 1px solid #e4ebf3;
  padding: 80px 30px 40px;
  position: relative;
}

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

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

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

.footer-title {
  font-size: 18px;
  font-weight: 500;
  line-height: 32px;
}

.footer-link-two {
  color: #1a1b1f;
  margin-top: 20px;
  text-decoration: none;
}

.footer-link-two:hover {
  color: #1a1b1fbf;
}

.footer-form {
  width: 315px;
  max-width: 100%;
  margin-bottom: 0;
}

.footer-form-block {
  justify-content: center;
  align-items: center;
  margin-top: 24px;
  display: flex;
}

.footer-form-field {
  border: 1px solid #a6b1bf;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  height: 48px;
  margin-bottom: 0;
  padding: 12px 16px;
  font-size: 14px;
  line-height: 22px;
  transition: all .2s;
}

.footer-form-field:hover, .footer-form-field:focus {
  border-color: #76879d;
}

.footer-form-field::placeholder {
  color: #1a1b1fcc;
  font-size: 14px;
  line-height: 22px;
}

.footer-form-submit {
  background-color: #1a1b1f;
  background-image: url('../images/');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  width: 50px;
  height: 48px;
  transition: all .2s;
}

.footer-form-submit:hover {
  background-color: #3a4554;
}

.footer-divider-two {
  background-color: #e4ebf3;
  width: 100%;
  height: 1px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.footer-bottom {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.footer-copyright {
  color: #3a4554;
}

.footer-social-block-two {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  margin-left: 0;
  display: flex;
}

.footer-social-link-2 {
  width: 30px;
  height: 30px;
  margin-left: 0;
}

.social-icon {
  max-width: 5%;
}

.icon {
  max-width: 95%;
}

.icon-footer {
  max-width: 110%;
  transition: all .4s;
}

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

.lottie-animation {
  float: right;
  max-width: none;
  margin-top: 20px;
  margin-right: 20px;
  padding-right: 0;
  position: absolute;
  inset: 0% 0% auto auto;
}

.lottie-link {
  float: right;
  width: 40px;
  height: 40px;
  position: absolute;
  inset: 0% 0% auto auto;
}

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

.footer-message {
  z-index: 2;
  color: var(--grey);
  text-align: center;
  text-transform: none;
  margin-top: 0;
  padding: 20px;
  font-family: Julius Sans One, sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 2rem;
  transition: all .4s;
  position: relative;
}

.footer-message:hover {
  color: var(--color);
  transform: scale(1.2);
}

.link-block-3 {
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: auto;
  margin-top: 40px;
  padding-top: 140px;
  padding-bottom: 140px;
  display: flex;
  position: relative;
}

.lottie-animation-2 {
  z-index: 0;
  opacity: .1;
  display: block;
  position: absolute;
  inset: 0%;
}

.scale-img {
  transition: all .4s;
}

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

.text-span, .text-span-2 {
  font-size: 2rem;
}

.text-span-3 {
  font-size: 2.5rem;
}

.navbar-logo-center {
  display: none;
}

.navbar-logo-center-container {
  z-index: 5;
  background-color: #0000;
  width: 1030px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
}

.navbar-logo-center-container.shadow-three {
  width: 100%;
  max-width: 1140px;
}

.navbar-wrapper-three {
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.navbar-brand-three {
  z-index: 5;
  position: absolute;
}

.nav-menu-wrapper-three {
  width: 100%;
}

.nav-menu-three {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
  display: flex;
}

.nav-menu-block {
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  display: flex;
}

.nav-link {
  color: #1a1b1f;
  letter-spacing: .25px;
  margin-left: 5px;
  margin-right: 5px;
  padding: 5px 10px;
  font-size: 14px;
  line-height: 20px;
  text-decoration: none;
}

.nav-link:hover {
  color: #1a1b1fbf;
}

.nav-link:focus-visible {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 4px;
  outline: 2px solid #0050bd;
}

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

.nav-dropdown {
  margin-left: 5px;
  margin-right: 5px;
}

.nav-dropdown-toggle {
  letter-spacing: .25px;
  padding: 5px 30px 5px 10px;
  font-size: 14px;
  line-height: 20px;
}

.nav-dropdown-toggle:hover {
  color: #1a1b1fbf;
}

.nav-dropdown-toggle:focus-visible {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.nav-dropdown-toggle[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.nav-dropdown-icon {
  margin-right: 10px;
}

.nav-dropdown-list {
  background-color: #fff;
  border-radius: 12px;
}

.nav-dropdown-list.w--open {
  padding-top: 10px;
  padding-bottom: 10px;
}

.nav-dropdown-link {
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 14px;
}

.nav-dropdown-link:focus-visible {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

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

.nav-link-accent {
  color: #1a1b1f;
  letter-spacing: .25px;
  margin-left: 5px;
  margin-right: 20px;
  padding: 5px 10px;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
}

.nav-link-accent:hover {
  color: #1a1b1fbf;
}

.button-primary {
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #1a1b1f;
  padding: 12px 25px;
  font-size: 12px;
  line-height: 20px;
  transition: all .2s;
}

.button-primary:hover {
  color: #fff;
  background-color: #32343a;
}

.button-primary:active {
  background-color: #43464d;
}

.lottie-animation-5 {
  max-width: 6%;
  padding-top: 20px;
  padding-right: 20px;
  display: none;
  position: absolute;
  inset: 0% 0% auto auto;
}

.lottie-animation-6 {
  max-width: none;
}

.body-2 {
  background-color: var(--main-black);
  margin-top: 0;
}

.section {
  flex-flow: column;
  justify-content: space-between;
  height: auto;
  margin-top: 40px;
  margin-left: 40px;
  margin-right: 40px;
  display: block;
}

.contact-wrapper {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  height: auto;
  padding-top: 60px;
  padding-bottom: 60px;
  display: grid;
}

.flex-contact {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.div-block-2 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  display: flex;
}

.chess-queen {
  opacity: .15;
  max-width: 50%;
  position: absolute;
  inset: 15% auto auto -5%;
}

@media screen and (min-width: 1280px) {
  .hero-section {
    background-repeat: no-repeat;
    padding-top: 40px;
  }

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

  .navlink-container {
    grid-column-gap: 5rem;
    grid-row-gap: 5rem;
    justify-content: center;
  }

  .service-section {
    padding-top: 140px;
  }

  .cell-content {
    justify-content: flex-start;
  }

  .contact-wrapper {
    height: auto;
  }
}

@media screen and (min-width: 1440px) {
  .navlink {
    font-size: 1.2rem;
  }

  .main-buttom {
    padding: 20px;
    font-size: 1.2rem;
  }

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

  .grid-cell {
    padding-bottom: 30px;
  }
}

@media screen and (min-width: 1920px) {
  .hero-section {
    flex-flow: column;
  }

  .white-small-hero-text, .navlink {
    font-size: 1.5rem;
  }

  .main-buttom {
    padding: 15px 20px;
    font-size: 1.5rem;
  }

  .about-us-section {
    background-position: 50% 0;
    padding-left: 100px;
    padding-right: 100px;
  }

  .black-heading {
    max-width: none;
  }

  .heading-wrapper, .info-wrapper {
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
  }

  .contact-section, .footer-wrapper {
    max-width: none;
  }

  .logo {
    font-size: 2rem;
  }

  .chess-queen {
    opacity: .15;
  }
}

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

  h2 {
    font-size: 4rem;
  }

  h3 {
    font-size: 2rem;
  }

  h4 {
    font-size: 1.2rem;
  }

  ul {
    padding-left: 10px;
    padding-right: 10px;
  }

  .hero-section {
    background-position: -50px 0;
  }

  .navbar {
    z-index: 2;
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    background-color: var(--main-black);
    flex-flow: column;
    grid-template-rows: auto;
    grid-template-columns: .5fr .25fr .5fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    align-items: center;
    margin-top: 0;
    display: flex;
    position: absolute;
    inset: 0%;
    transform: translate(0, -100%);
  }

  .navbar.mobile {
    z-index: 1;
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
    background-color: #02020200;
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 40px;
    padding-left: 0;
    display: block;
    position: relative;
    inset: 0% 0% auto;
    transform: translate(0);
  }

  .logo-container, .logo-container.mobile {
    display: block;
  }

  .logo-container.mobile.with-padding.w--current {
    padding-top: 20px;
  }

  .navlink-container {
    flex-flow: column;
    justify-content: space-around;
    align-items: flex-start;
  }

  .navlink-container.mobile {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    background-color: var(--main-black);
    justify-content: space-around;
    align-items: center;
    width: 100%;
    height: 100%;
  }

  .hero-upper-text-small {
    font-size: 1.5rem;
  }

  .heading {
    font-size: 8rem;
  }

  .white-small-hero-text {
    font-size: 1rem;
  }

  .navlink {
    font-size: 3rem;
    line-height: 3rem;
  }

  .navlink.mobile {
    text-align: left;
    font-size: 4rem;
    line-height: 4rem;
  }

  .main-buttom {
    padding: 20px;
    font-size: 2rem;
  }

  .main-buttom.mobile {
    padding: 20px 40px;
    font-size: 2rem;
    display: none;
  }

  .service-section {
    padding-left: 40px;
    padding-right: 40px;
  }

  .cell-content {
    padding-left: 20px;
    padding-right: 20px;
  }

  .cell-content.vertical {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .subheading-wrapper {
    margin-top: 0;
  }

  .info-wrapper {
    margin-top: 40px;
  }

  .work-section {
    padding-left: 40px;
    padding-right: 40px;
  }

  .grid-work {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }

  .contact-section {
    background-image: linear-gradient(#02020280, #02020280), url('../images/chess-bcg-greyscale_1.avif');
    background-position: 0 0, 50%;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
  }

  .container {
    max-width: 728px;
  }

  .footer-content {
    grid-column-gap: 60px;
  }

  .heading-5 {
    font-size: 3rem;
  }

  .heading-6 {
    font-size: 2rem;
  }

  .container-2 {
    max-width: 728px;
  }

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

  .footer-form {
    width: 100%;
    margin-top: 40px;
  }

  .footer-form-container {
    max-width: 350px;
  }

  .lottie-animation-3 {
    z-index: 1;
    max-width: 7%;
    margin-top: 20px;
    margin-right: 0;
    position: absolute;
    inset: 0% 0% auto auto;
  }

  .navbar-logo-center {
    display: block;
  }

  .navbar-logo-center-container.shadow-three {
    max-width: none;
    padding-left: 0;
    padding-right: 0;
  }

  .navbar-wrapper-three {
    justify-content: space-between;
  }

  .navbar-brand-three {
    position: relative;
  }

  .nav-menu-wrapper-three {
    background-color: #0000;
    top: 70px;
  }

  .nav-menu-three {
    background-color: #fff;
    border-radius: 50px;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    padding: 20px;
    display: flex;
    box-shadow: 0 8px 50px #0000000d;
  }

  .nav-link {
    padding-left: 5px;
    padding-right: 5px;
  }

  .nav-dropdown-list.shadow-three.w--open {
    position: absolute;
  }

  .menu-button {
    padding: 12px;
  }

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

  .lottie-animation-4 {
    float: right;
    max-width: 10%;
  }

  .lottie-animation-5 {
    z-index: 3;
    cursor: pointer;
    max-width: 10%;
    display: block;
  }

  .chess-queen {
    max-width: 60%;
    left: -10%;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 6rem;
    line-height: 4rem;
  }

  h2 {
    font-size: 3rem;
  }

  h3 {
    padding-left: 10px;
    font-size: 1.8rem;
  }

  .hero-section {
    background-image: linear-gradient(#0000, #0000);
    padding-left: 40px;
    padding-right: 40px;
  }

  .navbar {
    z-index: 2;
  }

  .hero-upper-text-small {
    font-size: 1.3rem;
  }

  .service-section {
    padding-top: 60px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .flex-wrapper-center {
    max-width: 10%;
  }

  .about-us-section {
    padding-left: 10px;
    padding-right: 10px;
  }

  .subheading-wrapper {
    margin-top: 0;
  }

  .info-wrapper {
    margin-top: 40px;
  }

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

  .contact-section {
    margin-top: 60px;
    padding-top: 20px;
  }

  .footer-dark {
    padding-left: 15px;
    padding-right: 15px;
  }

  .footer-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .footer-content {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

  .footer-block {
    align-items: center;
  }

  .footer-link:hover {
    color: #1a1b1fbf;
  }

  .footer-social-block {
    margin-top: 20px;
    margin-left: -20px;
  }

  .footer-social-link {
    margin-left: 20px;
  }

  .footer-divider {
    margin-top: 60px;
  }

  .footer-light {
    padding-left: 15px;
    padding-right: 15px;
  }

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

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

  .footer-social-block-two {
    margin-top: 20px;
  }

  .footer-social-link-2 {
    margin-left: 0;
  }

  .link-block-3 {
    margin-top: 20px;
  }

  .navbar-brand-three {
    padding-left: 0;
  }

  .nav-menu-three {
    border-radius: 20px;
    flex-direction: column;
    padding-bottom: 30px;
  }

  .nav-menu-block {
    flex-direction: column;
  }

  .nav-link {
    padding-top: 10px;
    padding-bottom: 10px;
    display: inline-block;
  }

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

  .nav-dropdown-toggle {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .nav-dropdown-list.shadow-three {
    box-shadow: 0 8px 50px #0000000d;
  }

  .nav-dropdown-list.shadow-three.w--open {
    position: relative;
  }

  .nav-dropdown-list.shadow-three.mobile-shadow-hide {
    box-shadow: none;
  }

  .nav-link-accent {
    margin-right: 5px;
    padding-top: 10px;
    padding-bottom: 10px;
    display: inline-block;
  }

  .mobile-margin-top-10 {
    margin-top: 10px;
  }

  .lottie-animation-5 {
    z-index: 2;
    max-width: 13%;
  }

  .section {
    margin-left: 20px;
    margin-right: 20px;
  }

  .contact-wrapper, .flex-contact {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .chess-queen {
    max-width: 80%;
    inset: 10% auto auto -17%;
  }
}

@media screen and (max-width: 479px) {
  .hero-section {
    background-image: linear-gradient(#0000, #0000);
    padding-left: 10px;
    padding-right: 10px;
  }

  .logo-container.w--current {
    display: none;
  }

  .logo-container.mobile.w--current {
    display: block;
  }

  .logo-container.mobile.with-padding.w--current {
    padding-top: 10px;
    display: block;
  }

  .hero-flex-wrapper {
    height: 70vh;
  }

  .flex-wrapper-center {
    max-width: 15%;
  }

  .services-grid {
    grid-row-gap: 2rem;
    flex-flow: column;
    display: flex;
  }

  .cell-content {
    flex-flow: column;
  }

  .about-us-section {
    margin-top: 40px;
    padding-top: 20px;
    padding-bottom: 40px;
  }

  .black-heading {
    line-height: 3rem;
  }

  .subheading-wrapper {
    margin-top: 0;
  }

  .info-wrapper {
    margin-top: 20px;
  }

  .work-section {
    margin-top: 20px;
    padding-top: 10px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .contact-section {
    margin-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .container {
    max-width: none;
  }

  .logo {
    font-size: 1rem;
  }

  .heading-7 {
    font-size: 3.8rem;
    line-height: 2rem;
  }

  .container-2 {
    max-width: none;
  }

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

  .footer-block-two {
    margin-top: 40px;
  }

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

  .footer-social-block-two {
    margin-top: 20px;
  }

  .footer-social-link-2 {
    margin-left: 0;
  }

  .footer-message {
    font-size: 1.5rem;
  }

  .link-block-3 {
    margin-top: 10px;
    padding-top: 60px;
    padding-bottom: 60px;
  }

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

  .footer-heading2 {
    text-align: center;
    line-height: 3rem;
  }

  .nav-menu-three {
    flex-direction: column;
  }

  .lottie-animation-5 {
    z-index: 3;
    max-width: 20%;
  }

  .contact-wrapper {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    display: flex;
  }

  .chess-queen {
    max-width: 90%;
    top: 21%;
  }
}

#w-node-_0ad19f13-da64-6763-eb2c-c0a248025b34-f8cbc5cf {
  place-self: center;
}

#w-node-f78dc8ed-ebeb-6271-119b-d5d765f43302-f8cbc5cf, #w-node-_81be4326-eb61-9920-06f0-bc40a956b757-f8cbc5cf {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-e9e1cfb8-7237-ffcc-c05d-c6e99d7fa9cb-f8cbc5cf, #w-node-_9bc33ee4-a66e-207a-411d-8d460039dc98-f8cbc5cf, #w-node-c8dcd5c9-965a-b464-bcef-f5adb4149dbe-f8cbc5cf, #w-node-_0884069e-960f-6b8b-b652-4fd1d16c1e44-f8cbc5cf, #w-node-_65bdeeb1-5101-a25c-c951-21140caf86dc-f8cbc5cf, #w-node-e0aa98b6-7880-8a81-17b8-37b154c7b7f8-f8cbc5cf, #w-node-f8cc8abb-0928-efbd-e975-2b92385bccb3-f8cbc5cf, #w-node-_8fb5a4d7-7c1b-17da-dac7-4921fec30e75-f8cbc5cf {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e9bd4eb1-c77a-9c04-f6ed-1b299b599887-4a229b5c {
  place-self: center start;
}

#w-node-bfd09da1-043e-deb8-b564-510b847f032e-4a229b5c {
  grid-area: span 1 / span 2 / span 1 / span 2;
}


