body {
  background: white;
}

.header-desktop .header-second-line .menu-navbar ul li a {
  color: var(--brown);
}

.contact-section {
  padding: 15% 10% 0 10%;
  position: relative;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 10px 150px;
}

.contact-section .leaves_first_sect {
  position: absolute;
  right: 0;
  top: 75%;
  width: 13%;
}

.contact-section .contact-colums {
  background-position: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background-size: cover;
}

.contact-section .contact-colums .first-row-ctn {
  align-items: flex-start;
  display: grid;
  gap: 50px;
  justify-items: start;
  grid-template-columns: repeat(2, 1fr);
}

.contact-section .contact-ctn {
  display: flex;
  width: 100%;
  background-repeat: no-repeat;
  flex-direction: column;
  gap: 20px;
  justify-content: space-evenly;
  align-items: center;
}

.contact-section .contact-ctn .title h1 {
  color: var(--orange);
  font-size: 60px;
}

.contact-section .contact-ctn .form-ctn {
  display: flex;
  width: 70%;
  gap: 30px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.contact-section .contact-ctn .inputbox {
  position: relative;
  width: 50%;
}

.contact-section .contact-ctn .form__group {
  position: relative;
  width: 100%;
}

.contact-section .contact-ctn .form__field {
  font-family: inherit;
  width: 100%;
  border: none;
  outline: 0;
  font-size: 17px;
  color: var(--brown);
  padding: 10px;
  border-radius: 10px;
  background: #c3c2c2;
  transition: border-color 0.2s;
}

.contact-section .contact-ctn .message {
  height: 60px;
}

.contact-section .contact-ctn .form__field::placeholder {
  color: transparent;
}

.contact-section .contact-ctn .form__label {
  position: absolute;
  top: -50%;
  display: block;
  transition: 0.2s;
  left: 10px;
  font-size: 17px;
  color: var(--light-gray);
  font-weight: 700;
}

.contact-section .contact-ctn .form__field:focus {
  padding-bottom: 6px;
  font-weight: 700;
  border-width: 3px;
  border-image: linear-gradient(to right, #740000, #cc0000);
  border-image-slice: 1;
}

.contact-section .contact-ctn .form__field:placeholder-shown ~ .form__label {
  position: absolute;
  top: 17%;
  left: 15px;
  display: block;
  transition: 0.2s;
  font-size: 17px;
  color: black;
  font-weight: 600;
  pointer-events: none;
}

.contact-section .contact-ctn .form__field:focus ~ .form__label {
  position: absolute;
  top: -50%;
  display: block;
  transition: 0.2s;
  font-size: 17px;
  color: var(--orange);
  font-weight: 700;
}

.contact-section #blob_01 {
  position: absolute;
  top: 0;
  left: 0;
  width: 32%;
  z-index: -1;
}

.contact-section #blob_02 {
  position: absolute;
  top: 20%;
  right: 0;
  width: 6%;
  z-index: -1;
}

/* reset input */
.contact-section .contact-ctn .form__field:required,
.form__field:invalid {
  box-shadow: none;
}

.contact-section .contact-ctn .btn-submit button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  width: 115px;
  background: var(--orange);
  box-shadow: 0px 6px 24px 0px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  border: none;
}

.contact-section .contact-ctn .btn-submit button:after {
  content: " ";
  width: 0%;
  height: 100%;
  background: var(--yellow);
  position: absolute;
  transition: all 0.4s ease-in-out;
  right: 0;
}

.contact-section .contact-ctn .btn-submit button:hover::after {
  right: auto;
  left: 0;
  width: 100%;
}

.contact-section .contact-ctn .btn-submit button span {
  text-align: center;
  text-decoration: none;
  width: 100%;
  padding: 10px 15px;
  color: #fff;
  font-size: 1.125em;
  font-weight: 700;
  z-index: 20;
  transition: all 0.3s ease-in-out;
}

.contact-section .contact-ctn .btn-submit button:hover span {
  color: white;
  animation: scaleUp 0.3s ease-in-out;
}

@keyframes scaleUp {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(0.95);
  }

  100% {
    transform: scale(1);
  }
}

.contact-section .contact-text {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
  flex-direction: column;
}

.contact-section .contact-text .txt {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-section .contact-text .txt h2 {
  display: flex;
  font-size: 70px;
  flex-direction: column;
  color: var(--orange);
}

.contact-section .contact-text .txt .first-span {
  font-weight: 600;
  font-size: 25px;
}

.contact-section .contact-text .txt .second-span {
  color: var(--red);
  font-size: 65px;
  font-weight: 700;
}

.contact-section .contact-text .txt .third-span {
  font-size: 90px;
  font-weight: 700;
}

.contact-section .contact-text .txt p {
  color: #6e6d6d;
  width: 80%;
  font-weight: 600;
}

.contact-section .contact-text .txt a {
  color: #6e6d6d;
}

.contact-section .contact-text .txt a:hover {
  color: var(--red);
}

.contact-section .contact-text .txt a:hover {
  color: var(--red);
}

.contact-section .contact-text .map {
  width: 100%;
  height: 300px;
}

.contact-section .contact-text .map iframe {
  width: 100%;
  height: 100%;
}

.contact-section .contact-colums .contact-footer {
  text-align: center;
}

.contact-section .contact-colums .contact-footer p {
  color: var(--brown);
  font-weight: 600;
}

.contact-section .contact-colums .contact-footer a {
  color: var(--brown);
  font-weight: 600;
}

.contact-section .contact-colums .contact-footer a:hover {
  color: var(--red);
  font-weight: 600;
}

.contact-section .contact-ctn .notify_box {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.contact-section .contact-ctn .loader {
  display: none;
  margin-top: 30px;
  --height-of-loader: 4px;
  --loader-color: var(--red);
  width: 100%;
  height: var(--height-of-loader);
  border-radius: 30px;
  background-color: rgba(0, 0, 0, 0.2);
  position: relative;
}

.contact-section .contact-ctn .loader::before {
  content: "";
  position: absolute;
  background: var(--loader-color);
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  border-radius: 30px;
  animation: moving 1s ease-in-out infinite;
}

@keyframes moving {
  50% {
    width: 100%;
  }

  100% {
    width: 0;
    right: 0;
    left: unset;
  }
}

.contact-section .contact-ctn .message_box {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 20px;
  width: 100%;
  color: black;
}

.contact-section .contact-ctn .message_box p {
  text-align: center;
  color: black;
}

@media (max-width: 996px) {
  .contact-section {
    padding: 30% 10% 0 10%;
    background-position: center;
    background-size: contain;
  }

  .contact-section .contact-colums .first-row-ctn {
    grid-template-columns: 100%;
  }

  .contact-section .contact-text {
    order: 2;
  }

  .contact-section .contact-text .txt {
    width: 100%;
    text-align: center;
  }

  .contact-section .contact-text .txt .first-span {
    font-size: 20px;
  }

  .contact-section .contact-text .txt .second-span {
    font-size: 55px;
  }

  .contact-section .contact-text .txt .third-span {
    font-size: 70px;
  }

  .contact-section .contact-ctn {
    align-items: center;
  }

  .contact-section .contact-ctn .title h1 {
    text-align: center;
    font-size: 43px;
  }

  .contact-section .contact-text .txt h2{
    font-size: 46px;
  }

  .contact-section .contact-text .txt p {
    text-align: center;
    width: 100%;
  }

  .contact-section .contact-colums .contact-footer p {
    text-align: center;
  }
  .contact-section .contact-ctn .form-ctn{
    width: 90%;
  }
}

/* ---APP STYLES--- */

.app_section {
  position: relative;
  padding: 5% 10% 20% 10%;
}

.app_section .app_box {
  display: grid;
  grid-template-columns: 50% 50%;
  position: relative;
}

.app_section .app_box::before {
  position: absolute;
  content: "";
  left: 10%;
  z-index: -1;
  top: 8%;
  width: 90%;
  height: 80%;
  background-color: var(--yellow);
  border-radius: 25px;
}

.app_section .media_box {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.app_section .media_box img:not(.app_man) {
  position: absolute;
}

.app_section .app_man {
  width: 70%;
}

.app_section .app_fries {
  width: 32%;
  bottom: 0;
  left: 0;
  z-index: 1;
  animation: app_rotation 5s alternate-reverse infinite;
}

.app_section .app_chicken {
  width: 25%;
  top: 0;
  left: 0;
  z-index: 1;
  animation: app_rotation 3s alternate infinite;
  animation-delay: 3s;
}

.app_section .app_soda {
  width: 13%;
  top: 35%;
  left: -15%;
  z-index: 1;
  animation: app_rotation 3s alternate infinite;
}

.app_section .app_juice {
  width: 17%;
  top: 7%;
  right: 10%;
  z-index: -1;
  animation: app_rotation 2s alternate infinite;
}

.app_section .info_box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.app_section h2 {
  color: var(--orange);
  font-size: 100px;
  display: flex;
  z-index: 1;
  flex-direction: column;
}

.app_section h2 span {
  color: var(--gray);
  align-self: center;
}

.app_section .slide_btn {
  width: fit-content;
  border-radius: 25px;
  background: var(--orange);
}

.app_section .slide_btn:hover span {
  color: var(--orange);
}

.app_section .slide_btn::after {
  background: white;
}

.app_section .slide_btn span {
  color: white;
  font-size: 30px;
  padding: 10px 20px;
}

.app_section .store_box {
  display: flex;
  justify-content: center;
  align-content: center;
  gap: 5px;
}

.app_section .store_box img {
  width: 100%;
}

@media (max-width: 1800px) and (min-width: 996px) {
  .app_section h2 {
    font-size: 70px !important;
  }

  .app_section .slide_btn span {
    font-size: 25px !important;
  }
}

@media (max-width: 996px) {
  .app_section {
    padding: 30% 10% 40% 10%;
  }
  .app_section::before {
    top: 50%;
    width: 90%;
    height: 70%;
  }
  .app_section .slide_btn span{
    color: white;
    font-size: 18px;
    padding: 10px 20px;
  }
  .app_section .app_box {
    grid-template-columns: 100%;
    gap: 30px;
  }
  .app_section .app_box::before {
    position: absolute;
    content: "";
    left: 0%;
    z-index: -1;
    top: 8%;
    width: 100%;
    height: 100%;
    background-color: var(--yellow);
    border-radius: 25px;
  }
  .app_section .media_box {
    justify-content: flex-end;
  }
  .app_section .app_fries {
    left: 5%;
  }
  .app_section .app_chicken {
    left: 5%;
  }
  .app_section .app_soda {
    width: 15%;
    left: -5%;
  }
  .app_section .app_juice {
    right: -5%;
  }
  .app_section h2 {
    font-size: 30px;
  }
  .app_section .store_box img {
    width: 100%
  }
}
