* {
  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;
  }
}

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

.services {
  position: relative;
  width: 100%;
  margin: 10rem 0;
}

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

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

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

.services .service {
  width: 100%;
  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;
}

.services .service .list {
  list-style: none;
}

.services .service .list .item {
  color: #4a4a4a;
}

.services .service .list .item::before {
  content: "\2022";
  color: #fcc85f;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

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: 768px) {
  .what-we-do {
    margin: 10rem 0 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;
  }
}
/*# sourceMappingURL=what-we-do.css.map */