@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background-color: #FBF8EC;
}

.container {
  max-width: 1280px;
  margin: auto;
  padding: 0px 20px;
}

.con {
  display: flex;
  align-items: center;
  text-align: center;
  margin-top: -10px;
  margin-left: 30px;
}
.con .u {
  margin-left: 20px;
  margin-right: 20px;
}
.con p {
  font-family: "Rubik";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  display: flex;
  align-items: center;
  text-align: center;
  color: #414141;
  margin-top: -25px;
}

.center {
  display: flex;
  align-items: center;
  width: 100%;
  margin-left: 20px !important;
}
.center .urta {
  display: flex;
  border: 1px solid green;
  width: 100%;
  padding-left: 5px;
  border-radius: 4px;
  height: 40px;
}
.center .urta .urta2 {
  width: 100%;
}
.center .urta .urta2 input {
  display: block;
  border: none;
  outline: 0;
  outline-offset: 0;
  max-width: 250px;
  height: 20px !important;
  margin-top: 10px;
}
.center .urta .search {
  margin-top: -10px;
  margin-left: 35px;
}

@keyframes showOverlay {
  from {
    visibility: hidden;
    opacity: 0;
  }
  to {
    visibility: visible;
    opacity: 1;
  }
}
@keyframes hideOverlay {
  from {
    visibility: visible;
    opacity: 1;
  }
  to {
    visibility: hidden;
    opacity: 0;
  }
}
@keyframes showModal {
  from {
    opacity: 0;
    transform: translateY(50%);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes hideModal {
  from {
    opacity: 1;
    transform: none;
  }
  to {
    opacity: 0;
    transform: translateY(50%);
  }
}
.overlay {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  animation-duration: 200ms;
  animation-timing-function: linear;
  animation-fill-mode: both;
  will-change: transform, opacity;
}
.overlay[data-backdrop] {
  background: rgba(252, 213, 186, 0.6392156863);
}
.overlay[data-opened=true] {
  pointer-events: auto;
  animation-name: showOverlay;
}
.overlay[data-opened=false] {
  animation-name: hideOverlay;
}
.overlay[data-opened=false]:not([data-type=alert]) {
  animation-delay: 300ms;
}

.modal {
  position: relative;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  width: 100%;
  height: 100%;
  text-align: left;
  background: #fff;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
  opacity: 0;
  animation-duration: 300ms;
  animation-fill-mode: both;
  will-change: transform, opacity;
}
@media (min-width: 640px) {
  .modal {
    max-width: 720px;
    height: auto;
    max-height: 100%;
    margin: 1.5rem;
    border-radius: 4px;
  }
}
[data-type=alert] .modal {
  max-width: 360px;
  height: auto;
  margin: 1rem;
  text-align: center;
  border-radius: 4px;
}
.overlay[data-opened=true] .modal {
  animation-name: showModal;
  animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
}
.overlay[data-opened=true]:not([data-type=alert]) .modal {
  animation-delay: 200ms;
}
.overlay[data-opened=false] .modal {
  animation-name: hideModal;
  animation-timing-function: cubic-bezier(0.4, 0, 1, 1);
}
.modal--header {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  min-height: 3rem;
  padding: 0.75rem 1rem;
  color: rgba(0, 0, 0, 0.6);
}
.modal--title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: calc(1em + 0.5rem);
}
.modal--content {
  overflow-x: hidden;
  overflow-y: auto;
  flex-grow: 1;
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  color: rgba(0, 0, 0, 0.8);
}
.modal--footer {
  display: flex;
  flex-shrink: 0;
  min-height: 3rem;
  padding: 1rem;
}
.modal--footer:before {
  flex-grow: 1;
  order: 1;
  content: "";
}
.modal--footer button:first-of-type {
  order: 0;
}
.modal--footer button:last-of-type {
  order: 2;
}

.button[data-modal-close] {
  position: absolute;
  z-index: 100;
  top: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  padding: 0;
  background: none;
  border-radius: none;
  cursor: pointer;
  text-decoration: none;
  color: hsl(0, 0%, 60%);
  transition: 200ms ease-out;
}
.button[data-modal-close]:hover {
  color: hsl(0, 0%, 80%);
}
.modal .button[data-modal-close] {
  align-self: stretch;
  color: hsl(0, 0%, 80%);
}
.modal .button[data-modal-close]:hover {
  color: hsl(0, 0%, 60%);
}
.button[data-modal-close] .icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  pointer-events: none;
  fill: currentColor;
}

.overlay .modal .modal--content {
  text-align: center;
  justify-content: center;
}
.overlay .modal .modal--content h2 {
  font-family: "Rubik";
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 150%;
  text-align: center;
  color: #414141;
}
.overlay .modal .modal--content .input {
  text-align: center;
  justify-content: center;
  width: 50%;
  margin: auto;
}
.overlay .modal .modal--content .input input {
  display: block;
  width: 100%;
  justify-content: center;
  padding: 10px 4px;
  border: none;
  outline: 0;
  outline-offset: 0;
  border: 1px solid #70C05B;
  border-radius: 4px;
}
.overlay .modal .modal--content .vxod {
  text-align: center;
  justify-content: center;
  width: 50%;
  margin: auto;
}
.overlay .modal .modal--content .vxod button {
  all: unset;
  text-align: center;
  background-color: #FCD5BA;
  cursor: pointer;
  width: 100%;
  padding: 10px 0px;
  border-radius: 4px;
  font-family: "Rubik";
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 150%;
  color: #FF6633;
  margin-top: 20px;
}
.overlay .modal .modal--content .pas {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 50%;
  margin: auto;
}
.overlay .modal .modal--content .pas .bu button {
  cursor: pointer;
  width: 100%;
  color: #70C05B;
  padding: 10px 30px;
  background-color: transparent;
  border: 1px solid #70C05B;
  border-radius: 4px;
}
.overlay .modal .modal--content .pas a {
  font-family: "Rubik";
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  display: flex;
  line-height: 150%;
  align-items: center;
  text-align: center;
  color: #606060;
}

.sec {
  display: flex;
  margin-top: 10px;
  margin-left: 20px;
  background-color: white;
}
.sec img {
  margin-right: 20px;
  margin-bottom: -5px;
}
.sec select {
  border: none;
  height: 50px;
  background-color: white;
}
.sec .aaa {
  cursor: pointer;
}
.sec .aaa button {
  all: unset;
}

.desktop-item img {
  margin-bottom: -10px;
}

.nav-links {
  background-color: #70C05B;
  padding-bottom: 20px !important;
  width: 200px;
  height: 50px;
  margin-top: 0px;
  border-radius: 4px;
}
.nav-links .hov {
  display: flex;
  margin-top: -15px;
  margin-right: 30px;
}
.nav-links .hov .piii {
  margin-top: 5px;
}
.nav-links .hov .piii p {
  color: white;
  font-family: "Rubik";
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  display: flex;
  align-items: center;
  text-align: center;
}

nav {
  position: fixed;
  z-index: 99;
  width: 100%;
  background: rgb(255, 255, 255);
}

nav .wrapper {
  position: relative;
  max-width: 1300px;
  padding: 0px 30px;
  height: 70px;
  line-height: 70px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
nav .wrapper .logo {
  margin-bottom: -20px;
  margin-right: 20px;
}

.wrapper .logo a {
  color: #f2f2f2;
  font-size: 30px;
  font-weight: 600;
  text-decoration: none;
}

.wrapper .nav-links {
  display: inline-flex;
}

.nav-links li {
  list-style: none;
}

.nav-links li a {
  color: #f2f2f2;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  padding: 9px 15px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.nav-links li a:hover {
  background: #70C05B;
}

.nav-links .mobile-item {
  display: none;
}

.nav-links .drop-menu {
  position: absolute;
  background: #262624;
  width: 180px;
  line-height: 45px;
  top: 85px;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.nav-links li:hover .drop-menu,
.nav-links li:hover .mega-box {
  transition: all 0.3s ease;
  top: 70px;
  opacity: 1;
  visibility: visible;
}

.drop-menu li a {
  width: 100%;
  display: block;
  padding: 0 0 0 15px;
  font-weight: 400;
  border-radius: 0px;
}

.mega-box {
  position: absolute;
  left: 0;
  width: 100%;
  padding: 0 30px;
  top: 85px;
  opacity: 0;
  visibility: hidden;
}

.mega-box .content {
  background: #fff;
  padding: 25px 20px;
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.mega-box .content .row {
  width: calc(25% - 30px);
  line-height: 45px;
}

.content .row img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.content .row header {
  color: #000000;
  font-size: 20px;
  font-weight: 500;
}

.content .row .mega-links {
  margin-left: -40px;
  border-left: 1px solid rgba(255, 255, 255, 0.09);
}

.row .mega-links li {
  padding: 0 20px;
}

.row .mega-links li a {
  padding: 0px;
  padding: 0 20px;
  color: #000000;
  font-size: 17px;
  display: block;
}

.row .mega-links li a:hover {
  color: #ffffff;
}

.wrapper .btn {
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: none;
}

.wrapper .btn.close-btn {
  position: absolute;
  right: 30px;
  top: 10px;
}

nav input {
  display: none;
}

.body-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  padding: 0 30px;
}

.body-text div {
  font-size: 45px;
  font-weight: 600;
}

.top {
  display: flex;
  margin-top: 100px;
}
.top .r {
  margin-left: 24px;
  margin-right: 24px;
}
.top a {
  text-decoration: none;
  color: black;
  transition: 0.3s;
}
.top a:hover {
  color: red;
}

header {
  position: relative;
  position: fixed;
  background-color: #ffffff;
  padding: 20px;
  z-index: 2222;
}
header .inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
header .inner .navigation .center {
  display: flex;
  align-items: center;
}
header .inner .navigation .center .fl {
  display: flex;
  align-items: center;
  background-color: #70C05B;
  margin-right: 16px;
  padding: 9px;
  border-radius: 4px;
}
header .inner .navigation .center .fl div {
  margin-right: 16px;
  margin-left: 16px;
}
header .inner .navigation .center .fl div p {
  margin-bottom: -5px;
  font-family: "Rubik";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  display: flex;
  align-items: center;
  text-align: center;
  color: #FFFFFF;
  padding-bottom: 5px;
}
header .inner .navigation .center .fl .bars {
  cursor: pointer;
}
header .inner .navigation .urta {
  display: flex;
  border: 1px solid green;
  padding: 8px 16px;
  border-radius: 4px;
}
header .inner .navigation .urta .urta2 input {
  border: none;
  outline: 0;
  outline-offset: 0;
  max-width: 250px;
}
header .inner .con {
  display: flex;
  align-items: center;
  text-align: center;
}
header .inner .con .u {
  margin-left: 15px;
  margin-right: 15px;
}
header .inner .con p {
  font-family: "Rubik";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  display: flex;
  align-items: center;
  text-align: center;
  color: #414141;
}

.navigation {
  position: relative;
}
.navigation ul {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.navigation ul li {
  margin-left: 60px;
}
.navigation ul li a {
  position: relative;
  font-size: 18px;
  color: #000;
  font-weight: 500;
  line-height: 1;
  transition: 0.5s;
}

.navigation a::before {
  content: "" attr(data-menu) "";
  position: absolute;
  z-index: 1;
  color: #ef476f;
  width: 0px;
  transition: 0.5s;
  overflow: hidden;
}

.navigation a:hover::before {
  width: 100%;
}

input#toggle-icon,
.toggle-icon {
  display: none;
}

footer {
  background-image: url(../../img/footer.png);
  padding-top: 30px;
  padding-bottom: 50px;
}
footer .futer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
footer .futer .f-1 {
  display: flex;
  align-items: center;
}
footer .futer .f-1 .left {
  margin-left: 30px;
  margin-bottom: -10px;
}
footer .futer .f-1 .left a {
  font-family: "Rubik";
  text-decoration: none;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #414141;
}
footer .futer .f-1 .left a:hover {
  cursor: pointer;
  color: #70C05B;
}
footer .futer .f-2 {
  display: flex;
  align-items: center;
}
footer .futer .f-2 .left {
  margin-left: 20px;
}
footer .futer .f-2 img:hover {
  cursor: pointer;
}
footer .futer .f-3 .f-33 {
  display: flex;
}
footer .futer .f-3 .f-33 .dizayn {
  margin-right: 10px;
}
footer .futer .f-3 .f-33 .raqam {
  margin-left: 10px;
  cursor: pointer;
}
footer .futer .f-3 .f-33 .raqam:hover {
  color: #70C05B;
}

@media (max-width: 1200px) {
  footer .futer {
    flex-direction: column;
  }
  footer .futer .f-2 {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 1130px) {
  .center {
    width: 50%;
  }
  .center .urta {
    width: 100%;
  }
  .center .urta .urta2 {
    width: 100%;
  }
  .con {
    display: none;
  }
  .sec {
    display: none;
  }
  .wrapper .nav-links {
    position: fixed;
    height: 100vh;
    width: 100%;
    max-width: 350px;
    top: 0;
    left: -100%;
    background: #242526;
    display: block;
    padding: 50px 10px;
    line-height: 50px;
    overflow-y: auto;
    box-shadow: 0px 15px 15px rgba(0, 0, 0, 0.18);
    transition: all 0.3s ease;
  }
  /* custom scroll bar */
  ::-webkit-scrollbar {
    width: 10px;
  }
  ::-webkit-scrollbar-track {
    background: #242526;
  }
  ::-webkit-scrollbar-thumb {
    background: #3A3B3C;
  }
  #menu-btn:checked ~ .nav-links {
    left: 0%;
  }
  #menu-btn:checked ~ .btn.menu-btn {
    display: none;
  }
  #close-btn:checked ~ .btn.menu-btn {
    display: block;
  }
  .nav-links li {
    margin: 15px 10px;
  }
  .nav-links li a {
    padding: 0 20px;
    display: block;
    font-size: 20px;
  }
  .nav-links .drop-menu {
    position: static;
    opacity: 1;
    top: 65px;
    visibility: visible;
    padding-left: 20px;
    width: 100%;
    max-height: 0px;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s ease;
  }
  #showDrop:checked ~ .drop-menu,
  #showMega:checked ~ .mega-box {
    max-height: 100%;
  }
  .nav-links .desktop-item {
    display: none;
  }
  .nav-links .hov .desktop-item {
    background-color: #70C05B;
  }
  .fa-bars:before {
    background: #70C05B;
  }
  .nav-links .mobile-item {
    display: block;
    color: #f2f2f2;
    font-size: 20px;
    font-weight: 500;
    padding-left: 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
  }
  .nav-links .mobile-item:hover {
    background: #3A3B3C;
  }
  .drop-menu li {
    margin: 0;
  }
  .drop-menu li a {
    border-radius: 5px;
    font-size: 18px;
  }
  .mega-box {
    position: static;
    top: 65px;
    opacity: 1;
    visibility: visible;
    padding: 0 20px;
    max-height: 0px;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  .mega-box .content {
    display: block;
    box-shadow: none;
    flex-direction: column;
    padding: 20px 20px 0 20px;
  }
  .mega-box .content .row ul li a {
    display: block !important;
    color: rgb(255, 0, 0) !important;
  }
  .mega-box .content .row {
    width: 100%;
    margin-bottom: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
  .mega-box .content .row:nth-child(1),
  .mega-box .content .row:nth-child(2) {
    border-top: 0px;
  }
  .content .row .mega-links {
    border-left: 0px;
    padding-left: 15px;
  }
  .row .mega-links li {
    margin: 0;
  }
  .content .row header {
    font-size: 19px;
    width: 25%;
  }
}
@media (max-width: 1100px) {
  header {
    padding: 20px 50px;
    padding-bottom: 40px;
  }
  header .inner .logo-wrap .logo2 {
    margin-top: -10px;
  }
  header .inner .navigation nav ul li a {
    font-family: "Rubik";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #4F5665;
  }
  header .inner .navigation nav ul li a:hover {
    border-bottom: 1px solid white;
    transition: 0.5s;
  }
  header .inner .con {
    display: none;
  }
  header .inner .sec {
    display: none;
  }
  .logo {
    font-size: 38px;
  }
  .navigation {
    position: absolute;
    top: 33px;
    left: 0;
    width: 100%;
  }
  .navigation ul li {
    margin-left: 0px;
    width: 100%;
    background: #F53855;
    animation: liAnim 0.5s 0ms ease-in forwards;
    transform-origin: left;
    opacity: 0;
    transform: scaleY(0);
  }
  .navigation ul li:nth-child(1) {
    animation-delay: 100ms;
  }
  .navigation ul li:nth-child(2) {
    animation-delay: 300ms;
  }
  .navigation ul li:nth-child(3) {
    animation-delay: 500ms;
  }
  .navigation ul li:nth-child(4) {
    animation-delay: 700ms;
  }
  .navigation ul li:nth-child(5) {
    animation-delay: 900ms;
  }
  .navigation ul li:nth-child(6) {
    animation-delay: 1100ms;
  }
  @keyframes liAnim {
    0% {
      opacity: 0;
      transform: scaleY(0);
    }
    100% {
      opacity: 1;
      transform: scaleY(1);
    }
  }
  .navigation a {
    line-height: 1;
    display: block;
    color: white !important;
    padding: 15px 10px;
  }
  .navigation a::before {
    color: rgb(0, 0, 0);
  }
  .navigation nav {
    display: none;
  }
  .toggle-icon {
    display: block;
  }
  .toggle-icon {
    position: fixed;
    top: 6px;
    right: 50px;
    width: 55px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  /* hamburger css start */
  .hamburger {
    position: relative;
    width: 60%;
    height: 60%;
    border-radius: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    overflow: hidden;
  }
  .burger-1::before,
  .burger-1::after {
    content: "";
    position: absolute;
    width: 30px;
    height: 3px;
    background-color: black;
    border-radius: 8px;
    transition: 0.3s;
  }
  .burger-1::before {
    transform: translateY(-10px);
  }
  #toggle-icon:checked + .toggle-icon .burger-1::before {
    transform: translateY(0) rotate(-315deg);
  }
  .fa-bars:before {
    background: #70C05B;
  }
  .burger-1::after {
    transform: translateY(10px);
    box-shadow: 0 -10px 0 black;
  }
  #toggle-icon:checked + .toggle-icon .burger-1::after {
    transform: translateY(0) rotate(-45deg);
    box-shadow: unset;
  }
  #toggle-icon:checked ~ nav {
    display: block;
  }
}
@media (max-width: 880px) {
  .content .row header {
    font-size: 19px;
    width: 35%;
  }
}
@media (max-width: 818px) {
  footer .futer {
    flex-direction: column;
  }
  footer .futer .f-1 {
    flex-direction: column;
  }
  footer .futer .f-1 .left {
    margin-left: 0px !important;
    margin-top: 20px;
  }
}
@media (max-width: 700px) {
  .wrapper .btn {
    display: block;
  }
  .center {
    display: none;
  }
}
@media (max-width: 550px) {
  .content .row header {
    font-size: 19px;
    width: 45%;
  }
}
@media (max-width: 400px) {
  .content .row header {
    font-size: 19px;
    width: 65%;
  }
}/*# sourceMappingURL=nav-footer.css.map */