﻿.backOrange {
  background-color: #E18F02 !important;
}
.backOrange a:hover {
  background-color: #565544 !important;
}

.backGrey {
  background-color: #E3E3E3 !important;
}

.backPurple {
  background-color: #7A6CE6 !important;
}
.backPurple a {
  background-color: #565544 !important;
}
.backPurple a:hover {
  background-color: #BFA025 !important;
}

.backYellow {
  background-color: #BFA025 !important;
}
.backYellow a:hover {
  background-color: #565544 !important;
}

.backDarkGrey {
  background-color: #565544 !important;
}
.backDarkGrey a {
  background-color: #BFA025 !important;
}
.backDarkGrey a:hover {
  background-color: #7A6CE6 !important;
}

.backGreen {
  background-color: #C7C762 !important;
}

.backOrangeGradient {
  background: linear-gradient(to left, #E18F02 75%, white 75%);
  color: white;
}
@media screen and (max-width: 768px) {
  .backOrangeGradient {
    background: #E18F02;
  }
}
.backOrangeGradient a:hover {
  background-color: #565544 !important;
}

.backGreyGradient {
  background: linear-gradient(to left, #E3E3E3 75%, white 75%);
}
@media screen and (max-width: 768px) {
  .backGreyGradient {
    background: #E3E3E3;
  }
}

.backPurpleGradient {
  background: linear-gradient(to left, #7A6CE6 75%, white 75%);
  color: white;
}
@media screen and (max-width: 768px) {
  .backPurpleGradient {
    background: #7A6CE6;
  }
}
.backPurpleGradient a {
  background-color: #565544 !important;
}
.backPurpleGradient a:hover {
  background-color: #BFA025 !important;
}

.backYellowGradient {
  background: linear-gradient(to left, #BFA025 75%, white 75%);
  color: white;
}
@media screen and (max-width: 768px) {
  .backYellowGradient {
    background: #BFA025;
  }
}
.backYellowGradient a:hover {
  background-color: #565544 !important;
}

.backDarkGreyGradient {
  background: linear-gradient(to left, #565544 75%, white 75%);
  color: white;
}
@media screen and (max-width: 768px) {
  .backDarkGreyGradient {
    background: #565544;
  }
}
.backDarkGreyGradient a {
  background-color: #BFA025 !important;
}
.backDarkGreyGradient a:hover {
  background-color: #7A6CE6 !important;
}

.backGreenGradient {
  background: linear-gradient(to left, #C7C762 75%, white 75%);
  color: white;
}
@media screen and (max-width: 768px) {
  .backGreenGradient {
    background: #C7C762;
  }
}

.paddingTop {
  padding-top: 100px;
}
@media screen and (max-width: 768px) {
  .paddingTop {
    padding-top: 50px;
  }
}

.paddingBottom {
  padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .paddingBottom {
    padding-bottom: 50px;
  }
}

.spacer {
  display: block;
  width: 100%;
}

body {
  font-family: "nunito", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #565544;
  overflow-x: hidden;
}

.navbar-brand {
  position: absolute;
  z-index: 100;
  padding: 30px;
}
.navbar-brand img {
  width: 230px;
}
@media screen and (max-width: 768px) {
  .navbar-brand {
    padding: 10px;
  }
  .navbar-brand img {
    width: 120px;
  }
}

.navbar-slide {
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  background-color: #7A6CE6 !important;
  z-index: 100;
  width: 30%;
}
@media screen and (max-width: 768px) {
  .navbar-slide {
    width: 100%;
  }
}

#menu-icon {
  cursor: pointer;
  z-index: 10000000;
}

.menu-icon-holder {
  z-index: 101;
  display: block;
  background-color: #7A6CE6;
  width: 100px;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 768px) {
  .menu-icon-holder {
    width: 90px;
    padding: 10px 15px 10px 15px;
    top: 25px;
  }
}

/* Slide the navbar in */
.navbar-slide.show {
  transform: translateX(0);
}

/* Full-screen overlay for mobile responsiveness */
.overlay-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  /* Start hidden */
  transition: opacity 0.3s ease, visibility 0s 0.3s;
}

.overlay-nav.show {
  opacity: 1;
  visibility: visible;
  /* Show immediately on fade-in */
  transition: opacity 0.3s ease;
  /* Instant visibility change, with opacity fade-in */
}

.nav-item a {
  font-family: "nunito", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 30px;
  line-height: 40px;
  letter-spacing: 0.5rem;
  text-transform: uppercase;
  color: white !important;
}
@media screen and (max-width: 768px) {
  .nav-item a {
    font-size: 18px;
    line-height: 26px;
  }
}
.nav-item a:hover {
  color: #BFA025 !important;
}

.homeHero {
  position: relative;
  top: 0;
}
.homeHero .center-content {
  display: flex;
  justify-content: center;
  /* Centers horizontally */
  align-items: center;
  /* Centers vertically */
  height: 100%;
  /* Ensure the div takes the full height of its container */
}
.homeHero .center-content h2 {
  text-transform: uppercase;
  letter-spacing: 0.5rem;
  color: white;
  margin-top: 50px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .homeHero .center-content h2 {
    font-size: 22px;
    letter-spacing: 0.3rem;
  }
}
.homeHero .center-content img {
  margin-left: auto;
  margin-right: auto;
  display: block;
}
@media screen and (max-width: 768px) {
  .homeHero .center-content img {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .homeHero .image-container {
    height: 100vh;
    display: inline-block;
    width: 100%;
    position: relative;
  }
  .homeHero .image-container img {
    height: 100vh;
    object-fit: cover;
    width: auto;
    display: inline-block;
  }
}

.value-proposition {
  background: linear-gradient(to right, #E3E3E3 50%, white 50%);
  padding-top: 100px;
  padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .value-proposition {
    padding-top: 30px;
    padding-bottom: 30px;
    background: rgb(255, 255, 255);
  }
}
.value-proposition h2,
.value-proposition h3 {
  font-family: "nunito", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 30px;
  line-height: 40px;
  letter-spacing: 0.5rem;
  text-transform: uppercase;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .value-proposition h2,
  .value-proposition h3 {
    font-size: 18px;
    line-height: 26px;
  }
}
.value-proposition p {
  font-family: "nunito", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  line-height: 32px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .value-proposition p {
    font-size: 18px;
    line-height: 26px;
  }
}
.value-proposition .video-placeholder {
  position: relative;
  display: inline-block;
}
.value-proposition .video-placeholder .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.value-proposition .video-placeholder .play-button::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 30px solid white;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
}

.location-icons {
  background-color: #7A6CE6;
}
.location-icons .content {
  padding-top: 200px;
  padding-bottom: 100px;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}
.location-icons .content h2,
.location-icons .content h3 {
  font-family: "nunito", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 30px;
  line-height: 40px;
  letter-spacing: 0.5rem;
  text-transform: uppercase;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .location-icons .content h2,
  .location-icons .content h3 {
    font-size: 18px;
    line-height: 26px;
  }
}
.location-icons .content p {
  font-family: "nunito", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  line-height: 32px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .location-icons .content p {
    font-size: 18px;
    line-height: 26px;
  }
}
.location-icons .content a {
  background-color: #565544 !important;
}
.location-icons .content a:hover {
  background-color: #BFA025 !important;
}
.location-icons .icon-background {
  background: linear-gradient(to bottom, #7A6CE6 40%, white 40%);
  background-size: 100% 100%;
  background-position: top;
}
@media screen and (max-width: 768px) {
  .location-icons .icon-background {
    background: rgb(255, 255, 255);
  }
}
.location-icons .icon-background .icons {
  margin-top: 125px;
  padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .location-icons .icon-background .icons {
    padding-top: 50px;
    padding-bottom: 50px;
    background: rgb(255, 255, 255);
  }
}
.location-icons .icon-background .icons .icon {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  text-align: center;
}
.location-icons .icon-background .icons .icon img {
  width: 240px;
}
.location-icons .icon-background .icons .icon h4,
.location-icons .icon-background .icons .icon p {
  margin-top: 20px;
  text-align: center;
}
.location-icons .icon-background .icons .icon h4 {
  font-family: "nunito", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 30px;
  line-height: 40px;
  letter-spacing: 0.5rem;
  text-transform: uppercase;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .location-icons .icon-background .icons .icon h4 {
    font-size: 18px;
    line-height: 26px;
  }
}
.location-icons .icon-background .icons .icon p {
  font-family: "nunito", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  line-height: 32px;
  font-size: 20px;
  line-height: 32px;
}
@media screen and (max-width: 768px) {
  .location-icons .icon-background .icons .icon p {
    font-size: 18px;
    line-height: 26px;
  }
}

.campus-vision {
  position: relative;
  background: linear-gradient(to right, #E3E3E3 67%, white 33%);
}
.campus-vision .overlay {
  position: absolute;
  top: 50vh;
  /* Move down about one quarter */
  left: 66vw;
  /* Move right about three quarters */
  transform: translate(-50%, -50%);
  /* Center the overlay */
  width: 30vw;
}
.campus-vision .overlay svg {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .campus-vision {
    background: rgb(227, 227, 227);
  }
  .campus-vision .overlay {
    display: none;
  }
}
.campus-vision .white-block {
  background-color: white;
  display: block;
  height: 100px;
  width: 100%;
}
.campus-vision .content {
  padding-top: 200px;
  padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .campus-vision .content {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.campus-vision .content h2,
.campus-vision .content h3 {
  font-family: "nunito", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 30px;
  line-height: 40px;
  letter-spacing: 0.5rem;
  text-transform: uppercase;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .campus-vision .content h2,
  .campus-vision .content h3 {
    font-size: 18px;
    line-height: 26px;
  }
}
.campus-vision .content p {
  font-family: "nunito", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  line-height: 32px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .campus-vision .content p {
    font-size: 18px;
    line-height: 26px;
  }
}
.campus-vision .bottom-section {
  padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .campus-vision .bottom-section {
    padding-bottom: 0px;
  }
}
.campus-vision .bottom-section img:first-of-type {
  padding-right: 5px;
  /* Adjust the value as needed */
}
.campus-vision .bottom-section img:nth-of-type(2) {
  padding-left: 5px;
  /* Adjust the value as needed */
}
@media (max-width: 768px) {
  .campus-vision .bottom-section img:first-of-type, .campus-vision .bottom-section img:nth-of-type(2) {
    padding-right: 0;
    padding-left: 0;
  }
}

@media screen and (max-width: 768px) {
  .image-text {
    padding-top: 50px;
  }
}
.image-text .content {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.image-text .content .text {
  width: 70%;
}
@media screen and (max-width: 768px) {
  .image-text .content .text {
    width: 100%;
  }
}
.image-text .content .text h2,
.image-text .content .text h3 {
  font-family: "nunito", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 30px;
  line-height: 40px;
  letter-spacing: 0.5rem;
  text-transform: uppercase;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .image-text .content .text h2,
  .image-text .content .text h3 {
    font-size: 18px;
    line-height: 26px;
  }
}
.image-text .content .text p {
  font-family: "nunito", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  line-height: 32px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .image-text .content .text p {
    font-size: 18px;
    line-height: 26px;
  }
}
.image-text .content .image {
  width: 50%;
}
.image-text .content .image img {
  width: 100%;
}
.image-text .image-container {
  height: 100%;
  overflow: hidden;
  width: 100%;
  position: relative;
}
.image-text .image-container img {
  height: 100vh;
  object-fit: cover;
  width: auto;
}
.image-text .bottom-images {
  position: relative;
}
.image-text .mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.image-text .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 45%;
  height: 100%;
  background: rgba(199, 199, 98, 0.8);
  /* Semi-transparent black mask */
  display: flex;
  justify-content: left;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .image-text .overlay {
    width: 95%;
  }
}
.image-text .overlay-text {
  color: white;
  font-size: 1.5rem;
  text-align: left;
  padding: 50px;
}
.image-text .overlay-text h3 {
  font-family: "nunito", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 30px;
  line-height: 40px;
  letter-spacing: 0.5rem;
  text-transform: uppercase;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .image-text .overlay-text h3 {
    font-size: 18px;
    line-height: 26px;
  }
}
.image-text .overlay-text p {
  font-family: "nunito", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  line-height: 32px;
}
@media screen and (max-width: 768px) {
  .image-text .overlay-text p {
    font-size: 18px;
    line-height: 26px;
  }
}

.full-width-banner h2,
.full-width-banner h3 {
  font-family: "nunito", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 30px;
  line-height: 40px;
  letter-spacing: 0.5rem;
  text-transform: uppercase;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .full-width-banner h2,
  .full-width-banner h3 {
    font-size: 18px;
    line-height: 26px;
  }
}
.full-width-banner p {
  font-family: "nunito", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  line-height: 32px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .full-width-banner p {
    font-size: 18px;
    line-height: 26px;
  }
}
.full-width-banner .image-container {
  height: 100%;
  overflow: hidden;
  width: 100%;
  position: relative;
}
.full-width-banner .image-container img {
  height: 100vh;
  object-fit: cover;
  width: auto;
}
.full-width-banner .mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
}
.full-width-banner .mask .content {
  position: absolute;
  height: 100%;
  display: block;
  display: flex;
  background-color: rgba(86, 85, 68, 0.64);
  color: white;
}

.latest-news {
  padding-top: 100px;
}
@media screen and (max-width: 768px) {
  .latest-news {
    padding-top: 50px;
  }
}
.latest-news h2 {
  text-transform: uppercase;
  letter-spacing: 0.5rem;
}
.latest-news .card {
  border-radius: unset;
  margin-bottom: 20px;
}
.latest-news .card img {
  border-radius: 0;
}
.latest-news .card .card-body {
  padding-bottom: 0;
  padding-right: 0;
  background-color: #E3E3E3;
}
.latest-news .card .card-body h5 {
  margin-bottom: 10px;
  padding-right: 1.5rem;
  font-size: 32px;
}
@media screen and (max-width: 768px) {
  .latest-news .card .card-body h5 {
    font-size: 24px;
  }
}
.latest-news .card .card-body h6 {
  margin-bottom: 10px;
  padding-right: 1.5rem;
  color: #BFA025;
  font-size: 18px;
}
.latest-news .card .card-body p {
  margin-bottom: 10px;
  padding-right: 1.5rem;
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .latest-news .card .card-body p {
    font-size: 18px;
  }
}

.intro-text-template-1 {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .intro-text-template-1 {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.intro-text-template-1 .content {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}
@media screen and (max-width: 768px) {
  .intro-text-template-1 .content {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
.intro-text-template-1 h2,
.intro-text-template-1 h3 {
  font-family: "nunito", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 30px;
  line-height: 40px;
  letter-spacing: 0.5rem;
  text-transform: uppercase;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .intro-text-template-1 h2,
  .intro-text-template-1 h3 {
    font-size: 18px;
    line-height: 26px;
  }
}
.intro-text-template-1 p {
  font-family: "nunito", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  line-height: 32px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .intro-text-template-1 p {
    font-size: 18px;
    line-height: 26px;
  }
}

.intro-text-template-2 {
  background: linear-gradient(to right, #C7C762 80%, white 80%);
  padding-top: 100px;
  padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .intro-text-template-2 {
    padding-top: 30px;
    padding-bottom: 30px;
    background: #C7C762;
  }
}
.intro-text-template-2 .content {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}
@media screen and (max-width: 768px) {
  .intro-text-template-2 .content {
    padding-top: 10px;
    padding-bottom: 10px;
    background: #C7C762;
  }
}
.intro-text-template-2 h2,
.intro-text-template-2 h3 {
  font-family: "nunito", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 30px;
  line-height: 40px;
  letter-spacing: 0.5rem;
  text-transform: uppercase;
  margin-bottom: 50px;
  color: white;
}
@media screen and (max-width: 768px) {
  .intro-text-template-2 h2,
  .intro-text-template-2 h3 {
    font-size: 18px;
    line-height: 26px;
  }
}
@media screen and (max-width: 768px) {
  .intro-text-template-2 h2,
  .intro-text-template-2 h3 {
    margin-bottom: 10px;
  }
}
.intro-text-template-2 p {
  font-family: "nunito", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  line-height: 32px;
  margin-bottom: 20px;
  color: white;
}
@media screen and (max-width: 768px) {
  .intro-text-template-2 p {
    font-size: 18px;
    line-height: 26px;
  }
}

.intro-text-template-3 {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .intro-text-template-3 {
    padding-top: 30px;
    padding-bottom: 30px;
    background: rgb(255, 255, 255);
  }
}
.intro-text-template-3 h2,
.intro-text-template-3 h3 {
  font-family: "nunito", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 30px;
  line-height: 40px;
  letter-spacing: 0.5rem;
  text-transform: uppercase;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .intro-text-template-3 h2,
  .intro-text-template-3 h3 {
    font-size: 18px;
    line-height: 26px;
  }
}
.intro-text-template-3 p {
  font-family: "nunito", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  line-height: 32px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .intro-text-template-3 p {
    font-size: 18px;
    line-height: 26px;
  }
}

.icons .section-top {
  text-align: center;
}
.icons h2,
.icons h3 {
  font-family: "nunito", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 30px;
  line-height: 40px;
  letter-spacing: 0.5rem;
  text-transform: uppercase;
  margin-bottom: 70px;
}
@media screen and (max-width: 768px) {
  .icons h2,
  .icons h3 {
    font-size: 18px;
    line-height: 26px;
  }
}
@media screen and (max-width: 768px) {
  .icons h2,
  .icons h3 {
    margin-bottom: 50px;
  }
}
.icons p {
  font-family: "nunito", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  line-height: 32px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .icons p {
    font-size: 18px;
    line-height: 26px;
  }
}
@media screen and (max-width: 768px) {
  .icons {
    background: rgb(255, 255, 255);
  }
}
.icons .logo2 {
  width: 200px;
  margin: 10px;
}
.icons .icon {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  text-align: center;
}
.icons .icon img {
  width: 240px;
}
.icons .icon h4,
.icons .icon p {
  margin-top: 20px;
  text-align: center;
}
.icons .icon h4 {
  font-family: "nunito", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 30px;
  line-height: 40px;
  letter-spacing: 0.5rem;
  text-transform: uppercase;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .icons .icon h4 {
    font-size: 18px;
    line-height: 26px;
  }
}
.icons .icon p {
  font-family: "nunito", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  line-height: 32px;
  font-size: 20px;
  line-height: 32px;
}
@media screen and (max-width: 768px) {
  .icons .icon p {
    font-size: 18px;
    line-height: 26px;
  }
}

.team h2,
.team h3 {
  font-family: "nunito", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 30px;
  line-height: 40px;
  letter-spacing: 0.5rem;
  text-transform: uppercase;
  margin-bottom: 70px;
}
@media screen and (max-width: 768px) {
  .team h2,
  .team h3 {
    font-size: 18px;
    line-height: 26px;
  }
}
.team p {
  font-family: "nunito", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  line-height: 32px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .team p {
    font-size: 18px;
    line-height: 26px;
  }
}
@media screen and (max-width: 768px) {
  .team {
    padding-top: 50px;
    padding-bottom: 50px;
    background: rgb(255, 255, 255);
  }
}
.team .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  text-align: center;
}
.team .icon img {
  width: 240px;
}
.team .icon h4,
.team .icon p {
  margin-top: 0px;
  padding-bottom: 0px;
  text-align: center;
}
.team .icon h4 {
  font-family: "nunito", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 30px;
  line-height: 40px;
  letter-spacing: 0.5rem;
  text-transform: uppercase;
  margin-top: 40px;
  text-transform: unset;
  letter-spacing: unset;
}
@media screen and (max-width: 768px) {
  .team .icon h4 {
    font-size: 18px;
    line-height: 26px;
  }
}
.team .icon h5 {
  font-family: "nunito", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 30px;
  line-height: 40px;
  letter-spacing: 0.5rem;
  text-transform: uppercase;
  line-height: 24px !important;
  font-size: 24px;
  text-transform: unset;
  letter-spacing: unset;
  font-weight: bold;
  color: #BFA025;
  padding-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .team .icon h5 {
    font-size: 18px;
    line-height: 26px;
  }
}
.team .icon h6 {
  font-family: "nunito", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  line-height: 32px;
  line-height: 24px !important;
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  .team .icon h6 {
    font-size: 18px;
    line-height: 26px;
  }
}

@media screen and (max-width: 768px) {
  .text-image-2 {
    padding-top: 50px;
    padding-bottom: 0px;
  }
}
.text-image-2 h2,
.text-image-2 h3 {
  font-family: "nunito", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 30px;
  line-height: 40px;
  letter-spacing: 0.5rem;
  text-transform: uppercase;
  color: white;
  margin-bottom: 70px;
}
@media screen and (max-width: 768px) {
  .text-image-2 h2,
  .text-image-2 h3 {
    font-size: 18px;
    line-height: 26px;
  }
}
@media screen and (max-width: 768px) {
  .text-image-2 h2,
  .text-image-2 h3 {
    margin-bottom: 30px;
  }
}
.text-image-2 p {
  font-family: "nunito", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  line-height: 32px;
  margin-bottom: 20px;
  color: white;
}
@media screen and (max-width: 768px) {
  .text-image-2 p {
    font-size: 18px;
    line-height: 26px;
  }
}
.text-image-2 .content {
  padding: 150px;
}
@media screen and (max-width: 768px) {
  .text-image-2 .content {
    padding: 40px;
  }
}
.text-image-2 .image-container {
  height: 100%;
  overflow: hidden;
  display: inline-block;
  width: 100%;
  object-fit: cover;
}
.text-image-2 .image-container img {
  height: 100%;
  object-fit: cover;
  width: auto;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .text-image-2 .image-container {
    height: 50vh;
    overflow: hidden;
    display: inline-block;
    width: 100%;
    position: relative;
  }
  .text-image-2 .image-container img {
    height: 50vh;
    object-fit: cover;
    width: 100%;
    display: inline-block;
  }
}

.contact-form {
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: #f1f1f1;
}
@media screen and (max-width: 768px) {
  .contact-form {
    padding-top: 30px;
    padding-bottom: 0px;
  }
}
.contact-form h2,
.contact-form h3 {
  font-family: "nunito", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 30px;
  line-height: 40px;
  letter-spacing: 0.5rem;
  text-transform: uppercase;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .contact-form h2,
  .contact-form h3 {
    font-size: 18px;
    line-height: 26px;
  }
}
.contact-form p {
  font-family: "nunito", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  line-height: 32px;
  margin-bottom: 20px;
  font-size: 20px;
  line-height: 32px;
}
@media screen and (max-width: 768px) {
  .contact-form p {
    font-size: 18px;
    line-height: 26px;
  }
}
.contact-form .form-control, .contact-form .form-select {
  border: none;
  border-radius: unset;
}

.image-text-template-2 {
  padding-top: 100px;
  padding-bottom: 100px;
  background: linear-gradient(to left, #7A6CE6 80%, white 80%);
}
@media screen and (max-width: 768px) {
  .image-text-template-2 {
    padding-top: 50px;
  }
}
.image-text-template-2 .content {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.image-text-template-2 .content .text {
  width: 70%;
}
.image-text-template-2 .content .text h2,
.image-text-template-2 .content .text h3 {
  font-family: "nunito", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 30px;
  line-height: 40px;
  letter-spacing: 0.5rem;
  text-transform: uppercase;
  margin-bottom: 50px;
  color: white;
}
@media screen and (max-width: 768px) {
  .image-text-template-2 .content .text h2,
  .image-text-template-2 .content .text h3 {
    font-size: 18px;
    line-height: 26px;
  }
}
.image-text-template-2 .content .text p {
  font-family: "nunito", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  line-height: 32px;
  margin-bottom: 20px;
  color: white;
}
@media screen and (max-width: 768px) {
  .image-text-template-2 .content .text p {
    font-size: 18px;
    line-height: 26px;
  }
}
.image-text-template-2 .content .image {
  width: 50%;
}
.image-text-template-2 .content .image img {
  width: 100%;
}
.image-text-template-2 .image-container {
  height: 100%;
  overflow: hidden;
  width: 100%;
  position: relative;
}
.image-text-template-2 .image-container img {
  height: 100vh;
  object-fit: cover;
  width: auto;
}

.image-text-3 {
  position: relative;
}
.image-text-3 .overlay {
  position: absolute;
  top: 50%;
  /* Move down about one quarter */
  left: 66vw;
  /* Move right about three quarters */
  transform: translate(-50%, -50%);
  /* Center the overlay */
  width: 30vw;
}
.image-text-3 .overlay svg {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .image-text-3 .overlay {
    display: none;
  }
}
.image-text-3 .content {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.image-text-3 .content h2,
.image-text-3 .content h3 {
  font-family: "nunito", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 30px;
  line-height: 40px;
  letter-spacing: 0.5rem;
  text-transform: uppercase;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .image-text-3 .content h2,
  .image-text-3 .content h3 {
    font-size: 18px;
    line-height: 26px;
  }
}
.image-text-3 .content p {
  font-family: "nunito", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  line-height: 32px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .image-text-3 .content p {
    font-size: 18px;
    line-height: 26px;
  }
}
.image-text-3 .bottom-section {
  padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .image-text-3 .bottom-section {
    padding-bottom: 0px;
  }
}
.image-text-3 .bottom-section img:first-of-type {
  padding-right: 5px;
  /* Adjust the value as needed */
}
.image-text-3 .bottom-section img:nth-of-type(2) {
  padding-left: 5px;
  /* Adjust the value as needed */
}
@media (max-width: 768px) {
  .image-text-3 .bottom-section img:first-of-type, .image-text-3 .bottom-section img:nth-of-type(2) {
    padding-right: 0;
    padding-left: 0;
  }
}

.image-text-4 {
  position: relative;
}
.image-text-4 .overlay {
  position: absolute;
  top: 50%;
  /* Move down about one quarter */
  left: 33vw;
  /* Move right about three quarters */
  transform: translate(-50%, -50%);
  /* Center the overlay */
  width: 30vw;
}
.image-text-4 .overlay svg {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .image-text-4 .overlay {
    display: none;
  }
}
.image-text-4 .content {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.image-text-4 .content h2,
.image-text-4 .content h3 {
  font-family: "nunito", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 30px;
  line-height: 40px;
  letter-spacing: 0.5rem;
  text-transform: uppercase;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .image-text-4 .content h2,
  .image-text-4 .content h3 {
    font-size: 18px;
    line-height: 26px;
  }
}
.image-text-4 .content p {
  font-family: "nunito", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  line-height: 32px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .image-text-4 .content p {
    font-size: 18px;
    line-height: 26px;
  }
}

a.link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  position: relative;
  padding-right: 45px;
  /* Adjust based on the width of the SVG */
  background-color: #7A6CE6;
  padding: 10px 60px 7px 15px;
  text-transform: uppercase;
  color: white;
  letter-spacing: 0.2rem;
  transition: background-color 0.35s ease;
  /* Add transition for background color */
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  a.link {
    font-size: 16px;
  }
}
a.link:hover {
  background-color: #BFA025;
}
a.link::after {
  content: "";
  display: inline-block;
  width: 35.347px;
  /* Width of the SVG */
  height: 21.236px;
  /* Height of the SVG */
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="35.347" height="21.236" viewBox="0 0 35.347 21.236"><g id="Group_479" data-name="Group 479" transform="translate(0 0.707)"><line id="Line_6" data-name="Line 6" x2="33.933" transform="translate(0 10.18)" fill="none" stroke="%23fff" stroke-width="2"/><path id="Path_37" data-name="Path 37" d="M0,0H14.016V14.016" transform="translate(24.022 0) rotate(45)" fill="none" stroke="%23fff" stroke-width="2"/></g></svg>') no-repeat center center;
  position: absolute;
  right: 0;
  top: 25%;
  transform: translateX(-35%);
  padding-right: 20px;
}

footer {
  background-color: black;
  color: white;
  padding-top: 100px;
  padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
  footer {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
footer .footer-logo img {
  height: 100px;
}
footer p {
  color: white;
  font-family: "nunito", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 40px;
}
footer .footer-links {
  column-gap: 2vw;
}
footer .footer-links a {
  color: white;
  font-family: "nunito", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 40px;
  display: block;
}
footer .footer-links a:hover {
  color: #E18F02;
}
footer ul {
  list-style-type: none;
  margin-left: 0;
  padding-left: 0;
  columns: 3;
}
@media screen and (max-width: 768px) {
  footer ul {
    columns: 2;
  }
}

/* General container styling */
#mc_embed_signup {
  background-color: transparent !important; /* Light background */
  padding: 0px; /* Add spacing */
  border: 0px solid #ddd; /* Subtle border */
  border-radius: 5px; /* Rounded corners */
  width: 100%;
}

#mc_embed_signup form {
  width: 100%;
  padding: 0;
  margin: 0;
}

#mc_embed_signup .submitdiv {
  float: right;
  margin-right: 20px;
}

/* Form input fields */
#mc_embed_signup input {
  width: 100%; /* Full-width inputs */
  padding: 10px; /* Add padding inside the inputs */
  border: none !important; /* Define border */
  border-radius: 20px; /* Rounded corners */
  font-size: 18px; /* Adjust font size */
  opacity: 0.5;
}

#mc_embed_signup #mc_embed_signup_scroll h2 {
  color: white;
  font-size: 1.5rem;
  margin-top: 0px;
}

/* Error and success messages */
#mc_embed_signup .mce_inline_error {
  color: red;
  font-size: 18px;
}

#mc_embed_signup #mce-success-response {
  color: white;
  font-weight: normal;
}

#mc_embed_signup .mce_success {
  color: white;
  font-size: 18px;
}

#mc_embed_signup div.response {
  padding: 0;
  margin: 0;
}

#mc_embed_signup #mc-embedded-subscribe-form div.mce_inline_error {
  background-color: transparent;
  color: white;
}

#mc_embed_signup .indicates-required {
  color: white;
  padding-bottom: 10px;
}

#mc_embed_signup form {
  margin: 0px !important;
}

/* Submit button */
#mc_embed_signup input[type=submit] {
  all: unset; /* Resets all inherited and default browser styles */
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  background-color: #7A6CE6; /* Reapply your styles */
  color: white;
  padding: 10px 60px 7px 15px;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  transition: background-color 0.35s ease;
  cursor: pointer; /* Ensure pointer behavior */
  width: 30%;
  position: relative;
  margin-right: 22px;
}
#mc_embed_signup input[type=submit]::after {
  content: "";
  display: inline-block;
  width: 35.347px; /* Width of the SVG */
  height: 21.236px; /* Height of the SVG */
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="35.347" height="21.236" viewBox="0 0 35.347 21.236"><g id="Group_479" data-name="Group 479" transform="translate(0 0.707)"><line id="Line_6" data-name="Line 6" x2="33.933" transform="translate(0 10.18)" fill="none" stroke="%23fff" stroke-width="2"/><path id="Path_37" data-name="Path 37" d="M0,0H14.016V14.016" transform="translate(24.022 0) rotate(45)" fill="none" stroke="%23fff" stroke-width="2"/></g></svg>') no-repeat center center !important;
  position: absolute;
  right: 0;
  top: 25%;
  transform: translateX(-35%);
}

#mc_embed_signup input[type=submit]:hover {
  background-color: #BFA025;
}
