:root {
  /* Font */
  --font-family: "Inter Tight", sans-serif;
  /* Brand */
  --brand: #ffbe8f;
  --brand-dim: rgba(255, 190, 143, 0.16);
  --brand-dim-2: rgba(255, 190, 143, 0.24);
  --black: #19191a;
  --black-2: #000000;
  --white: #ffffff;
  --white-2: #a8a8a8;
  --grey: #6b6b6b;

  /* BG */
  --bg-brand: var(--brand);
  --bg-black: var(--black);
  --bg-black-2: var(--black-2);

  /* Text */
  --text-1st: var(--white);
  --text-2nd: var(--white-2);
  --text-black: var(--black);

  /* Icon */
  --icon-1st: var(--white);
  --icon-2nd: var(--white-2);

  /* Border */
  --border-1st: var(--white);
  --border-2nd: var(--white-2);
}

body {
  font-family: var(--font-family);
  font-weight: 400;
  line-height: 1.5;
  background-color: var(--bg-black);
  color: var(--text-1st);
  display: flex;
  flex-direction: column;
}

h1 {
  font-size: 4.8rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 1px;
}

h2 {
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.2;
}

h3 {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.2;
}

h4 {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.2;
}

p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

p.p_2nd {
  color: var(--white-2);
}

a {
  text-decoration: none;
  color: var(--text-1st);
}

img {
  max-width: 100%;
  object-fit: cover;
}

section {
  overflow: hidden;
  width: 100%;
}

.global-wrap {
  display: flex;
  padding: 0 2.5rem;
  width: 100%;
}

input {
  display: flex;
  justify-content: start;
  align-items: center;
  padding-bottom: 1rem;
  color: var(--text-1st);
  border: none;
  border-bottom: 1px solid var(--border-2nd);
  border-radius: 0;
  width: 100%;
  background-color: transparent;
  font-family: inherit;
}

input::placeholder {
  color: var(--text-2nd);
  font-size: 1rem;
}

textarea {
  display: flex;
  justify-content: start;
  align-items: center;
  padding-bottom: 100px;
  color: var(--text-1st);
  border: none;
  border-bottom: 1px solid var(--border-2nd);
  border-radius: 0;
  width: 100%;
  background-color: transparent;
  font-family: inherit;
  font-size: 1rem;
}

textarea::placeholder {
  color: var(--text-2nd);
  font-size: 1rem;
}

button {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  background-color: transparent;
  border: none;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 1rem;
  gap: 0.5rem;
  color: var(--brand);
  transition: ease 0.3s;
  cursor: pointer;
}

button:hover {
  scale: 0.9;
  transition: ease 0.3s;
}

.btn-solid {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  padding: 0.8rem 1.5rem;
  background-color: var(--brand);
  border: none;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 1.25rem;
  gap: 0.5rem;
  color: var(--text-black);
  cursor: pointer;
}

.btn-ghost {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  color: var(--brand);
}

::-webkit-scrollbar {
  display: flex;
  background-color: transparent;
  width: 6px;
}

::-webkit-scrollbar-thumb {
  background-color: rgb(97, 97, 97);
  border-radius: 10px;
}

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  outline: none;
  /* border: 1px solid #d6d6d6; */
}

/* Start here */
/* navbar */
nav {
  position: fixed;
  top: 0%;
  left: 0%;
  right: 0%;
  z-index: 100;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2.5rem 2.5rem 0 2.5rem;
}

#logo {
  color: var(--brand);
  font-weight: 600;
}

.navmenu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
}

.navcont {
  display: flex;
  justify-content: start;
  align-items: center;
  width: 100%;
}

.navcont_end {
  justify-content: end;
}

.navlink {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  font-weight: 500;
}

/* open navmobile */
.navmobile-open {
  display: none;
  justify-content: center;
  align-items: center;
  background-color: var(--brand-dim);
  color: var(--brand);
  padding: 0.5rem 1rem;
  flex: none;
  border-radius: 99px;
  gap: 0.5rem;
}

/* navmobile */
.navmobile {
  display: none;
  justify-content: end;
  align-items: center;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  z-index: 110;
}

.navmobile-wrap {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: column;
  height: 100%;
  width: 100%;
  max-width: 320px;
  background-color: var(--bg-black-2);
  padding: 1rem;
  gap: 1.5rem;
}

.navmobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.navmobile-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 120px;
}

.navmobile-close {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--brand-dim);
  color: var(--brand);
  padding: 12px;
  border-radius: 99px;
  font-size: 1rem;
}

.navmobile-body {
  display: flex;
  justify-content: center;
  align-items: start;
  flex-direction: column;
  width: 100%;
}

.navmobile-btn {
  display: flex;
  justify-content: start;
  align-items: center;
  width: 100%;
}

/* hero */

.hero-main-wrap {
  background: var(--bg-black-2);
  position: sticky;
  top: 0;
  z-index: 0;
  will-change: transform;
}

.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: relative;
  background-color: var(--bg-black);
}

.blur-circle {
  width: 560px;
  height: 560px;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  filter: blur(300px);
  background-color: #7876c1;
  border-radius: 999px;
  transform: translate(-50%, -50%);
}

.hero-cont {
  display: grid;
  grid-template-rows: 1fr 1fr 1fr;
  grid-template-columns: 1fr;
  width: 100%;
  height: 100vh;
}

.hero-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.hero-row-bot {
  align-items: end;
  padding-bottom: 2.5rem;
}

.hero-intro {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 800px;
  position: relative;
  z-index: 2;
}

#hero_p_location {
  max-width: 100px;
}

#hero_h1 {
  text-align: center;
}

#hero_p {
  text-align: center;
  max-width: 400px;
}

.hero-timer {
  display: flex;
  justify-content: center;
  align-items: end;
  flex-direction: column;
}

.clock-wrap {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 2px;
  width: 100px;
}

.clock {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 76px;
}

.hero-ft-work {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: column;
  gap: 4px;
  width: 180px;
}

.hero-ft-work:hover {
  color: var(--brand);
}

.hero-services {
  display: flex;
  justify-content: end;
  align-items: end;
  flex-direction: column;
  gap: 4px;
  width: 180px;
}

/* About us */

.section-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: var(--bg-black);
  z-index: 1;
}

.about {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 12.5rem 0;
  background-color: var(--bg-black);
}

.about-cont {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  gap: 10rem;
}

.about-intro {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(1, 1fr);
  gap: 1.5rem;
}

.about-tagline {
  grid-column: span 2 / span 2;
}

.tagline {
  display: flex;
  justify-self: start;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  border: 1px solid var(--brand);
  border-radius: 99px;
  color: var(--brand);
  background-color: var(--brand-dim);
  padding: 4px 12px;
}

.tl-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 10px;
  background-color: var(--brand);
}

.tag_p {
  font-size: 0.875rem;
  line-height: 1.2;
}

.about-content {
  grid-column: span 6 / span 6;
  grid-column-start: 5;
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: column;
  gap: 64px;
}

.about-imgs {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(1, 1fr);
  justify-content: start;
  align-items: start;
  gap: 1.5rem;
}

.about-img-sm {
  grid-column: span 3 / span 3;
  display: flex;
  justify-content: space-between;
  align-items: end;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.ab-overlay {
  position: absolute;
  z-index: 1;
  background-color: var(--bg-black);
  width: 100%;
  height: 100%;
}

.about-img-lg {
  grid-column: span 6 / span 6;
  grid-column-start: 7;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: end;
  flex-direction: column;
}

.ab-overlay2 {
  position: absolute;
  z-index: 1;
  background-color: var(--bg-black);
  width: 100%;
  height: 100%;
}

#spacer {
  padding-left: 280px;
}

/* Our mission */
.mission {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2.5rem 0 18.75rem 0;
  position: relative;
}

.ms-icon {
  position: absolute;
  transform: rotate(-15deg);
  z-index: 0;
  right: -4%;
  bottom: 15%;
}

.gw-center {
  justify-content: center;
  align-items: center;
}

.mission-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.mission-cont {
  display: flex;
  width: 100%;
  max-width: 996px;
  flex-direction: column;
  align-items: flex-start;
  gap: 64px;
}

.ms-divider {
  width: 100%;
  height: 1px;
  background-color: var(--border-2nd);
}

.mission-list {
  display: flex;
  width: 100%;
  align-items: flex-start;
  align-content: flex-start;
  gap: 80px 160px;
  flex-wrap: wrap;
}

.mission-item {
  display: flex;
  min-width: 300px;
  max-width: 418px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1rem;
  flex: 1 0 0;
}

.ms-item-number {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--brand-dim);
  color: var(--brand);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 99px;
}

/* Big image */
.big-img {
  background-image: url(img/Work\ space.jpg);
  background-position: 50%;
  background-size: fill;
  width: 100%;
  height: 100dvh;
}

/* What we have */

.wwh {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 12.5rem;
  padding: 12.5rem 0;
}

.wwh_h4 {
  color: var(--text-2nd);
}

.wwh-cont {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(1, 1fr);
  gap: 1.5rem;
  width: 100%;
  position: relative;
}

.wwh-icon {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1px;
}

.wwh-header {
  display: flex;
  grid-column: span 4 / span 4;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  align-self: stretch;
}

.wwh-list-item {
  display: flex;
  grid-column: span 6 / span 6;
  grid-column-start: 6;
  justify-content: center;
  align-content: center;
  flex-direction: column;
  gap: 4rem;
  padding-top: 4rem;
  width: 100%;
}

.wwh-item {
  display: flex;
  justify-content: center;
  align-content: center;
  gap: 32px;
}

.wwh-number {
  font-size: 10rem;
  font-style: normal;
  font-weight: 400;
  line-height: 80%;
  width: 380px;
  flex: none;
}

.wwh-item-content {
  display: flex;
  justify-content: center;
  align-content: center;
  flex-direction: column;
  gap: 1rem;
}

#h4_wwh {
  display: flex;
  justify-content: center;
  align-content: center;
  color: var(--text-2nd);
  text-align: center;
}

.divider {
  width: 100%;
  height: 1px;
  background-color: var(--border-2nd);
}

/* Selected works */
.work {
  display: flex;
  justify-content: start;
  align-content: start;
  width: 100%;
  height: 500vw;
  background-color: var(--bg-black-2);
  z-index: 2;
  overflow: visible;
}

.work-wrap {
  display: flex;
  justify-content: center;
  align-content: center;
  width: 100%;
  height: 100vh;
  flex: none;
  position: sticky;
  top: 0;
}

.work-header {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 100vh;
  gap: 1rem;
  position: absolute;
  z-index: -1;
}

#workPara {
  width: 100%;
  max-width: 500px;
  text-align: center;
}

.work-slide {
  display: flex;
  justify-content: start;
  align-items: start;
  width: 100%;
  flex: none;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.work-slide-wrap {
  display: flex;
  justify-content: start;
  align-items: start;
  width: 100%;
}

.work-item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  flex: none;
  background-color: var(--bg-black-2);
  background-position: 50%;
  background-size: cover;
}

#work_blank {
  background-color: transparent;
}

#work_i1 {
  background-image: url(img/Picker.png);
}

#work_i2 {
  background-image: url(img/Personal\ portfolio.png);
}

#work_i3 {
  background-image: url(img/The\ Q-library.png);
}

#work_i4 {
  background-image: url(img/All\ works.png);
}

.work-item-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 2rem;
}

/* Our team */
.team {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  padding: 2.5rem;
}

.team-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.team-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  align-self: stretch;
  flex-direction: column;
  flex: none;
  gap: 1.5rem;
  width: 35%;
  height: 100%;
}

.team-intro {
  display: flex;
  align-items: start;
  align-self: start;
  flex-direction: column;
  gap: 0.5rem;
}

#team_p {
  width: 240px;
}

/* prev and next */
.team-control {
  display: flex;
  justify-content: start;
  align-items: end;
  gap: 2rem;
  cursor: pointer;
}

.t-next {
  display: flex;
  align-items: center;
  align-self: center;
  padding: 12px;
  background-color: var(--brand-dim);
  border-radius: 99px;
  color: var(--brand);
  font-size: 1.5rem;
}

.t-prev {
  display: flex;
  align-items: center;
  align-self: center;
  padding: 12px;
  background-color: var(--brand-dim);
  border-radius: 99px;
  color: var(--brand);
  font-size: 1.5rem;
}

.t-next:hover {
  background-color: var(--brand-dim-2);
}

.t-prev:hover {
  background-color: var(--brand-dim-2);
}

.team-slide {
  display: flex;
  justify-content: center;
  align-content: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.team-slide-wrap {
  display: flex;
  justify-content: start;
  align-items: center;
  width: 100%;
  height: 100%;
}

.mem-info {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: column;
  flex: none;
  width: 100%;
  height: 100%;
  opacity: 0.3;
}

.team_h3 {
  padding-top: 1rem;
}

.team_p {
  color: var(--text-2nd);
}

.mem-avatar {
  width: 100%;
  height: 100%;
  background-image: url(https://images.pexels.com/photos/2379004/pexels-photo-2379004.jpeg);
  background-position: 50%;
  background-size: cover;
}

.mem-avatar2 {
  background-image: url(https://images.pexels.com/photos/1587009/pexels-photo-1587009.jpeg);
}

.mem-avatar3 {
  background-image: url(https://images.pexels.com/photos/1681010/pexels-photo-1681010.jpeg);
}

.mem-active {
  opacity: 1;
}

/* Testimonial */

.testimonial {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
}

.testi-wrap {
  display: flex;
  justify-content: center;
  align-items: start;
  flex-direction: column;
  width: 100%;
  gap: 80px;
}

.testi-header {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: column;
  width: 100%;
  gap: 0.5rem;
}

#testi_h1 {
  width: 600px;
}

.testi-slide {
  display: flex;
  justify-content: start;
  align-items: center;
  width: 100%;
  gap: 1.5rem;
}

.fb-cont {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: column;
  width: 100%;
  max-width: 600px;
  padding: 2.5rem;
  gap: 1.5rem;
  background-color: var(--bg-black-2);
}

.fb-header {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 1rem;
  width: 100%;
}

.fb-avatar {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: none;
  width: 80px;
  height: 80px;
  border-radius: 99px;
  overflow: hidden;
}

.fb-info {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: column;
  width: 100%;
}
.testi-talk {
  display: flex;
  justify-content: end;
  align-items: start;
  width: 100%;
}

#p_test {
  width: 320px;
  text-align: end;
}

/* Footer */

.footer {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  gap: 2.5rem;
  background-color: var(--bg-black-2);
  padding: 12.5rem 0 0 0;
}

.ft-row-top {
  display: flex;
  justify-content: center;
  align-items: start;
  gap: 0.5rem;
  width: 100%;
  overflow: hidden;
}

/* form contact */

.ct-cont {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(1, 1fr);
  gap: 1.5rem;
  padding: 6.25rem 0 12.5rem 0;
}

.ct-tag {
  grid-column: span 2 / span 2;
}

.ct-form {
  grid-column: span 6 / span 6;
  grid-column-start: 6;
  display: flex;
  justify-content: center;
  align-items: start;
  flex-direction: column;
  width: 100%;
  gap: 64px;
}

.form-input {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 2.5rem;
  width: 100%;
}

.ct-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
}

/* last row */
.ft-row-bot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 2.5rem 2.5rem 2.5rem;
}

#p_ftlink {
  color: var(--brand);
}

.ft-socials {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.social:hover {
  color: var(--brand);
  cursor: pointer;
}

/* Responsive */
@media screen and (max-width: 1919px) {
  .global-wrap {
    padding: 0 1.5rem;
  }

  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  h4 {
    font-size: 1.3rem;
  }

  p {
    font-size: 0.875rem;
  }

  #spacer {
    padding-left: 200px;
  }

  #testi_h1 {
    width: 500px;
  }

  .wwh-number {
    font-size: 7.5rem;
    width: 280px;
  }

  #workPara {
    max-width: 400px;
  }

  .team {
    padding: 1.5rem;
  }

  .ft-row-bot {
    padding: 0 1.5rem 1.5rem 1.5rem;
  }
}

@media screen and (max-width: 1399px) {
  .global-wrap {
    padding: 0 1.5rem;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.5rem;
  }

  h3 {
    font-size: 2rem;
  }

  h4 {
    font-size: 1.5rem;
  }

  .hero-intro {
    max-width: 600px;
  }

  /* about */
  #spacer {
    padding-left: 0px;
  }

  /* what we have */
  .wwh-number {
    font-size: 7rem;
    width: 280px;
  }

  /* mission */
  .ms-icon {
    display: none;
  }

  /* testimonial */
  .fb-cont {
    flex: none;
  }

  #testi_h1 {
    width: 400px;
  }

  .testi-slide {
    overflow-x: scroll;
  }

  .testi-slide::-webkit-scrollbar {
    height: 4px;
  }
}

@media screen and (max-width: 1024px) {
  .global-wrap {
    padding: 0 1.5rem;
  }

  p {
    font-size: 0.875rem;
  }
  /* navbar */
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1.5rem 0 1.5rem;
  }

  /* hero */
  .hero-intro {
    max-width: 500px;
  }

  /* about */
  .about-intro {
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    gap: 1.5rem;
  }

  .about-imgs {
    display: flex;
    flex-direction: column-reverse;
  }

  .about-img-sm {
    gap: 1.5rem;
  }

  .tag_p {
    font-size: 0.75rem;
  }

  #spacer {
    padding-left: 240px;
  }

  /* mission */

  .mission-item {
    max-width: none;
  }

  /* what we have */
  .wwh-cont {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
  }

  .wwh-icon {
    display: none;
  }

  /* work */
  .work-header {
    padding: 1.5rem;
    width: 100%;
  }

  /* team */
  .team {
    padding: 1.5rem;
  }

  .team-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    flex-direction: column;
    gap: 1.5rem;
  }

  .team-header {
    width: 100%;
    height: auto;
  }

  #testi_h1 {
    width: 400px;
  }

  /* contact */
  .ct-cont {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
  }

  .btn-solid {
    font-size: 1.125rem;
  }
}

@media screen and (max-width: 720px) {
  .global-wrap {
    padding: 0 1rem;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  h4 {
    font-size: 1rem;
  }

  /* navbar */
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1rem 0 1rem;
  }

  .navmenu {
    display: none;
  }

  .navcont_end {
    display: none;
  }

  .navmobile-open {
    display: flex;
  }

  /* hero */
  .hero-main-wrap {
    position: static;
  }

  .blur-circle {
    filter: blur(60px);
    opacity: 0.22;
  }

  .hero-row {
    justify-content: center;
  }

  #hero_p_location {
    display: none;
  }

  .hero-timer {
    display: none;
  }

  .hero-ft-work {
    display: none;
  }

  .hero-services {
    display: none;
  }

  /* about */
  .about {
    padding: 2.5rem 0;
  }

  .about-cont {
    gap: 5rem;
  }

  #spacer {
    padding-left: 0px;
  }

  /* mission */
  .mission {
    padding: 2.5rem 0 5rem 0;
  }

  .mission-list {
    gap: 2.5rem;
  }

  /* what we have */
  .wwh {
    gap: 5rem;
    padding: 5rem 0;
  }

  .wwh-list-item {
    padding-top: 2rem;
  }

  .wwh-item {
    flex-direction: column;
    gap: 1.5rem;
  }

  .wwh-number {
    font-size: 6rem;
  }

  /* work */
  .work {
    flex-direction: column;
    height: auto;
  }

  .work-header {
    padding: 1rem;
    position: static;
  }

  #workPara {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

  .work-wrap {
    flex-direction: column;
    height: auto;
    position: static;
  }

  .work-slide {
    flex-direction: column;
  }

  .work-slide-wrap {
    flex-direction: column;
  }

  .work-item {
    height: 100vh;
  }

  .work-item-content {
    gap: 1rem;
  }

  #work_blank {
    display: none;
  }

  /* team */
  .team {
    padding: 2.5rem 1rem;
  }

  /* testimonial */
  .fb-cont {
    height: 240px;
    padding: 1.5rem;
  }

  #testi_h1 {
    width: 280px;
  }

  /* footer */
  .footer {
    padding: 5rem 0 0 0;
  }

  .ft-row-bot {
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    padding: 0 1rem 1rem 1rem;
  }

  /* contact */
  .ct-row {
    flex-direction: column;
  }

  .ct-cont {
    padding: 5rem 0 5rem 0;
  }

  .btn-solid {
    font-size: 1rem;
    padding: 0.5rem 1.5rem;
  }
}
