@import url("https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&family=Lora:wght@500&display=swap");
.btn-outline-dark {
  cursor: default;
  padding: 8px 30px;
  border-radius: 50px;
  text-transform: uppercase;
  position: relative;
  background: var(--primary-dark);
  color: var(--primary-light);
  border: 1px solid var(--primary-light);
}
.btn-outline-dark span {
  z-index: 3;
}
.btn-outline-dark:hover {
  z-index: 1;
  font-weight: normal;
}
.btn-outline-dark:hover span {
  animation: fadeUp 0.6s ease-in-out forwards;
}
.btn-outline-dark:hover:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  z-index: -1;
  transform-style: preserve-3d;
  animation: transitionAnime 0.4s ease-out forwards;
}
.btn-outline-dark:hover {
  color: var(--primary-dark);
}
.btn-outline-dark:hover:before {
  background: var(--primary-light);
  color: var(--primary-dark);
}

.btn-outline-light {
  cursor: default;
  padding: 8px 30px;
  border-radius: 50px;
  text-transform: uppercase;
  position: relative;
  background: var(--primary-light);
  color: var(--primary-dark);
  border: 1px solid var(--primary-dark);
}
.btn-outline-light span {
  z-index: 3;
}
.btn-outline-light:hover {
  z-index: 1;
  font-weight: normal;
}
.btn-outline-light:hover span {
  animation: fadeUp 0.6s ease-in-out forwards;
}
.btn-outline-light:hover:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  z-index: -1;
  transform-style: preserve-3d;
  animation: transitionAnime 0.4s ease-out forwards;
}
.btn-outline-light:hover {
  color: var(--primary-light);
}
.btn-outline-light:hover:before {
  background: var(--primary-dark);
  color: var(--primary-light);
}

@keyframes transitionAnime {
  from {
    width: 20%;
  }
  to {
    width: 100%;
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translate3d(0, 10px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.cursor-container {
  pointer-events: none;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 9999999;
  display: flex;
  width: 100%;
  height: 100vh;
  justify-content: center;
  align-items: center;
}
.cursor-container .no-display {
  display: none !important;
}
.cursor-container .cursor-link {
  transform: scale(4);
  transform-origin: 50% 50%;
  transition: transform 0.5s;
}
.cursor-container .cursor-bg {
  transform: scale(10);
  transform-origin: 50% 50%;
  transition: transform 0.5s;
}
.cursor-container .cursor-bg-white {
  background-color: var(--primary-light);
}
.cursor-container #cursor-follower {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cursor-container #cursor-follower .cursor-text {
  color: var(--primary-light);
}
.cursor-container .cursor-dot {
  position: absolute;
  display: flex;
  width: 14px;
  height: 14px;
  justify-content: center;
  align-items: center;
  border: 1px #1d1d1d;
  border-radius: 500px;
  background-color: hsla(0, 0%, 100%, 0.01);
  opacity: 1;
  -webkit-backdrop-filter: invert(100%);
          backdrop-filter: invert(100%);
  transition: filter 350ms, height 1s, width 1s, opacity 350ms, max-height 1s, max-width 1s transform 0.5s;
  will-change: transform;
}

body {
  --primary-dark: #191919;
  --primary-light: #f8f8f8;
  --priamry-font: "Lato", sans-serif;
  --subheading-size: 1.2rem;
}

.color-dark {
  color: var(--primary-dark);
}

.color-light {
  color: var(--primary-light);
}

.section.section-head {
  padding: 2em 0px;
  min-height: 100vh;
  background: var(--primary-dark);
}
@media screen and (max-width: 1100px) {
  .section.section-head {
    padding: 4em 0px;
  }
}
.section.section-head .nav {
  max-height: 50px;
  display: flex;
  display: flex;
  align-items: center;
}
.section.section-head .nav .logo {
  font-size: large;
  font-family: var(--priamry-font);
  color: var(--primary-light);
}
.section.section-head .nav .sub-heading {
  font-family: var(--priamry-font);
  text-transform: uppercase;
  font-size: var(--subheading-size);
}
.section.section-head .nav .button-container {
  float: right;
}
@media screen and (max-width: 1100px) {
  .section.section-head .nav .button-container {
    float: none;
    margin: 0px 0px 0px 50%;
  }
}
.section.section-head .nav .button-container .btn-outline-dark {
  font-size: var(--subheading-size);
}
.section.section-head .main-content {
  display: flex;
  align-items: center;
  min-height: calc(100vh - 150px);
}
.section.section-head .main-content .main-text {
  width: 60%;
  color: var(--primary-light);
}
@media screen and (max-width: 1100px) {
  .section.section-head .main-content .main-text {
    width: 100%;
  }
}
.section.section-head .main-content .main-text .main-head-text {
  font-size: 40px;
  line-height: 40px;
  font-family: "Lora", serif;
}
.section.section-thumb {
  min-height: 100vh;
  padding: 10% 0px;
}
.section.section-thumb .heading {
  text-transform: uppercase;
  font-family: var(--priamry-font);
}
.section.section-thumb .sub-heading {
  margin-top: 0px !important;
  font-family: var(--priamry-font);
}
.section.section-thumb .more-info {
  padding-top: 10%;
}
.section.section-thumb .more-info .column {
  margin-right: 10%;
}
.section.section-footer {
  padding: 2em 0px;
  min-height: 100vh;
  background: var(--primary-dark);
}
.section.section-footer .center {
  height: calc(100vh - 100px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.section.section-footer .center .lets-talk {
  font-size: 10rem;
  color: var(--primary-light);
  text-transform: capitalize;
}
.section.section-footer .center .lets-talk:hover {
  text-decoration: none;
}
.section.section-footer .footer-link {
  color: var(--primary-light);
}/*# sourceMappingURL=style.css.map */