@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&family=Source+Sans+Pro:wght@400;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
/* For screens smaller than 600px */
@media screen and (max-width: 600px) {
  .login-button {
    display: none;
  }
  .logo {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .logo-img {
    width: 30%;
    margin-right: 50px;
  }
  .primary-nav {
    display: flex;
    justify-content: center;
    flex-direction: row-reverse;
    width: 100%;
    padding: 20px;
  }
  .nav {
    width: 100%;
    margin-bottom: 50px;
  }
  ul {
    display: flex;
    flex-direction: column;
    margin-top: 6rem;
    margin-left: 2rem;
  }
  .tabs {
    margin-top: 20px;
    color: white;
  }
  .links {
    font-size: 10px;
    position: fixed;
    z-index: 1000;
    inset: 0 0 0 30%;
    background: hsl(3, 77%, 48%);
    transform: translateX(100%);
    transition: transform 350ms ease-out;
  }
  .links[data-visible="true"] {
    transform: translateX(0%);
  }
  .nav-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 10px 50px 0 50px;
    background-color: rgb(0, 0, 0);
  }

  .mobile-nav-toggle {
    display: block;
    position: absolute;
    z-index: 9999;
    background-color: transparent;
    background-image: url(../img/square.png);
    background-size: 2.2rem;
    background-repeat: no-repeat;
    width: 10%;
    border: 0;
    aspect-ratio: 1;
    top: 2rem;
    right: 1rem;
  }
  .mobile-nav-toggle[aria-expanded="true"] {
    background-image: url(../img/hamburger-close.png);
    background-color: transparent;
    width: 1rem;
    background-size: 1rem;
    top: 1.6rem;
  }

  .login {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    font-weight: 500;
    padding: 5px;
    text-align: center;
    border-radius: 5px;
    color: rgb(255, 255, 255);
    background-color: rgb(0, 125, 155);
    text-decoration: none;
    transition: 0.3s ease-in;
    cursor: pointer;
    height: 50%;
    width: 75%;
  }
  .login-btn {
    display: flex;
    width: 30%;
    justify-content: flex-start;
    align-items: center;
  }

  .submit {
    width: 30%;
  }

  .title {
    margin-top: 5rem;
    font-size: 18px;
    font-weight: 500;
  }
  .container {
    width: 90%;
    flex-direction: column;
  }
  .box1 {
    padding: 0 50px 50px 20px;
    border-bottom: 1px solid white;
    width: 100%;
  }
  .box2 {
    padding: 50px 20px 50px 20px;
    width: 100%;
  }
  button {
    width: 100%;
  }
  /************************* FOOTER *************************/
  .footer-content-1 {
    padding: 70px;
  }
  .footer-section-1 {
    width: 100%;
  }

  .footer-logo {
    width: 60%;
  }
  .footer-section-3 {
    width: 100%;
  }
  .footer-header {
    margin: 20px 12px 15px 0;
  }
  .sub-text {
    margin-top: 20px;
  }
  .socials {
    width: 12%;
  }
  .social-logos {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
  }
  .copyrights {
    width: 100%;
  }
}

/* For screens larger than 600px */
@media screen and (min-width: 600px) {
  .primary-nav {
    position: fixed; /* Set the navbar to fixed position */
    top: 0; /* Position the navbar at the top of the page */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 100px 0 100px;
  }

  .wrapper {
    width: 100%;
  }

  ul {
    display: flex;
  }
  li {
    padding: 30px 15px 20px 15px;
  }
  .links {
    width: 100%;
    justify-content: center;
    display: flex;
    align-items: center;
  }
  .tabs {
    color: black;
  }
  .mobile-nav-toggle {
    display: none;
  }
  .container {
    width: 60%;
  }
  .logo {
    width: 30%;
  }
  .logo-img {
    width: 40%;
    margin: 10px;
  }
  .login {
    font-size: 15px;
    font-weight: 500;
    padding: 10px;
    text-align: center;
    border-radius: 5px;
    color: rgb(255, 255, 255);
    background-color: rgb(0, 125, 155);
    text-decoration: none;
    transition: 0.3s ease-in;
    cursor: pointer;
    width: 50%;
  }
  .login-btn {
    display: flex;
    width: 30%;
    justify-content: flex-end;
  }
  .submit {
    width: 10%;
  }
  .title {
    margin-top: 5%;

    font-size: 30px;
  }
  .box1 {
    padding: 50px;
    border-right: 2px solid rgb(0, 0, 0);
    width: 50%;
  }
  .box2 {
    width: 100%;
    padding: 10px 70px 10px 70px;
  }
  button {
    width: 20%;
  }

  /************************* FOOTER *************************/

  .footer-logo {
    width: 50%;
    margin-bottom: 6%;
  }
  .footer-content-1 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 150px 50px 150px;
  }
  .footer-section-1 {
    width: 33%;
  }
  .footer-section-3 {
    width: 20%;
  }
  .footer-header {
    margin: 0 12px 15px 0;
  }
  .socials {
    width: 2%;
  }
  .social-logos {
    display: flex;

    justify-content: center;
  }
  .copyrights {
    width: 15%;
  }
}

.primary-nav {
  background-color: rgb(202, 202, 204);
}

.logo {
  display: flex;
}

li {
  display: flex;
  justify-content: space-between;
}
.tabs {
  width: 100%;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;

  display: inline-block;
  position: relative;
  transition: 0.3s ease-in;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.tabs:hover {
  box-shadow: #000000;
  border: none;
  transform: translateY(-3px);
}

.login:hover {
  background-color: rgba(0, 124, 155, 0.616);
  border: none;
}
.title {
  width: 100%;
  text-align: center;
}

.container {
  padding: 10px;
  margin-top: 8%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10%;
  background-color: #e9e9e9;
  box-shadow: 0 15px 20px rgba(0, 0, 0, 0.5);
  border-radius: 25px;
}

.form-heading {
  color: black;
  text-align: center;
  margin-bottom: 5px;
  font-size: 25px;
  font-weight: 500;
}

.names {
  display: flex;
}

#name {
  height: 40px;
  border-top: none;
  border-right: none;
  border-bottom: 1px solid rgb(0, 0, 0);
  background-color: #e9e9e9;
  border-left: none;
  display: block;
  font-size: 14px;
  padding: 6px;
  width: 100%;
  transition: 0.5s;
}

.form-control {
  width: 100%;
}

.company-details {
  margin-top: 10px;
}

#company {
  height: 40px;
  border-top: none;
  border-right: none;
  border-bottom: 1px solid rgb(0, 0, 0);
  border-left: none;
  background-color: #e9e9e9;
  display: block;
  font-size: 14px;
  padding: 6px;
  width: 100%;
  transition: 0.5s;
  margin-bottom: 10px;
}
.contact-details {
  margin-top: 10px;
  width: 100%;
}
select:invalid {
  color: rgb(126, 125, 125) !important;
}
select {
  height: 40px;
  border-top: none;
  border-right: none;
  border-bottom: 1px solid rgb(0, 0, 0);
  border-left: none;
  background-color: #e9e9e9;
  display: block;
  font-size: 14px;

  transition: 0.5s;
  width: 100%;
  transition: 0.5s;
}
#email {
  height: 40px;
  border-top: none;
  border-right: none;
  border-bottom: 1px solid rgb(0, 0, 0);
  border-left: none;
  background-color: #e9e9e9;
  display: block;
  font-size: 14px;
  padding: 6px;
  width: 100%;
  transition: 0.5s;
}

#phoneinput {
  height: 40px;
  border-top: none;
  border-right: none;
  border-bottom: 1px solid rgb(0, 0, 0);
  border-left: none;
  background-color: #e9e9e9;
  display: block;
  font-size: 14px;
  padding: 6px;
  width: 100%;
  transition: 0.5s;
  margin-top: 10px;
}
.message-box {
  margin-top: 20px;
}
label {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.591);
}
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
}

.box1 {
  display: flex;
  flex-direction: column;
}

.header {
  font-size: 20px;
}

.dets {
  font-size: 15px;
  color: #ffffff;
}

.add2 {
  display: flex;
  margin-top: 40px;
}
.add1 {
  display: flex;
  margin-top: 40px;
}
.hamburger {
  overflow: hidden;
  float: left;
  color: white;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}
.submit-button {
  margin-top: 8px;
}
.submit {
  display: flex;
  justify-content: center;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  padding: 10px;
  text-align: center;
  border-radius: 5px;
  color: rgb(255, 255, 255);
  background-color: rgb(0, 125, 155);
  text-decoration: none;
  transition: 0.3s ease-in;
  cursor: pointer;
}

.submit:hover {
  background-color: rgba(0, 124, 155, 0.596);
}

/************************* FOOTER *************************/

.footer {
  width: 100%;
  background-color: #011b2d;
}
.footer-content-1 {
  border-bottom: 1.5px solid #ffffff;
}
.footer-logo {
  color: white;
  font-size: 20px;
}
.footer-logo-tagline {
  font-size: 12px;
  color: #ffffff;
  margin: 0 0 30px 0;
}
.footer-header {
  font-size: 20px;
  font-weight: 600;
  color: #d00404;
}
.sub-text {
  color: #ffffff;
  font-weight: 200;
  font-size: 15px;
}
.footer-section-1 {
  margin: 0 60px 0 0;
}
.footer-section-2 {
  width: 30%;
}
.material-symbols-rounded {
  margin-right: 10px;
  color: #d7d7d7;
}

.add2 {
  display: flex;
  margin-top: 8px;
}
.add1 {
  display: flex;
  margin-top: 8px;
}

.footer-tabs {
  display: flex;
  text-decoration: none;
  color: white;
  margin: 10px 0 10px 0;
  font-weight: 200;
}
.footer-content-2 {
  display: flex;
  padding: 20px;
}
.social-logos {
  width: 100%;

  align-items: center;
}
.socials {
  margin: 10px;
}
.copyrights {
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 12px;
}
