* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: "Vidaloka", serif;
  overflow-x: hidden;
}

h1 {
  font-size: 8rem;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
}

h2 {
  font-size: 3rem;
}

h3 {
  font-size: 2.5rem;
}

h4 {
  font-size: 1.5rem;
}

a,
li {
  font-size: 1.5rem;
  text-decoration: none;
}

h5 {
  font-size: 1.2rem;
  font-family: "Poppins", sans-serif;
}

p {
  font-size: 1rem;
  font-family: "Poppins", sans-serif;
}

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

@media screen and (max-width: 1024px) {
  h1 {
    font-size: 4rem;
  }
  h2 {
    font-size: 2rem;
  }
  h3 {
    font-size: 1.5rem;
  }
  h4 {
    font-size: 1rem;
  }
  a,
  li {
    font-size: 1rem;
    text-decoration: none;
  }
  h5 {
    font-size: 0.9rem;
  }
  p {
    font-size: 0.8rem;
    font-family: "Poppins", sans-serif;
  }
}

* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: "Vidaloka", serif;
  overflow-x: hidden;
}

h1 {
  font-size: 8rem;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
}

h2 {
  font-size: 3rem;
}

h3 {
  font-size: 2.5rem;
}

h4 {
  font-size: 1.5rem;
}

a,
li {
  font-size: 1.5rem;
  text-decoration: none;
}

h5 {
  font-size: 1.2rem;
  font-family: "Poppins", sans-serif;
}

p {
  font-size: 1rem;
  font-family: "Poppins", sans-serif;
}

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

@media screen and (max-width: 1024px) {
  h1 {
    font-size: 4rem;
  }
  h2 {
    font-size: 2rem;
  }
  h3 {
    font-size: 1.5rem;
  }
  h4 {
    font-size: 1rem;
  }
  a,
  li {
    font-size: 1rem;
    text-decoration: none;
  }
  h5 {
    font-size: 0.9rem;
  }
  p {
    font-size: 0.8rem;
    font-family: "Poppins", sans-serif;
  }
}

.horizontal-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: rgba(255, 255, 255, 0.44);
  -webkit-backdrop-filter: blur(13px);
          backdrop-filter: blur(13px);
  z-index: 10;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.horizontal-navbar .logo {
  padding: 0 3rem;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.horizontal-navbar .logo img {
  height: 50px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.horizontal-navbar ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.horizontal-navbar ul li {
  padding: 0 2rem;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.horizontal-navbar ul li a {
  color: #707070;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.menu-container {
  position: fixed;
  top: 0;
  right: 30px;
  height: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: none;
  z-index: 20;
}

.menu-container .hamburger-menu {
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.menu-container .hamburger-menu .line {
  width: 100%;
  height: 3px;
  background-color: #4a4a4a;
  border-radius: 10px;
}

.vertical-navbar {
  position: fixed;
  top: -100%;
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: rgba(255, 255, 255, 0.44);
  -webkit-backdrop-filter: blur(13px);
          backdrop-filter: blur(13px);
  z-index: 15;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.vertical-navbar ul {
  list-style: none;
  text-align: center;
}

.vertical-navbar ul li {
  padding: 1rem 0;
}

.vertical-navbar ul li a {
  color: #707070;
}

.active {
  top: 0;
}

@media screen and (max-width: 960px) {
  .horizontal-navbar ul {
    display: none;
  }
}

@media screen and (max-width: 960px) {
  .menu-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.banner {
  position: relative;
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.banner h1 {
  font-family: "Poppins", sans-serif;
  z-index: 1;
}

.banner #lady,
.banner #ladder-man,
.banner #birds {
  position: absolute;
}

.banner #lady {
  left: 7%;
  bottom: 15%;
  max-width: 960px;
  width: 43%;
  min-width: 576px;
  -o-object-fit: contain;
     object-fit: contain;
}

.banner #ladder-man {
  top: 25%;
  right: 5%;
  max-width: 480px;
  width: 23%;
  min-width: 360px;
  -o-object-fit: contain;
     object-fit: contain;
}

.banner #birds {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  top: 90px;
}

.banner .clouds-illustrations {
  position: absolute;
  top: 50%;
  right: 0;
  z-index: -1;
}

.banner .clouds-illustrations img {
  width: 50%;
  height: 60vh;
  -o-object-fit: contain;
     object-fit: contain;
}

.banner .clouds-illustrations #Vector {
  -webkit-transition-property: preserve-3d;
  transition-property: preserve-3d;
  -webkit-animation: cloud1 60s ease-in-out infinite;
          animation: cloud1 60s ease-in-out infinite;
}

.banner .clouds-illustrations #Vector_2 {
  -webkit-transition-property: preserve-3d;
  transition-property: preserve-3d;
  -webkit-animation: cloud2 50s ease-in-out infinite;
          animation: cloud2 50s ease-in-out infinite;
}

.banner .clouds-illustrations #XMLID_46 {
  -webkit-transition-property: preserve-3d;
  transition-property: preserve-3d;
  -webkit-animation: cloud3 43s ease-in-out infinite;
          animation: cloud3 43s ease-in-out infinite;
}

.banner .clouds-illustrations #Vector_3 {
  -webkit-transition-property: preserve-3d;
  transition-property: preserve-3d;
  -webkit-animation: cloud5 90s ease-in-out infinite;
          animation: cloud5 90s ease-in-out infinite;
}

.banner .clouds-illustrations #Vector_4 {
  -webkit-transition-property: preserve-3d;
  transition-property: preserve-3d;
  -webkit-animation: cloud4 40s ease-in-out infinite;
          animation: cloud4 40s ease-in-out infinite;
}

@-webkit-keyframes cloud1 {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  20% {
    -webkit-transform: translate3d(-5%, 1%, 5px);
            transform: translate3d(-5%, 1%, 5px);
  }
  40% {
    -webkit-transform: translate3d(7%, 2%, 7px);
            transform: translate3d(7%, 2%, 7px);
  }
  60% {
    -webkit-transform: translate3d(4%, 2.5%, -1px);
            transform: translate3d(4%, 2.5%, -1px);
  }
  80% {
    -webkit-transform: translate3d(2%, 1.5%, 3px);
            transform: translate3d(2%, 1.5%, 3px);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@keyframes cloud1 {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  20% {
    -webkit-transform: translate3d(-5%, 1%, 5px);
            transform: translate3d(-5%, 1%, 5px);
  }
  40% {
    -webkit-transform: translate3d(7%, 2%, 7px);
            transform: translate3d(7%, 2%, 7px);
  }
  60% {
    -webkit-transform: translate3d(4%, 2.5%, -1px);
            transform: translate3d(4%, 2.5%, -1px);
  }
  80% {
    -webkit-transform: translate3d(2%, 1.5%, 3px);
            transform: translate3d(2%, 1.5%, 3px);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes cloud2 {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  20% {
    -webkit-transform: translate3d(10%, 5%, 3px);
            transform: translate3d(10%, 5%, 3px);
  }
  40% {
    -webkit-transform: translate3d(7%, 7%, 5px);
            transform: translate3d(7%, 7%, 5px);
  }
  60% {
    -webkit-transform: translate3d(8%, 10%, 2px);
            transform: translate3d(8%, 10%, 2px);
  }
  80% {
    -webkit-transform: translate3d(5%, 7%, 0px);
            transform: translate3d(5%, 7%, 0px);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@keyframes cloud2 {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  20% {
    -webkit-transform: translate3d(10%, 5%, 3px);
            transform: translate3d(10%, 5%, 3px);
  }
  40% {
    -webkit-transform: translate3d(7%, 7%, 5px);
            transform: translate3d(7%, 7%, 5px);
  }
  60% {
    -webkit-transform: translate3d(8%, 10%, 2px);
            transform: translate3d(8%, 10%, 2px);
  }
  80% {
    -webkit-transform: translate3d(5%, 7%, 0px);
            transform: translate3d(5%, 7%, 0px);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes cloud3 {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  20% {
    -webkit-transform: translate3d(-30%, 2%, 1px);
            transform: translate3d(-30%, 2%, 1px);
  }
  40% {
    -webkit-transform: translate3d(25%, 3%, 5px);
            transform: translate3d(25%, 3%, 5px);
  }
  60% {
    -webkit-transform: translate3d(15%, -2%, 2px);
            transform: translate3d(15%, -2%, 2px);
  }
  80% {
    -webkit-transform: translate3d(5%, 7%, 0px);
            transform: translate3d(5%, 7%, 0px);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@keyframes cloud3 {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  20% {
    -webkit-transform: translate3d(-30%, 2%, 1px);
            transform: translate3d(-30%, 2%, 1px);
  }
  40% {
    -webkit-transform: translate3d(25%, 3%, 5px);
            transform: translate3d(25%, 3%, 5px);
  }
  60% {
    -webkit-transform: translate3d(15%, -2%, 2px);
            transform: translate3d(15%, -2%, 2px);
  }
  80% {
    -webkit-transform: translate3d(5%, 7%, 0px);
            transform: translate3d(5%, 7%, 0px);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes cloud4 {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  33% {
    -webkit-transform: translate3d(-7%, 1%, 1px);
            transform: translate3d(-7%, 1%, 1px);
  }
  66% {
    -webkit-transform: translate3d(4%, 0%, 5px);
            transform: translate3d(4%, 0%, 5px);
  }
  60% {
    -webkit-transform: translate3d(1%, -2%, 2px);
            transform: translate3d(1%, -2%, 2px);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@keyframes cloud4 {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  33% {
    -webkit-transform: translate3d(-7%, 1%, 1px);
            transform: translate3d(-7%, 1%, 1px);
  }
  66% {
    -webkit-transform: translate3d(4%, 0%, 5px);
            transform: translate3d(4%, 0%, 5px);
  }
  60% {
    -webkit-transform: translate3d(1%, -2%, 2px);
            transform: translate3d(1%, -2%, 2px);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes cloud5 {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  50% {
    -webkit-transform: translate3d(100%, -30%, 2px);
            transform: translate3d(100%, -30%, 2px);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@keyframes cloud5 {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  50% {
    -webkit-transform: translate3d(100%, -30%, 2px);
            transform: translate3d(100%, -30%, 2px);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

.mobile-banner {
  width: 100%;
  height: 100vh;
  position: relative;
  top: 0;
  left: 0;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.mobile-banner h1 {
  position: absolute;
  top: 20%;
}

.mobile-banner img {
  position: absolute;
  bottom: 0;
  margin: 0 auto;
  width: 80%;
  -o-object-fit: contain;
     object-fit: contain;
}

.what-we-do {
  position: relative;
  width: 100%;
  margin: 10rem 0;
}

.what-we-do .heading {
  padding-bottom: 5rem;
  width: 80%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.what-we-do .heading h2 {
  position: absolute;
  background-color: #fff;
  padding: 0 2rem;
}

.what-we-do .heading .yellow-line {
  width: 100%;
  height: 5px;
  background-color: #fcc85f;
}

.what-we-do .container .row {
  padding: 5rem 0;
}

.what-we-do .container .row .image-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.what-we-do .container .row .image-container .image-background {
  position: relative;
  width: 300px;
  height: 300px;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.what-we-do .container .row .image-container .image-background img {
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: translateZ(100px);
          transform: translateZ(100px);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.what-we-do .container .row .image-container .image-background-color-1 {
  background: radial-gradient(#e7ecef, #ccdde7);
}

.what-we-do .container .row .image-container .image-background-color-2 {
  background: radial-gradient(#f7fdff, #d8d8d8);
}

.what-we-do .container .row .image-container .image-background-color-3 {
  background: radial-gradient(#eaeaea, #d0d0d0);
}

.what-we-do .container .row .what-we-do-text h3 {
  padding-bottom: 1.5rem;
  color: #4a4a4a;
}

.what-we-do .container .row .what-we-do-text p {
  color: #4a4a4a;
}

.what-we-do .container .row .what-we-do-text .explore-button-container {
  padding-top: 1rem;
}

.what-we-do .container .row .what-we-do-text .explore-button-container .explore-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
}

.what-we-do .container .row .what-we-do-text .explore-button-container .explore-button ul li {
  margin: 0 0 24px;
  list-style: none;
}

.what-we-do .container .row .what-we-do-text .explore-button-container .explore-button ul li .the-arrow {
  width: 2px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.what-we-do .container .row .what-we-do-text .explore-button-container .explore-button ul li .the-arrow.-left {
  position: absolute;
  top: 60%;
  left: 0;
}

.what-we-do .container .row .what-we-do-text .explore-button-container .explore-button ul li .the-arrow.-left > .shaft {
  width: 0;
  background-color: #bd9245;
}

.what-we-do .container .row .what-we-do-text .explore-button-container .explore-button ul li .the-arrow.-left > .shaft:before, .what-we-do .container .row .what-we-do-text .explore-button-container .explore-button ul li .the-arrow.-left > .shaft:after {
  width: 0;
  background-color: #bd9245;
}

.what-we-do .container .row .what-we-do-text .explore-button-container .explore-button ul li .the-arrow.-left > .shaft:before {
  -webkit-transform: rotate(0);
          transform: rotate(0);
}

.what-we-do .container .row .what-we-do-text .explore-button-container .explore-button ul li .the-arrow.-left > .shaft:after {
  -webkit-transform: rotate(0);
          transform: rotate(0);
}

.what-we-do .container .row .what-we-do-text .explore-button-container .explore-button ul li .the-arrow.-right {
  top: 3px;
}

.what-we-do .container .row .what-we-do-text .explore-button-container .explore-button ul li .the-arrow.-right > .shaft {
  width: 2px;
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.what-we-do .container .row .what-we-do-text .explore-button-container .explore-button ul li .the-arrow.-right > .shaft:before, .what-we-do .container .row .what-we-do-text .explore-button-container .explore-button ul li .the-arrow.-right > .shaft:after {
  width: 8px;
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}

.what-we-do .container .row .what-we-do-text .explore-button-container .explore-button ul li .the-arrow.-right > .shaft:before {
  -webkit-transform: rotate(40deg);
          transform: rotate(40deg);
}

.what-we-do .container .row .what-we-do-text .explore-button-container .explore-button ul li .the-arrow.-right > .shaft:after {
  -webkit-transform: rotate(-40deg);
          transform: rotate(-40deg);
}

.what-we-do .container .row .what-we-do-text .explore-button-container .explore-button ul li .the-arrow > .shaft {
  background-color: #bd9245;
  display: block;
  height: 2px;
  position: relative;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transition-delay: 0;
          transition-delay: 0;
  will-change: transform;
}

.what-we-do .container .row .what-we-do-text .explore-button-container .explore-button ul li .the-arrow > .shaft:before, .what-we-do .container .row .what-we-do-text .explore-button-container .explore-button ul li .the-arrow > .shaft:after {
  background-color: #bd9245;
  content: "";
  display: block;
  height: 2px;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

.what-we-do .container .row .what-we-do-text .explore-button-container .explore-button ul li .the-arrow > .shaft:before {
  -webkit-transform-origin: top right;
          transform-origin: top right;
}

.what-we-do .container .row .what-we-do-text .explore-button-container .explore-button ul li .the-arrow > .shaft:after {
  -webkit-transform-origin: bottom right;
          transform-origin: bottom right;
}

.what-we-do .container .row .what-we-do-text .explore-button-container .explore-button ul li .animated-arrow {
  display: inline-block;
  color: #bd9245;
  font-size: 24px;
  font-weight: 400;
  text-decoration: none;
  position: relative;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.what-we-do .container .row .what-we-do-text .explore-button-container .explore-button ul li .animated-arrow:hover {
  color: #bd9245;
}

.what-we-do .container .row .what-we-do-text .explore-button-container .explore-button ul li .animated-arrow:hover > .the-arrow.-left > .shaft {
  width: 64px;
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
  background-color: #bd9245;
}

.what-we-do .container .row .what-we-do-text .explore-button-container .explore-button ul li .animated-arrow:hover > .the-arrow.-left > .shaft:before, .what-we-do .container .row .what-we-do-text .explore-button-container .explore-button ul li .animated-arrow:hover > .the-arrow.-left > .shaft:after {
  width: 8px;
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
  background-color: #bd9245;
}

.what-we-do .container .row .what-we-do-text .explore-button-container .explore-button ul li .animated-arrow:hover > .the-arrow.-left > .shaft:before {
  -webkit-transform: rotate(40deg);
          transform: rotate(40deg);
}

.what-we-do .container .row .what-we-do-text .explore-button-container .explore-button ul li .animated-arrow:hover > .the-arrow.-left > .shaft:after {
  -webkit-transform: rotate(-40deg);
          transform: rotate(-40deg);
}

.what-we-do .container .row .what-we-do-text .explore-button-container .explore-button ul li .animated-arrow:hover > .main {
  -webkit-transform: translateX(18px);
          transform: translateX(18px);
  -webkit-transform: translateX(80px);
          transform: translateX(80px);
}

.what-we-do .container .row .what-we-do-text .explore-button-container .explore-button ul li .animated-arrow:hover > .main > .the-arrow.-right > .shaft {
  width: 0;
  -webkit-transform: translateX(200%);
          transform: translateX(200%);
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

.what-we-do .container .row .what-we-do-text .explore-button-container .explore-button ul li .animated-arrow:hover > .main > .the-arrow.-right > .shaft:before, .what-we-do .container .row .what-we-do-text .explore-button-container .explore-button ul li .animated-arrow:hover > .main > .the-arrow.-right > .shaft:after {
  width: 0;
  -webkit-transition-delay: 0;
          transition-delay: 0;
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

.what-we-do .container .row .what-we-do-text .explore-button-container .explore-button ul li .animated-arrow:hover > .main > .the-arrow.-right > .shaft:before {
  -webkit-transform: rotate(0);
          transform: rotate(0);
}

.what-we-do .container .row .what-we-do-text .explore-button-container .explore-button ul li .animated-arrow:hover > .main > .the-arrow.-right > .shaft:after {
  -webkit-transform: rotate(0);
          transform: rotate(0);
}

.what-we-do .container .row .what-we-do-text .explore-button-container .explore-button ul li .animated-arrow > .main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.what-we-do .container .row .what-we-do-text .explore-button-container .explore-button ul li .animated-arrow > .main > .text {
  margin: 0 16px 0 0;
  line-height: 1;
}

.what-we-do .container .row .what-we-do-text .explore-button-container .explore-button ul li .animated-arrow > .main > .the-arrow {
  position: relative;
}

.our-works {
  position: relative;
  width: 100%;
  margin: 10rem 0;
}

.our-works .heading {
  padding-bottom: 5rem;
  width: 80%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.our-works .heading h2 {
  position: absolute;
  background-color: #fff;
  padding: 0 2rem;
}

.our-works .heading .yellow-line {
  width: 100%;
  height: 5px;
  background-color: #fcc85f;
}

.our-works .container {
  position: relative;
  padding: 6rem 0;
  z-index: 2;
}

.our-works .container .row {
  margin: 0;
  padding: 0;
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.our-works .container .row .square-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  background-color: #707070;
}

.our-works .container .row .square-image .image-1 {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(https://ik.imagekit.io/abso1u7e/portfolio/Portfolio_Page/Portfolio_1_Bw8NwdD959.jpg?updatedAt=1626944911192);
}

.our-works .container .row .square-image .image-3 {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(https://ik.imagekit.io/abso1u7e/portfolio/Portfolio_Page/Portfolio_3_rwISSKnr6.jpg?updatedAt=1626944897564);
}

.our-works .container .row .square-image .image-5 {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(https://ik.imagekit.io/abso1u7e/portfolio/Portfolio_Page/Portfolio_5_nRT_lyahC.jpg?updatedAt=1626944910686);
}

.our-works .container .row .square-image .image-7 {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(https://ik.imagekit.io/abso1u7e/portfolio/Portfolio_Page/Portfolio_7_DO8bCfSco.jpg?updatedAt=1626944913167);
}

.our-works .container .row .square-image .image-9 {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(https://ik.imagekit.io/abso1u7e/portfolio/Portfolio_Page/Portfolio_9_FIsDm7BP8.jpg?updatedAt=1626944914034);
}

.our-works .container .row .square-image .overlay {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.our-works .container .row .square-image .overlay .action {
  position: absolute;
  bottom: 10%;
  top: 10%;
  right: 10%;
  left: 10%;
  border: 1px solid #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: rgba(255, 255, 255, 0.44);
  -webkit-backdrop-filter: blur(13px);
          backdrop-filter: blur(13px);
  text-align: center;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.our-works .container .row .square-image .overlay .action .action-text h4 {
  font-size: 1.2rem;
  color: #3e3e3e;
  padding: 0.6rem 0;
  font-family: "Vidaloka", serif;
}

.our-works .container .row .square-image .overlay .action .action-text button {
  background: none;
  outline: none;
  border: none;
}

.our-works .container .row .square-image .overlay .action .action-text button a {
  font-family: "Vidaloka", serif;
  font-size: 1.5rem;
  text-decoration: none;
  color: #bd4545;
}

.our-works .container .row .square-image .overlay:hover .action {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.our-works .container .row .rectangle-image {
  width: 100%;
  aspect-ratio: 1/2;
  background-color: #707070;
}

.our-works .container .row .rectangle-image .image-2 {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(https://ik.imagekit.io/abso1u7e/portfolio/Portfolio_Page/Portfolio_2_kM6vspItb.jpg?updatedAt=1626944899890);
}

.our-works .container .row .rectangle-image .image-4 {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(https://ik.imagekit.io/abso1u7e/portfolio/Portfolio_Page/Portfolio_4_R0f8i83t1.jpg?updatedAt=1626944897288);
}

.our-works .container .row .rectangle-image .image-6 {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(https://ik.imagekit.io/abso1u7e/portfolio/Portfolio_Page/Portfolio_6_kIl_miZTi.jpg?updatedAt=1626944902834);
}

.our-works .container .row .rectangle-image .image-8 {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(https://ik.imagekit.io/abso1u7e/portfolio/Portfolio_Page/Portfolio_8_efNxld5XT.jpg?updatedAt=1626944908505);
}

.our-works .container .row .rectangle-image .overlay {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.our-works .container .row .rectangle-image .overlay .action {
  position: absolute;
  bottom: 10%;
  top: 10%;
  right: 10%;
  left: 10%;
  border: 1px solid #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: rgba(255, 255, 255, 0.44);
  -webkit-backdrop-filter: blur(13px);
          backdrop-filter: blur(13px);
  text-align: center;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.our-works .container .row .rectangle-image .overlay .action .action-text h4 {
  font-size: 1.2rem;
  color: #3e3e3e;
  padding: 0.6rem 0;
  font-family: "Vidaloka", serif;
}

.our-works .container .row .rectangle-image .overlay .action .action-text button {
  background: none;
  outline: none;
  border: none;
}

.our-works .container .row .rectangle-image .overlay .action .action-text button a {
  font-family: "Vidaloka", serif;
  font-size: 1.5rem;
  text-decoration: none;
  color: #bd4545;
}

.our-works .container .row .rectangle-image .overlay:hover .action {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.our-works .container .row .overlay:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.our-works .show-more {
  text-align: center;
}

.our-works .show-more a {
  color: #bd9245;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.our-works .show-more a:hover {
  color: #826e4c;
}

.full {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.full .fullscreen-image {
  height: 70%;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.full .fullscreen-image.open {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.full.open {
  opacity: 1;
  pointer-events: all;
}

.test {
  position: relative;
  width: 100%;
  height: 50vh;
  margin: 10rem 0;
}

.test .heading {
  padding-bottom: 5rem;
  width: 80%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.test .heading h2 {
  position: absolute;
  background-color: #fff;
  padding: 0 2rem;
}

.test .heading .yellow-line {
  width: 100%;
  height: 5px;
  background-color: #fcc85f;
}

.test .slider {
  height: 100%;
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-flow: row nowrap;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.test .slider__nav {
  width: 12px;
  height: 12px;
  margin: 2rem 12px;
  z-index: 10;
  background-color: #ccc;
  border-radius: 50%;
  outline-offset: -6px;
  -webkit-box-shadow: 0 0 0 0 #cba954, 0 0 0 0 #fcc85f;
          box-shadow: 0 0 0 0 #cba954, 0 0 0 0 #fcc85f;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.test .slider__nav:checked {
  -webkit-animation: check 0.4s linear forwards;
  animation: check 0.4s linear forwards;
}

.test .slider__nav:checked:nth-of-type(1) ~ .slider__inner {
  left: 0%;
}

.test .slider__nav:checked:nth-of-type(2) ~ .slider__inner {
  left: -100%;
}

.test .slider__nav:checked:nth-of-type(3) ~ .slider__inner {
  left: -200%;
}

.test .slider__nav:checked:nth-of-type(4) ~ .slider__inner {
  left: -300%;
}

.test .slider__inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 400%;
  height: 100%;
  -webkit-transition: left 0.4s;
  transition: left 0.4s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-flow: row nowrap;
}

.test .slider__contents {
  height: 100%;
  padding: 2rem;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -ms-flex-flow: column nowrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-flow: column nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.test .slider__caption {
  color: #826e4c;
  font-weight: 500;
  margin: 2rem 0 1rem;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  text-transform: uppercase;
}

.test .slider__txt {
  color: #cba954;
  margin-bottom: 3rem;
  max-width: 600px;
  width: 50%;
  min-width: 300px;
}

@-webkit-keyframes check {
  50% {
    background-color: #cba954;
    -webkit-box-shadow: 0 0 0 12px #cba954, 0 0 0 0 #fcc85f;
            box-shadow: 0 0 0 12px #cba954, 0 0 0 0 #fcc85f;
  }
  100% {
    background-color: #cba954;
    -webkit-box-shadow: 0 0 0 0 #cba954, 0 0 0 0 #826e4c;
            box-shadow: 0 0 0 0 #cba954, 0 0 0 0 #826e4c;
  }
}

@keyframes check {
  50% {
    background-color: #cba954;
    -webkit-box-shadow: 0 0 0 12px #cba954, 0 0 0 36px #fcc85f;
            box-shadow: 0 0 0 12px #cba954, 0 0 0 36px #fcc85f;
  }
  100% {
    background-color: #cba954;
    -webkit-box-shadow: 0 0 0 0 #cba954, 0 0 0 0 #826e4c;
            box-shadow: 0 0 0 0 #cba954, 0 0 0 0 #826e4c;
  }
}

.say-hello {
  position: relative;
  width: 100%;
  margin: 10rem 0;
}

.say-hello .heading {
  padding-bottom: 5rem;
  width: 80%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.say-hello .heading h2 {
  position: absolute;
  background-color: #fff;
  padding: 0 2rem;
}

.say-hello .heading .yellow-line {
  width: 100%;
  height: 5px;
  background-color: #fcc85f;
}

.say-hello .contact {
  padding: 0 10rem;
  position: relative;
  width: 100%;
  height: 60vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.say-hello .contact .contact-text {
  width: 40%;
  height: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.say-hello .contact .contact-text a {
  width: 80%;
  font-size: 1.2rem;
  font-family: "poppins", sans-serif;
  color: #826e4c;
}

.say-hello .contact .contact-text h4 {
  font-family: "poppins", sans-serif;
  color: #826e4c;
}

.say-hello .contact .contact-text h4 a {
  font-family: "poppins", sans-serif;
  text-decoration: none;
  color: #826e4c;
}

.say-hello .contact .social-icons {
  margin-top: 1rem;
  width: 250px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.say-hello .contact .social-icons .icon {
  width: 40px;
  height: 40px;
  border: 2px solid #826e4c;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.say-hello .contact .social-icons .icon:hover {
  background-color: #826e4c;
}

.say-hello .contact .social-icons .icon:hover svg path {
  fill: #fff;
}

.say-hello .vertical-yellow-line {
  padding: 0;
  width: 5px;
  height: 80%;
  border-radius: 5px;
  background-color: #fcc85f;
}

.say-hello .contact-form {
  position: relative;
  width: 40%;
  height: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.say-hello .contact-form .alert {
  font-family: "poppins", sans-serif;
  padding: 10px 30px;
  font-weight: 400;
  color: #fff;
  background-color: #43a047;
  display: none;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.say-hello .contact-form .form {
  position: relative;
  height: 80%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  overflow: hidden;
}

.say-hello .contact-form .form .form-name {
  position: relative;
  width: 100%;
}

.say-hello .contact-form .form .form-name input {
  font-family: "poppins", sans-serif;
  width: 100%;
  height: 35px;
  color: #252525;
  border: none;
  outline: none;
  padding-top: 5px;
}

.say-hello .contact-form .form .form-name input::-webkit-outer-spin-button,
.say-hello .contact-form .form .form-name input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.say-hello .contact-form .form .form-name label {
  position: absolute;
  font-family: "poppins", sans-serif;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 35px;
  pointer-events: none;
  border-bottom: 1px solid #bd9245;
}

.say-hello .contact-form .form .form-name label::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 35px;
  width: 100%;
  border-bottom: 3px solid #fcc85f;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.say-hello .contact-form .form .form-name input:focus + .label-name .content-name,
.say-hello .contact-form .form .form-name input:valid + .label-name .content-name {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #fcc85f;
}

.say-hello .contact-form .form .form-name input:focus + .label-name::after,
.say-hello .contact-form .form .form-name input:valid + .label-name::after {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}

.say-hello .contact-form .form .content-name {
  position: absolute;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 1.5px;
  color: #bd9245;
  bottom: 5px;
  left: 0px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.say-hello .contact-form button {
  position: absolute;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #fff;
  border: none;
  bottom: 0;
  right: 0;
  -webkit-transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.say-hello .contact-form button svg path {
  fill: #fcc85f;
}

.say-hello .contact-form button:hover {
  width: 40px;
  height: 40px;
  background-color: #fcc85f;
}

.say-hello .contact-form button:hover svg path {
  fill: #fff;
}

footer {
  position: absolute;
  left: 0;
  width: 100%;
}

footer .links {
  width: 100%;
  height: 20vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  background-color: #f8f4e5;
}

footer .links .social-icons {
  margin-top: 1rem;
  width: 250px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

footer .links .social-icons .icon {
  width: 40px;
  height: 40px;
  border: 2px solid #826e4c;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

footer .links .social-icons .icon:hover {
  background-color: #826e4c;
}

footer .links .social-icons .icon:hover svg path {
  fill: #fff;
}

footer .links .navigation-links {
  width: 500px;
}

footer .links .navigation-links ul {
  padding: 0;
  margin: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  list-style: none;
}

footer .links .navigation-links ul li a {
  text-decoration: none;
  font-family: "poppins", sans-serif;
  color: #826e4c;
}

footer .copyright {
  width: 100%;
  text-align: center;
  padding: 1rem 0;
  background-color: #cba954;
}

footer .copyright p {
  margin: auto 0;
}

/*
@media screen and (max-width: 1440px) {
  .our-wroks {
    .row {
      .col {
        margin: 1rem;
        .square-container {
          margin-bottom: 1rem;
        }
        .rectangle-container {
          margin-bottom: 1rem;
        }
      }
    }
  }
}
*/
@media screen and (max-width: 1024px) {
  .banner {
    display: none;
  }
  .mobile-banner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .our-works .row .col .row {
    margin: 0 auto;
  }
  .say-hello {
    text-align: center;
  }
  .say-hello .contact {
    padding: 0 2rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .say-hello .contact .contact-text {
    width: 100%;
  }
  .say-hello .contact .contact-text a {
    margin: 0 auto;
  }
  .say-hello .contact .social-icons {
    margin: 0 auto;
  }
  .say-hello .vertical-yellow-line {
    display: none;
  }
  .say-hello .contact-form {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .what-we-do {
    margin: 5rem 0;
  }
  .what-we-do .heading {
    padding-bottom: 2rem;
  }
  .what-we-do .container .row {
    padding: 2rem 0;
    text-align: center;
  }
  .what-we-do .container .row .what-we-do-text {
    padding: 2rem;
  }
  .our-works {
    margin: 5rem 0;
  }
  .our-works .heading {
    padding-bottom: 2rem;
  }
  .our-works .container .row .rectangle-image {
    aspect-ratio: 1/1;
  }
  .test {
    margin: 5rem 0;
  }
  .test .heading {
    padding-bottom: 2rem;
  }
  .say-hello {
    margin: 5rem 0;
  }
  .say-hello .heading {
    padding-bottom: 2rem;
  }
}
/*# sourceMappingURL=style.css.map */