@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

body {
  background-color: #fff;
  color: #000 !important;
  box-sizing: border-box;
  margin: 0;
  font-family: "Roboto", sans-serif;
  overflow-x: hidden;
}

@font-face {
  font-family: "CustomFont";
  src: url("./resources/quinn-display-typeface-2023-11-27-04-58-47-utc/QUINN/TTF/Quinn-Bold.ttf")
    format("truetype");
  font-weight: bold;
  font-style: normal;
}

.nav {
  width: 100vw;
  color: #fff;
  padding: 1vh 2vw 1vh 1vw !important;
  position: fixed !important;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  z-index: 999 !important;
  transition: all 0.3s ease-in-out;
  gap: 5vw;
}

.nav .call {
  color: #000;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.5vw;
}

.nav .call i {
  color: #ff3131;
  margin-top: 0.5vh;
  font-size: 1.2vw;
}

.nav .call p {
  margin-bottom: 0;
  font-size: 1.2vw;
  font-weight: 600;
}

.nav .logo {
  width: 7vw;
  display: block !important;
}

.nav .logo img {
  width: 100%;
  height: 100%;
}

.nav .burger {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 0.5vw;
}

.nav .burger p {
  color: #000;
  margin-bottom: 0;
  font-weight: 500;
  font-size: 1.3vw;
}

.nav .burger .burgerIn {
  margin-top: 5px;
}

.nav .burger .burgerIn div {
  width: 1.5vw;
  height: 2px;
  border: 1px solid #ff3131;
  margin-bottom: 5px;
}

.burger .burgerIn .center {
  margin-left: 0.5vw;
}

.nav .horizontal-menu {
  display: none;
  flex-direction: row;
  gap: 2vw;
  list-style: none;
  margin: 0;
  opacity: 0 !important;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  transform: translateY(-10px) !important;
}

.nav .horizontal-menu li {
  font-size: 1.2vw;
  font-weight: 500;
  text-transform: uppercase;
  color: #000;
}

.nav .horizontal-menu li a {
  text-decoration: none;
  color: #000;
}

.nav.custom-style .horizontal-menu {
  display: flex;
  opacity: 1 !important;
  transform: translateX(0) !important; /* Move to the original position */
}

.nav .mobile {
  display: none;
  position: fixed;
  top: 0vh;
  left: 0vw;
  width: 100vw;
  height: 100vh;
  background-color: #000;
  background-size: 100vw 100vh;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 998;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.mobile .close i {
  font-size: 2.5vw;
  color: #fff;
  position: absolute;
  top: 2vh;
  right: 2vw;
  cursor: pointer;
}

.mobile ul li {
  list-style: none;
  font-family: "Poppins", sans-serif;
  font-size: 4vw;
  text-transform: uppercase;
  word-spacing: -3px;
  font-weight: 600;
}

.mobile ul li a {
  text-decoration: none;
  color: #fff;
}

/* Add keyframes for the fade-in effect */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.nav {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  /* background-color: transparent; */
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.nav.scrolled {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.call,
.logo,
.burger {
  display: inline-block;
  vertical-align: middle;
}

.call {
  float: left;
  padding: 10px;
}

.logo {
  float: left;
  padding: 10px;
}

.burger {
  float: right;
  padding: 10px;
  cursor: pointer;
}

.burger .burgerIn div {
  width: 25px;
  height: 3px;
  background-color: #000;
  margin: 5px 0;
  transition: 0.4s;
}

.nav.scrolled .horizontal-menu {
  transform: translateY(0);
}

.horizontal-menu li {
  padding: 20px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.horizontal-menu li:hover {
  color: #ff3131;
}

.mobile {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.mobile.open {
  transform: translateX(0);
}

.mobile .close {
  color: #fff;
  font-size: 30px;
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}

.mobile ul {
  padding: 50px 0;
  list-style: none;
  text-align: center;
  margin: 0;
  opacity: 0; /* Start with the menu hidden */
  animation: fadeIn 0.5s forwards; /* Fade in the menu */
  animation-delay: 0.3s; /* Delay the fade-in animation */
}

.mobile ul li {
  list-style: none;
  font-family: "Poppins", sans-serif;
  font-size: 4vw;
  text-transform: uppercase;
  word-spacing: -3px;
  font-weight: 600;
  cursor: pointer;
  opacity: 0; /* Start with list items hidden */
  animation: fadeIn 0.5s forwards; /* Fade in the list items */
}

.mobile ul li a {
  color: #fff;
  text-decoration: none;
}

.mobile ul li:nth-child(1) {
  animation-delay: 0.4s;
}

.mobile ul li:nth-child(2) {
  animation-delay: 0.6s;
}

.mobile ul li:nth-child(3) {
  animation-delay: 0.8s;
}

.mobile ul li:nth-child(4) {
  animation-delay: 1s;
}

.mobile ul li:hover {
  color: #ff3131;
}

.section-1 {
  width: 100vw;
  height: auto;
  position: fixed;
  background-color: #fff;
  /* background-image: url(./resources/TRYDO\ Agency\ abut\ bg.avif);
    background-repeat: no-repeat;
    background-size: 100%; */
  background-attachment: fixed;
  top: 0;
  left: 0;
  z-index: 25 !important;
  padding: 20vh 5vw;
}

.section-1 .contact {
  width: 80vw;
  margin: 0 10vw;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 5vw;
}

.contact .mobileImage {
  width: 30vw;
}

.contact .mobileImage img {
  width: 100%;
  height: 100%;
}

.contact .address h3 {
  font-size: 2.5vw;
  text-decoration: underline;
  margin-bottom: 3vh;
  padding-left: 1vw;
}

.contact .card1 {
  display: flex;
  flex-direction: column;
}

.contact .card1 .cards {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1vw;
}

.card1 .cards p {
  margin-bottom: 0;
  margin-top: -0.5vh;
  font-size: 1.5vw;
  padding-left: 0;
}

.card1 .cards i {
  color: #ff3131;
  font-size: 1.5vw;
}

.card1 p {
  font-size: 1.2vw;
  padding-left: 2vw;
  width: 30vw;
}

.contactMobile {
  display: none;
}

.section-5 {
  width: 100vw;
  height: auto;
  position: relative;
  background-color: #141414;
  position: relative;
  top: 85vh;
  z-index: 25;
  padding: 5vh 5vw;
}

.section-5 h1 {
  font-size: 6vw;
  font-family: "CustomFont", sans-serif;
  width: 60vw;
  margin: 0vh 15vw 8vh;
  padding-top: 5vh;
  text-align: center;
  line-height: 5.5vw;
  color: #fff;
}

form {
  width: 80vw;
  padding: 0vh 15vw 4vh;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5vh 0vw;
  margin: 0 5vw;
}

.Formtab {
  width: 25vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 3vw;
}

.Formtab label {
  color: #fff;
}

.Formtab label span {
  color: #ff3131;
}

.Formtab1 label span {
  color: #ff3131;
}

.Formtab {
  margin-bottom: 20px;
}

.Formtab label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  font-size: 1.3vw;
  font-weight: 400;
}

.Formtab select {
  width: 100%;
  padding: 8px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  appearance: none; /* Removes default arrow in some browsers */
  background: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4 5"><path fill="none" stroke="black" stroke-width=".5" d="M2 0L0 2h4z"/></svg>')
    no-repeat right 10px center;
  background-size: 12px;
}

.Formtab select:focus {
  border-color: #000;
  outline: none;
  box-shadow: 0 0 5px rgba(0, 102, 204, 0.5);
}

.Formtab1 {
  width: 45vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-left: 0.5vw;
}

.Formtab1 label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  font-size: 1.3vw;
  font-weight: 400;
  color: #fff;
}

.Formtab input {
  width: 20vw;
  padding: 1vh 1vw;
  border-radius: 0.5vw;
  background-color: #000;
  border: 0.5px solid lightgrey;
}

.Formtab select {
  width: 20vw;
  padding: 1vh 1vw;
  background-color: #000;
  border: 0.5px solid lightgrey;
  border-radius: 0.5vw;
}

.Formtab input[placeholder] {
  font-size: 1.2vw;
  color: #ccc !important;
}

.Formtab select {
  color: #ccc;
  font-size: 1.2vw;
}

label[for="message"] {
  color: grey;
  font-size: 4vw;
  padding: 1vh 2vw;
}

.Formtab select:focus {
  border-color: #ccc; /* Change this color to whatever you want */
  box-shadow: 0 0 5px rgba(255, 49, 49, 0.5); /* Optional: Add a shadow for better visibility */
}

.Formtab select option {
  background-color: #000; /* Background color for options */
  color: #ccc; /* Text color for options */
  font-size: 1.2vw;
}

textarea {
  width: 45vw;
  height: 15vh;
  margin-bottom: 3vh;
  border-radius: 0.5vw;
  padding: 1vh 2vw;
  background-color: #000;
  color: #ccc;
  border-color: #ccc;
}

.textarea :focus {
  color: transparent !important;
}

.Formtab1 textarea[placeholder] {
  font-size: 1.2vw !important;
}

#responseMessage {
  text-align: center;
  font-size: 2vw;
  margin-top: 5vh;
}

.section-5 button[type="submit"] {
  padding: 0.5vw 1vw;
  background-color: #ff3131;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 2vw;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-family: "CustomFont", sans-serif;
  letter-spacing: 2px;
  word-spacing: -2px;
  float: right;
  margin: 5vh 0 0;
}

input:-internal-autofill-selected {
  background-color: #000;
}

input[type="submit"]:hover,
button[type="submit"]:hover {
  background-color: #ff5757;
}

footer {
  background-color: #000;
  color: #fff;
  padding: 5vh 5vw 10vh;
  font-family: Arial, sans-serif;
  position: relative;
  top: 85vh;
  z-index: 26;
  width: 100%;
  box-shadow: #fff 0px 10px 20px, #fff 0px 6px 6px;
}

.footer-content {
  width: 80vw;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 5vw;
  margin: 0 5vw;
  border-bottom: 2px solid #ccc;
}

.logo-section {
  flex-basis: 20%;
  margin-bottom: 20px;
}

.logo-section p {
  font-size: 1vw;
}

address {
  font-size: 1vw;
}

.logo-section img {
  max-width: 150px;
  margin-bottom: 15px;
}

.social-icons {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1.5vw;
  margin-top: 3vh;
}

.social-icons a {
  text-decoration: none;
  color: #ff3131;
}

.social-icons a i {
  font-size: 1.5vw;
}

.icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.footer-links {
  flex-basis: 35%;
  display: flex;
  justify-content: space-between;
}

.link-column h3 {
  margin-bottom: 15px;
  color: #fff;
  font-size: 1.6vw !important;
}

.link-column ul {
  list-style-type: none;
  padding: 0;
}

.link-column ul li {
  margin-bottom: 10px;
  font-size: 1vw;
}

.link-column ul li a {
  color: #ccc;
  text-decoration: none;
}

.cta-section {
  flex-basis: 25%;
}

.cta-section form {
  display: flex;
  margin-top: 15px;
}

.cta-section input {
  flex-grow: 1;
  padding: 10px;
  border: none;
}

.cta-section button {
  background-color: #ff0000;
  color: #fff;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
}

.cta-section p {
  font-size: 1vw;
}

.cta-section .subscribe {
  width: 25vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 2vh;
  padding: 0;
  margin: 0 !important;
}

.subscribe input {
  width: 20vw;
  border-radius: 0.5vw;
  background-color: #000;
  border: 1px solid #ccc;
  color: #fff;
}

.cta-section .subscribe input[type="submit"],
button[type="submit"] {
  padding: 0.5vw 1vw;
  background-color: #ff3131;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1.2vw;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-family: "CustomFont", sans-serif;
  letter-spacing: 2px;
  word-spacing: -1px;
  float: right;
  margin: 0vh 0 0;
}

.cta-section .subscribe {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
}

.footer-bottom {
  padding: 2vh 5vw;
  font-family: "Poppins", sans-serif;
}

.footer-bottom .bottom {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  gap: 20vw;
}

.bottom ul {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 3vw;
}

.bottom ul li {
  list-style: none;
  font-size: 1vw;
}

.bottom ul li a {
  color: #fff;
  text-decoration: none;
}

.bottom div {
  font-size: 1vw;
}

@media (max-width: 768px) {
  .nav .call {
    width: 28vw;
    color: #000;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1vw;
  }

  nav {
    position: fixed;
  }

  .nav.custom-style .horizontal-menu {
    display: block;
  }

  .nav .call i {
    color: #ff3131;
    margin-top: 0.5vh;
    font-size: 3vw;
  }

  .nav .call p {
    margin-bottom: 0;
    font-size: 3vw;
    font-weight: 600;
  }

  .nav .logo {
    width: 20vw;
    display: block !important;
  }

  .nav .burger p {
    font-size: 3vw;
  }

  .nav .burger {
    display: flex;
    justify-content: center;
    align-items: center;
    justify-content: flex-end;
    gap: 2vw;
    width: 28vw;
  }
  .nav .menu {
    display: none;
  }

  .nav .burger .burgerIn div {
    width: 20px;
  }

  .nav .burger {
    display: flex;
  }
  .nav .horizontal-menu {
    display: none;
  }

  .burger,
  .call {
    display: block;
  }

  .horizontal-menu {
    display: none;
  }

  .mobile {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }

  .mobile.open {
    transform: translateX(0);
  }

  .mobile .close {
    color: #fff;
    font-size: 30px;
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
  }

  .mobile ul {
    padding: 50px 0;
    list-style: none;
    text-align: center;
    margin: 0;
  }

  .mobile ul li {
    padding: 10px;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    transition: color 0.3s ease;
  }

  .mobile ul li:hover {
    color: #ff3131;
  }

  .mobile .close i {
    font-size: 5vw;
  }

  .section-1 {
    width: 100vw;
    height: 80vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 25 !important;
  }

  .section-1 .contact {
    display: none;
  }

  .section-1 .contactMobile {
    display: block;
    width: 90vw;
  }

  .section-1 .contactMobile img {
    width: 100%;
    height: 100%;
  }

  .section-5 {
    top: 70vh;
  }

  .section-5 h1 {
    width: 90vw;
    margin: 0vh 0vw;
    font-size: 9vw;
    line-height: 9vw;
  }

  form {
    width: 90vw;
    flex-direction: column;
    padding: 4vh 5vw;
    margin: 0;
  }

  .Formtab {
    width: 75vw;
  }

  .Formtab label {
    font-size: 5vw;
  }

  .Formtab input {
    width: 70vw;
    border-radius: 2vw;
  }

  .Formtab input[placeholder] {
    padding: 1vh 5vw;
    font-size: 4vw;
  }

  .Formtab select {
    width: 70vw;
    border-radius: 2vw;
    padding: 1vh 5vw;
    font-size: 4vw;
  }

  .Formtab1 label {
    font-size: 5vw;
  }

  /* .Formtab1 input{
      width: 90vw;
      border-radius: 2vw;
    } */

  .Formtab select option {
    font-size: 4vw;
  }

  .Formtab1 {
    width: 80vw !important;
    padding: 0vh 5vw;
  }

  .Formtab label span {
    color: #ff3131;
  }

  .Formtab1 label span {
    color: #ff3131;
  }

  .Formtab1 textarea {
    width: 72vw;
    border-radius: 2vw;
  }

  .Formtab1 textarea[placeholder] {
    padding: 1vh 5vw;
    font-size: 4vw !important;
  }

  #responseMessage {
    text-align: center;
    font-size: 4vw;
    margin-top: 5vh;
  }

  .section-5 button[type="submit"] {
    padding: 1.5vh 5vw;
    background-color: #ff3131;
    color: white;
    border: none;
    border-radius: 2vw;
    font-size: 5vw;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: "CustomFont", sans-serif;
    letter-spacing: 2px;
    word-spacing: -3px;
    margin: 5vh auto;
  }

  footer {
    top: 70vh;
    padding-bottom: 5vh;
  }

  .footer-content {
    flex-direction: column;
  }

  .logo-section,
  .cta-section {
    flex-basis: 100%;
    margin-bottom: 30px;
  }

  .footer-links {
    flex-direction: column;
    justify-content: center;
    gap: 10vw;
    align-items: flex-start;
  }

  .link-column {
    margin-bottom: 1vh;
  }

  .footer-content {
    margin: 0 5vw;
  }

  .logo-section img {
    width: 30vw;
  }

  .logo-section p {
    font-size: 3.5vw;
  }

  address {
    font-size: 3.5vw;
  }

  .social-icons {
    flex-wrap: wrap;
    flex-direction: row;
    gap: 3vw;
  }

  .social-icons a i {
    font-size: 4.5vw;
  }

  .link-column {
    flex-basis: 35%;
  }

  .link-column h3 {
    font-size: 4vw !important;
  }

  .link-column ul li {
    font-size: 3.5vw;
  }

  .cta-section {
    /* border: 3px dotted #ccc; */
    /* padding: 4vh 4vw; */
    width: 80vw;
    border-radius: 2vw;
  }

  .cta-section p {
    font-size: 3.5vw;
  }

  .cta-section .subscribe {
    width: 80vw;
    margin: 0vh 0;
    align-items: flex-start;
    padding: 0;
    gap: 0;
  }

  .subscribe input {
    width: 80vw;
    margin: 1vh 0 0;
    border-radius: 1.5vw;
  }

  .cta-section input[type="submit"],
  button[type="submit"] {
    font-size: 6vw;
    padding: 0.5vh 3vw;
    margin: 2vh auto;
    float: right;
  }

  .footer-bottom .bottom {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0vh;
  }

  .bottom ul {
    flex-direction: column;
    padding-left: 0;
  }

  .bottom ul li {
    list-style: none;
    font-size: 3.5vw;
  }

  .bottom ul li a {
    color: #fff;
    text-decoration: none;
  }

  .bottom div {
    font-size: 3.5vw;
  }
}
