/* Document */

* {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  border: none;
  padding: 0;
  margin: 0;
  -ms-overflow-style: none; /* IE and Edge */
}

body::-webkit-scrollbar {
  display: none;
  scrollbar-width: none;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

body {
  background-color: #fafafa;
  color: #1d1d1d;
  font-family: "Raleway", sans-serif;
  letter-spacing: 2.4px;
  margin: auto;
  max-width: 1920px;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
  border-radius: 2px;
}

ol,
ul,
li,
a {
  text-decoration: none;
  color: #1d1d1d;
  font-family: "Raleway", sans-serif;
  list-style: none;
  transition: 0.2s;
}

h1 {
  font-size: 72px;
  font-weight: 700;
  line-height: 96px;
}

h2 {
  font-size: 56px;
  font-weight: 700;
  letter-spacing: 6.4px;
}

h3 {
  font-size: 40px;
  font-weight: 600;
}

h4 {
  font-size: 32px;
  font-weight: 600;
  line-height: 48px;
}

h5 {
  font-size: 24px;
  font-weight: 600;
  line-height: 36px;
}

h6 {
  font-size: 16px;
  font-weight: 500;
}

p {
  font-size: 16px;
  font-weight: 300;
  font-family: "Roboto", sans-serif;
  letter-spacing: 1.2px;
  line-height: 24px;
}

button {
  font-family: "Raleway", sans-serif;
  cursor: pointer;
  padding: 1rem 1.5rem;
  font-size: 1.25rem;
  color: #fafafa;
  font-weight: 500;
  letter-spacing: 1.5px;
  transition: 0.4s;
}

.border-rad {
  border-radius: 2px;
}

.container {
  padding: 0 5rem;
}

/* Navigation */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5rem;
  height: 120px;
  background-color: #fff;
}

nav .left {
  display: flex;
  align-items: center;
  gap: 5rem;
}

nav .links {
  display: flex;
  gap: 5rem;
}

nav .active hr {
  width: 32px;
  border-top: 1px solid #1b4a90;
  position: absolute;
  margin-top: 4px;
}

nav button {
  background-color: #515257;
}

nav button:hover {
  background-color: #1b4a90;
}

nav a,
footer a {
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  width: fit-content;
}

nav a:hover,
footer a:hover {
  color: #1b4a90;
}

/* Navigation Toggle */

.hamburger-menu {
  display: none;
  height: 48px;
  width: 48px;
  transform: 0.2s;
  position: relative;
}

.hamburger-menu .checkbox {
  position: absolute;
  opacity: 0;
  height: 100%;
  width: 100%;
  cursor: pointer;
}

.line {
  transition: 0.5s;
  stroke-width: 2px;
  stroke: #1d1d1d;
}

.line-two {
  transition: 0.5s;
  stroke-width: 2px;
  stroke: #1d1d1d;
}

.lineTop {
  stroke-dashoffset: 25;
}

.lineBottom {
  stroke-dashoffset: 60;
}

.lineMid {
  stroke-dasharray: 40 40;
}

.hamburger-menu .checkbox:checked + svg .lineTop {
  stroke-dashoffset: 0;
  transform-origin: left;
  transform: rotateZ(45deg) translate(-7px, -5px);
}

.hamburger-menu .checkbox:checked + svg .lineMid {
  stroke-dashoffset: 40;
}

.hamburger-menu .checkbox:checked + svg .lineBottom {
  stroke-dashoffset: 0;
  transform-origin: left;
  transform: rotateZ(-45deg) translate(-5px, 5px);
}

.close-btn-top {
  stroke-dashoffset: 0;
  transform-origin: left;
  transform: rotateZ(45deg) translate(-7px, -5px);
}

.close-btn-bottom {
  stroke-dashoffset: 0;
  transform-origin: left;
  transform: rotateZ(-45deg) translate(-5px, 5px);
}

/* Pop-up */

.no-scroll {
  overflow: hidden;
}

.pop-up {
  display: flex;
  flex-direction: column;
  position: fixed;
  width: 100%;
  background-color: #fff;
  border-radius: 2px 2px 0 0;
  z-index: 100;
  bottom: 0;
  transform: translateY(100%);
}

.menu-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2.5rem;
  border-bottom: 1px solid #d9d9d9;
}

.pop-up .line {
  stroke: #1d1d1d;
}

.pop-up-menu {
  display: flex;
  flex-direction: column;
  background-color: #fff;
}

.chevron {
  position: absolute;
  right: 0;
  margin-right: 3.5rem;
}

.pop-up-menu hr {
  border-top: 1px solid #1d1d1d;
  opacity: 0.08;
  width: 100%;
}

.pop-up-menu div {
  position: relative;
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 2.5rem;
}

.pop-up-contact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #515257;
}

.pop-up-contact h5 {
  font-weight: 600;
  color: #fafafa;
}

.pop-up.active > body:not(.pop-up) {
  filter: brightness(0.4);
}

.dark-overlay {
  background-color: #1d1d1d;
  position: fixed;
  opacity: 0;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100vh;
  width: 100vw;
  display: none;
}

.dark-overlay.active {
  display: block;
  opacity: 0.72;
  animation: fadeIn 0.4s ease-in-out;
  animation-fill-mode: forwards;
  z-index: 2;
}

.dark-overlay.remove {
  display: block;
  opacity: 0;
  animation: fadeOut 0.4s ease-in-out;
  animation-fill-mode: forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0.72;
  }
}

@keyframes fadeOut {
  from {
    opacity: 0.72;
  }
  to {
    opacity: 0;
  }
}

/* Sticky Menu */

.sticky-menu {
  position: fixed;
  bottom: 5rem;
  right: 5rem;
  z-index: 100;
}

.sticky-menu svg {
  cursor: pointer;
  transition: 0.2s;
  filter: drop-shadow(
    2px 4px 4px
      rgba(
        0.11372549086809158,
        0.11372549086809158,
        0.11372549086809158,
        0.07999999821186066
      )
  );
}

.sticky-menu svg:hover {
  transform: scale(1.04);
}

.main-btn {
  height: 80px;
  position: relative;
  z-index: 2;
}

.sub-menu {
  position: relative;
  height: 80px;
  width: 80px;
  display: flex;
  top: 0;
  margin-top: -80px;
  padding: 0.5rem;
}

.sub-circle {
  position: absolute;
  padding: 0;
  border-radius: 25px;
  height: 64px;
  color: transparent;
  border-radius: 32px;
}

.sticky-menu #first,
.sticky-menu #second,
.sticky-menu #third {
  position: absolute;
}

.mobile-btn {
  display: none;
}

.menu-tag {
  background-color: #fff;
  filter: drop-shadow(
    4px 4px 2px
      rgba(0.11372549086809158, 0.11372549086809158, 0.11372549086809158, 0.04)
  );
  padding: 0.75rem 1rem;
  width: fit-content;
  white-space: nowrap;
  height: 42px;
  position: absolute;
  z-index: 108;
  display: none;
  opacity: 0;
  transition: 0.4s;
}

.menu-tag svg {
  margin-top: 10px;
  margin-left: 182px;
}

.menu-tag#first {
  right: 112px;
  bottom: 96px;
}

.menu-tag#second {
  right: 74px;
  bottom: 173px;
}

.menu-tag#third {
  right: -2px;
  bottom: 211px;
}

.menu-tag#second svg {
  margin-left: 106px;
}

.menu-tag#third svg {
  margin-left: 152px;
}

/* Footer */

footer {
  display: grid;
  grid-template-columns:
    [first] fit-content(25%) [line2] fit-content(25%) [line3] fit-content(25%)
    [line4] fit-content(25%) [end];
  justify-content: space-between;
  padding: 5rem 5rem 2.5rem;
  background-color: #fff;
  margin-top: 120px;
}

footer .left {
  max-width: 356px;
}

.footer-paragraph a {
  font-size: 1rem;
  font-weight: 400;
  color: #1b4a90;
}

footer .right-middle div {
  display: flex;
  align-items: center;
  gap: 1rem;
}

footer .right-middle div:nth-child(4) a {
  line-height: 30px;
}

footer .social-media {
  display: flex;
  gap: 1.5rem;
}

footer .social-media a:hover path {
  fill: #1b4a90;
  transition: 0.2s;
}

footer .hidden-social-media {
  display: none;
}

footer .left,
footer .left-middle,
footer .right-middle,
footer .right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-bottom: 2.5rem;
}

footer .bottom {
  grid-column: 1 / span 4;
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid #d9d9d9;
}

footer .bottom h5 {
  font-size: 1.25rem;
  font-weight: 500;
}

#projects-footer {
  margin-top: 0;
  z-index: 1;
  position: relative;
}

/* Privacy Policy & Terms and Conditions*/

.legal-info {
  display: flex;
  flex-direction: column;
  padding: 5rem;
  border-radius: 2px;
  background: #fff;
  filter: drop-shadow(
    8px 8px 8px
      rgba(
        0.11372549086809158,
        0.11372549086809158,
        0.11372549086809158,
        0.07999999821186066
      )
  );
  margin: 120px 5rem 0;
}

.legal-title {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.main-legal-title {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.legal-info hr {
  border-top: 1px solid #1b4a90;
  width: 200px;
}

.small-hr {
  width: 120px !important;
  opacity: 0.4;
}

.legal-info li {
  list-style: inside;
  line-height: 1.5rem;
}

.terms-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.terms-list ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.policy-sub {
  font-weight: 500;
}

.second-sub {
  padding-bottom: 0.5rem !important;
}

.legal-info-heading {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.legal-info ol {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.legal-info ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Hero */

.hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

video {
  filter: brightness(0.56);
  height: 100%;
  width: 100vw;
  object-fit: cover;
}

.hero-content {
  position: absolute;
  display: flex;
  flex-direction: column;
  color: #fafafa;
  left: 200px;
}

.hero-content h1 {
  letter-spacing: 8.6px;
}

.hero-content h5,
.hero-content h6 {
  font-weight: 400;
}

.hero-content a {
  color: #fafafa;
  width: fit-content;
  margin-top: 1.5rem;
  font-weight: 400;
}

.hero-content hr {
  border-top: 1px solid #fafafa;
  width: 400px;
  margin: 1.25rem 0 2rem;
  opacity: 0.8;
}

.hero-chevron {
  animation: explore 4s ease-in-out infinite;
}

@keyframes explore {
  from {
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -o-transform: translateX(0);
    -ms-transform: translateX(0);
  }
  50% {
    transform: translateX(5px);
    -webkit-transform: translateX(5);
    -moz-transform: translateX(5);
    -o-transform: translateX(5);
    -ms-transform: translateX(5);
  }
  to {
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -o-transform: translateX(0);
    -ms-transform: translateX(0);
  }
}

/* About Us */

.about-us {
  padding: 5rem;
  background-color: #fff;
  margin-bottom: 7.5rem;
}

.about-us .title {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  margin-bottom: 5rem;
}

.about-us .title hr {
  border-top: 1px solid #1b4a90;
  width: 120px;
}

.about-us .content {
  display: grid;
  justify-content: space-between;
  grid-template-columns: auto auto;
  gap: 200px;
}

.about-us .left {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  max-width: 780px;
}

.about-us .left div {
  display: flex;
  flex-direction: column;
}

.about-us .left div hr {
  border-top: 1px solid #1b4a90;
  width: 80px;
  margin: 1rem 0 1.5rem;
}

.about-us .left a {
  margin-top: 2.5rem;
  width: fit-content;
}

.about-us .left a button {
  background-color: #1b4a90;
  border: 1px solid #1b4a90;
}

.about-us .left a button:hover {
  background-color: #fafafa;
  border: 1px solid #1b4a90;
  color: #1b4a90;
}

.about-us .right img {
  height: 100%;
}

/* Map */

.map {
  display: flex;
  padding: 0 5rem;
  margin-bottom: 7.5rem;
}

.map .left {
  background-color: #fff;
  padding: 2.5rem 2.5rem 2.5rem 2.5rem;
  display: flex;
  width: auto;
  max-height: 720px;
}

.map .right {
  position: relative;
}

.map .right img {
  min-height: 720px;
  min-width: 100%;
  object-position: right;
}

.map .sidebar {
  height: 100%;
  border-left: 1px solid #1d1d1d;
  /* padding-right: 2.5rem; */
}

.map .menu {
  padding: 2.5rem 1.5rem 2.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  overflow-y: scroll;
  scrollbar-width: thin;
  scrollbar-color: #aaaaaa #fff;
}

.map .title {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.map .title hr {
  border-top: 1px solid #1b4a90;
  width: 80px;
}

.map .content {
  display: flex;
  gap: 1rem;
  flex-direction: column;
}

.map .content h6 {
  transition: 0.2s;
  cursor: pointer;
}

.map .content h6.active {
  color: #1b4a90;
}

.map .content h6:hover {
  color: #1b4a90;
}

.pin-point {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: 0.4s;
  filter: drop-shadow(
    8px 8px 4px
      rgba(
        0.11372549086809158,
        0.11372549086809158,
        0.11372549086809158,
        0.03999999910593033
      )
  );
}

.pin-point .top {
  display: flex;
  flex-direction: column;
}

.pin-point .bottom {
  display: flex;
}

.pin-point .content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem;
  background-color: #fff;
}

.pin-point .content hr {
  border-top: 1px solid #1b4a90;
  width: 48px;
}

.pin-point img {
  min-height: auto !important;
  min-width: auto !important;
  filter: brightness(0.76);
  transition: 0.4s;
}

.pin-point svg {
  margin: auto;
}

.pin-point:hover img {
  filter: brightness(1);
}

.pin-point img:hover,
.pin-point svg:hover,
.pin-point .content:hover {
  cursor: pointer;
}

.pin-point:hover h6 {
  color: #1b4a90;
}

/* Pin Point Locations */

.pin-point#randolph-avenue {
  right: 562px;
  top: -24px;
  /* display: none; */
  /* opacity: 0; */
}

.pin-point#shirland-road {
  right: 558px;
  top: -24px;
  display: none;
  opacity: 0;
}

.pin-point#ray-massey-way {
  right: 480px;
  top: -26px;
  display: none;
  opacity: 0;
}

.pin-point#college-road {
  right: 524px;
  top: 40px;
  display: none;
  opacity: 0;
}

.pin-point#camden-park-road {
  right: 474px;
  top: 54px;
  display: none;
  opacity: 0;
}

.pin-point#cube-house {
  right: 502px;
  top: 28px;
  display: none;
  opacity: 0;
}

.pin-point#polish-parish-community-house {
  right: 534px;
  top: 46px;
  display: none;
  opacity: 0;
}

.pin-point#green-valley {
  right: 532px;
  top: 82px;
  display: none;
  opacity: 0;
}

.pin-point#purley-oaks-road {
  right: 534px;
  top: 96px;
  display: none;
  opacity: 0;
}

.pin-point#horizon {
  right: 524px;
  top: 84px;
  display: none;
  opacity: 0;
}

.pin-point#laurel-court {
  right: 516px;
  top: 88px;
  display: none;
  opacity: 0;
}

.pin-point#coach-house {
  right: 518px;
  top: 12px;
  display: none;
  opacity: 0;
}

.pin-point#handen-road {
  right: 488px;
  top: 24px;
  display: none;
  opacity: 0;
}

.pin-point#edward-road {
  right: 494px;
  top: 54px;
  display: none;
  opacity: 0;
}

.pin-point#black-eagle-close {
  right: 468px;
  top: 154px;
  display: none;
  opacity: 0;
}

/* Contact Us */

.form {
  margin: 120px 5rem 7.5rem;
  display: flex;
  background-color: #fff;
}

form {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding: 5rem;
  width: 100%;
}

.form-content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.form img {
  border-radius: 2px 0 0 2px;
  width: 42.5vw;
}

.form .title {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form .title p {
  font-size: 1.5rem;
  line-height: 36px;
  letter-spacing: 2.4px;
}

.user-name {
  display: flex;
  gap: 2.5rem;
}

.user-name input {
  margin-top: 0 !important;
}

.form-input {
  width: 100%;
  height: 80px;
  border-radius: 2px;
  border: 1px solid #f1f2f2;
  background: #fff;
  box-shadow: 8px 8px 0px 2px rgba(0, 0, 0, 0.02);
  letter-spacing: 1.6px;
}

textarea {
  height: 240px !important;
  font-size: 1.5rem;
  padding: 1.5rem 1.5rem 0;
  resize: none;
  font-family: "Roboto", sans-serif;
  line-height: 36px;
}

textarea:focus,
input:focus {
  border-color: #1b4a90;
  outline: 0;
}

.input-row input {
  padding-left: 64px;
  font-size: 1.5rem;
}

#myFile::file-selector-button {
  border-radius: 2px;
  border: 1px solid #f1f2f2;
  background: #fff;
  box-shadow: 8px 8px 0px 2px rgba(0, 0, 0, 0.02);
  padding: 0.5rem 1rem;
  color: #515257;
  font-size: 16px;
  font-family: Raleway;
  letter-spacing: 1.6px;
  cursor: pointer;
  margin-right: 0.75rem;
  transition: 0.2s;
}

#myFile::file-selector-button:hover {
  background: #515257;
  color: #fafafa;
}

#myFile {
  font-size: 1rem;
  letter-spacing: 1.2px;
  font-family: "Ralway", sans-serif;
}

.input-row {
  width: 100%;
  display: flex;
  align-items: center;
}

.form svg {
  margin: 0.5rem 1rem 0 1.5rem;
}

label {
  color: #515257;
  font-size: 1.5rem;
  letter-spacing: 1.92px;
  position: absolute;
  display: flex;
  align-items: center;
  pointer-events: none;
}

.message {
  align-items: flex-start !important;
}

.message label {
  padding: 1.5rem 0 0 1.5rem;
}

.form-btn {
  border-radius: 2px;
  border: 1px solid rgba(81, 82, 87, 0.08);
  background: #515257;
  box-shadow: 0px 2px 8px 4px rgba(0, 0, 0, 0.04);
  font-size: 1.5rem;
  font-family: "Raleway", sans-serif;
  letter-spacing: 1.92px;
  color: #fafafa;
  transition: 0.4s;
}

.form-btn:hover {
  background: #1b4a90;
  cursor: pointer;
}

.required {
  color: #f92626;
}

/* Projects Page */

.projects-hero {
  background-image: url(images/projects-hero.webp);
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
}

.projects-hero h2 {
  line-height: 84px;
}

.projects-hero h5 {
  margin-top: -24px;
  letter-spacing: 3.2px;
}

.projects-hero .hero-content {
  left: auto;
  max-width: 792px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.projects-hero .btns {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  justify-content: center;
}

.projects-hero .hero-content a {
  margin-top: 0;
}

.projects-hero .btns .left {
  border: 1px solid #fafafa;
  color: #1d1d1d;
}

.projects-hero .btns .left:hover {
  background-color: #1b4a90;
  color: #fafafa;
  border: 1px solid #1b4a90;
}

.projects-hero .btns .right {
  border: 1px solid #fafafa;
  background-color: transparent;
  color: #fafafa;
}

.projects-hero .btns .right:hover {
  background-color: #1b4a90;
  color: #fafafa;
  border: 1px solid #1b4a90;
}

.tablet {
  display: none;
}

/* .projects-hero-menu-container {
  height: 100%;
  overflow: hidden;
} */

.projects-menu {
  display: flex;
  gap: 2.5rem;
  width: fit-content;
  position: sticky;
  top: 80px;
  overflow-y: scroll;
  height: 100%;
  padding-right: 80px;
  scrollbar-width: thin;
  scrollbar-color: #aaaaaa #fff;
}

.projects-menu .item-container {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding: 2.5rem 0;
}

.projects-menu .sidebar {
  border-left: 1px solid #fafafa;
}

.projects-menu h5 {
  margin-top: auto;
  line-height: 1.5rem;
  font-weight: 500;
  letter-spacing: 2.4px;
}

/* .projects-hero .projects-menu h6 {
  font-weight: 300;
}

.projects-hero .projects-menu h6:hover {
  font-weight: 400;
  color: #fafafa;
} */

.projects-menu h6 {
  font-weight: 500;
  letter-spacing: 1.6px;
}

.projects-menu .item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.projects-menu a:hover h6 {
  color: #1b4a90;
}

.projects-menu .item .year {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* .projects-hero .projects-menu {
  position: absolute;
  color: #fafafa;
  background-color: rgba(29, 29, 29, 0.4);
  padding: 5rem;
  left: 0;
}

.projects-hero .projects-menu a {
  color: #fafafa;
  width: fit-content;
}

.projects-hero .projects-menu .item hr {
  border-top: 1px solid #fafafa;
  width: 40px;
} */

/* Projects Section */

.projects {
  display: grid;
  grid-template-columns: [first] auto [line2] fit-content(100%) [end];
  gap: 5rem;
  grid-template-rows: [first] 100% [line2] auto [end];
  padding-right: 5rem;
  filter: drop-shadow(
    8px 8px 4px
      rgba(
        0.11372549086809158,
        0.11372549086809158,
        0.11372549086809158,
        0.03999999910593033
      )
  );
}

.projects-menu-container {
  background-color: #fff;
  padding: 80px 2.5rem 80px 80px;
  height: 100vh;
  position: sticky;
  top: 0;
}

.projects-menu-container hr {
  border-top: 1px solid #1b4a90;
}

.projects-menu-container .sidebar {
  border-left: 1px solid #1d1d1d;
  position: sticky;
  top: 0;
}

.projects-menu-container .item hr {
  width: 40px;
}

.projects-container {
  display: flex;
  flex-direction: column;
  margin-top: 80px;
  gap: 0;
}

.projects-container .item {
  display: flex;
  background-color: #fff;
  position: relative;
  margin: 2.5rem 0;
  scroll-margin-top: 40px;
}

.projects-container .item .left .tag {
  position: absolute;
  top: 2.5rem;
  left: 2.5rem;
  z-index: 1;
  padding: 0.5rem 1rem;
  border: 1px solid #fafafa;
  transition: 0.2s;
}

.projects-container .item:hover .left .tag {
  background-color: rgba(0, 0, 0, 0.2);
}

.tag-container {
  display: flex;
  position: absolute;
  top: 2.5rem;
  left: 2.5rem;
  z-index: 1;
  gap: 1.5rem;
}

.projects-container .item .left .tag-container .tag {
  position: relative;
  border: 1px solid #fafafa;
  top: 0rem;
  left: 0rem;
  z-index: 1;
  padding: 0.5rem 1rem;
}

.projects-container .item p {
  max-height: 192px;
  overflow-y: scroll;
  scrollbar-width: thin;
  scrollbar-color: #aaaaaa #fff;
  padding-right: 1rem;
}

.projects-container .item .left .tag h6 {
  color: #fafafa;
}

.projects-container .hover-tab.left-btn,
.projects-container .hover-tab.right-btn {
  position: absolute !important;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
}

.projects-container .hover-tab svg {
  opacity: 0;
}

.projects-container .item:hover .hover-tab svg {
  opacity: 0.56;
  transition: 0.8s;
}

.projects-container .hover-tab svg:hover {
  opacity: 0.8 !important;
}

.projects-container .hover-tab.left-btn a,
.projects-container .hover-tab.right-btn a {
  height: 40px;
}

.projects-container .hover-tab.left-btn {
  left: 2.5rem;
}

.projects-container .hover-tab.right-btn {
  right: 2.5rem;
}

.projects-container .item .left img {
  filter: brightness(0.76);
  transition: 0.4s;
}

.projects-container .item:hover img {
  filter: brightness(1);
}

/* .projects-container .item .left:hover .svg {
  opacity: 0.4;
} */

.projects-container .item .right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2.5rem;
  max-width: 480px;
}

.projects-container h3 {
  /* margin-bottom: -2.5rem; */
  font-size: 3rem;
}

.projects-container h4,
.projects-container h5 {
  line-height: normal;
}

.projects-container .item .right .title {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.projects-container .item .right .title hr {
  border-top: 1px solid #1b4a90;
  width: 120px;
}

.projects-container .item .left {
  position: relative;
}

.meta-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.meta-container .meta-data {
  display: flex;
  gap: 0.75rem;
}

.meta-container .meta-title {
  font-weight: 600;
}

.projects-container .description {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Project Carousel */

.carousel {
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.carousel-track {
  display: flex;
  height: 100%;
  max-width: 795px;
}

.prev,
.next {
  cursor: pointer;
}

.deactivate {
  pointer-events: none;
}

/* Media Queries */

@media (max-width: 1880px) {
  /* Projects Hero */
  .projects-hero .projects-menu {
    padding: 2.5rem;
  }
}

@media (max-width: 1720px) {
  /* Projects Page */
  /* .projects-hero .projects-menu {
    display: none;
  } */

  .projects-menu-container {
    padding: 40px;
  }

  .projects-container .item .right {
    max-width: 400px;
  }
}

@media (max-width: 1640px) {
  /* Projects Page */

  .projects {
    padding-right: 2.5rem;
    gap: 2.5rem;
  }
}

@media (max-width: 1480px) {
  /* Contact Us */

  .form img {
    width: 32vw;
  }

  /* Projects Page */

  .projects-menu-container {
    display: none;
  }

  .projects {
    padding: 0 5rem 7.5rem;
    gap: 0;
  }

  .projects-container .item .right {
    max-width: 540px;
  }
}
@media (max-width: 1400px) {
  /* Projects Page */
  .projects-container .item .right {
    max-width: 480px;
  }
}

@media (max-width: 1280px) {
  /* Document */
  h1 {
    font-size: 3rem;
    line-height: 72px;
  }

  /* Navigation */

  nav {
    padding: 0 2.5rem;
  }

  nav .links {
    display: none;
  }

  nav .right {
    display: none;
  }

  .hamburger-menu {
    display: flex;
  }

  /* Footer */

  footer {
    padding: 2.5rem;
  }

  footer {
    grid-template-columns:
      [first] fit-content(33.33%) [line2] fit-content(33.33%) [line3] fit-content(
        33.33%
      )
      [end];
  }

  footer .right {
    display: none;
  }

  footer .bottom {
    grid-column: 1 / span 3;
  }

  footer .hidden-social-media {
    display: flex;
  }

  /* Hero */

  .hero-content {
    align-items: center;
    justify-content: center;
    margin: auto;
    left: 0;
    right: 0;
  }

  .hero-content h1 {
    text-align: center;
    letter-spacing: 5.6px;
  }

  .hero-content h5 {
    font-size: 1rem;
  }

  .hero-content h6 {
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .hero-content hr {
    margin: 1rem 0 2rem;
  }

  .hero-content svg {
    width: 12px;
  }

  /* About Us */

  .about-us .content {
    gap: 120px;
  }

  .about-us {
    padding: 5rem 2.5rem 2.5rem;
  }

  .about-us .left {
    max-width: 540px;
  }

  .map {
    display: none;
  }

  /* Contact Us */

  .form {
    margin: 120px 2.5rem 7.5rem;
  }

  /* Projects Page */
  .projects-hero .hero-content {
    align-items: center;
    justify-content: center;
    margin: auto;
    left: auto;
    right: auto;
  }

  .projects-hero h5 {
    font-size: 1.5rem;
  }

  .projects {
    padding: 0 2.5rem 7.5rem;
  }

  .projects-container .item .right {
    max-width: 440px;
  }
}

@media (max-width: 1120px) {
  /* Contact Us */
  .form {
    display: flex;
    flex-direction: column;
    margin: 0 0 7.5rem;
  }

  .form img {
    width: 100%;
    height: 400px;
  }

  /* Projects Page */
  .projects-container .item .right {
    max-width: 400px;
  }
}

@media (max-width: 1000px) {
  /* Document */
  h2 {
    font-size: 48px;
  }

  .logo {
    width: 200px;
  }

  /* Footer */
  footer {
    grid-template-columns: [first] auto [line2] auto [end];
  }

  footer a {
    font-size: 1rem;
  }

  footer h5 {
    font-size: 1.25rem;
  }

  footer .left .footer-paragraph {
    max-width: 274px;
  }

  footer .left .footer-paragraph,
  .footer-paragraph a {
    font-size: 0.75rem;
    font-weight: 400;
  }

  footer .right {
    display: flex;
  }

  footer .hidden-social-media {
    display: none;
  }

  footer .right-middle,
  footer .right {
    padding-top: 2.5rem;
  }

  footer .bottom {
    grid-column: 1 / span 2;
  }

  footer .bottom h5 {
    font-size: 1rem;
    line-height: 1.5rem;
  }

  /* About Us */

  .about-us {
    margin-top: 120px;
  }

  .about-us .content {
    display: flex;
    flex-direction: column-reverse;
    gap: 2.5rem;
  }

  .about-us .right img {
    width: 100%;
    height: 64vw;
  }

  .about-us .left {
    max-width: 100%;
  }

  /* Privacy Policy & Terms */

  .legal-info {
    margin: 120px 0 0;
    padding: 2.5rem;
  }

  /* Projects Hero */

  .projects-hero .hero-content {
    padding: 5rem;
  }

  .desktop {
    display: none;
  }

  .tablet {
    display: block;
  }

  /* Projects Page */
  .projects-container .item {
    flex-direction: column;
  }

  .projects-container .item .right {
    max-width: 100%;
  }

  .projects-container .item p {
    max-height: 100%;
  }

  .projects-container .item .left img {
    min-width: 100%;
  }

  .projects-container .item .left img {
    filter: brightness(1);
  }

  .projects-container .hover-tab svg {
    opacity: 0.4;
  }

  .carousel-track {
    max-width: 100%;
  }

  .projects-container .tag {
    background-color: rgba(0, 0, 0, 0.2);
  }
}

@media (max-width: 720px) {
  /* Footer */
  footer .footer-paragraph {
    max-width: 274px;
  }

  footer .right-middle,
  footer .right {
    border-top: 1px solid #d9d9d9;
  }

  /* About Us */
  .about-us .left {
    gap: 2.5rem;
  }

  /* Contact Us */
  form {
    padding: 5rem 2.5rem 2.5rem;
  }

  .user-name {
    gap: 1.5rem;
  }

  .form-content {
    gap: 1.5rem;
  }

  label,
  .input-row input,
  textarea,
  .input-row input::placeholder,
  textarea::placeholder {
    font-size: 1.25rem !important;
    line-height: 30px;
  }

  .form-input {
    height: 72px;
  }

  .form svg {
    width: 20px;
  }

  .form #email {
    width: 22px;
  }

  .input-row input {
    padding-left: 59px;
  }

  label {
    letter-spacing: 1.6px;
  }

  /* Projects Hero */

  .projects-hero .hero-content {
    padding: 2.5rem;
  }

  /* Projects Page */

  .projects-container .item .left img {
    min-height: 520px;
  }

  /* Sticky Menu */

  .sticky-menu {
    bottom: 0;
    right: 0;
  }

  .mobile-btn {
    display: block;
  }

  .desktop-btn {
    display: none;
  }

  .sub-menu {
    padding: 0.75rem;
  }
}

@media (max-width: 640px) {
  /* Footer */
  footer .left .footer-paragraph {
    max-width: 234px;
  }
}

@media (max-width: 601px) {
  /* Document */
  h2 {
    font-size: 3rem;
  }

  /* Footer */
  footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  footer .left .footer-paragraph {
    max-width: 100%;
    text-align: center;
  }

  footer .left-middle {
    border-top: 1px solid #d9d9d9;
    padding-top: 2.5rem;
  }

  footer .left,
  footer .left-middle,
  footer .right-middle,
  footer .right {
    width: 100%;
    align-items: center;
  }

  footer .right {
    display: none;
  }

  footer .hidden-social-media {
    display: flex;
  }

  /* Navigation */
  nav {
    padding: 0 1.5rem;
  }

  /* Contact Us*/
  .user-name {
    flex-direction: column;
  }

  /* Projects Page */

  .projects-container .item .left img {
    min-height: 480px;
  }
}

@media (max-width: 560px) {
  /* Document */
  .projects-hero h2 {
    font-size: 2rem;
    line-height: 3rem;
  }

  /* Projects Hero */
  .projects-hero .btns {
    flex-direction: column;
    gap: 1.5rem;
  }

  .projects-hero h5 {
    font-size: 1rem;
    line-height: 1.5rem;
    margin-top: -1rem;
  }
}

@media (max-width: 540px) {
  /* Document */
  h1 {
    font-size: 2rem;
  }

  /* Pop-up */
  .pop-up .logo {
    max-width: 200px;
  }

  .pop-up-menu h5 {
    font-size: 1rem;
  }

  .menu-top {
    padding: 1.5rem;
  }

  .pop-up-menu div {
    padding: 1.5rem;
    gap: 0.5rem;
  }

  .chevron {
    margin-right: 1.5rem;
  }

  .pop-up-contact h5 {
    font-size: 1.25rem;
  }

  /* Hero */

  .hero-content {
    padding: 0 2rem;
  }

  .hero-content h1 {
    line-height: 48px;
  }

  .hero-content h5 {
    text-align: center;
    line-height: 24px;
  }

  .hero-content a {
    margin-top: 1rem;
  }

  .hero-content hr {
    width: 320px;
    margin: 1rem 0 1.5rem;
  }

  /* Contact Us */

  form {
    padding: 5rem 1.5rem 1.5rem;
  }

  /* Projects Page */

  .projects {
    padding: 0 0rem 5rem;
  }

  .projects-container h3 {
    margin-bottom: -2.5rem;
    margin-left: 1.5rem;
  }

  .projects-container .item .left .tag {
    top: 1.5rem;
    left: 1.5rem;
  }

  .projects-container .item .left .tag-container {
    top: 1.5rem;
    left: 1.5rem;
  }

  .projects-container .item .right {
    padding: 2.5rem 1.5rem 1.5rem;
  }
}

@media (max-width: 464px) {
  /* Footer */
  footer {
    padding: 1.5rem;
  }
}

@media (max-width: 414px) {
  /* Document */
  h2 {
    font-size: 2rem;
    letter-spacing: 3.8px;
  }

  /* Hero */
  .hero-content hr {
    width: 296px;
  }

  /* About Us */
  .about-us {
    padding: 5rem 0 1.5rem;
    margin-top: 5rem;
  }

  .about-us .left {
    padding: 0 1.5rem;
  }

  .about-us .right img {
    height: 72vw;
  }

  /* Footer */

  footer {
    margin-top: 5rem;
  }

  /* Privacy Policy & Terms */

  .legal-info {
    padding: 1.5rem;
    margin: 5rem 0 0;
  }

  /* Contact Us */

  .form {
    margin: 0 0 5rem;
  }

  .form .title p {
    font-size: 1rem;
    line-height: 24px;
  }

  .projects h4 {
    font-size: 1.5rem;
  }

  .projects h5 {
    font-size: 1.25rem;
  }

  .projects-container h3 {
    font-size: 2.5rem;
  }

  .projects-container .item .left img {
    min-height: 400px;
  }
}
