/* .hero section */
.not-found .hero h1 {
  font-size: 12vh;
}

@media (max-width: 767.98px) {
  .not-found .hero h1 {
    font-size: 8vh;
  }
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url('../assets/images/home/hero.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(6, 6, 6, 0.7);
  content: '';
  z-index: 1;
}

.hero>.container {
  gap: 15%;
}

@media (min-width: 576px) {
  .hero>.container {
    padding: 30px 0 0;
    height: calc(100vh - 30px);
  }
}

.hero .hero__content {
  width: fit-content;
  margin-left: auto;
  padding-right: 10%;
}

.hero .hero__tags {
  display: flex;
  gap: 16px;
}

.hero .hero__tag {
  padding: 1px 10px;
  font-weight: 700;
  font-size: 24px;
  color: var(--enter-pink);
  border: 1px solid var(--enter-pink);
}

.hero h3 {
  font-size: 26px;
  margin: 16px 0;
}

.hero .hero__items {
  font-size: 20px;
}

.hero .hero__list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

@media (max-width: 1512px) and (min-width: 576px) {
  .hero h1 {
    padding-left: 5%;
  }
}

@media (max-width: 767.98px) {
  .hero .hero__content {
    padding-left: 6px;
  }

  .hero .hero__tag {
    font-size: 18px;
  }

  .hero h3 {
    font-size: 20px;
  }

  .hero .hero__items {
    font-size: 16px;
  }
}

@media (max-width: 575.98px) {
  .hero .hero__content {
    margin-left: 0;
    padding-right: 0;
  }
}

/* .about section */
.about {}

.about .heading {
  background-color: var(--enter-black);
}

.about .heading h2 {
  flex-direction: column;
  text-align: center;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 40px;
}

.about .about__top {
  background-color: var(--enter-black);
  padding-bottom: 40px;
  margin-top: -18px;
}

.about .about__top h3 {
  font-size: 40px;
  font-weight: 700;
  width: fit-content;
  margin: 0 auto;
  line-height: 1.1;
}

.about .about__top h4 {
  font-weight: 300;
  font-size: 18px;
  letter-spacing: 1.3333px;
  margin: 0;
  text-align: center;
}

.about .about__middle {
  padding: 40px 0;
  background-color: var(--enter-blue);
}

.about .about__middle .about__list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-left: 32px;
  margin: 0 8px;
  width: fit-content;
}

.about .about__middle .about__list::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 100%;
  background-color: var(--enter-white);
  content: '';
}

.about .about__middle .about__items {
  display: flex;
  flex-wrap: wrap;
  gap: 45px;
}

.about .about__middle .about__item {
  min-width: 272px;
}

.about .about__middle .about__item:nth-child(2) {
  min-width: unset;
}

.about .about__middle .about__item h3 {
  font-size: 32px;
  letter-spacing: 1px;
  color: var(--enter-pink);
  margin: 0;
}

.about .about__middle .about__item p {
  margin-top: 0;
  margin-bottom: 0;
  white-space: nowrap;
  letter-spacing: 1px;
}

@media (min-width: 1280px) {
  .about .about__middle .about__items {
    gap: 90px;
  }
}

@media (max-width: 767.98px) {
  .about .heading h2 {
    gap: 4px;
    font-size: 36px;
  }

  .about .about__top h3 {
    font-size: 24px;
  }

  .about .about__top h4 {
    font-size: 14px;
  }

  .about .about__middle .about__list {
    gap: 16px;
    padding-left: 16px;
  }

  .about .about__middle .about__items {
    gap: 16px;
  }

  .about .about__middle .about__item h3 {
    font-size: 24px;
  }

  .about .about__middle .about__item p {
    margin-top: 4px;
    font-size: 14px;
  }
}

/* .milestone section */
.milestone {
  position: relative;
  width: 100%;
  background: url('../assets/images/home/about.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.milestone::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(6, 6, 6, 0.5);
  content: '';
  z-index: 1;
}

.milestone .heading {
  background-color: transparent;
}

.milestone .milestone__list {
  padding-top: 120px;
  padding-bottom: 120px;
}

.milestone .milestone__row {
  display: flex;
  flex-wrap: wrap;
  gap: 60px 20px;
  align-items: stretch;
}

.milestone .milestone__col {
  position: relative;
  flex: 0 0 calc(25% - 15px);
}

.milestone .milestone__col::before {
  position: absolute;
  top: 50%;
  left: -20px;
  width: 20px;
  height: 1px;
  background-color: var(--enter-white);
  content: '';
  opacity: .6;
}

.milestone .milestone__col:nth-child(4n-3)::before {
  display: none;
}

.milestone .milestone__item {
  background-color: rgba(0, 27, 200, 0.47);
  padding: 6px 12px;
  height: 100%;
}

.milestone .milestone__item p {
  margin: 0;
}

.milestone .milestone__item h3 {
  font-size: 18px;
  margin: 0;
  margin-bottom: 8px;
}

.milestone .milestone__item>div {
  font-size: 12px;
}

.milestone .milestone__item>div>div:not(:first-child) {
  margin-top: 8px;
}

.milestone .milestone__bottom {
  text-align: center;
  margin-top: 100px;
}

.milestone .milestone__bottom h3 {
  font-size: 30px;
  letter-spacing: 1px;
  font-weight: 700;
  margin: 0;
  text-align: center;
}

.milestone .milestone__bottom h4 {
  font-weight: 300;
  letter-spacing: 1px;
  margin: 0;
}

@media (max-width: 767.98px) {
  .milestone .milestone__list {
    padding-top: 75px;
    padding-bottom: 90px;
  }

  .milestone .milestone__row {
    gap: 40px 20px;
  }

  .milestone .milestone__col {
    flex: 0 0 calc(50% - 10px);
  }

  .milestone .milestone__col:nth-child(4n-3)::before {
    display: block;
  }

  .milestone .milestone__col:nth-child(odd)::before {
    display: none;
  }

  .milestone .milestone__bottom {
    margin-top: 90px;
  }
  
  .milestone .milestone__bottom h3 {
    font-size: 17px;
  }

  .milestone .milestone__bottom h4 {
    font-size: 12px;
  }
}

@media (max-width: 575.98px) {
  .milestone .milestone__list {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .milestone .milestone__col {
    flex: 0 0 100%;
  }

  .milestone .milestone__col::before {
    display: none;
  }

  .milestone .milestone__col::after {
    position: absolute;
    bottom: -40px;
    left: 50%;
    width: 1px;
    height: 28px;
    background-color: var(--enter-white);
    content: '';
    opacity: .6;
  }

  .milestone .milestone__col:last-child::after {
    display: none;
  }

  .milestone .milestone__bottom {
    margin-top: 60px;
  }

  .milestone .milestone__bottom h3 {
    font-size: 16px;
    letter-spacing: unset;
  }

  .milestone .milestone__bottom h4 {
    font-size: 10px;
    margin-top: 4px;
  }
}

/* .services section */
.services {}

.services .services__list {
  display: flex;
  flex-wrap: wrap;
}

.services .services__item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 50%;
  box-sizing: border-box;
  background-color: var(--enter-light-grey);
  padding: 16px;
  height: 332px;
  text-decoration: none;
  color: white;
}

.services .services__item:nth-child(8n + 2) {
  background-color: var(--enter-light-blue);
}

.services .services__item:nth-child(8n + 3) {
  background-color: var(--enter-dark-green);
}

.services .services__item:nth-child(8n + 6) {
  background-color: var(--enter-dark-red);
}

.services .services__item:nth-child(8n + 7) {
  background-color: var(--enter-light-blue);
}

.services .services__item-outer {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: 100%;
}

.services .services__item-inner {
  width: 290px;
  max-width: 100%;
  text-align: left;
}

.services .services__item-inner>div {
  min-height: 94px;
  margin-top: 8px;
  line-height: 1.33333;
}

.services .services__item-inner h3 {
  font-size: 40px;
  font-weight: 500;
  line-height: 1;
  margin: 0;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.services .services__item-inner h4 {
  font-size: 16px;
  font-weight: 400;
  padding: 1px 6px;
  margin-top: 8px;
  margin-bottom: 14px;
  border: 1px solid var(--enter-white);
  text-align: center;
  width: 100px;
}

.services .services__item-inner p {
  font-size: 14px;
  margin: 0;
  letter-spacing: 0.5px;
}

@media (max-width: 999.98px) {
  .services .services__item-outer {
    width: calc(50vw - 32px);
  }
}

@media (max-width: 767.98px) {
  .services .services__item {
    height: 280px;
  }

  .services .services__item-inner {
    width: unset;
  }

  .services .services__item-inner>div {
    min-height: 80px;
  }

  .services .services__item-inner h3 {
    font-size: 24px;
  }

  .services .services__item-inner h4 {
    font-size: 14px;
    width: 80px;
  }

  .services .services__item-inner p {
    font-size: 12px;
  }
}

/* .brand-wall section */
.brand-wall {
  background-color: var(--enter-dark-blue);
}

.brand-wall .heading {
  background-color: transparent;
}

.brand-wall .brand-wall__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
  gap: 8px;
  margin-top: 10px;
}

.brand-wall .brand-wall__col {
  flex: 0 0 calc(33.3333% - 8px);
  font-size: 12px;
  letter-spacing: 0.5px;
}

.brand-wall .brand-wall__bottom {
  width: 100%;
  height: 120px;
  background-color: var(--enter-dark-blue);
}

@media (max-width: 767.98px) {
  .brand-wall .brand-wall__col {
    flex: 0 0 calc(50% - 8px);
    gap: 16px;
  }

  .brand-wall .brand-wall__col:nth-child(2) {
    margin-left: 8px;
  }

  .brand-wall .brand-wall__col:nth-child(3) {
    margin-top: -8px;
  }

  .brand-wall .brand-wall__bottom {
    height: 100px;
  }

  .brand-wall .brand-wall__row {
    justify-content: flex-start;
  }
}

/* .news section */
.news {}

.news .news__item {
  display: flex;
  justify-content: center;
}

.news .news__item .news__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 50px 16px;
  width: calc(40vw - 32px);
}

.news .news__item .news__content-inner {
  width: 352px;
  max-width: 100%;
}

.news .news__item .news__content-inner>div {
  width: 340px;
  max-width: 100%;
}

.news .news__item .news__image {
  width: 60vw;
}

.news .news__item .news__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news .news__item:nth-child(1) {
  background-color: var(--enter-light-pink);
}

.news .news__item:nth-child(2) {
  background-color: var(--enter-blue);
}

.news .news__content .date {
  font-size: 24px;
  margin-bottom: 16px;
}

.news .news__content h3 {
  font-size: 26px;
  line-height: 1.3333;
  letter-spacing: 1px;
  margin: 0;
}

.news .news__content p {
  font-size: 12px;
  line-height: 1.3333;
  letter-spacing: 0.5px;
}

.news .news__content p:not(:first-child) {
  display: none;
}

.news .news__link {
  display: flex;
  justify-content: flex-end;
  margin-top: 16px;
}

.news .news__link a {
  font-size: 18px;
  color: var(--enter-white);
  text-decoration: none;
  letter-spacing: 1.3333px;
}

.news .news__link a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 767.98px) {
  .news .news__item:nth-child(1) {
    flex-direction: column-reverse;
  }

  .news .news__item:nth-child(2) {
    flex-direction: column;
  }

  .news .news__item .news__image {
    width: 100%;
  }

  .news .news__item .news__content {
    padding: 48px 16px;
    align-items: flex-start;
    width: calc(100% - 32px);
  }

  .news .news__content .date {
    font-size: 20px;
  }

  .news .news__content h3 {
    font-size: 24px;
  }

  .news .news__link a {
    font-size: 16px;
  }

  .news .news__item .news__content-inner {
    width: 100%;
  }

  .news .news__item .news__content-inner>div {
    width: 100%;
  }
}

/* .blog section */
.blog {}

.blog .news__item:nth-child(1) {
  background-color: var(--enter-dark-green);
}

.blog .news__item:nth-child(2) {
  background-color: var(--enter-dark-blue);
}

.blog .news__item .news__image img {
  object-fit: cover;
}

/* .contact section */
.contact {}
