* {
  margin: 0;
  padding: 0;
}

html {
  cursor: none;
}

/* ----------- Custom Cursor ----------- */

.cursor {
  position: fixed;
  background-color: rgba(188, 11, 11, 0.8);
  width: 20px;
  height: 20px;
  border-radius: 100%;
  z-index: 1;
  transition: 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform,
    0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity;
  user-select: none;
  pointer-events: none;
  z-index: 10000000000000;
  transform: scale(1);
}
.cursor.active {
  opacity: 1;
  transform: scale(2);
}
.cursor.menu-active {
  opacity: 1;
  transform: scale(2);
}
.cursor.hovered {
  opacity: 1;
}

.cursor-follower {
  position: fixed;
  background-color: rgba(188, 11, 11, 0.4);
  width: 40px;
  height: 40px;
  border-radius: 100%;
  z-index: 1;
  transition: 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform,
    0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity,
    0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) background;
  user-select: none;
  pointer-events: none;
  z-index: 10000000000000;
  transform: translate(2px, 2px);
}
.cursor-follower.active {
  opacity: 1;
  transform: scale(2);
}
.cursor-follower.menu-active {
  opacity: 1;
  transform: scale(2);
}
.cursor-follower.hovered {
  opacity: 1;
}

@media screen and (max-width: 990px) {
  .cursor {
    display: none;
  }
  .cursor.active {
    opacity: 0;
    display: none;
  }
  .cursor.menu-active {
    opacity: 0;
    display: none;
  }
  .cursor.hovered {
    opacity: 0;
    display: none;
  }

  .cursor-follower {
    opacity: 0;
    display: none;
  }
  .cursor-follower.active {
    opacity: 0;
    display: none;
  }
  .cursor-follower.menu-active {
    opacity: 0;
    display: none;
  }
  .cursor-follower.hovered {
    opacity: 0;
    display: none;
  }
}

/* ----------- Common Styles ----------- */
html {
  scroll-behavior: smooth;
}

body {
  /* font-family: "Josefin Sans", sans-serif; */
  font-family: "Urbanist", sans-serif;
}

.container {
  width: 90%;
  margin: auto;
  text-align: center;
  padding: 20px 0px;
}

.content-title {
  font-family: "Josefin Sans", sans-serif;
  font-size: 36px;
  color: #bc0b0b;
  font-weight: 300;
  padding: 10px;
  font-weight: 600;
}

.content-title-bold {
  font-weight: 700;
}

@media (max-width: 700px) {
  .container {
    width: 100%;
  }
  .content-title {
    font-size: 28px;
  }
}

/* ----------- Navigation Bar ----------- */

nav {
  position: fixed;
  z-index: 10000;
  left: 0;
  right: 0;
  top: 0;
  height: 110px;
  background-color: #fff;
  box-shadow: 0 8px 8px -10px #000;
}

nav .logo {
  float: left;
  height: 100%;
  display: flex;
  align-items: center;
  font-size: 24px;
}

nav img {
  width: 100px;
  cursor: none;
}

nav .links {
  float: right;
  padding: 0;
  margin: 0;
  height: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

nav .links li {
  list-style: none;
}

nav .links a {
  display: block;
  color: #433f40;
  cursor: none;
  padding: 8px 15px;
  font-size: 18px;
  font-weight: 500;
  border-radius: 25px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color 150ms ease-in-out;
}

nav .links a:after {
  content: "";
  border-radius: 25px;
  position: absolute;
  display: block;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 100%;
  background: #bc0b0b;
  z-index: -1;
  transition: width 0.3s ease-in-out;
}

nav .links a:hover {
  color: #fff;
}

nav .links a:hover:after {
  width: 110%;
}

#nav-toggle {
  position: absolute;
  top: -110px;
}

nav .icon-burger {
  display: none;
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
}

nav .icon-burger .line {
  width: 30px;
  height: 5px;
  background-color: #bc0b0b;
  margin: 5px;
  border-radius: 3px;
  transition: all 0.3s ease-in-out;
}

@media screen and (max-width: 990px) {
  nav .links {
    float: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    right: 0;
    top: 110px;
    bottom: 100%;
    width: auto;
    height: auto;
    flex-direction: column;
    justify-content: space-evenly;
    background-color: rgba(0, 0, 0, 0.9);
    overflow: hidden;
    transition: all 0.5s ease-in-out;
  }

  nav .links a {
    font-size: 20px;
    color: #fff;
  }

  nav :checked ~ .links {
    bottom: 0;
  }

  nav .icon-burger {
    display: block;
    z-index: 100000;
  }

  nav :checked ~ .icon-burger .line:nth-child(1) {
    transform: translateY(10px) rotate(225deg);
  }

  nav :checked ~ .icon-burger .line:nth-child(3) {
    transform: translateY(-10px) rotate(-225deg);
  }

  nav :checked ~ .icon-burger .line:nth-child(2) {
    opacity: 0;
  }
}

/* ----------- Home ----------- */

#home {
  position: relative;
}

.scroll-down {
  height: 50px;
  width: 30px;
  border: 2px solid black;
  position: absolute;
  left: 49.5%;
  bottom: 20px;
  border-radius: 50px;
  cursor: none;
  z-index: 1000;
}

.scroll-down::before,
.scroll-down::after {
  content: "";
  position: absolute;
  top: 20%;
  left: 50%;
  border: 2px solid black;
  height: 10px;
  width: 10px;
  transform: translate(-50%, -100%) rotate(45deg);
  border-top: transparent;
  border-left: transparent;
  animation: scroll-down 1s ease-in-out infinite;
}

.scroll-down::after {
  top: 30%;
  animation-delay: 0.3s;
}

@keyframes scroll-down {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    top: 90%;
  }
}

@media (max-width: 700px) {
  .scroll-down {
    bottom: 65px;
  }
}

/* ----------- About Us ----------- */

#about p {
  font-size: 18px;
  font-weight: 300;
  padding: 10px;
}

@media (max-width: 700px) {
  #about p {
    font-size: 16px;
    padding: 10px;
  }
}

/* ---------- Projects ------------ */

.projects {
  background-color: lightgrey;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(11, 10vw);
  grid-gap: 15px;
  padding: 10px 0;
  padding: 15px;
}

.gallery-item a {
  cursor: none;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 2s ease-out;
}

.gallery-title {
  font-family: "Bebas Neue", cursive;
  font-size: 35px;
  padding-bottom: 10px;
  color: #808080;
}

.gallery-title span {
  font-size: 45px;
}

.gallery-item {
  border-radius: 4px;
  overflow: hidden;
}

.gallery-item {
  filter: drop-shadow(0px 5px 5px rgba(0, 0, 0, 0.9));
  transition: filter 0.25s ease-in-out;
}
.gallery-item:hover {
  filter: drop-shadow(0px 20px 20px rgba(0, 0, 0, 0.9));
  cursor: none;
}

.gallery-item-5 {
  grid-column: 1;
  grid-row: 2/6;
}

.gallery-item-4 {
  grid-column: 2;
  grid-row: 1/6;
}

.gallery-item-3 {
  grid-column: 2;
  grid-row: 6/9;
}

.gallery-item-2 {
  grid-column: 1;
  grid-row: 6/9;
}

.gallery-item-6 {
  grid-column: 1/3;
  grid-row: 9/12;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-content-details {
  position: absolute;
  background: rgba(0, 0, 0, 0.7);
  text-align: left;
  width: 100%;
  bottom: 5%;
}

.gallery-content-details h3 {
  color: #fff;
  font-weight: 500;
  padding: 5px;
  text-transform: uppercase;
  font-size: 15px;
  margin: 0;
}

.gallery-content-details p {
  color: #fff;
  font-size: 10px;
  padding: 5px;
  margin: 0;
}

.wrapper {
  width: 80%;
  margin: auto;
  text-align: center;
  padding: 60px 20px;
  font-size: 30px;
}

.wrapper .author {
  padding-top: 20px;
  text-align: right;
  font-weight: 100;
  font-size: 1.5rem;
  font-style: italic;
}

@media only screen and (min-width: 1200px) {
  .gallery-item img:hover {
    transform: scale(1.2);
  }

  .gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(6, 5vw);
    grid-gap: 20px;
    padding: 10px 0;
  }

  .gallery-title {
    font-size: 70px;
  }

  .gallery-title span {
    font-size: 95px;
  }

  .gallery-item-2 {
    grid-column: 2;
    grid-row: 1/4;
  }

  .gallery-item-3 {
    grid-column: 3;
    grid-row: 1/4;
  }

  .gallery-item-4 {
    grid-column: 4;
    grid-row: 1/7;
  }

  .gallery-item-5 {
    grid-column: 1;
    grid-row: 2/7;
  }

  .gallery-item-6 {
    grid-column: 2/4;
    grid-row: 4/7;
  }

  .gallery-content-details h3 {
    font-size: 20px;
  }

  .gallery-content-details p {
    font-size: 15px;
  }

  .quotes .wrapper {
    width: 60%;
    padding: 80px;
    font-size: 30px;
  }

  .wrapper .author {
    font-size: 3rem;
  }
}
/* ---------- Clients ------------ */

#clients .container {
  width: 80%;
  margin: auto;
  text-align: center;
  padding: 50px 0px;
}

#clients p {
  font-size: 32px;
  font-weight: 500;
  padding: 60px 20px;
}

@media (max-width: 700px) {
  #clients p {
    font-size: 24px;
  }
}

/* ---------- Contact Us ------------ */

.address-title {
  font-size: 20px;
  text-decoration: underline;
}

#contact {
  background-color: #383838;
  padding: 20px;
}

#contact-left {
  text-align: left;
}

#contact-left h3,
#contact-right h3 {
  font-family: "Josefin Sans", sans-serif;
  color: #fff;
  font-size: 27px;
  font-weight: 700;
}

#contact-left p {
  color: #fff;
  margin-bottom: 18px;
  font-size: 18px;
}

#contact-left p strong {
  font-size: 17px;
}

address {
  color: #fff;
  font-size: 18px;
}

address strong,
#phone-fax-email strong {
  letter-spacing: 1px;
  font-size: 20px;
}

form .form-control {
  background: transparent;
  border-radius: 0;
  border-color: #fff;
  font-size: 20px;
  padding: 8px 16px;
  margin-bottom: 20px;
  color: #fff;
}

.btn-white {
  border-radius: 0;
  border-width: 2px;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 400;
  padding: 12px 26px;
  border-color: #fff;
  color: #fff;
}

.btn-white:hover,
.btn-white:focus {
  background: #fff;
  color: #41464b;
}

#contact-info .title {
  font-size: 22px !important;
  font-weight: bold;
  margin-bottom: 10px;
}

@media (max-width: 700px) {
  #contact-left p,
  address {
    font-size: 16px;
  }
}

/* ---------- Google Map ------------ */

.google-map iframe {
  width: 100%;
  height: 50vh;
  border-radius: 5px;
}

@media (max-width: 700px) {
  .google-map iframe {
    padding: 20px;
  }
}

/* ---------- Footer ------------ */
#footer-bottom {
  background-color: #383838;
  padding: 10px 0;
}

#footer-copyrights p {
  margin: 0;
  color: #fff;
  text-align: left;
}
