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

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

.who-we-are .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;
}

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

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

.who-we-are .tagline {
  text-align: center;
  width: 100%;
}

.who-we-are .tagline .heading {
  padding: 1rem 0;
}

.who-we-are .tagline .sub-heading {
  width: 80%;
  margin: 0 auto;
}

.who-we-are .large-logo {
  padding: 5rem 0;
  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;
}

.who-we-are .images {
  width: 80%;
  margin: 0 auto;
  padding: 5rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.who-we-are .images .square-img {
  width: 30%;
  aspect-ratio: 1/1;
  margin: 1rem auto;
}

.who-we-are .images .rectangle-img {
  width: 30%;
  aspect-ratio: 1/2;
  margin: 1rem auto;
}

.who-we-are .images .image-1 {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(https://ik.imagekit.io/abso1u7e/portfolio/portfolio_1_08ZGgYiQi6.jpg);
}

.who-we-are .images .image-2 {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(https://ik.imagekit.io/abso1u7e/portfolio/portfolio_2_3zVKYFAkH.jpg);
}

.who-we-are .images .image-3 {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(https://ik.imagekit.io/abso1u7e/portfolio/portfolio_3_WVmdBvnT9.jpg);
}

.who-we-are .work-image {
  width: 70%;
  margin: 2rem auto;
}

.who-we-are .work-image img {
  padding-top: 2rem;
  width: 100%;
  aspect-ratio: 2.5/1;
  -o-object-fit: cover;
     object-fit: cover;
}

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) {
  .who-we-are .images {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .who-we-are .images .square-img {
    width: 100%;
  }
  .who-we-are .images .rectangle-img {
    width: 100%;
    aspect-ratio: 1/1;
  }
}
/*# sourceMappingURL=who-we-are.css.map */