/* Import google fonts */
@import url("https://fonts.cdnfonts.com/css/norwester");
@import url("https://fonts.googleapis.com/css2?family=Montserrat&display=swap");
/* Project wide */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  background-color: #333333;
  min-height: 100vh;
  position: relative;
  font-family: "Montserrat", sans-serif;
}

a {
  text-decoration: none;
}

.box-shadow {
  box-shadow: 5px 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.container-row, .btn, .img-container, .container-col, .section {
  display: flex;
  justify-content: center;
  align-items: center;
}

.container-col, .section {
  flex-direction: column;
}

.section {
  width: 100%;
  background: #f5f5f5;
  padding: 100px 0;
}

.section-container {
  width: 1400px;
}

.img-container {
  overflow: hidden;
  position: relative;
}

.img-100a {
  width: 100%;
  height: auto;
}

.dark-text {
  color: #333333;
  font-size: 1.4rem;
}

.white-text {
  color: #ffffff;
  font-size: 1.4rem;
}

.heading {
  font-size: 3rem;
  font-weight: 600;
}

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

.norwester {
  font-family: "Norwester", sans-serif;
  font-weight: 400;
}

.subheading {
  font-size: 2rem;
  font-weight: 600;
}

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

.btn {
  font-size: 1.4rem;
  padding: 15px 25px;
  border-radius: 50px;
  color: #ffffff;
  background-color: #38618c;
  border: none;
  text-align: center;
  cursor: pointer;
  width: 250px;
}

.sr-only {
  display: none !important;
}

.space-between {
  justify-content: space-between;
}

.align-start {
  align-items: flex-start;
}

.align-end {
  align-items: flex-end;
}

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

.justify-end {
  justify-content: flex-end;
}

/* Header */
header {
  background-color: #333333;
  width: 100%;
  height: 100px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99;
  transition: all 0.4s ease;
}
header.hide {
  transform: translateY(-100%);
}

.header-container {
  width: calc(100% - 100px);
}

.logo-container {
  gap: 10px;
}

.logo-text {
  font-size: 2rem;
}

.logo-img-container {
  width: 100px;
  height: 100px;
}

.nav-bar {
  position: relative;
}
.nav-bar .nav-links-container {
  gap: 30px;
}
.nav-bar .nav-link-item {
  list-style: none;
}
.nav-bar .nav-link {
  cursor: pointer;
  position: relative;
}
.nav-bar .nav-link::after {
  position: absolute;
  content: "";
  width: 0;
  height: 3px;
  background-color: #ffffff;
  bottom: -3px;
  left: 0;
  transition: all 0.3s ease;
}
.nav-bar .nav-link:hover::after {
  width: 100%;
}
.nav-bar .products-nav-wrapper {
  left: 50%;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  position: absolute;
  overflow: hidden;
  width: 100%;
  height: 300px;
}
.nav-bar .products-nav-container {
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(-100%);
  height: 100%;
  transition: all 0.5s ease;
  border-radius: 3px;
  overflow: hidden;
}
.nav-bar .products-nav-container.active {
  transform: translateY(0);
}
.nav-bar .products-nav-container .nav-link {
  height: 100px;
  width: 100%;
  padding: 20px;
  background-color: #202020;
}
.nav-bar .products-nav-container .nav-link:nth-of-type(2) {
  background-color: #38618c;
}
.nav-bar .products-nav-container .nav-link::after {
  height: 100%;
  bottom: 0;
}
.nav-bar .products-nav-container .nav-link:hover::after {
  width: 5px;
}

.about-section {
  height: 100vh;
  background-color: #333333;
  overflow: hidden;
}
.about-section .section-container {
  position: relative;
  height: 100%;
  top: 50px;
  z-index: 2;
}
.about-section .intro-text-container {
  width: 650px;
  gap: 30px;
  position: absolute;
  left: 0;
  opacity: 1;
  transition: all 1s ease;
}
.about-section .intro-text-container .white-text {
  text-wrap: balance;
}
.about-section .intro-text-container.hide {
  transform: translate(0, 100vh);
  opacity: 0;
}
.about-section .dillon-text-container,
.about-section .amy-text-container {
  position: absolute;
  right: 0;
  width: 700px;
  gap: 30px;
  transform: translateX(calc(100% + (100vw - 1400px) / 2));
  transition: all 1s ease;
  opacity: 0;
}
.about-section .dillon-text-container.show,
.about-section .amy-text-container.show {
  transform: translateX(0);
  opacity: 1;
}
.about-section .dillon-text-container .fa-icon,
.about-section .amy-text-container .fa-icon {
  margin-right: 10px;
}
.about-section .dillon-text-container .btn,
.about-section .amy-text-container .btn {
  background-color: transparent;
  border-radius: 5px;
  border: 3px solid #ffffff;
}
.about-section .imgs-container {
  width: 650px;
  height: 300px;
}
.about-section .blob-container {
  width: 350px;
  height: 350px;
  position: absolute;
  cursor: pointer;
  border-radius: 46% 54% 35% 65%/69% 53% 47% 31%;
  transition: border-radius 2s ease, transform 2s ease, opacity 1s ease;
  opacity: 1;
}
.about-section .blob-container.dillon-blob-container {
  right: 0;
  animation: animate-blob-1 10s infinite forwards;
  transform: translate(-360px, 0);
}
.about-section .blob-container.amy-blob-container {
  right: 0;
  animation: animate-blob-1 10s infinite forwards 2s;
}
.about-section .blob-container.highlight {
  opacity: 0;
}
.about-section .blob-container.hide {
  opacity: 0;
  transition: all 1s ease;
}
.about-section .blob-container.hide.dillon-blob-container {
  transform: translate(-360px, 100vh);
}
.about-section .blob-container.hide.amy-blob-container {
  transform: translate(0, 100vh);
}
.about-section .blob-container.active {
  transform: translate(-950px, 0);
  border-radius: 15px;
  width: 450px;
  height: 450px;
  animation: none;
  transition: all 1s ease;
  cursor: default;
}
.about-section .blob-container.active:hover {
  transform: translate(-950px, 0);
}
@keyframes animate-blob-1 {
  0% {
    border-radius: 46% 54% 35% 65%/69% 53% 47% 31%;
  }
  25% {
    border-radius: 58% 42% 42% 58%/62% 47% 53% 38%;
  }
  50% {
    border-radius: 46% 54% 35% 65%/69% 53% 47% 31%;
  }
  75% {
    border-radius: 43% 57% 57% 43%/52% 39% 61% 48%;
  }
  100% {
    border-radius: 46% 54% 35% 65%/69% 53% 47% 31%;
  }
}

/*# sourceMappingURL=about.css.map */
