@import url("https://fonts.googleapis.com/css2?family=Hind:wght@300;400;500;600;700&family=Itim&family=Montserrat:wght@200;300;400;500;600;700;800&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  background-color: black;
  font-family: "Montserrat", sans-serif;
}

/*Header*/

header {
  border-bottom: 1px solid #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 1rem 3.5rem;
}

header .phone > i,
header .location > i {
  font-size: 25px;
  color: red;
}

header .phone > span,
header .location > span {
  font-size: 18px;
  color: #fff;
  font-weight: 300;
  margin: 0px 0px 0px 10px;
}

header .social-media .icons {
  display: flex;
}

header .social-media .icons li {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  width: 40px;
  height: 40px;
  background-color: transparent;
  border: 1px solid whitesmoke;
  border-radius: 50%;
  margin-right: 20px;
}

header .social-media .icons li:hover {
  transition: 0.3s ease-in-out;
  border: 1px solid rgb(201 143 38);
}

header .social-media .icons li:hover i {
  transform: scale(1.3);
}

header .social-media .icons li a {
  text-decoration: none;
  color: #fff;
}

header .social-media .icons li a i {
  font-size: 18px;
}

header .social-media .icons li:hover > a {
  color: rgb(201 143 38);
  transition: 0.3s ease-in-out;
}

nav {
  display: flex;
  column-gap: 100px;
  align-items: center;
  background-color: black;
  padding: 0.5rem 3.5rem;
}

nav .logo {
  flex-basis: 20%;
}

nav .menu {
  flex-basis: 60%;
  justify-content: space-around;
}

nav .order-btn {
  display: flex;
  justify-content: center;
  flex-basis: 20%;
}

nav .logo .logo-wrapper {
  width: 251px;
  height: 80px;
}

nav .logo .logo-wrapper img {
  width: 100%;
  height: 100%;
}

nav .menu {
  display: flex;
}

nav .menu li {
  list-style: none;
}

nav .menu li a {
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  font-size: 1rem;
}

nav .menu li:hover > a {
  color: rgb(201 143 38);
  transition: 0.3s ease-in-out;
}

nav .menu li > .active {
  text-decoration: none;
  color: rgb(201 143 38);
}

nav .btnLogin-popup button {
  border-radius: 5px;
  background-color: rgb(201 143 38);
  border: none;
  outline: none;
  text-align: center;
  padding: 1rem 2.3rem;
}

nav .btnLogin-popup button:hover {
  border: 1px solid white;
  background-color: black;
  transition: 0.3s ease-in-out;
}

nav .btnLogin-popup button:hover > a {
  color: rgb(201 143 38);
  transition: 0.3s ease-in-out;
}

nav .btnLogin-popup button a {
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  color: #fff;
}

.bg {
  background-image: url(../IMG/map.jpg);
  background-size: cover;
  width: 100%;
  height: 100vh;
  background-attachment: fixed;
  background-position: center;
}

.contact-us {
  height: auto;
}

.contact-us .hero-banner {
  background-image: url(../imgs/variety-of-fresh-raw-beef-steaks-Z5ZHW98c.jpg);
  background-position: center center;
  background-size: cover;
  height: 30vh;
}

.contact-us .hero-banner .container-hb {
  flex-direction: column;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 55vh;
}

.contact-us .hero-banner .container-hb h1 {
  font-size: 4rem;
  color: #fff;
  margin-bottom: 1rem;
}

.contact-us .hero-banner .container-hb ul {
  display: flex;
}

.contact-us .hero-banner .container-hb ul li {
  list-style: none;
  margin-right: 0.3rem;
  color: #fff;
}

.contact-us .hero-banner .container-hb ul li a {
  text-decoration: none;
  color: #fff;
}

.contact-us .hero-banner .container-hb ul li a:hover {
  color: rgb(201 143 38);
  transition: 0.3s ease-in-out;
}

.contact-us .container {
  width: 85%;
  margin: 0 auto;
  padding: 2rem 0rem;
}

.contact-us .row {
  margin: 100px 0px;
  display: flex;
  column-gap: 100px;
}

.contact-us .row .col {
  flex-basis: 50%;
}

.gap {
  margin-top: 50px;
}

.contact-us .row .col:first-child .intro-title {
  font-size: 1.2rem;
  font-family: "Itim", cursive;
  color: rgb(201 143 38);
  text-transform: uppercase;
  margin: 20px 0px;
}

.contact-us .row .col:first-child .title {
  font-size: 3rem;
  color: #fff;
  text-transform: capitalize;
  margin: 20px 0px;
}

.contact-us .row .col:first-child .description {
  font-size: 0.8rem;
  color: #fff;
  line-height: 1.5;
  margin: 20px 0px;
}

.contact-us .row .col:first-child .row-inside {
  width: 100%;
  display: flex;
  align-items: center;
  column-gap: 20px;
  margin: 20px 0px;
}

.contact-us .row .col:first-child .row-inside .col {
  flex-basis: 50%;
  display: flex;
  align-items: center;
  column-gap: 25px;
}

.contact-us .row .col:first-child .row-inside .col .icon i {
  font-size: 2.5rem;
  color: rgb(201 143 38);
}

.contact-us .row .col:first-child .row-inside .col .content h3 {
  font-size: 1.5rem;
  font-weight: 500;
  color: #fff;
}

.contact-us .row .col:first-child .row-inside .col .content p {
  margin: 8px 0px;
  color: #fff;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.5px;
}

.contact-us .row .col:first-child h2 {
  color: #fff;
  margin: 20px 0px;
}

.contact-us .row .col:first-child .social-media ul {
  display: flex;
}

.contact-us .row .col:first-child .social-media ul li {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  width: 40px;
  height: 40px;
  border: 1px solid rgb(201 143 38);
  border-radius: 50%;
  margin-right: 20px;
}

.contact-us .row .col:first-child .social-media ul li a {
  text-decoration: none;
  color: #fff;
}

.contact-us .row .col:first-child .social-media ul li a i {
  font-size: 18px;
}

.contact-us .row .col:first-child .social-media ul li:hover > a {
  color: rgb(201 143 38);
  transition: 0.3s ease-in-out;
}

.contact-us .row .col:last-child h2 {
  color: rgb(201 143 38);
}

.contact-us .row .col:last-child form {
  margin: 30px 0px;
}

.contact-us .row .col:last-child form input {
  display: block;
  width: 100%;
  padding: 1.1rem 1.3rem;
  background: none;
  border: 1px solid #fff;
  margin: 15px 0px;
  color: #fff;
}

.contact-us .row .col:last-child form input::placeholder,
.contact-us .row .col:last-child form textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
  font-size: 16px;
}

.contact-us .row .col:last-child form textarea {
  display: block;
  resize: none;
  height: 250px;
  width: 100%;
  padding: 1.1rem 1.3rem;
  background: none;
  border: 1px solid #fff;
  margin: 15px 0px;
  color: #fff;
}

.contact-us .row .col:last-child button {
  background-color: rgb(201 143 38);
  border: none;
  outline: none;
  text-align: center;
  padding: 1rem 2.3rem;
}

.contact-us .row .col:last-child button:hover {
  border: 1px solid white;
  background-color: black;
  transition: 0.3s ease-in-out;
}

.contact-us .row .col:last-child button a {
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
}

.contact-us .row .col:last-child button:hover > a {
  color: rgb(201 143 38);
  transition: 0.3s ease-in-out;
}

.map {
  width: 100%;
  height: 50vh;
}

.map iframe {
  width: 100%;
  height: 100%;
}

footer {
  background-color: black;
}

footer .container {
  border-bottom: 1px solid rgb(201 143 38);
  padding: 6rem 0 6rem 0;
  width: 85%;
  margin: 0 auto;
}

footer .container .row {
  display: flex;
}

footer .container .row .col:first-child {
  flex-basis: 30%;
}

footer .container .row .col {
  flex-basis: 23.3%;
}

footer .container .row .col .image {
  width: 316px;
  height: 256px;
}

footer .container .row .col .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

footer .container .row .col h3 {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

footer .container .row .col .contact li {
  margin-top: 15px;
  list-style-type: none;
}

footer .container .row .col .contact li i {
  color: rgb(201 143 38);
  margin-right: 10px;
}

footer .container .row .col .contact li a {
  text-decoration: none;
  font-size: 1.1rem;
  color: #fff;
}

footer .container .row .col .contactul li a:hover {
  color: rgb(201 143 38);
  transition: 0.3s ease-in-out;
}

footer .container .row .col:last-child .contact > li > i {
  font-size: 1.8rem;
  margin-right: 20px;
}

footer .container .row .col:last-child .contact li {
  margin: 20px 0px;
}

footer .container .row .col:last-child .social-media-2 .icons {
  display: flex;
}

footer .container .row .col:last-child .social-media-2 .icons li {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  width: 40px;
  height: 40px;
  background-color: black;
  border: 1px solid rgb(201 143 38);
  border-radius: 50%;
  margin-right: 20px;
}

footer .container .row .col:last-child .social-media-2 .icons li:hover i {
  transform: scale(1.2);
}

footer .container .row .col:last-child .social-media-2 .icons li a {
  text-decoration: none;
  color: #fff;
}

footer .container .row .col:last-child .social-media-2 .icons li a i {
  font-size: 18px;
}

footer .container .row .col:last-child .social-media-2 .icons li:hover > a {
  color: rgb(201 143 38);
  transition: 0.3s ease-in-out;
}

footer .container .row .col:last-child h2 {
  color: #fff;
}

footer .container .row .col:last-child .social-media-title {
  margin: 20px 0px;
}

footer .copyright {
  padding: 30px 0;
  width: 85%;
  margin: 0 auto;
}

footer .copyright p {
  color: #fff;
  text-align: center;
  font-weight: 300;
}

#preloader {
  background: black url(../IMG/Reload.gif) no-repeat center center;
  background-size: 20%;
  height: 100vh;
  width: 100%;
  position: fixed;
  z-index: 100;
}

.wrapper {
  position: relative;
  width: 400px;
  height: 440px;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transform: scale(0);
  margin: auto;
  margin-top: 50px;
  transition: transform 0.5s ease, height 0.2s ease;
}

.wrapper.active-popup {
  margin: auto;
  margin-top: 50px;
  transform: scale(1);
  display: flex;
  justify-content: center;
  align-items: center;
}

.wrapper.active {
  height: 520px;
}

.wrapper .form-box {
  width: 100%;
  padding: 40px;
}

.wrapper .form-box.login {
  transition: transform 0.18s ease;
  transform: translateX(0);
}

.wrapper.active .form-box.login {
  transition: none;
  transform: translateX(-400px);
}

.wrapper.active .form-box.register {
  transition: transform 0.18s ease;
  transform: translateX(0);
}

.wrapper .form-box.register {
  position: absolute;
  transition: none;
  transform: translateX(400px);
}

.wrapper .icon-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 45px;
  height: 45px;
  background: black;
  font-size: 2em;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom-left-radius: 20px;
  cursor: pointer;
  z-index: 1;
}

.form-box h2 {
  font-size: 2em;
  color: white;
  text-align: center;
}

.input-box {
  position: relative;
  width: 100%;
  height: 50px;
  border-bottom: 2px solid black;
  margin: 30px 0;
}

.input-box label {
  position: absolute;
  top: 50%;
  left: 5px;
  transform: translateY(-50%);
  font-size: 1em;
  color: black;
  font-weight: 500;
  pointer-events: none;
  transition: 0.5s;
}

.input-box input:focus ~ label,
.input-box input:valid ~ label {
  top: -5px;
}

.input-box input {
  width: 100%;
  height: 100%;
  background: transparent;
  border: none;
  outline: none;
  font-size: 1em;
  color: black;
  font-weight: 600;
  padding: 0 35px 0 5px;
}

.input-box .icon {
  position: absolute;
  right: 0px;
  font-size: 1.2em;
  color: black;
  line-height: 57px;
}

.remember-forgot {
  font-size: 0.9em;
  color: black;
  font-weight: 500;
  margin: -15px 0 15px;
  display: flex;
  justify-content: space-between;
}

.remember-forgot label input {
  accent-color: black;
  margin-right: 3px;
}

.remember-forgot a {
  color: black;
  text-decoration: none;
  font-weight: 700;
}

.remember-forgot a:hover {
  text-decoration: underline;
}

.btn {
  width: 100%;
  height: 45px;
  background: black;
  border: none;
  outline: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1em;
  color: white;
  font-weight: 500;
}

.login-register {
  font-size: 0.9em;
  color: black;
  text-align: center;
  font-weight: 500;
  margin: 25px 0 10px;
}

.login-register p a {
  color: black;
  text-decoration: none;
  font-weight: 700;
}

.login-register p a:hover {
  text-decoration: underline;
}

/* omeri */
/*  */

.menu__toggler {
  background: none;
  min-width: 30px;
  border: none;
  cursor: pointer;
  position: relative;
  outline: none;
  z-index: 999;
  display: none;
}
.menu__toggler span {
  display: block;
  height: 3px;
  background-color: #ffffff;
  margin: 6px 0;
  position: relative;
  transition: 0.3s linear;
}

@media screen and (max-width: 1050px) {
  .bg {
    background-image: url(../loriku/loriku/map.jpg);
    background-attachment: scroll !important;
  }
  ul.menu {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999999999;
    width: 70%;
    height: 0vh;
    background-color: black;
    z-index: 9999999;
    flex-direction: column;
    padding: 0 0 0 50px;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s linear;
  }
  .menu__toggler {
    display: block;
  }
  nav {
    justify-content: space-around;
  }
  ul.menu.menu-active {
    height: 100vh;
    visibility: visible;
    opacity: 1;
  }
  .menu__toggler.menu-active span:nth-child(1) {
    transform: rotate(-45deg);
    top: 4px;
  }
  .menu__toggler.menu-active span:nth-child(2) {
    opacity: 0;
  }
  .menu__toggler.menu-active span:nth-child(3) {
    transform: rotate(45deg);
    bottom: 14px;
  }
  ul.menu li {
    color: #fff;
    margin: 40px 0;
  }
  ul.menu li a {
    color: #fff;
  }
  .row-images {
    flex-direction: column;
    align-items: center;
    height: fit-content;
  }
  .row-images .col {
    width: 60%;
    margin: 30px 0;
  }
  .row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .row .col {
    margin: 15px;
  }

  header .social-media .icons li {
    width: 25px;
    height: 25px;
    background-color: transparent;
    border: 1px solid whitesmoke;
    border-radius: 50%;
    margin-right: 10px;
  }
  header .social-media .icons li a i {
    font-size: 15px;
  }

  header {
    padding: 1rem 0.4rem;
  }
  .map {
    margin-top: 700px;
    width: 100%;
    height: 50vh;
  }
  footer .container {
    padding: 0rem 0rem 0;
  }
  .contact-us .row .col:first-child .social-media ul {
    display: flex;
    justify-content: center;
  }
  header .phone > span,
  header .location > span {
    font-size: 13px;
    color: #fff;
    font-weight: 300;
    margin: 0px 0px 0px 10px;
  }
  .bg {
    background-image: url(../IMG/map.jpg);
    background-size: cover;
    width: 100%;
    height: 75vh;
    background-attachment: fixed;
    background-position: center;
  }
  .contact-us {
    height: 500px;
  }
  .contact-us .hero-banner {
    height: 0vh;
  }
  .contact-us .row .col:first-child .social-media ul li a i {
    font-size: 18px;
  }
  .contact-us .row {
    margin: 50px 0px;
  }

  .contact-us .hero-banner .container-hb h1 {
    font-size: 1.5rem;
    margin-right: 0rem;
  }
  .contact-us .hero-banner .container-hb {
    height: 1vh;
  }

  .contact-us .row .col:first-child .row-inside .col .icon i {
    font-size: 1rem;
  }
  .contact-us .row .col:first-child .row-inside .col .content h3 {
    font-size: 0.5rem;
  }
  .contact-us .row .col:first-child .row-inside .col .content p {
    font-size: 0.3rem;
  }
  .contact-us .row .col:first-child h2 {
    font-size: 1rem;
  }
  .contact-us .row .col:first-child .social-media ul li {
    width: 20px;
    height: 20px;
    border: 1px solid rgb(201 143 38);
    border-radius: 50%;
    margin-top: 10px;
  }
  .contact-us .row .col:first-child .social-media ul li a i {
    font-size: 13px;
  }

  .contact-us .container {
    width: 85%;
    margin: 0 auto;
    padding: 0rem 0rem;
  }

  .contact-us .row .col:first-child .title {
    font-size: 1rem;
    margin: 20px 0px;
  }

  .contact-us .row .col:first-child .description {
    font-size: 0.3rem;
    line-height: 1.5;
  }

  .contact-us .row .col:first-child .row-inside .col {
    font-size: 0.5rem;
    flex-direction: column;
    align-items: center;
    height: fit-content;
  }

  footer .container .row .col .image img {
    margin-top: 150px;
    width: 50%;
    height: 50%;
    object-fit: cover;
  }
  .navbar img {
    width: 15%;
  }
}

@media screen and (max-width: 500px) {
  nav .btnLogin-popup button {
    padding: 10px 15px;
  }
  nav .btnLogin-popup button a {
    font-size: 14px;
  }
}
