@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Archivo+Black&display=swap");

*,
*::before,
*::after {
  box-sizing: border-box;
}
body {
  margin: 0;
  padding: 0;
  position: relative;
  background-color: #000;
  background-image: url("../img/bg-shape.png");
  background-size: 100% 100%;
  font-family: "Poppins", sans-serif;
  cursor: none;
}
body::-webkit-scrollbar {
  display: none;
}

body::-webkit-scrollbar-track {
  display: none;
}

body::-webkit-scrollbar-thumb {
  display: none;
}
::selection {
  background-color: #121212;
  color: #fff;
}
ul {
  list-style: none;
}
a {
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
.cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #fff;
  left: -5px;
  top: -5px;
  transform: translate(-50%, -50%);
  transform-origin: center;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
}
.grow {
  width: 100px;
  height: 100px;
  mix-blend-mode: difference;
  transition: width 0.2s, height 0.2s;
}
.transition-link {
  position: relative;
}

.loading-screen {
  position: fixed;
  top: 0;
  background-color: #000;
  width: 100%;
  height: 100%;
  z-index: 1000;
  transform: scaleX(0);
}

.load-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 900;
  pointer-events: none;
}
.container {
  max-width: 1140px;
  margin: auto;
}
.btn {
  padding: 8px 30px;
  border: 1px solid #fff;
  color: #fff;
  font-family: "Archivo Black", sans-serif;
  font-size: 22px;
  background-color: transparent;
  display: block;
  transition: all 0.3s ease;
  cursor: pointer;
}
.btn:hover {
  background-color: #fff;
  color: #000;
}
section {
  padding: 20px;
  background-color: #000;
  background-image: url("../img/bg-shape.png");
  background-size: cover;
  overflow: hidden;
}
header {
  background-color: #000;
  background-image: url("../img/bg-shape.png");
  background-size: cover;
  position: relative;
  width: 100%;
  z-index: 1;
}
header .nav {
  padding: 0 20px;
}
header .nav .nav-list {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 0;
  margin: 25px 0;
  gap: 100px;
}
.nav .nav-list .list-item {
  margin-right: -10px;
}
.nav .nav-list a {
  color: #fff;
  font-family: "Archivo Black", sans-serif;
  font-size: 24px;
  font-weight: 400;
  text-transform: uppercase;
  transition: all 0.3s ease;
  display: block;
}
.nav .nav-list .list-item a:hover {
  transform: scale(1.2);
}
.nav .nav-list .link-item-logo.no-point:hover {
  transform: scale(1);
}
.list-item {
  width: 150px;
  text-align: center;
  display: flex;
  justify-content: center;
}
.nav-list .list-item .header-logo {
  max-width: 83px;
  margin: auto;
}
#section-1 {
  padding-right: 0;
  position: relative;
}
.lets-talk-wrapper {
  position: absolute;
  top: 40px;
  width: 107%;
  left: 50%;
  transform: translateX(-50%);
  max-width: 1900px;
  overflow: hidden;
}
.lets-talk-wrapper img {
  width: 100%;
  transform: translateY(200%);
  transition: all 0.3s ease;
}
#section-1 .contact-wrapper {
  display: flex;
  align-items: center;
  position: relative;
}
#section-1 .contact-wrapper::before {
  position: absolute;
  content: "";
  left: -60px;
  top: 270px;
  width: 1085px;
  height: 770px;
  background-color: #121212;
  mix-blend-mode: lighten;
  background-image: url(../img/bg-shape.png);
  pointer-events: none;
}
#section-1 .col {
  flex-basis: 50%;
  max-width: 50%;
  margin: 20px;
}
#section-1 .left-col {
  padding-top: 100px;
  max-width: 60%;
  flex-basis: 60%;
}
#section-1 .right-col {
  max-width: 40%;
  flex-basis: 40%;
}
.contact-heading {
  position: relative;
  z-index: 4;
  margin-bottom: 70px;
  margin-top: 0;
  overflow: hidden;
  line-height: 1;
  font-family: "Archivo Black", sans-serif;
}
.contact-heading span {
  display: block;
  color: #fff;
  font-size: 120px;
  font-family: "Archivo Black", sans-serif;
  text-wrap: nowrap;
  white-space: nowrap;
  line-height: 1;
  transform: translateY(150%);
}
.contact-text {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  max-width: 476px;
}
form {
  max-width: 450px;
}
.form-row {
  margin-bottom: 25px;
}
.form-row ul {
  padding-left: 0;
}
.form-row ul li {
  color: #b00020;
}
.form-row label {
  color: #fff;
  display: block;
  width: 100%;
  cursor: none !important;
  margin-bottom: 5px;
}
.form-row input {
  width: 100%;
  height: 30px;
  border: 0;
  border-bottom: 1px solid #fff;
  border-radius: 0;
  background-color: transparent;
  font-size: 16px;
  color: #fff;
}
.form-row input::placeholder {
  color: #fff;
}
.form-row input:focus,
.form-row input:focus-visible {
  outline: none;
}
.form-row textarea {
  border: 1px solid #fff;
  width: 100%;
  height: 165px;
  background-color: transparent;
  resize: none;
  font-size: 16px;
  color: #fff;
  padding-left: 12px;
  padding-top: 15px;
}
.form-row textarea:focus {
  outline: none;
}
.form-row textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.subject-heading {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.87;
  margin: 40px 0 20px;
}
.service-message {
  display: block;
  color: #fff;
  margin-bottom: 10px;
}
.select-service {
  display: flex;
  align-items: center;
  padding: 0;
  gap: 15px;
  padding-bottom: 30px;
}
.select-service input {
  appearance: none;
  position: absolute;
  width: 0 !important;
  height: 0 !important;
  visibility: hidden;
  opacity: 0;
  margin: 0 !important;
  border: 0 !important;
}
.select-service label {
  height: 32px;
  min-width: 101.6px !important;
  width: 100% !important;
  font-size: 12px;
  color: #fff;
  display: flex !important;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  cursor: pointer !important;
  transition: all 0.3s ease;
}
.select-service label:hover {
  background-color: #fff;
  color: #000;
}
.select-service input:checked + label {
  background-color: #fff;
  color: #000;
}
.select-service br {
  display: none;
}
.submit-form {
  display: flex;
  align-items: center;
  justify-content: end;
}
.submit-form input {
  display: flex !important;
  justify-content: center;
  align-items: center;
  width: 100px !important;
  height: 32px;
  border: 1px solid #fff;
  text-transform: uppercase;
  color: #fff;
  font-size: 20px;
  font-family: "Archivo Black", sans-serif;
  cursor: pointer;
}
.contact-img {
  margin: -160px;
  position: relative;
  z-index: 3;
  pointer-events: none;
}
.contact-img img {
  margin-left: auto;
  transition: all 0.5s ease;
}
#form-messages.success {
    color: #4BB543;
}
#form-mesages.error {
    color: #f00;
}

#section-2 .schedule-heading {
  color: #fff;
  font-size: 40px;
  text-align: center;
  font-family: "Archivo Black", sans-serif;
  max-width: 481px;
  line-height: 1.2;
  margin: 50px auto 30px;
  opacity: 0;
}
#section-2 .schedule-text {
  color: #8d8e90;
  font-size: 16px;
  text-align: center;
  line-height: 1.87;
  max-width: 678px;
  margin: 0 auto 35px;
  opacity: 0;
}
#section-2 .schedule-btn {
  font-size: 20px;
  max-width: 262px;
  padding: 8px 20px;
  border-color: #fff;
  margin: 0 auto 35px;
  opacity: 0;
}
/* ----------------------------------------- */

#footer {
  background-color: #000;
  background-image: url("../img/bg-shape.png");
  background-size: cover;
  margin-bottom: 55px;
  position: relative;
  width: 100%;
  bottom: 0;
}
.footer-wrapper {
  transition: all 0.8s ease;
  opacity: 1;
  visibility: visible;
}
#footer p {
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  font-size: 10px;
  font-weight: 400;
  text-align: center;
  margin-top: 10px;
}
.footer-social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}
.footer-social-icons a {
  width: 16px;
}
.footer-social-icons a svg path {
  transition: all 0.3s ease;
}
.footer-social-icons a:hover svg path {
  fill: #fff;
}

@media (max-width: 1150px) {
  .contact-img {
    margin: -200px -40px -200px -150px;
  }
  .contact-heading span {
    font-size: 110px;
  }
}

@media (max-width: 1024px) {
  .contact-img {
    margin: -50px -40px -50px 0;
  }
  #section-1 .left-col {
    max-width: 45%;
    flex-basis: 45%;
    padding-top: 50px;
  }
  #section-1 .right-col {
    max-width: 55%;
    flex-basis: 55%;
  }
  .left-col,
  .right-col {
    margin: 0 !important;
  }
  .cursor {
    display: none;
  }
  .contact-heading {
    margin-bottom: 20px;
  }
  .contact-heading span {
    font-size: 55px;
  }
  .contact-text {
    font-size: 18px;
  }
  .select-service {
    flex-wrap: wrap;
    padding-bottom: 30px;
  }
  .form-row label {
    max-width: 47.5% !important;
    flex-basis: 47.5% !important;
  }
  #section-1 .contact-wrapper {
    gap: 20px;
  }
  #section-1 .contact-wrapper::before {
    bottom: -30px;
  }
  .form-row {
    margin-bottom: 10px;
  }
  #section-2 .schedule-heading {
    font-size: 34px;
    max-width: 350px;
  }
  .form-row ul li {
    color: #f00;
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  #section-1 {
    padding-right: 20px;
  }
  #section-1 .contact-wrapper {
    flex-direction: column;
  }
  #section-1 .left-col {
    flex-basis: 100%;
    max-width: 100%;
    padding-top: 20px;
    margin: 0;
  }
  #section-1 .right-col {
    flex-basis: 100%;
    max-width: 100%;
    margin: 0;
  }
  .contact-text {
    font-size: 16px;
    max-width: 100%;
  }
  header .nav .nav-list {
    gap: 15px;
  }
  .nav .nav-list a {
    font-size: 20px;
  }
  .contact-heading {
    margin-bottom: 20px;
  }
  .contact-heading span {
    font-size: 42px;
  }
  .contact-img {
    margin: 40px 0 0;
  }
  .contact-img img {
    margin: auto !important;
  }
  form {
    max-width: 100%;
  }
  #section-2 .schedule-heading {
    font-size: 30px;
    margin-top: 20px;
  }
  #section-1 .contact-wrapper::before {
    bottom: auto;
    top: 70px;
  }
}
