@import url("https://fonts.googleapis.com/css?family=Muli&display=swap");
@import url("https://fonts.googleapis.com/css?family=Quicksand&display=swap");

*,
*::after,
*::before {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: "Inter", sans-serif;
}

i,
i::before,
i::after {
  font-family: "ForkAwesome" !important;
}

/* .fa { */
/*   font-family: unset; */
/*   font-family: "Fork Awesome", sans-serif !important; */
/* } */

body {
  overflow-x: hidden !important;
}

@media (max-width: 768px) {
  body {
    overflow-x: hidden !important;
    width: 99.1vw;
  }
}

/* Navbar */
.navbar input[type="checkbox"],
.navbar .hamburger-lines {
  display: none;
}

.container {
  margin-left: 10%;
  margin-right: 10%;
}

.navbar {
  box-shadow: 0px 3px 5px 0px #aaa;
  position: fixed;
  width: 100%;
  background: #fff;
  color: #000;
  z-index: 1000;
  opacity: 0.95;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  height: 100px;
  align-items: center;
  z-index: 2000;
}

.menu-items {
  order: 2;
  display: flex;
}

.logo {
  order: 1;
  font-size: 2.3rem;
}

.menu-items li {
  list-style: none;
  margin-left: 1.5rem;
  font-size: 0.9rem;
}

.navbar a {
  color: #444;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease-in-out;
}

.navbar a:hover {
  color: #ef1d26;
}

@media (max-width: 768px) {
  .navbar {
    opacity: 0.95;
    position: relative;
    z-index: 1000;
  }

  main {
    position: relative;
    z-index: -100;
  }

  .container {
    margin-left: 0%;
    margin-right: 0%;
    height: 100vh;
  }

  .navbar-container input[type="checkbox"],
  .navbar-container .hamburger-lines {
    display: block;
  }

  .navbar-container {
    display: block;
    position: relative;
    height: 12vh;
    z-index: 50;
  }

  .navbar-container input[type="checkbox"] {
    position: absolute;
    display: block;
    height: 32px;
    width: 30px;
    top: 30px;
    left: 20px;
    z-index: 5;
    opacity: 0;
    cursor: pointer;
  }

  .navbar-container .hamburger-lines {
    display: block;
    height: 28px;
    width: 35px;
    position: absolute;
    margin-top: 35px;
    left: 20px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
  }

  .navbar-container .hamburger-lines .line {
    display: block;
    height: 4px;
    width: 100%;
    border-radius: 10px;
    background: #333;
  }

  .navbar-container .hamburger-lines .line1 {
    transform-origin: 0% 0%;
    transition: transform 0.3s ease-in-out;
  }

  .navbar-container .hamburger-lines .line2 {
    transition: transform 0.2s ease-in-out;
  }

  .navbar-container .hamburger-lines .line3 {
    transform-origin: 0% 100%;
    transition: transform 0.3s ease-in-out;
  }

  .navbar .menu-items {
    padding-top: 100px;
    background: #fff;
    height: 100%;
    position: fixed;
    width: 300px;
    transform: translate(-150%);
    display: flex;
    flex-direction: column;
    margin-left: -40px;
    padding-left: 40px;
    transition: transform 0.5s ease-in-out;
    box-shadow: 5px 0px 10px 0px #aaa;
    overflow: scroll;
  }

  .navbar .menu-items li {
    margin-bottom: 1.8rem;
    font-size: 1.1rem;
    font-weight: 500;
  }

  .logo {
    position: absolute;
    top: 1.5vh;
    right: 3vw;
    font-size: 2.5rem;
    z-index: -20;
  }

  .logo-img {
    height: 80px;
  }

  .navbar-container input[type="checkbox"]:checked ~ .menu-items {
    transform: translateX(0);
  }

  .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line1 {
    transform: rotate(45deg);
  }

  .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line2 {
    transform: scaleY(0);
  }

  .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line3 {
    transform: rotate(-45deg);
  }
}

@media (max-width: 500px) {
  .navbar-container input[type="checkbox"]:checked ~ .logo {
    display: none;
  }
}

/* Footer */
footer {
  background-color: #000;
  color: white;
  display: flex;
  flex-direction: row;
  padding: 8%;
  gap: 12%;
  z-index: 500;
}

.footer-subtext {
  font-size: 25px;
  text-align: right;
}

.footer-subtext {
  margin-top: 5%;
  font-size: 28px;
  text-align: left;
}

footer .form-input {
  width: 100%;
  height: 2.3rem;
}
footer .form-input-message {
  width: 100%;
  height: 14rem;
}

input[type="text"] {
  font-size: 22px;
}

.form-input {
  font-size: large;
}

.submit-button {
  width: 7rem;
  height: 3rem;
  font-weight: 600;
  font-size: medium;
  cursor: pointer;
}

.get-in-touch-text {
  font-size: 40px;
}

.sub-header-text {
  font-size: 22px;
}

textarea {
  resize: none;
}

.line-horizontal {
  border-left: 2px solid white;
  height: 500px;
}

.footer-icons {
  word-spacing: 12px;
  margin-top: 2%;
}

@media (max-width: 768px) {
  .copyright {
    background-color: #000;
    color: white;
    display: flex;
    justify-content: center;
    padding-bottom: 10%;
    font-size: smaller;
  }

  .sub-header-text {
    font-size: 22px;
  }

  .footer-links {
    font-size: 25px;
  }

  footer {
    background-color: #000;
    color: white;
    display: flex;
    flex-direction: column;
    padding: 10%;
    gap: 12%;
    z-index: 0;
    position: relative;
  }

  .line-horizontal {
    display: none;
  }

  .footer-subtext {
    margin-top: 10%;
    font-size: 22px;
    text-align: left;
  }

  footer .form-input {
    width: 100%;
    height: 2rem;
  }

  footer .form-input-message {
    width: 100%;
    min-height: 14rem;
  }

  .sub-header {
    font-size: 26px;
  }

  .label-heading {
    font-size: 18px;
  }

  footer textarea {
    width: 100%;
  }
  .submit-button {
    width: 6rem;
    height: 2.5rem;
    font-weight: 600;
    font-size: normal;
    cursor: pointer;
  }

  .get-in-touch-text {
    font-size: 30px;
  }

  textarea {
    resize: none;
  }
}

.copyright {
  background-color: #000;
  color: white;
  display: flex;
  justify-content: center;
  padding-bottom: 3%;
  font-size: normal;
}

/* Main */
main {
  text-align: center;
  padding-top: 9%;
  z-index: -100;
}

@media (max-width: 768px) {
  main {
    padding-top: 10%;
  }
}

span {
  color: red;
  font-weight: 500;
}

.black {
  color: unset;
  font-weight: inherit;
}

.other-information {
  margin-left: 11%;
  margin-right: 11%;
}

.text-justify {
  text-align: center !important;
}

.heading {
  font-weight: 600;
  font-size: 18px;
}

/* Image slider */
.wrapper-main {
  display: flex;
  align-items: center;
  justify-content: center;
}

.wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  position: relative;
}
.wrapper i {
  top: 50%;
  height: 44px;
  width: 44px;
  color: #343f4f;
  cursor: pointer;
  font-size: 1.15rem;
  position: absolute;
  text-align: center;
  line-height: 44px;
  background: #fff;
  border-radius: 50%;
  transform: translateY(-50%);
  transition: transform 0.1s linear;
}
.wrapper i:active {
  transform: translateY(-50%) scale(0.9);
}
.wrapper i:hover {
  background: #f2f2f2;
}
.wrapper i:first-child {
  left: -1vw;
  /* display: none; */
}
.wrapper i:last-child {
  right: -1vw;
}
.wrapper .carousel {
  font-size: 0px;
  cursor: pointer;
  overflow: hidden;
  white-space: nowrap;
  scroll-behavior: smooth;
}
.carousel.dragging {
  cursor: grab;
  scroll-behavior: auto;
}
.carousel.dragging img {
  pointer-events: none;
}
.carousel img {
  height: 340px;
  object-fit: cover;
  user-select: none;
  margin-left: 14px;
  width: calc(100% / 3);
}
.carousel img:first-child {
  margin-left: 0px;
}

@media screen and (max-width: 900px) {
  .carousel img {
    width: calc(100% / 2);
  }
}

@media screen and (max-width: 550px) {
  .carousel img {
    width: 100%;
  }
}
