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

body {
  height: 100vh;
  overflow-y: scroll;
}
body::-webkit-scrollbar {
  width: 7px;
}
body::-webkit-scrollbar-track {
  background: none;
}
body::-webkit-scrollbar-thumb {
  background-color: #777;
}

.header header .logo {
  width: 285px;
}
.header header .logo a {
  height: 100px;
}
.header header .logo a img {
  height: 100%;
}
.header header .logo a h1 {
  margin: 0;
  align-self: center;
  font-size: 2em;
}

.first-container .info {
  gap: 30px;
}
.first-container .info h2 span {
  color: #0066ff;
}
.first-container .info .advantages {
  gap: 10px;
}
.first-container .info .advantages div {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  margin-bottom: auto;
}
.first-container .info .advantages div img {
  width: 100px;
  height: 100px;
  margin-left: -12px;
}
.first-container .info .advantages div .low {
  width: 70px;
  height: 70px;
  padding: 0 5px 0 5px;
  margin: 20px 0 10px 0;
  margin-left: -4px !important;
}
.first-container .stat {
  min-width: 50%;
}
.first-container .stat .stat-item {
  height: 120px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  -webkit-clip-path: polygon(0 0, 100% 0%, 100% 100%, 30px 100%);
          clip-path: polygon(0 0, 100% 0%, 100% 100%, 30px 100%);
}
.first-container .stat .stat-item .bg {
  position: absolute;
  top: 10px;
  left: -450px;
  width: 1500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}
.first-container .stat .stat-item p {
  padding-top: 20px;
  padding-left: 10px;
  font-size: 22px;
  line-height: 30px;
  font-weight: 700;
  text-transform: uppercase;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
  z-index: 10;
}

.compare-text img {
  width: 50%;
}
.compare-text p {
  font-size: 32px;
  font-weight: 700;
  line-height: 38.4px;
}

.compare .compare-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 10px;
  position: relative;
  z-index: 10;
  height: 260px;
  border-radius: 50px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.11) -7.03%, rgba(240, 99, 184, 0.1) 50.57%);
}
.compare .compare-item:nth-of-type(2) {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.11) -7.03%, rgba(102, 150, 226, 0.1) 50.57%);
}
.compare .compare-item:nth-of-type(3) {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.11) 20%, rgba(224, 224, 251, 0.9) 50%);
  width: calc(100% - 12px);
  transform-style: preserve-3d;
}
.compare .compare-item:nth-of-type(3):before {
  content: "";
  position: absolute;
  top: -6px;
  left: -6px;
  border-radius: 50px;
  width: calc(100% + 12px);
  height: calc(100% + 12px);
  transform: translateZ(-1px);
  background: linear-gradient(105deg, rgba(0, 102, 255, 0) 5%, #0066FF 90%);
}
.compare .compare-item p {
  margin-bottom: 0;
}
.compare .compare-item .contender {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex: 0 0 30%;
  max-width: 30%;
}
.compare .compare-item .contender img {
  width: 130px;
}
.compare .compare-item .contender p {
  font-size: 18px;
  font-weight: 600;
  line-height: 38.4px;
  margin-right: auto;
}
.compare .compare-item .stats {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  flex: 0 0 27%;
  max-width: 27%;
}
.compare .compare-item .stats p {
  font-size: 18px;
  font-weight: 700;
  line-height: 33.6px;
  text-transform: uppercase;
  white-space: nowrap;
}
.compare .compare-item .stats p span {
  color: #3787FF;
  font-size: 22px;
  font-weight: 700;
  line-height: 33.6px;
  text-transform: uppercase;
}
.compare .compare-item .desc {
  font-size: 16px;
  font-weight: 600;
  line-height: 38.4px;
  flex: 0 0 40%;
  max-width: 40%;
}

.demo {
  margin: 150px auto 100px auto;
}
.demo p {
  font-size: 32px;
  font-weight: 700;
  line-height: 38.4px;
}
.demo img {
  width: 100%;
}

footer p {
  margin: 0 !important;
}
footer .contact .contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

main .btn {
  font-weight: 600;
  padding: 1rem 2rem !important;
  border-radius: 2rem;
}

.info-message {
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  left: 10%;
  right: 10%;
  background-color: #267eff;
  padding: 5px 0;
}
.info-message p {
  width: 100%;
  text-align: center;
  margin: 0;
  color: #FFF;
  font-size: 18px;
}

@media (max-width: 1199px) {
  .compare .compare-item {
    flex-wrap: wrap;
    height: 350px;
  }
  .compare .compare-item .contender, .compare .compare-item .stats {
    flex: 0 0 49%;
    max-width: 49%;
  }
  .compare .compare-item .stats {
    flex: 0 0 46%;
    max-width: 46%;
  }
  .compare .compare-item .desc {
    flex: 0 0 99%;
    max-width: 99%;
  }
}
@media (max-width: 991px) {
  .first-container {
    flex-direction: column;
  }
  .first-container .info h2 {
    text-align: center;
  }
  .first-container .info a {
    margin-left: auto;
  }
  .first-container .stat {
    min-width: 99%;
  }
  .compare-text {
    flex-direction: column;
  }
  .compare-text img {
    width: 75%;
  }
  .compare-text p {
    text-align: center;
  }
  .main-info .row .info, .main-info .row .demo {
    flex: 0 0 99%;
    max-width: 99%;
  }
}
@media (max-width: 767px) {
  .compare .compare-item {
    flex-wrap: wrap;
    height: 550px;
  }
  .compare .compare-item .contender, .compare .compare-item .stats, .compare .compare-item .desc {
    flex: 0 0 99%;
    max-width: 99%;
  }
}/*# sourceMappingURL=index.css.map */