* {
  padding: 0;

  margin: 0;

  box-sizing: border-box;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px rgb(210, 194, 194);
}

::-webkit-scrollbar-thumb {
  background: rgb(210, 194, 194);

  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgb(210, 194, 194);
}

ul,
ol {
  list-style-type: none;
}

a {
  text-decoration: none;

  color: inherit;
}

body {
  font-family: Montserrat;

  color: black;
}

header {
  width: 100%;

  background-color: #ff0000;

  border-bottom: 3px solid black;

  height: 100px;
  z-index: 99;

  position: fixed;
}

header nav {
  width: 1168px;

  margin: 0 auto;
}

header nav .header-navigation {
  position: relative;
}

header nav .header-navigation .language {
  position: absolute;

  border: 1px solid #ffffff;

  border-radius: 20px;

  color: #ffffff;

  font-weight: 500;

  font-size: 20px;

  padding: 5px 15px;

  background-color: #ff0000;

  top: 30px;
}

header nav .header-navigation .language .languages-list {
  display: none;

  margin-top: 10px;
}

.open-languges {
  height: 120px;
}

header nav .header-navigation .language div .language-pointer {
  transform: rotate(-90deg);

  display: inline-block;

  transition: 0.3s;
}

.language-pointer-rotate {
  transform: rotate(90deg) !important;
}

.languages-list-open {
  display: block !important;
}

main {
  width: 100%;

  background-color: transparent;

  padding-top: 120px;

  padding-bottom: 30px;
}

main .logo {
  width: 500px;
}

main .about {
  width: 1168px;

  color: #0f0f0f;

  margin: 0 auto;

  padding-top: 57px;
}

main .about .about-first {
  display: flex;

  flex-direction: row;

  justify-content: space-between;

  align-items: center;
}

.about-second {
  text-align: center;

  font-size: 1px;

  display: flex;

  padding-bottom: 30px;
}

.about-second h2 {
  color: transparent;
}

main .about .about-first .about-text {
  display: flex;

  flex-direction: column;
}

main .about .about-first .about-text .first-title {
  margin-top: 20px;

  margin-bottom: 40px;

  font-weight: 500;

  font-size: 24px;

  line-height: 29px;

  width: 425px;

  opacity: 0.99;
}

main .about .about-first .about-text .registration-ref {
  background-color: red;

  border-radius: 20px;

  padding: 20px 30px;

  width: fit-content;

  font-weight: 600;

  font-size: 18px;

  line-height: 22px;

  border: 2px solid transparent;

  text-transform: uppercase;

  color: #ffffff;

  transition: 0.3s;
}

main .about .about-first .about-text .registration-ref:hover {
  background-color: transparent;

  color: red;

  border: 2px solid #222222;
}

main .about .about-first .about-image {
  display: flex;

  flex-direction: row;

  width: 520px;

  gap: 20px;
}

main .about .about-first .about-yango-img {
  width: 600px;

  border-radius: 50px;
}

main .about .about-first .about-image img {
  width: 250px;

  border-radius: 20px;
}

main .registration-section {
  background-color: white;

  width: 100%;

  padding: 60px 0;
}

.form-container {
  margin: 0 auto;

  width: fit-content;
}

.form-container .register-now {
  font-weight: 600;

  font-size: 32px;

  line-height: 39px;

  margin-top: 0;

  text-transform: uppercase;

  color: #0f0f0f;

  margin-bottom: 12px;

  text-align: center;
}

.form-container .instant-registration {
  font-weight: 600;

  font-size: 24px;

  line-height: 29px;

  color: #0f0f0f;

  text-align: center;

  margin-top: 20px;
}

.form-container .choose-registration-form {
  width: 100%;

  display: flex;

  margin-top: 20px;
}

.form-container .choose-registration-form button {
  width: 100%;

  background-color: #ff0000;

  padding: 10px;

  text-align: center;

  font-weight: 900;

  font-size: 100%;

  border: 1px solid black;

  color: white;
}

.form-container .choose-registration-form button:first-child {
  border-top-left-radius: 30px;

  border-bottom-left-radius: 30px;

  border-right: 1px solid black;

  background-color: white;

  color: red;
}

.form-container .choose-registration-form button:last-child {
  border-top-right-radius: 30px;

  border-bottom-right-radius: 30px;
}

.section-title {
  font-style: normal;

  font-weight: 600;

  font-size: 32px;

  line-height: 39px;

  margin-top: 0;

  text-transform: uppercase;

  color: #0f0f0f;

  margin-bottom: 12px;
}

.register-form-label {
  font-style: normal;

  font-weight: 500;

  font-size: 18px;

  line-height: 22px;

  margin-bottom: 8px;

  margin-top: 30px;

  color: #0f0f0f;
}

.active {
  background-color: white !important;

  color: red !important;
}

.not-active {
  background-color: red !important;

  color: white !important;
}

#cargo-delivery-form {
  display: none;
}

#auto-delivery-form {
  display: none;
}

#bicycle-delivery-form {
  display: none;
}

#pedestrian-delivery-form {
  display: none;
}

#moto-delivery-form {
  display: none;
}

#taxi-form {
  display: block;
}

.taxi-form {
  animation: showForm 1 0.5s linear;

  width: fit-content;

  margin: 0 auto;
}

@keyframes showForm {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.taxi-form h1 {
  text-align: center;

  padding-top: 30px;

  font-size: 30px;
}

.taxi-form input {
  padding: 20px;

  width: 100%;

  box-sizing: border-box;

  border: none;

  font-weight: 500;

  font-size: 18px;

  line-height: 22px;

  border: 2px solid #fff;

  color: #161616;

  background: #ffffff;

  box-shadow: 0px 0px 8px black;

  border-radius: 20px;

  outline-color: #f4bf02;
}

.select-color {
  width: 98%;

  outline: none;

  border: none;

  font-size: 18px;

  font-weight: 500;

  height: 100%;

  background-color: transparent;

  display: inline-block;

  border-radius: 20px;

  padding-left: 20px;

  padding-right: 20px;
}

.select-color-con {
  display: flex;

  align-items: center;

  height: 66px;

  width: 100%;

  border: 2px solid #fff;

  color: #161616;

  background: #ffffff;

  box-shadow: 0px 0px 8px black;

  border-radius: 20px;
}

.reg-form-agree {
  text-align: center;

  margin-bottom: 30px;

  margin-top: 40px;
}

.reg-form-agree span {
  color: #f4bf02;
}

.taxi-form .registration-submit {
  background-color: #222222;

  border-radius: 20px;

  padding: 20px 30px;

  width: fit-content;

  font-weight: 600;

  font-size: 18px;

  line-height: 22px;

  border: 2px solid #222222;

  text-transform: uppercase;

  display: flex;

  color: #ffffff;

  transition: 0.3s;

  margin: 0 auto;

  margin-top: 30px;

  cursor: pointer;
}

.taxi-form .registration-submit:hover {
  background-color: transparent;

  color: #222222;
}

.congratulation-container {
  width: 100%;

  height: 100vh;

  position: fixed;

  display: none;

  justify-content: center;

  align-items: center;

  z-index: 99;
}

.congratulation {
  background-color: green;

  display: flex;

  flex-direction: column;

  justify-content: space-between;

  align-items: center;

  border-radius: 20px;

  width: 400px;

  height: 300px;

  padding: 20px;
}

.congratulation-container p {
  font-size: 32px;

  color: white;
}

.congratulation-container button {
  padding: 20px 30px;

  color: white;

  background-color: black;

  text-align: center;

  border: none;

  border-radius: 10px;

  cursor: pointer;

  border: 2px solid white;
}

.g-recaptcha {
  margin-top: 20px;
}

.map {
  margin: 0 auto;

  display: block;
}

.footer {
  display: flex;

  gap: 30px;
}

.footer iframe{
  width: 100%;
}

@media (max-width: 1200px) {
  header nav {
    width: 680px;
  }

  main .about {
    width: 680px;
  }

  .form-container {
    padding-left: 40px;

    padding-right: 40px;
  }

  main .about .about-first .about-yango-img {
    width: 400px;
  }

  main .about .about-first {
    flex-direction: column;

    gap: 30px;
  }

  main .about .about-first .about-text {
    align-items: center;
  }

  main .about .about-first .about-text .first-title {
    width: 300px;

    text-align: center;
  }
}

@media (max-width: 810px) {
  header nav {
    width: 100%;

    padding-left: 40px;

    padding-right: 40px;
  }

  .form-container {
    padding-left: 0px;

    padding-right: 0px;
  }

  main .about {
    width: 100%;

    padding-left: 40px;

    padding-right: 40px;
  }

  main .about-text {
    align-items: center;
  }

  main .about .about-first .about-image {
    width: 300px;

    justify-content: center;
  }

  main .about .about-first .about-image img {
    width: 40%;
  }

  .form-container .choose-registration-form {
    width: 100%;

    display: flex;

    flex-direction: column;

    margin-top: 20px;
  }

  .form-container .choose-registration-form button {
    width: 100%;

    background-color: #ff0000;

    padding: 10px;

    text-align: center;

    font-weight: 900;

    font-size: 100%;

    border: 1px solid black;

    color: white;
  }

  .form-container .choose-registration-form button:first-child {
    border-top-left-radius: 10px;

    border-top-right-radius: 10px;

    border-bottom-left-radius: 0px;

    border-right: 1px solid black;

    background-color: white;

    color: red;
  }

  .form-container .choose-registration-form button:last-child {
    border-top-right-radius: 30px;

    border-bottom-right-radius: 30px;
  }

  .form-container .choose-registration-form button:last-child {
    border-top-right-radius: 0px;

    border-bottom-left-radius: 10px;

    border-bottom-right-radius: 10px;
  }

  .form-container {
    margin: 0 auto;

    width: 400px;
  }

  main .registration-section {
    padding-left: 40px;

    padding-right: 40px;
  }
}

@media (max-width: 520px) {
  header {
    height: 60px;
  }

  header nav .header-navigation .language {
    top: 11px;
  }

  header nav .header-navigation {
    width: 100%;
  }

  main {
    width: 100%;

    background-color: transparent;

    padding-top: 50px;

    padding-bottom: 30px;
  }

  main .about .about-first .about-yango-img {
    width: 100%;
  }

  main .about .about-first .about-text .first-title {
    width: 100%;
  }

  main .about .about-first .about-text .logo {
    width: 100%;
  }

  main .about .about-first .about-text .registration-ref {
    width: 100%;

    font-size: 18px;

    padding: 18px 10px;

    text-align: center;
  }

  main .about .about-first .about-text .reg-form-agree {
    width: 100%;
  }

  main .about .about-first .about-image {
    width: 100%;
  }

  .form-container {
    width: 100%;
  }

  main .registration-section {
    padding-left: 20px;

    padding-right: 20px;
  }

  header nav {
    padding-left: 20px;

    padding-right: 20px;
  }

  main .about {
    padding-left: 20px;

    padding-right: 20px;
  }

  .congratulation {
    width: 80%;

    height: 60%;

    padding: 20px;
  }

  .congratulation-container p {
    font-size: 28px;
  }
}
