@import url("https://fonts.cdnfonts.com/css/proxima-nova-2");
@import url("https://fonts.cdnfonts.com/css/gilroy-bold?styles=20880");
@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@400;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500&display=swap");
:root {
  --main: #fff;
  --header-color: rgba(23, 25, 29, 0.1);
  --texts: #000000;
  --card-color: rgba(255, 255, 255, 0.9);
  --card-shadow: 5px 4px 14px rgba(0, 0, 0, 0.55);
  --card-color: rgba(255, 255, 255, 0.9);
  --header: rgba(23, 25, 29, 0.1);
  --hero: #fff;
}

.dark {
  --main: #000;
  --header-color: rgba(23, 25, 29, 0.7);
  --texts: #fff;
  --card-color: rgba(14, 16, 20, 0.9);
  --card-shadow: 5px 4px 14px rgba(255, 255, 255, 0.55);
  --header: rgba(23, 25, 29, 0.7);
  --card-color: rgba(14, 16, 20, 0.9);
  --hero: #111317;
}

@font-face {
  font-family: 'Banana Brick';
  font-style: normal;
  src: url(../../fonts/Banana-brikc/BBrick.otf) format("woff");
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 100px;
}

@media screen and (max-width: 550px) {
  .container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
  }
}

a {
  text-decoration: none;
}

li {
  list-style-type: none;
}

.to-top {
  position: relative;
  background-color: black;
  position: fixed;
  bottom: 16px;
  right: 32px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 32px;
  color: blue;
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.to-top.active {
  bottom: 32px;
  pointer-events: auto;
  opacity: 1;
}

.br {
  width: 20px;
  height: 20px;
  background-color: #d42a2a;
  border-radius: 90px 10px 90px 5px;
}

.g {
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: #2a96d4;
  border-radius: 5px 90px 5px 90px;
}

.o {
  position: absolute;
  width: 14px;
  height: 14px;
  background-color: #2ad463;
  border-radius: 70px 5px 70px 5px;
}

.l {
  position: absolute;
  width: 14px;
  height: 14px;
  background-color: #4f2ad4;
  border-radius: 5px 70px 5px 70px;
}

.loader_bg {
  position: fixed;
  z-index: 999999;
  background-color: #FFFFFF;
  width: 100%;
  height: 100%;
}

.loader {
  border: 0 solid transparent;
  border-radius: 50%;
  width: 150px;
  height: 150px;
  position: absolute;
  top: calc(50vh - 75px);
  left: calc(50vw - 75px);
}

.loader:before, .loader:after {
  content: '';
  border: 1em solid #111317;
  border-radius: 50%;
  width: inherit;
  height: inherit;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: loader 2s linear infinite;
          animation: loader 2s linear infinite;
  opacity: 0;
}

.loader:before {
  -webkit-animation-delay: .5s;
          animation-delay: .5s;
}

@-webkit-keyframes loader {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0;
  }
}

@keyframes loader {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0;
  }
}

footer {
  background: var(--hero);
  padding: 81px 0;
}

.flogo {
  font-family: "Proxima Nova", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 54px;
  line-height: 66px;
  letter-spacing: 0.06em;
  color: var(--texts);
}

.footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.location {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}

.location .text {
  max-width: 434px;
  font-family: "Proxima Nova", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 25px;
  color: var(--texts);
}

.phones {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}

.phone .tel {
  font-family: "Proxima Nova",sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0.06em;
  color: var(--texts);
}

.social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}

.icon {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  z-index: 2;
}

.icon a {
  padding: 15px;
}

.icon:hover img {
  -webkit-filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(35deg) brightness(158%) contrast(101%);
          filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(35deg) brightness(158%) contrast(101%);
}

.icon:hover .tooltip {
  top: -70px;
  opacity: 1;
  pointer-events: auto;
  text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.4);
}

.icon:hover a {
  border-radius: 50%;
  border: none;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.icon .tooltip {
  position: absolute;
  top: 0px;
  background: white;
  color: white;
  -webkit-box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
  font-size: 1.5em;
  padding: 0.5em 0.8em;
  border-radius: 47%;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.4 cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: all 0.4 cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.icon .tooltip::before {
  content: "";
  position: absolute;
  width: 0.8em;
  height: 0.8em;
  bottom: -10px;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
}

.instagram:hover a,
.instagram:hover .tooltip,
.instagram:hover .tooltip::before {
  background: #4267b2;
}

.twitter:hover a,
.twitter:hover .tooltip,
.twitter:hover .tooltip::before {
  background: #bc2a8d;
}

.facebook:hover a,
.facebook:hover .tooltip,
.facebook:hover .tooltip::before {
  background: #00acee;
}

@media screen and (max-width: 1000px) {
  .footer {
    gap: 50px !important;
  }
}

.filtered {
  -webkit-filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(35deg) brightness(10%) contrast(101%) !important;
          filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(35deg) brightness(10%) contrast(101%) !important;
}

.header {
  padding: 20px 0;
  background: var(--header);
  -webkit-backdrop-filter: blur(1px);
          backdrop-filter: blur(1px);
}

.header__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.logo {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 30px;
  line-height: 50px;
  color: var(--texts);
  padding-left: 10px;
}

.header__burger {
  display: none;
  cursor: pointer;
}

.header__logo-burger {
  background-image: url("../../images/burger.png");
  background-repeat: no-repeat;
  background-color: transparent;
  width: 24px;
  position: relative;
  top: 5px;
  height: 25px;
  border: none;
  outline: none;
  cursor: pointer;
  -webkit-filter: invert(0%) sepia(0%) saturate(0%) hue-rotate(137deg) brightness(11%) contrast(100%);
          filter: invert(0%) sepia(0%) saturate(0%) hue-rotate(137deg) brightness(11%) contrast(100%);
}

.filtered {
  -webkit-filter: invert(0%) sepia(0%) saturate(0%) hue-rotate(137deg) brightness(151%) contrast(100%);
          filter: invert(0%) sepia(0%) saturate(0%) hue-rotate(137deg) brightness(151%) contrast(100%);
}

.header__navbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 100px;
}

.header__list {
  list-style: none;
}

.header__nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100vh;
  padding: 30px 0 0 30px;
  -webkit-transform: translateY(-150%);
          transform: translateY(-150%);
  -webkit-transition: 1s;
  transition: 1s;
}

.header__nav-js {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.header__close {
  background-image: url("../../images/x.png");
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
  margin-bottom: 20px;
  border: none;
  outline: none;
  background-color: transparent;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 35px;
}

.db {
  display: inline-block !important;
}

.header__link {
  display: inline-block;
  position: relative;
  font-weight: 700;
  font-size: 32px;
  line-height: 41px;
  margin-bottom: 31px;
  color: #fff;
  text-decoration: none;
  font-family: "Proxima Nova" sans-serif;
}

.header__link::before {
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 0;
  background-color: #fff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  content: "";
}

.header__link:hover::before {
  width: 100%;
  height: 3px;
}

.header__contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 35px;
}

.toggle {
  cursor: pointer;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 90px;
  height: 40px;
  border-radius: 50px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  background: linear-gradient(145deg, #e1e1e1, #fff);
}

.toggle i {
  width: 50%;
  line-height: 60px;
  text-align: center;
  font-size: 30px;
  z-index: 1;
}

.toggle .ball {
  position: absolute;
  width: 35px;
  height: 35px;
  margin: 5px;
  border-radius: 50%;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

input {
  display: none;
}

.toggle .bxs-sun {
  color: #fafafa;
}

.toggle .bx-moon {
  color: #151d2a;
}

.toggle .ball {
  background: #5454d4;
}

/*
    -- Dark Mode --
*/
.active .toggle {
  background: #0a0b0e;
}

.active .toggle .bx-sun {
  color: #fafafa;
}

.active .toggle .bxs-moon {
  color: #fafafa;
}

.active .toggle .ball {
  background: #5454d4;
  -webkit-transform: translateX(45px);
          transform: translateX(45px);
}

.contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3px;
}

.contacts a {
  font-family: "Proxima Nova", sans-serif;
  font-style: normal;
  color: var(--texts);
  font-weight: 700;
}

.contacts .tel {
  font-size: 20px;
  z-index: 999 !important;
}

.contacts .email {
  font-size: 14px;
  z-index: 999 !important;
}

.orderBtn {
  font-family: "Proxima Nova", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  background: #6911ad;
  border-radius: 7px;
  color: #ffffff;
  border: none;
  padding: 13px 21px;
  cursor: pointer;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.orderBtn:hover {
  background: #5454d4;
}

.mobile-logo {
  display: none;
  font-family: "Banana Brick";
  font-style: normal;
  font-weight: 400;
  font-size: 32px;
  color: var(--texts);
  padding-bottom: 50px;
}

.mobile-tel {
  display: none;
  font-family: "Proxima Nova" sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  color: #ffffff;
  background: #6911AD;
  border-radius: 141px;
  padding: 21px 0;
  max-width: 1000px;
  width: 100%;
  text-align: center;
  position: relative;
  bottom: -158px;
}

@media screen and (min-width: 1300px) {
  .wrapper {
    padding-bottom: 177px;
  }
  .container {
    padding: 0 20px;
  }
  .header__nav {
    padding-left: 50px;
    padding-right: 50px;
  }
  .header__logo-burger {
    display: none;
  }
  .header__navbar-logo {
    display: none;
  }
  .header__site-logo {
    display: block;
  }
  .header__burger {
    display: block;
    background-image: url("../../images/burger.svg");
    background-repeat: no-repeat;
    background-color: transparent;
    width: 24px;
    height: 25px;
    border: none;
    outline: none;
  }
  .header__basket {
    margin-left: 58px;
  }
  .header__person {
    margin-left: 58px;
  }
  .header__close {
    margin-bottom: 150px;
  }
  .header__nav-close {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .header__link {
    font-size: 47px;
    line-height: 64px;
  }
}

@media screen and (min-width: 500px) {
  .container {
    padding: 0 40px;
  }
  .header__nav {
    padding-left: 70px;
    padding-right: 70px;
  }
  .header__close {
    margin-bottom: 105px;
  }
  .header__link {
    font-size: 60px;
    line-height: 82px;
  }
}

@media screen and (min-width: 1300px) {
  .wrapper {
    padding-bottom: 354px;
  }
  .header__nav {
    position: static;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    padding-top: 0;
    padding-left: 0;
  }
  .header__close {
    display: none;
  }
  .header__burger {
    display: none;
  }
  .header__list {
    width: 606px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .header__link {
    position: relative;
    font-family: "Playfair Display";
    font-size: 20px;
    font-weight: 700;
    line-height: 27px;
    margin-bottom: 0;
    color: var(--texts);
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .header__link::before {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 0;
    background-color: var(--texts);
    -webkit-transition: 0.5s;
    transition: 0.5s;
    content: "";
  }
  .header__link:hover::before {
    width: 100%;
    height: 3px;
  }
}

.dark-light {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #5454d4;
  border: none;
  cursor: pointer;
  -webkit-transition: 1s;
  transition: 1s;
  display: none;
}

.dark-light img {
  -webkit-filter: invert(0%) sepia(1%) saturate(3%) hue-rotate(357deg) brightness(500%) contrast(100%) !important;
          filter: invert(0%) sepia(1%) saturate(3%) hue-rotate(357deg) brightness(500%) contrast(100%) !important;
}

.dark-light:hover img {
  -webkit-filter: invert(0%) sepia(1%) saturate(3%) hue-rotate(357deg) brightness(11%) contrast(100%);
          filter: invert(0%) sepia(1%) saturate(3%) hue-rotate(357deg) brightness(11%) contrast(100%);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.dark-light:active img {
  -webkit-filter: invert(100%) sepia(79%) saturate(2%) hue-rotate(131deg) brightness(127%) contrast(100%);
          filter: invert(100%) sepia(79%) saturate(2%) hue-rotate(131deg) brightness(127%) contrast(100%);
  fill: #fff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.btn img {
  content: url(../../images/sun.png) !important;
  -webkit-filter: invert(0%) sepia(1%) saturate(3%) hue-rotate(357deg) brightness(11%) contrast(100%);
          filter: invert(0%) sepia(1%) saturate(3%) hue-rotate(357deg) brightness(11%) contrast(100%);
}

@media screen and (max-width: 700px) {
  .header {
    background: var(--header);
  }
  .header__contact {
    display: none;
  }
  .logo {
    font-family: "Banana Brick";
    font-weight: 400;
    font-size: 32px;
    color: var(--texts);
  }
  .dark-light {
    display: block;
  }
}

@media screen and (max-width: 1300px) {
  .header__nav {
    background: rgba(23, 23, 25, 0.915);
    -webkit-backdrop-filter: blur(5px);
            backdrop-filter: blur(5px);
    z-index: 9999999 !important;
    position: absolute !important;
  }
}

.hero-title {
  font-family: "Proxima Nova", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  color: var(--texts);
  max-width: 695px;
  line-height: 58px;
}

.hero-desc {
  font-family: "Proxima Nova", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  color: var(--texts);
  max-width: 549px;
  padding-top: 40px;
}

#hero {
  background-image: url(../../../images/kvadrat.jpg);
  background-size: cover;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background: var(--hero);
}

.hero-bg {
  background-image: url(../../../images/hero-bg1.png);
  position: absolute;
  width: 514.82px;
  height: 657.4px;
  right: 0;
  top: 0;
  z-index: -1;
  background-repeat: no-repeat;
}

.hero-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.earth {
  padding-top: 138px;
}

.dn {
  z-index: -1;
}

.btn2 {
  border: none;
  padding: 20px 66px;
  font-size: 18px;
  position: relative;
  font-family: "Proxima Nova", sans-serif;
  font-weight: 600;
  top: 100px !important;
}

.btn2::before {
  -webkit-transition: all 0.85s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: all 0.85s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  content: "";
  width: 50%;
  height: 100%;
  background: black;
  position: absolute;
  left: 20px;
  top: 0;
}

.btn2.rounded {
  margin-top: 100px !important;
  border-radius: 50px;
}

.btn2.rounded .text-white {
  color: #fff;
  mix-blend-mode: hard-light;
}

.btn2.rounded::before {
  border-radius: 50px;
  width: 25%;
  background: #6911ad;
}

.btn2.rounded:hover .text-white {
  color: #fff;
  font-family: "Proxima Nova", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 18px !important;
}

.btn2.rounded:hover::before {
  background: #6911ad;
  width: 100%;
}

@media screen and (max-width: 1000px) {
  .hero-section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    padding-bottom: 150px;
  }
  .earth {
    padding-top: 30px !important;
  }
  .btn2 {
    top: 50px !important;
  }
}

#about {
  padding-top: 94px;
  padding-bottom: 25px;
  background: var(--hero);
}

.all {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 131px;
}

.all-head {
  font-family: "Proxima Nova", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 50px;
  line-height: 64px;
  color: var(--texts);
}

.all-txt {
  font-family: "Futura PT";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  color: var(--texts);
  max-width: 569px;
  margin-top: 20px;
}

.all-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}

.all-right-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 184px;
}

.all-right-place {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.all-right-gradient {
  font-family: "Proxima Nova", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 50px;
  line-height: 100%;
  background: linear-gradient(109.09deg, rgba(0, 40, 248, 0.89) 0%, #6911ad 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.all-right-txt {
  font-family: "Proxima Nova", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 26px;
  text-align: center;
  color: var(--texts);
}

body {
  overflow-x: hidden;
}

@media screen and (max-width: 600px) {
  .all-right-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
  }
  .all-right-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 94px;
  }
}

@media screen and (max-width: 1300px) {
  .all {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

#benefitCard {
  background-size: cover;
  padding-bottom: 25px;
  background-color: var(--hero);
}

.head-text {
  font-family: "Proxima Nova";
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 44px;
  padding-top: 70px;
  /* identical to box height */
  text-align: center;
  color: var(--texts);
}

.benefit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 40px;
}

.card {
  width: 100%;
  max-width: 433px;
  height: 250px;
  background: var(--card-color);
  border: 1px solid #999999;
  -webkit-backdrop-filter: blur(2.5px);
          backdrop-filter: blur(2.5px);
  border-radius: 20px;
  position: relative;
}

.card:hover {
  -webkit-transition: 1s;
  transition: 1s;
  -webkit-box-shadow: var(--card-shadow);
          box-shadow: var(--card-shadow);
  -webkit-backdrop-filter: blur(2.5px);
          backdrop-filter: blur(2.5px);
  /* Note: backdrop-filter has minimal browser support */
  border-radius: 20px;
}

.card-img {
  position: absolute;
  left: 30px;
  top: 30px;
}

.card-line {
  width: 50px;
  height: 3px;
  background: #686464;
  border-radius: 20px;
  position: absolute;
  left: 25px;
  top: 165px;
}

.card-head {
  font-family: "Proxima Nova";
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
  color: var(--texts);
  position: absolute;
  left: 25px;
  top: 125px;
}

.card-txt {
  position: absolute;
  left: 25px;
  bottom: 24px;
  max-width: 385px;
  height: 44px;
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  /* or 138% */
  color: var(--texts);
}

@media screen and (max-width: 600px) {
  .benefit {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 15px;
  }
}

@media screen and (max-width: 1300px) {
  .card {
    margin-top: 15px;
  }
}

#contact {
  background-size: cover;
  background-position: center;
  background-color: var(--hero);
}

.last_bg {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 250px;
  background-image: url(../../../images/lastBg.png);
}

.contact_box {
  max-width: 1460px;
  min-height: 873px;
  background: var(--hero);
  border: 1px solid #999999;
  -webkit-backdrop-filter: blur(1px);
          backdrop-filter: blur(1px);
  border-radius: 20px;
  margin: 0 auto;
  padding: 60px 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 60px;
}

.contact_left {
  width: 60%;
  height: auto;
}

.contact_right {
  width: 40%;
  height: auto;
}

.what_likes {
  width: 487px;
  min-height: 602px;
  background: var(--hero);
  -webkit-box-shadow: 20px 20px 40px rgba(241, 216, 253, 0.08);
          box-shadow: 20px 20px 40px rgba(241, 216, 253, 0.08);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  border-radius: 10px;
}

.what_likes .likes_title {
  height: 29px;
  font-family: "Proxima Nova";
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 29px;
  color: var(--texts);
  text-align: center;
  padding-top: 40px;
}

.contact_title {
  max-width: 640px;
  min-height: 117px;
  font-family: "Proxima Nova";
  font-style: italic;
  font-weight: 600;
  font-size: 32px;
  line-height: 39px;
  color: var(--texts);
}

@media screen and (max-width: 500px) {
  body {
    overflow-x: hidden;
  }
}

.contact_input {
  width: 499px;
  margin-top: 15px;
  border: none;
  border-bottom: 1px solid black;
  padding: 8px;
}

.contact_input:focus {
  outline: none;
  border-bottom: 1px solid black;
}

.servise_text {
  max-width: 488px;
  height: 29px;
  font-family: "Proxima Nova";
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 29px;
  color: var(--texts);
  margin-top: 40px;
  margin-bottom: 34px;
}

.checkmark {
  max-width: 198px;
  font-family: "Proxima Nova";
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  color: var(--texts);
  display: block;
}

.check_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.check_box .check_box-right {
  max-width: 350px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}

.label_check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.simple_card_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 66px;
  margin-top: 40px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.simple_card {
  width: 150px;
}

.simple_card p {
  width: 141px;
  height: 29px;
  font-family: "Proxima Nova";
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 29px;
  color: var(--texts);
  margin-top: 10px;
  text-align: center;
}

.simple_card_top {
  width: 150px;
  height: 150px;
  background-repeat: no-repeat;
  background-position: center;
}

.simpleBg1 {
  background-image: url(../../../images/kofe1.png);
}

.simpleBg2 {
  background-image: url(../../../images/kofe2.png);
}

.simpleBg3 {
  background-image: url(../../../images/suv1.png);
}

.simpleBg4 {
  background-image: url(../../../images/choy1.png);
}

@media screen and (max-width: 1400px) {
  .contact_box {
    gap: 30px;
  }
  .contact_box .what_likes {
    width: 427px;
    min-height: 602px;
  }
  .contact_left {
    width: 55%;
    height: auto;
  }
  .contact_right {
    width: 45%;
    height: auto;
  }
}

@media screen and (max-width: 1250px) {
  .contact_box {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 20px;
  }
  .contact_box .what_likes {
    width: 427px;
    min-height: 602px;
  }
  .contact_left {
    width: 100%;
    height: auto;
  }
  .contact_right {
    width: 100%;
    height: auto;
  }
  .contact_title {
    max-width: 640px;
    min-height: 117px;
    font-size: 30px;
  }
  .what_likes {
    margin-top: 20px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 789px) {
  .contact_box {
    padding: 10px 20px;
  }
  .check_box {
    padding-top: 30px;
    gap: 30px;
  }
  .contact_input {
    width: 95%;
  }
  .what_likes {
    max-width: 100%;
    margin-top: 20px;
    margin: 0 auto;
  }
  .what_likes .likes_title {
    height: auto;
    padding-top: 40px;
    font-size: 16px;
  }
}

@media screen and (max-width: 600px) {
  .contact_box {
    width: 360px;
    min-height: 1425px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    background: var(--hero);
    border: 1px solid #999999;
    -webkit-backdrop-filter: blur(1px);
            backdrop-filter: blur(1px);
    border-radius: 20px;
  }
  .likes_title {
    width: 320px;
    height: 96px;
    font-family: "Proxima Nova";
    font-style: italic;
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
  }
}

#news {
  padding: 50px 0;
  background: var(--hero);
  background-size: cover;
  background-position-y: -530px;
  background-position-x: -400px;
}

.news_title {
  height: 44px;
  font-family: "Proxima Nova";
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 44px;
  color: var(--texts);
  text-align: center;
  margin-bottom: 36px;
}

.last_slick {
  list-style-type: none;
}

.last_slick_item {
  text-decoration: none;
}

.wrapper {
  width: 433px;
  height: 530px;
  text-decoration: none;
  margin: 0 auto;
  background: var(--hero);
  border: 1px solid #999999;
  -webkit-backdrop-filter: blur(1px);
          backdrop-filter: blur(1px);
  /* Note: backdrop-filter has minimal browser support */
  border-radius: 20px;
  overflow: hidden;
}

.wrapper img {
  width: 100%;
}

.carousel_top_img {
  width: 433px;
  height: 326px;
  -webkit-backdrop-filter: blur(1px);
          backdrop-filter: blur(1px);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 20px 20px 0px 0px;
}

.news_bg1 {
  background: url(../../../images/news1.png);
}

.news_bg2,
.news_bg4 {
  background: url(../../../images/news2.png);
}

.news_bg3 {
  background: url(../../../images/news3.png);
}

.card_carousel_body {
  padding: 20px 30px 24px;
}

.card_carousel_body h4 {
  width: 373px;
  height: auto;
  font-family: "Proxima Nova";
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: var(--texts);
}

.card_carousel_body .carousel_card_pr {
  width: 373px;
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: var(--texts);
}

.carousel_card_heading {
  margin-bottom: 39px;
}

.carousel_card_heading2 {
  height: 48px;
  margin-bottom: 15px;
}

.carousel_card_heading3 {
  height: 72px;
  margin-bottom: 15px;
}

.blog_pr1,
.blog_pr2 {
  height: 57px;
  margin-bottom: 21px;
}

.blog_pr3 {
  height: 38px;
  margin-bottom: 15px;
}

.card_bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.card_bottom p {
  width: 64px;
  height: 19px;
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  color: var(--texts);
}

.card_bottom img {
  width: 20px;
  height: 20px;
}

.card_bottom span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  min-width: 103px;
  height: 16px;
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: var(--texts);
}

@media screen and (max-width: 1500px) {
  .wrapper {
    width: 403px;
    height: 530px;
  }
}

@media screen and (max-width: 1400px) {
  .wrapper {
    width: 403px;
    height: 530px;
  }
}

@media screen and (max-width: 600px) {
  .wrapper {
    height: auto;
    height: 550px;
  }
  .card_carousel_body {
    padding: 20px 30px 24px;
  }
  .card_carousel_body h4 {
    width: 290px;
    height: auto;
    font-family: "Proxima Nova";
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
  }
  .card_carousel_body .carousel_card_pr {
    width: 290px;
    height: auto;
    font-family: "Gilroy";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
  }
  .card_carousel_body .carousel_card_heading {
    margin-bottom: 6px;
  }
  .card_carousel_body .blog_pr1,
  .card_carousel_body .blog_pr2 {
    margin-bottom: 15px;
  }
  .card_carousel_body .blog_pr3 {
    margin-bottom: 15px;
  }
  .card_carousel_body .carousel_top_img {
    width: 330px;
    height: 248px !important;
    -webkit-backdrop-filter: blur(1px);
            backdrop-filter: blur(1px);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 20px 20px 0px 0px;
  }
}

@media screen and (max-width: 600px) {
  .wrapper {
    width: 330px;
    height: 550px;
  }
}

.btn {
  border: none;
  background: transparent;
  outline: none;
  cursor: pointer;
}

.slider_btn {
  border-radius: 50%;
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  z-index: 2;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  width: 70px;
  height: 70px;
  background: var(--hero);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
}

.slider_btn:hover {
  background-color: #dddddd;
}

.slider_prev {
  left: -75px;
}

.slider_next {
  right: -75px;
}

#ourProject1 {
  padding-top: 120px;
  padding-bottom: 25px;
  background-color: var(--main);
}

.project-txt {
  font-family: "Proxima Nova", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 44px;
  color: var(--texts);
  text-align: center;
  margin-bottom: 40px;
}

.taps {
  width: 664px;
  height: 55px;
  border: 1px solid #999999;
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  border-radius: 90px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}

.tap {
  cursor: pointer;
  padding: 10px;
  background-color: var(--card-color);
  width: 166px;
  border: none;
  font-family: "Proxima Nova", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  color: var(--texts);
}

.tap1 {
  margin-top: 1px;
  width: 166px;
  height: 51px;
  text-align: center;
  background: linear-gradient(93.5deg, #1e11ad 12.37%, rgba(105, 17, 173, 0.95) 85.28%);
  border-radius: 30px;
  color: var(--main);
}

.project {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
}

.project-card {
  width: 100%;
  max-width: 433px;
  height: 362px;
  border-radius: 20px;
  position: relative;
}

.project-card-top {
  position: absolute;
  background: var(--main);
  -webkit-box-shadow: 4px 4px 14px rgba(0, 0, 0, 0.1);
          box-shadow: 4px 4px 14px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  top: 15px;
  right: 15px;
  padding: 10px;
  font-family: "Proxima Nova", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: var(--main);
}

.project .card1 {
  background-image: url(../../../images/project1.png);
  overflow: hidden;
  position: relative;
}

.project .card1-hover {
  position: absolute;
  left: 15px;
  bottom: 15px;
  max-width: 403px;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.87);
  border-radius: 5px;
}

.project .card1-hover .project-card-top {
  display: none;
}

.project .card1-hover::after {
  position: absolute;
  content: "UYMAKON mobil ilovasi";
  font-family: "Proxima Nova", sans-serif;
  color: var(--main);
  bottom: 30px;
  left: 30px;
}

.project .card1:hover {
  overflow: visible;
}

.project .card1:hover .card1-hover {
  background-image: url(../../../images/top-vector.png);
  background-repeat: no-repeat;
  background-position-x: right;
  position: absolute;
  bottom: 15px;
  -webkit-transition: 1s;
  transition: 1s;
  height: 332px;
}

.project .card2 {
  background: url(../../../images/project2.png);
  overflow: hidden;
  position: relative;
}

.project .card2-hover {
  position: absolute;
  left: 15px;
  max-width: 403px;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.87);
  border-radius: 5px;
}

.project .card2-hover .project-card-top {
  display: none;
}

.project .card2-hover::after {
  position: absolute;
  content: "FOOD veb sayt";
  font-family: "Proxima Nova", sans-serif;
  color: var(--main);
  bottom: 30px;
  left: 30px;
}

.project .card2:hover {
  overflow: visible;
}

.project .card2:hover .card2-hover {
  background-image: url(../../../images/top-vector.png);
  background-repeat: no-repeat;
  background-position-x: right;
  position: absolute;
  bottom: 15px;
  height: 332px;
  -webkit-transition: 1s;
  transition: 1s;
}

.project .card3 {
  background: url(../../../images/project3.png);
  overflow: hidden;
  position: relative;
}

.project .card3-hover {
  position: absolute;
  left: 15px;
  max-width: 403px;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.87);
  border-radius: 5px;
}

.project .card3-hover .project-card-top {
  display: none;
}

.project .card3-hover::after {
  position: absolute;
  content: "Social Media Marketing";
  font-family: "Proxima Nova", sans-serif;
  color: var(--main);
  bottom: 30px;
  left: 30px;
}

.project .card3:hover {
  overflow: visible;
}

.project .card3:hover .card3-hover {
  background-image: url(../../../images/top-vector.png);
  background-repeat: no-repeat;
  background-position-x: right;
  position: absolute;
  bottom: 15px;
  -webkit-transition: 1s;
  transition: 1s;
  height: 332px;
}

.project .card4 {
  background: url(../../../images/project4.png);
  overflow: hidden;
  position: relative;
}

.project .card4-hover {
  position: absolute;
  left: 15px;
  max-width: 403px;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.87);
  border-radius: 5px;
}

.project .card4-hover .project-card-top {
  display: none;
}

.project .card4-hover::after {
  position: absolute;
  content: "YANGILIKLAR mobil ilovasi";
  font-family: "Proxima Nova", sans-serif;
  color: var(--main);
  bottom: 30px;
  left: 30px;
}

.project .card4:hover {
  overflow: visible;
}

.project .card4:hover .card4-hover {
  background-image: url(../../../images/top-vector.png);
  background-repeat: no-repeat;
  background-position-x: right;
  position: absolute;
  bottom: 15px;
  height: 332px;
  -webkit-transition: 1s;
  transition: 1s;
}

.project .card5 {
  background: url(../../../images/project5.png);
  overflow: hidden;
  position: relative;
}

.project .card5-hover {
  position: absolute;
  left: 15px;
  max-width: 403px;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.87);
  border-radius: 5px;
}

.project .card5-hover .project-card-top {
  display: none;
}

.project .card5-hover::after {
  position: absolute;
  content: "KUN UZ veb sayt";
  font-family: "Proxima Nova", sans-serif;
  color: var(--main);
  bottom: 30px;
  left: 30px;
}

.project .card5:hover {
  overflow: visible;
}

.project .card5:hover .card5-hover {
  background-image: url(../../../images/top-vector.png);
  background-repeat: no-repeat;
  background-position-x: right;
  position: absolute;
  bottom: 15px;
  height: 332px;
  -webkit-transition: 1s;
  transition: 1s;
}

.project .card6 {
  background: url(../../../images/project6.png);
  overflow: hidden;
  position: relative;
}

.project .card6-hover {
  position: absolute;
  left: 15px;
  max-width: 403px;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.87);
  border-radius: 5px;
}

.project .card6-hover .project-card-top {
  display: none;
}

.project .card6-hover::after {
  position: absolute;
  content: "Social Media Marketing ";
  font-family: "Proxima Nova", sans-serif;
  color: var(--main);
  bottom: 30px;
  left: 30px;
}

.project .card6:hover {
  overflow: visible;
}

.project .card6:hover .card6-hover {
  background-image: url(../../../images/top-vector.png);
  background-repeat: no-repeat;
  background-position-x: right;
  position: absolute;
  bottom: 15px;
  height: 332px;
  -webkit-transition: 1s;
  transition: 1s;
}

.links {
  text-align: center;
  padding-top: 80px;
}

.links a {
  color: #6911ad;
  font-family: "Proxima Nova";
  font-style: normal;
  font-weight: 700;
  line-height: 22px;
  font-size: 18px;
  text-decoration: none;
}

@media screen and (max-width: 800px) {
  .taps {
    display: none;
  }
}

@media screen and (max-width: 1300px) {
  .project {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: c;
        -ms-flex-pack: c;
            justify-content: c;
  }
}

#service {
  background: var(--main);
  padding-top: 120px;
}

.service {
  width: 100%;
  max-width: 1358px;
  min-height: 788px;
  margin: 0 auto;
  background: var(--card-color);
  border: 1px solid #999999;
  -webkit-backdrop-filter: blur(1px);
          backdrop-filter: blur(1px);
  border-radius: 20px;
}

.service-head {
  font-family: "Proxima Nova", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 44px;
  text-align: center;
  color: var(--texts);
  margin-top: 40px;
}

.service .all-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 109px;
}

.service .bottom {
  margin-top: 50px;
}

.service .icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 88px;
}

.service .icons-bg1 {
  width: 69px;
  height: 69px;
  background: rgba(84, 84, 212, 0.1);
  border-radius: 50%;
}

.service .icons-bg1 img {
  padding: 18px;
}

.service .icons-bg2 {
  width: 69px;
  height: 69px;
  background: rgba(240, 64, 55, 0.1);
  border-radius: 50%;
}

.service .icons-bg2 img {
  padding: 18px;
}

.service .icons-bg3 {
  width: 69px;
  height: 69px;
  background: rgba(254, 220, 90, 0.1);
  border-radius: 50%;
}

.service .icons-bg3 img {
  padding: 18px;
}

.service .head-txt {
  font-family: "Nunito Sans";
  font-style: normal;
  font-weight: 600;
  font-size: 28px;
  line-height: 38px;
  letter-spacing: -0.750316px;
  color: var(--texts);
}

.service .head-p {
  max-width: 299px;
  height: 56px;
  font-family: "Nunito Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  text-align: center;
  letter-spacing: -0.500211px;
  color: rgba(39, 39, 39, 0.7);
}

@media screen and (max-width: 600px) {
  .all-icons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media screen and (max-width: 1300px) {
  .all-icons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

#team {
  padding: 60px 0;
  background-position: center;
  background-size: cover;
  background-size: cover;
  background-color: var(--hero);
}

.team_title {
  height: 44px;
  font-family: 'Proxima Nova';
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 44px;
  color: var(--texts);
  text-align: center;
  margin-bottom: 40px;
}

.team_carousel {
  background: transparent;
  margin-bottom: 100px;
}

.team_item {
  position: relative;
  height: 380px;
}

.team_wrapper {
  width: 317px;
  height: 326px;
  margin: 0 auto;
  background-position: center;
  background-size: cover;
  border: 1px solid #999999;
  -webkit-backdrop-filter: blur(1px);
          backdrop-filter: blur(1px);
  border-radius: 60px;
}

.team_bg1, .team_bg5 {
  background: url(../../../images/team1.png);
}

.team_bg2 {
  background: url(../../../images/team2.png);
}

.team_bg3 {
  background: url(../../../images/team3.png);
}

.team_bg4 {
  background: url(../../../images/team4.png);
}

.team_bottom {
  position: absolute;
  bottom: -44px;
  left: calc(50% - 145px);
  width: 296px;
  height: 88px;
  background: var(--hero);
  border: 1px solid #999999;
  -webkit-backdrop-filter: blur(1px);
          backdrop-filter: blur(1px);
  border-radius: 20px;
  z-index: 3;
}

.team_bottom h5 {
  height: 29px;
  font-family: 'Proxima Nova';
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 29px;
  text-align: center;
  color: var(--texts);
  margin-top: 14px;
}

.team_bottom span {
  width: 100px;
  height: 0px;
  margin: 0 auto;
  display: block;
  border: 2px solid #999999;
  margin-bottom: 7px;
  margin-top: 7px;
}

.team_bottom p {
  height: 19px;
  font-family: 'Proxima Nova';
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  text-align: center;
  color: var(--texts);
}

#ourProject {
  background-image: url(../../../images/main-line.jpg);
  padding-top: 120px;
  padding-bottom: 25px;
}

.project-txt {
  font-family: "Proxima Nova", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 44px;
  color: #000000;
  text-align: center;
  margin-bottom: 40px;
}

.taps {
  width: 664px;
  height: 55px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid #999999;
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  border-radius: 90px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}

.tap {
  cursor: pointer;
  padding: 10px;
  background-color: transparent;
  width: 166px;
  border: none;
  font-family: "Proxima Nova", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  color: #000;
}

.tap1 {
  margin-top: 1px;
  width: 166px;
  height: 51px;
  text-align: center;
  background: linear-gradient(93.5deg, #1e11ad 12.37%, rgba(105, 17, 173, 0.95) 85.28%);
  border-radius: 30px;
  color: #fff;
}

.project {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
}

.project-card {
  width: 100%;
  max-width: 410px;
  height: 362px;
  border-radius: 20px;
  position: relative;
}

.project-card-top {
  position: absolute;
  background: #ffffff;
  -webkit-box-shadow: 4px 4px 14px rgba(0, 0, 0, 0.1);
          box-shadow: 4px 4px 14px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  top: 15px;
  right: 15px;
  padding: 10px;
  font-family: "Proxima Nova", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #000000;
}

.project .card1 {
  background-image: url(../../../images/project1.png);
  overflow: hidden;
  position: relative;
}

.project .card1-hover {
  position: absolute;
  left: 15px;
  max-width: 403px;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.87);
  border-radius: 5px;
}

.project .card1-hover .project-card-top {
  display: none;
}

.project .card1-hover::after {
  position: absolute;
  content: "UYMAKON mobil ilovasi";
  font-family: "Proxima Nova", sans-serif;
  color: #fff;
  bottom: 30px;
  left: 30px;
}

.project .card1:hover {
  overflow: visible;
}

.project .card1:hover .card1-hover {
  background-image: url(../../../images/top-vector.png);
  background-repeat: no-repeat;
  background-position-x: right;
  position: absolute;
  bottom: 15px;
  -webkit-transition: 1s;
  transition: 1s;
  height: 332px;
}

.project .card2 {
  background: url(../../../images/project2.png);
  overflow: hidden;
  position: relative;
}

.project .card2-hover {
  position: absolute;
  left: 15px;
  max-width: 403px;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.87);
  border-radius: 5px;
}

.project .card2-hover .project-card-top {
  display: none;
}

.project .card2-hover::after {
  position: absolute;
  content: "FOOD veb sayt";
  font-family: "Proxima Nova", sans-serif;
  color: #fff;
  bottom: 30px;
  left: 30px;
}

.project .card2:hover {
  overflow: visible;
}

.project .card2:hover .card2-hover {
  background-image: url(../../../images/top-vector.png);
  background-repeat: no-repeat;
  background-position-x: right;
  position: absolute;
  bottom: 15px;
  height: 332px;
  -webkit-transition: 1s;
  transition: 1s;
}

.project .card3 {
  background: url(../../../images/project3.png);
  overflow: hidden;
  position: relative;
}

.project .card3-hover {
  position: absolute;
  left: 15px;
  max-width: 403px;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.87);
  border-radius: 5px;
}

.project .card3-hover .project-card-top {
  display: none;
}

.project .card3-hover::after {
  position: absolute;
  content: "Social Media Marketing";
  font-family: "Proxima Nova", sans-serif;
  color: #fff;
  bottom: 30px;
  left: 30px;
}

.project .card3:hover {
  overflow: visible;
}

.project .card3:hover .card3-hover {
  background-image: url(../../../images/top-vector.png);
  background-repeat: no-repeat;
  background-position-x: right;
  position: absolute;
  bottom: 15px;
  -webkit-transition: 1s;
  transition: 1s;
  height: 332px;
}

.project .card4 {
  background: url(../../../images/project4.png);
  overflow: hidden;
  position: relative;
}

.project .card4-hover {
  position: absolute;
  left: 15px;
  max-width: 403px;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.87);
  border-radius: 5px;
}

.project .card4-hover .project-card-top {
  display: none;
}

.project .card4-hover::after {
  position: absolute;
  content: "YANGILIKLAR mobil ilovasi";
  font-family: "Proxima Nova", sans-serif;
  color: #fff;
  bottom: 30px;
  left: 30px;
}

.project .card4:hover {
  overflow: visible;
}

.project .card4:hover .card4-hover {
  background-image: url(../../../images/top-vector.png);
  background-repeat: no-repeat;
  background-position-x: right;
  position: absolute;
  bottom: 15px;
  height: 332px;
  -webkit-transition: 1s;
  transition: 1s;
}

.project .card5 {
  background: url(../../../images/project5.png);
  overflow: hidden;
  position: relative;
}

.project .card5-hover {
  position: absolute;
  left: 15px;
  max-width: 403px;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.87);
  border-radius: 5px;
}

.project .card5-hover .project-card-top {
  display: none;
}

.project .card5-hover::after {
  position: absolute;
  content: "KUN UZ veb sayt";
  font-family: "Proxima Nova", sans-serif;
  color: #fff;
  bottom: 30px;
  left: 30px;
}

.project .card5:hover {
  overflow: visible;
}

.project .card5:hover .card5-hover {
  background-image: url(../../../images/top-vector.png);
  background-repeat: no-repeat;
  background-position-x: right;
  position: absolute;
  bottom: 15px;
  height: 332px;
  -webkit-transition: 1s;
  transition: 1s;
}

.project .card6 {
  background: url(../../../images/project6.png);
  overflow: hidden;
  position: relative;
}

.project .card6-hover {
  position: absolute;
  left: 15px;
  max-width: 403px;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.87);
  border-radius: 5px;
}

.project .card6-hover .project-card-top {
  display: none;
}

.project .card6-hover::after {
  position: absolute;
  content: "Social Media Marketing ";
  font-family: "Proxima Nova", sans-serif;
  color: #fff;
  bottom: 30px;
  left: 30px;
}

.project .card6:hover {
  overflow: visible;
}

.project .card6:hover .card6-hover {
  background-image: url(../../../images/top-vector.png);
  background-repeat: no-repeat;
  background-position-x: right;
  position: absolute;
  bottom: 15px;
  height: 332px;
  -webkit-transition: 1s;
  transition: 1s;
}

.project .card7 {
  background: url(../../../images/project2.png);
  overflow: hidden;
  position: relative;
}

.project .card7-hover {
  position: absolute;
  left: 15px;
  max-width: 403px;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.87);
  border-radius: 5px;
}

.project .card7-hover .project-card-top {
  display: none;
}

.project .card7-hover::after {
  position: absolute;
  content: "Social Media Marketing ";
  font-family: "Proxima Nova", sans-serif;
  color: #fff;
  bottom: 30px;
  left: 30px;
}

.project .card7:hover {
  overflow: visible;
}

.project .card7:hover .card7-hover {
  background-image: url(../../../images/top-vector.png);
  background-repeat: no-repeat;
  background-position-x: right;
  position: absolute;
  bottom: 15px;
  height: 332px;
  -webkit-transition: 1s;
  transition: 1s;
}

.project .card8 {
  background: url(../../../images/project5.png);
  overflow: hidden;
  position: relative;
}

.project .card8-hover {
  position: absolute;
  left: 15px;
  max-width: 403px;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.87);
  border-radius: 5px;
}

.project .card8-hover .project-card-top {
  display: none;
}

.project .card8-hover::after {
  position: absolute;
  content: "Social Media Marketing ";
  font-family: "Proxima Nova", sans-serif;
  color: #fff;
  bottom: 30px;
  left: 30px;
}

.project .card8:hover {
  overflow: visible;
}

.project .card8:hover .card8-hover {
  background-image: url(../../../images/top-vector.png);
  background-repeat: no-repeat;
  background-position-x: right;
  position: absolute;
  bottom: 15px;
  height: 332px;
  -webkit-transition: 1s;
  transition: 1s;
}

.project .card9 {
  background: url(../../../images/project3.png);
  overflow: hidden;
  position: relative;
}

.project .card9-hover {
  position: absolute;
  left: 15px;
  max-width: 403px;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.87);
  border-radius: 5px;
}

.project .card9-hover .project-card-top {
  display: none;
}

.project .card9-hover::after {
  position: absolute;
  content: "Social Media Marketing ";
  font-family: "Proxima Nova", sans-serif;
  color: #fff;
  bottom: 30px;
  left: 30px;
}

.project .card9:hover {
  overflow: visible;
}

.project .card9:hover .card9-hover {
  background-image: url(../../../images/top-vector.png);
  background-repeat: no-repeat;
  background-position-x: right;
  position: absolute;
  bottom: 15px;
  height: 332px;
  -webkit-transition: 1s;
  transition: 1s;
}

.project .card10 {
  background: url(../../../images/project1.png);
  overflow: hidden;
  position: relative;
}

.project .card10-hover {
  position: absolute;
  left: 15px;
  max-width: 403px;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.87);
  border-radius: 5px;
}

.project .card10-hover .project-card-top {
  display: none;
}

.project .card10-hover::after {
  position: absolute;
  content: "Social Media Marketing ";
  font-family: "Proxima Nova", sans-serif;
  color: #fff;
  bottom: 30px;
  left: 30px;
}

.project .card10:hover {
  overflow: visible;
}

.project .card10:hover .card6-hover {
  background-image: url(../../../images/top-vector.png);
  background-repeat: no-repeat;
  background-position-x: right;
  position: absolute;
  bottom: 15px;
  height: 332px;
  -webkit-transition: 1s;
  transition: 1s;
}

.project .card10 {
  background: url(../../../images/project6.png);
  overflow: hidden;
  position: relative;
}

.project .card10-hover {
  position: absolute;
  left: 15px;
  max-width: 403px;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.87);
  border-radius: 5px;
}

.project .card10-hover .project-card-top {
  display: none;
}

.project .card10-hover::after {
  position: absolute;
  content: "Social Media Marketing ";
  font-family: "Proxima Nova", sans-serif;
  color: #fff;
  bottom: 30px;
  left: 30px;
}

.project .card10:hover {
  overflow: visible;
}

.project .card10:hover .card10-hover {
  background-image: url(../../../images/top-vector.png);
  background-repeat: no-repeat;
  background-position-x: right;
  position: absolute;
  bottom: 15px;
  height: 332px;
  -webkit-transition: 1s;
  transition: 1s;
}

.project .card11 {
  background: url(../../../images/project6.png);
  overflow: hidden;
  position: relative;
}

.project .card11-hover {
  position: absolute;
  left: 15px;
  max-width: 403px;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.87);
  border-radius: 5px;
}

.project .card11-hover .project-card-top {
  display: none;
}

.project .card11-hover::after {
  position: absolute;
  content: "Social Media Marketing ";
  font-family: "Proxima Nova", sans-serif;
  color: #fff;
  bottom: 30px;
  left: 30px;
}

.project .card11:hover {
  overflow: visible;
}

.project .card11:hover .card11-hover {
  background-image: url(../../../images/top-vector.png);
  background-repeat: no-repeat;
  background-position-x: right;
  position: absolute;
  bottom: 15px;
  height: 332px;
  -webkit-transition: 1s;
  transition: 1s;
}

.project .card12 {
  background: url(../../../images/project4.png);
  overflow: hidden;
  position: relative;
}

.project .card12-hover {
  position: absolute;
  left: 15px;
  max-width: 403px;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.87);
  border-radius: 5px;
}

.project .card12-hover .project-card-top {
  display: none;
}

.project .card12-hover::after {
  position: absolute;
  content: "Social Media Marketing ";
  font-family: "Proxima Nova", sans-serif;
  color: #fff;
  bottom: 30px;
  left: 30px;
}

.project .card12:hover {
  overflow: visible;
}

.project .card12:hover .card12-hover {
  background-image: url(../../../images/top-vector.png);
  background-repeat: no-repeat;
  background-position-x: right;
  position: absolute;
  bottom: 15px;
  height: 332px;
  -webkit-transition: 1s;
  transition: 1s;
}

.links {
  text-align: center;
  padding-top: 80px;
}

.links a {
  color: #6911ad;
  font-family: "Proxima Nova";
  font-style: normal;
  font-weight: 700;
  line-height: 22px;
  font-size: 18px;
  text-decoration: none;
}

@media screen and (max-width: 800px) {
  .taps {
    display: none;
  }
}

@media screen and (max-width: 1300px) {
  .project {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

#news_main {
  background-position: bottom;
  background-image: url(../../../images/newsPageBottom.png);
}

.news_page_box {
  padding-top: 40px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 30px;
}

.news_main {
  width: 70%;
}

.news_aside {
  width: 30%;
}

.news_page_bg {
  width: 100%;
  height: 757.39px;
  background-image: url(../../../images/newstab1.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 20px;
}

.news_aside_card {
  width: 317px;
  height: 283px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #999999;
  -webkit-backdrop-filter: blur(1px);
          backdrop-filter: blur(1px);
  border-radius: 20px;
  margin-bottom: 30px;
  overflow: hidden;
}

.news_aside_card-top {
  width: 100%;
  height: 195px;
  border: 1px solid #999999;
  -webkit-backdrop-filter: blur(1px);
          backdrop-filter: blur(1px);
  border-radius: 20px 20px 0px 1px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.news_card-bg1 {
  background-image: url(../../../images/newstab2.png);
}

.news_card-bg2 {
  background-image: url(../../../images/newstab3.png);
}

.news_card-bg3 {
  background-image: url(../../../images/newstab5.png);
}

.news_card-bg4 {
  background-image: url(../../../images/newstab6.png);
}

.news_aside_card-body {
  padding: 15px 20px  25px 20px;
  z-index: -10;
}

.news_aside_card-body h5 {
  max-width: 277px;
  height: auto;
  font-family: 'Proxima Nova';
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: #000000;
  z-index: -10;
}

.new_main_content {
  padding: 40px 40px 22px 40px;
  width: 100%;
  min-height: 1710px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #4E4E4E;
  -webkit-backdrop-filter: blur(1px);
          backdrop-filter: blur(1px);
  border-radius: 20px;
  margin-top: 40px;
}

.news_page-title {
  width: 100%;
  height: auto;
  font-family: 'Proxima Nova';
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 44px;
  color: #000000;
  margin-bottom: 20px;
}

.news_page_pr1 {
  width: 100%;
  height: auto;
  font-family: 'Gilroy';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0.02em;
  color: #000000;
  margin-bottom: 25px;
}

.news_contentBg {
  margin-bottom: 20px;
  width: 100%;
  height: 623px;
  border-radius: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url(../../../images/itpark.png);
}

.news_page_line {
  width: 100%;
  height: 0px;
  border: 1px solid #989898;
  display: block;
}

.news_content_bottom {
  margin-top: 23px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.content_bottom1 {
  height: 19px;
  font-family: 'Gilroy';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  color: #999999;
}

.content_bottom2, .content_bottom3 {
  font-family: 'Gilroy';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  margin-bottom: 0;
  padding: 0;
  color: #272727;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
}

.content_bottom2 img, .content_bottom3 img {
  margin: 0;
  padding: 0;
  height: 20px;
  display: block;
}

@media screen and (max-width: 1296px) {
  .news_aside_card {
    width: 90%;
    height: 283px;
    margin-bottom: 30px;
  }
  .news_aside_card-top {
    width: 100%;
    height: 195px;
    border: 1px solid #999999;
    -webkit-backdrop-filter: blur(1px);
            backdrop-filter: blur(1px);
    border-radius: 20px 20px 0px 1px;
    background-size: cover;
  }
}

@media screen and (max-width: 1106px) {
  .news_page_box {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
  }
}

@media screen and (max-width: 1110px) {
  .news_main {
    width: 100%;
  }
  .news_aside {
    width: 30%;
    display: none;
  }
}

@media screen and (max-width: 500px) {
  .content_bottom1 {
    display: none;
  }
  .content_bottom2, .content_bottom3 {
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    gap: 10px;
  }
}

#contact {
  background-size: cover;
  background-position: center;
  background-color: var(--hero);
}

.last_bg {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 250px;
  background-image: url(../../../images/lastBg.png);
}

.contact_box1 {
  max-width: 1460px;
  width: 100%;
  min-height: 873px;
  background: var(--card-color);
  border: 1px solid #999999;
  -webkit-backdrop-filter: blur(1px);
          backdrop-filter: blur(1px);
  border-radius: 20px;
  margin: 0 auto;
  padding: 60px 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 60px;
}

.contact_left {
  width: 60%;
  height: auto;
}

.contact_right {
  width: 40%;
  height: auto;
}

.what_likes {
  width: 487px;
  min-height: 602px;
  background: rgba(83, 83, 83, 0.1);
  -webkit-box-shadow: 20px 20px 40px rgba(241, 216, 253, 0.08);
          box-shadow: 20px 20px 40px rgba(241, 216, 253, 0.08);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  border-radius: 10px;
}

.what_likes .likes_title {
  height: 29px;
  font-family: "Proxima Nova";
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 29px;
  color: var(--texts);
  text-align: center;
  padding-top: 40px;
}

.contact_title {
  max-width: 640px;
  min-height: 117px;
  font-family: "Proxima Nova";
  font-style: italic;
  font-weight: 600;
  font-size: 32px;
  line-height: 39px;
  color: var(--texts);
}

.contact_input {
  width: 499px;
  margin-top: 15px;
  border: none;
  border-bottom: 1px solid black;
  padding: 8px;
}

.contact_input:focus {
  outline: none;
  border-bottom: 1px solid black;
}

.servise_text {
  max-width: 488px;
  height: 29px;
  font-family: "Proxima Nova";
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 29px;
  color: var(--texts);
  margin-top: 40px;
  margin-bottom: 34px;
}

.checkmark {
  max-width: 198px;
  font-family: "Proxima Nova";
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  color: var(--texts);
  display: block;
}

.check_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.check_box .check_box-right {
  max-width: 350px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}

.label_check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.simple_card_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 66px;
  margin-top: 40px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.simple_card {
  width: 150px;
}

.simple_card p {
  width: 141px;
  height: 29px;
  font-family: "Proxima Nova";
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 29px;
  color: var(--texts);
  margin-top: 10px;
  text-align: center;
}

.simple_card_top {
  width: 150px;
  height: 150px;
  background-repeat: no-repeat;
  background-position: center;
}

.simpleBg1 {
  background-image: url(../../../images/kofe1.png);
}

.simpleBg2 {
  background-image: url(../../../images/kofe2.png);
}

.simpleBg3 {
  background-image: url(../../../images/suv1.png);
}

.simpleBg4 {
  background-image: url(../../../images/choy1.png);
}

@media screen and (max-width: 1400px) {
  .contact_box {
    gap: 30px;
  }
  .contact_box .what_likes {
    width: 427px;
    min-height: 602px;
  }
  .contact_left {
    width: 55%;
    height: auto;
  }
  .contact_right {
    width: 45%;
    height: auto;
  }
}

@media screen and (max-width: 1250px) {
  .contact_box {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 20px;
  }
  .contact_box .what_likes {
    width: 427px;
    min-height: 602px;
  }
  .contact_left {
    width: 100%;
    height: auto;
  }
  .contact_right {
    width: 100%;
    height: auto;
  }
  .contact_title {
    max-width: 640px;
    min-height: 117px;
    font-size: 30px;
  }
  .what_likes {
    margin-top: 20px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 789px) {
  .contact_box {
    padding: 10px 20px;
  }
  .check_box {
    padding-top: 30px;
    gap: 30px;
  }
  .contact_input {
    width: 95%;
  }
  .what_likes {
    max-width: 100%;
    margin-top: 20px;
    margin: 0 auto;
  }
  .what_likes .likes_title {
    height: auto;
    padding-top: 40px;
    font-size: 16px;
  }
}

@media screen and (max-width: 600px) {
  .contact_box {
    width: 360px;
    min-height: 1425px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    background: var(--card-color);
    border: 1px solid #999999;
    -webkit-backdrop-filter: blur(1px);
            backdrop-filter: blur(1px);
    border-radius: 20px;
  }
  .likes_title {
    width: 320px;
    height: 96px;
    font-family: "Proxima Nova";
    font-style: italic;
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
  }
}

#ourProject {
  padding-top: 120px;
  padding-bottom: 25px;
}

.project-txt {
  font-family: "Proxima Nova", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 44px;
  color: #000000;
  text-align: center;
  margin-bottom: 40px;
}

.taps {
  width: 664px;
  height: 55px;
  border: 1px solid #999999;
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  border-radius: 90px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}

.tap {
  cursor: pointer;
  padding: 10px;
  background-color: transparent;
  width: 166px;
  border: none;
  font-family: "Proxima Nova", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  color: #000;
}

.tap1 {
  margin-top: 1px;
  width: 166px;
  height: 51px;
  text-align: center;
  background: linear-gradient(93.5deg, #1e11ad 12.37%, rgba(105, 17, 173, 0.95) 85.28%);
  border-radius: 30px;
  color: #fff;
}

.project {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
}

.project-card {
  width: 100%;
  max-width: 433px;
  height: 362px;
  border-radius: 20px;
  position: relative;
}

.project-card-top {
  position: absolute;
  background: #ffffff;
  -webkit-box-shadow: 4px 4px 14px rgba(0, 0, 0, 0.1);
          box-shadow: 4px 4px 14px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  top: 15px;
  right: 15px;
  padding: 10px;
  font-family: "Proxima Nova", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #000000;
}

.project .card1 {
  background-image: url(../../../images/project1.png);
  overflow: hidden;
  position: relative;
}

.project .card1-hover {
  position: absolute;
  left: 15px;
  bottom: 15px;
  max-width: 403px;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.87);
  border-radius: 5px;
}

.project .card1-hover .project-card-top {
  display: none;
}

.project .card1-hover::after {
  position: absolute;
  content: "UYMAKON mobil ilovasi";
  font-family: "Proxima Nova", sans-serif;
  color: #fff;
  bottom: 30px;
  left: 30px;
}

.project .card1:hover {
  overflow: visible;
}

.project .card1:hover .card1-hover {
  background-image: url(../../../images/top-vector.png);
  background-repeat: no-repeat;
  background-position-x: right;
  position: absolute;
  bottom: 15px;
  -webkit-transition: 1s;
  transition: 1s;
  height: 332px;
}

.project .card2 {
  background: url(../../../images/project2.png);
  overflow: hidden;
  position: relative;
}

.project .card2-hover {
  position: absolute;
  left: 15px;
  max-width: 403px;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.87);
  border-radius: 5px;
}

.project .card2-hover .project-card-top {
  display: none;
}

.project .card2-hover::after {
  position: absolute;
  content: "FOOD veb sayt";
  font-family: "Proxima Nova", sans-serif;
  color: #fff;
  bottom: 30px;
  left: 30px;
}

.project .card2:hover {
  overflow: visible;
}

.project .card2:hover .card2-hover {
  background-image: url(../../../images/top-vector.png);
  background-repeat: no-repeat;
  background-position-x: right;
  position: absolute;
  bottom: 15px;
  height: 332px;
  -webkit-transition: 1s;
  transition: 1s;
}

.project .card3 {
  background: url(../../../images/project3.png);
  overflow: hidden;
  position: relative;
}

.project .card3-hover {
  position: absolute;
  left: 15px;
  max-width: 403px;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.87);
  border-radius: 5px;
}

.project .card3-hover .project-card-top {
  display: none;
}

.project .card3-hover::after {
  position: absolute;
  content: "Social Media Marketing";
  font-family: "Proxima Nova", sans-serif;
  color: #fff;
  bottom: 30px;
  left: 30px;
}

.project .card3:hover {
  overflow: visible;
}

.project .card3:hover .card3-hover {
  background-image: url(../../../images/top-vector.png);
  background-repeat: no-repeat;
  background-position-x: right;
  position: absolute;
  bottom: 15px;
  -webkit-transition: 1s;
  transition: 1s;
  height: 332px;
}

.project .card4 {
  background: url(../../../images/project4.png);
  overflow: hidden;
  position: relative;
}

.project .card4-hover {
  position: absolute;
  left: 15px;
  max-width: 403px;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.87);
  border-radius: 5px;
}

.project .card4-hover .project-card-top {
  display: none;
}

.project .card4-hover::after {
  position: absolute;
  content: "YANGILIKLAR mobil ilovasi";
  font-family: "Proxima Nova", sans-serif;
  color: #fff;
  bottom: 30px;
  left: 30px;
}

.project .card4:hover {
  overflow: visible;
}

.project .card4:hover .card4-hover {
  background-image: url(../../../images/top-vector.png);
  background-repeat: no-repeat;
  background-position-x: right;
  position: absolute;
  bottom: 15px;
  height: 332px;
  -webkit-transition: 1s;
  transition: 1s;
}

.project .card5 {
  background: url(../../../images/project5.png);
  overflow: hidden;
  position: relative;
}

.project .card5-hover {
  position: absolute;
  left: 15px;
  max-width: 403px;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.87);
  border-radius: 5px;
}

.project .card5-hover .project-card-top {
  display: none;
}

.project .card5-hover::after {
  position: absolute;
  content: "KUN UZ veb sayt";
  font-family: "Proxima Nova", sans-serif;
  color: #fff;
  bottom: 30px;
  left: 30px;
}

.project .card5:hover {
  overflow: visible;
}

.project .card5:hover .card5-hover {
  background-image: url(../../../images/top-vector.png);
  background-repeat: no-repeat;
  background-position-x: right;
  position: absolute;
  bottom: 15px;
  height: 332px;
  -webkit-transition: 1s;
  transition: 1s;
}

.project .card6 {
  background: url(../../../images/project6.png);
  overflow: hidden;
  position: relative;
}

.project .card6-hover {
  position: absolute;
  left: 15px;
  max-width: 403px;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.87);
  border-radius: 5px;
}

.project .card6-hover .project-card-top {
  display: none;
}

.project .card6-hover::after {
  position: absolute;
  content: "Social Media Marketing ";
  font-family: "Proxima Nova", sans-serif;
  color: #fff;
  bottom: 30px;
  left: 30px;
}

.project .card6:hover {
  overflow: visible;
}

.project .card6:hover .card6-hover {
  background-image: url(../../../images/top-vector.png);
  background-repeat: no-repeat;
  background-position-x: right;
  position: absolute;
  bottom: 15px;
  height: 332px;
  -webkit-transition: 1s;
  transition: 1s;
}

.links {
  text-align: center;
  padding-top: 80px;
}

.links a {
  color: #6911ad;
  font-family: "Proxima Nova";
  font-style: normal;
  font-weight: 700;
  line-height: 22px;
  font-size: 18px;
  text-decoration: none;
}

@media screen and (max-width: 800px) {
  .taps {
    display: none;
  }
}

@media screen and (max-width: 1300px) {
  .project {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: c;
        -ms-flex-pack: c;
            justify-content: c;
  }
}
/*# sourceMappingURL=main.css.map */