<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@font-face {
  font-family: 'Domine';
  src: url('../fonts/Domine-Regular.ttf') format("truetype");
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Regular.ttf') format("truetype");
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Medium.ttf') format("truetype");
  font-weight: 500;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-SemiBold.ttf') format("truetype");
  font-weight: 600;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Bold.ttf') format("truetype");
  font-weight: 700;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-ExtraBold.ttf') format("truetype");
  font-weight: 800;
}
body {
	margin: 0px;
  font-family: "Montserrat";
  transition: unset;
}
* {
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
  transition: all 0.2s ease;
}
a {
  color: #D30403;
  text-decoration: none;
}

.btn {
  background-color: #D30403;
  box-shadow: 0px 13px 34px rgba(237, 3, 2, 0.25);
  border-radius: 5px;
  color: #ffffff;
  font-weight: 700;
  font-size: 20px;
  padding: 18px 35px;
  border: none;
  cursor: pointer;
  text-align: center;
  display: inline-block;
}
.btn.btn-arrow {
  background-image: url("../images/arrow.svg");
  background-position: calc(100% - 55px) center;
  background-repeat: no-repeat;
  padding: 20px 110px 20px 57px;
}
.btn:hover {
  background-color: #B50303;
}
.flex {
  display: flex;
  justify-content: space-between;
}
.flex.aic {
  align-items: center;
}
.container {
  max-width: 1200px;
  margin: 0px auto;
  padding: 0px 15px; 
}

header {
  padding: 10px 0px;
}
header .flex {
  align-items: center;
}
nav ul {
  list-style: none;
  padding: 0px;
  margin: 0px;
}
nav ul li {
  list-style: none;
  display: inline-block;
  padding: 0px 30px;
}
nav ul li a {
  padding: 5px 0px;
  color: #000000;
  font-size: 20px;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: all 0.2s ease;
}
nav ul li a:hover {
  border-bottom: 2px solid #D30403;
}
.telegram a {
  color: #000000;
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
  padding-left: 40px;
  background-image: url("../images/telegram.svg");
  background-repeat: no-repeat;
  background-position: left center;
}

.top {
  background-image: url("../images/top_bg.jpg");
  background-position: center center;
  background-size: cover;
  padding: 70px 0px 85px;
}
.top-content {
  color: #ffffff;
  width: 70%;
  margin: 0px auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}
.top-content h1 {
  font-size: 48px;
  line-height: 70px;
  font-weight: 700;
}
.top-content p {
  font-size: 20px;
  line-height: 34px;
  margin: 38px 0px 94px;
  font-weight: 700;
  font-family: "Domine", "Montserrat";
}
.top-content .btn {
  display: none;
}
.top-content .btn-arrow {
  display: block;
}
.register-form {
  text-align: center;
  padding: 30px 45px 40px;
  background: #F9F9F9;
  border-radius: 7px;
  flex-basis: 420px;
  flex-shrink: 0;
  margin-left: 80px;
}
.register-form .form-title {
  font-size: 28px;
  line-height: 40px;
  text-transform: uppercase;
  font-weight: 600;
}
.register-form .form-subtitle {
  font-family: "Domine", "Montserrat";
  font-size: 20px;
  line-height: 136%;
}
.register-form .form-control {
  padding-top: 40px;
}
.register-form .form-control input {
  background: #FFFFFF;
  box-shadow: 0px 0px 14px rgba(0, 0, 0, 0.15);
  border-radius: 5px;
  padding: 25px 18px;
  font-family: "Domine", "Montserrat";
  font-size: 16px;
  line-height: 136%;
  color: rgba(27, 27, 27, 0.5);
  width: 100%;
  border: none;
}
.register-form .form-control input[type="submit"] {
  border: 2px solid #D30403;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  font-weight: bold;
  font-size: 24px;
  line-height: 136%;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  color: #D30403;
  padding: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-bottom: 30px;
}
.register-form .form-control input[type="submit"]:hover {
  background-color: #D30403;
  color: #ffffff;
}
.register-form p a {
  text-decoration: underline;
}

.about {
  padding: 100px 0px;
}
.about h2 {
  padding: 100px 0px 30px;
  font-weight: bold;
  font-size: 36px;
  line-height: 144%;
  color: #1B1B1B;
  text-align: center;
}
.one-third {
  width: 30%;
  text-align: center;
}
.one-third h4 {
  margin: 15px 0px;
  font-weight: 600;
  font-size: 24px;
  line-height: 144%;
  color: #1B1B1B;
}
.one-third p {
  font-size: 16px;
  line-height: 144%;
  color: #1B1B1B;
}
.one-third img {
  height: 65px;
  width: auto;
}
.about .btn {
  display: none;
}
.steps {
  position: relative;
  padding-bottom: 320px;
  counter-reset: point;
}
.steps .step-content {
  display: none;
  top: 140px;
}
.steps .active .step-content {
  display: flex;
  align-items: stretch;
  position: absolute;
  left: 0;
  width: 100%;
}
.step-content-img {
  padding: 25px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
  margin-right: 45px;
  flex-basis: 500px;
  flex-shrink: 0;
}
.step-content-img img {
  max-width: 100%;
  height: auto;
}
.step-content-text {
  display: flex;
  flex-direction: column;
  align-items: baseline;
  justify-content: space-evenly;
}
.step-content-text p {
  font-family: "Domine", "Montserrat";
  font-size: 16px;
  font-weight: 500;
  line-height: 144%;
  color: #1B1B1B;
}
.step-content-text .btn {
  display: block;
}

.step-title {
  margin-left: 40px;
  background: #FFFFFF;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
  border-radius: 5px;
  height: 86px;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  width: 250px;
  padding-left: 40px;
  padding-right: 20px;
  position: relative;
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  color: #1B1B1B;
  cursor: pointer;
}
.step-title:after {
  content: counter(point);
  counter-increment: point 1;
  display: inline-block;
  position: absolute;
  width: 41px;
  height: 39px;
  left: -20px;
  text-align: center;
  background: #D30403;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  color: #ffffff;
  font-weight: bold;
  font-size: 24px;
  line-height: 38px;
}
.step-title:before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 48px;
  height: 50px;
  left: -20px;
  background: linear-gradient(230deg, #eeeeee 0%, #ffffff 100%);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
}
.active .step-title,
.step-title:hover {
  color: #ffffff;
  background-color: #D30403;
}



.sell-easy {
  padding: 40px 0px 30px;
  color: #ffffff;
  background-image: url("../images/sell_bg.jpg");
  background-position: center center;
  background-size: cover;
}
.sell-easy h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 36px;
  line-height: 144%;
}
.half {
  width: 47%;
}
.half img {
  margin-right: 35px;
}
.half p {
  flex-grow: 1;
  line-height: 144%;
}
.share-info {
  margin-top: 60px; 
}
.two-third {
  width: 60%;
}
.two-third h3 {
  font-weight: bold;
  font-size: 28px;
  line-height: 144%;
  margin-bottom: 15px;
}
.two-third p {
  font-family: "Domine", "Montserrat";
  font-weight: bold;
  font-size: 16px;
  line-height: 144%;
}
.share-info .one-third {
  width: 34%;
}

.why-cbilling {
  padding: 95px 0px 85px;
}
.why-cbilling h2 {
  text-align: center;
  font-weight: bold;
  font-size: 36px;
  line-height: 144%;
  color: #1B1B1B;
  margin-bottom: 55px;
}
.one-fourth {
  width: 25%;
  padding: 45px 15px 30px;
  display: flex;
  flex-direction: column;
  transition: all 0.2s ease;
  text-align: center;
}
.one-fourth:hover {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
}
.one-fourth h4 {
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  text-align: center;
  color: #1B1B1B;  
  margin-top: 40px;
  margin-bottom: 19px;
  padding-bottom: 21px;
  background-image: url("../images/title_bg.svg");
  background-position: bottom center;
  background-repeat: no-repeat;
  /*flex-grow: 1; */
  min-height: 3.6em;
}
.one-fourth p {
  font-family: "Domine", "Montserrat";
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #1B1B1B;
}
.payment {
  margin-top: 100px;
}

.have-questions {
  padding: 25px 0px 20px;
  color: #ffffff;
  background-image: url("../images/question_bg.jpg");
  background-position: center center;
  background-size: cover;
}
.q_text1 {
  font-weight: 600;
  font-size: 36px;
  line-height: 44px;
}
.q_text2 {
  font-weight: bold;
  font-size: 18px;
  line-height: 22px;
  padding: 20px 120px 20px 60px;
  background-image: url("../images/tg_arrow.svg");
  background-position: bottom right;
  background-repeat: no-repeat;
  max-width: 600px;
}
.q_text2 a {
  color: #ffffff;
  text-decoration: underline;
}
.q_logo {
  
}
.footer {
  padding: 25px 0px;
}
.footer p {
  font-family: "Domine", "Montserrat";
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 168%;
  text-align: center;
  letter-spacing: 0.065em;
  color: #1B1B1B;
  max-width: 400px;
  margin: 0px auto;
}
.mob-menu-btn {
  display: none;
  text-align: right;
  width: 57px;
}
.mob-menu-btn span {
  width: 57px;
  height: 3px;
  display: block;
  margin: 12px 0px;
  background-color: #ffffff;
}
.mob-menu-btn span:nth-child(2) {
  width: 44px;
  margin-left: auto;
}
#mob-menu {
  top: 0;
  bottom: 0;
  height: 100vh;
  width: 250px;
  right: 0;
  position: fixed;
  background: #000;
  color: #ffffff;
  transform: translateX(100%);
  z-index: 101;
  padding: 20px;
}
#mob-menu.open {
  transform: none;
}
#mob-menu .close {
  font-size: 44px;
  line-height: 30px;
  float: right;
}
#mob-menu ul {
  list-style: none;
  text-align: left;
  margin-top: 60px;
}
#mob-menu ul li {
  margin: 20px 0px;
}
#mob-menu a {
  color: #ffffff;
  font-size: 18px;
}
.popup-wrapper {
  display: flex;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;/*
  align-items: center;*/
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px;
  overflow-y: scroll;
  opacity: 0;
  visibility: hidden
}
.popup-wrapper.open {
  opacity: 1;
  visibility: visible;
}
.popup .close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 28px;
  line-height: 18px;
  cursor: pointer;
}
.popup .register-form {
  position: relative;
  margin-left: 0px;
  margin-bottom: 20px;
}
body.disable-scroll {
  overflow: hidden;
  padding-right: 17px;
}
@media (hover: none) and (pointer: coarse) {
  body.disable-scroll {
    padding-right: 0px;
  }
}

@media (max-width: 1200px) {
  .step-title {
    width: calc((100vw - 30px)/4 - 50px);
  }
} 
@media (max-width: 992px) {
  .top-content {
    width: 90%;
  }
  .payment {
    flex-wrap: wrap;
  }
  .paym-img {
    width: 30%;
    text-align: center;
  }
} 
@media (max-width: 840px) {
  .top .register-form {
    display: none;
  }
  .top-content {
    width: 100%;
    min-height: 400px;
  }
  .steps {
    flex-wrap: wrap;
    padding-bottom: 220px;
  }
  .step-title {
    width: calc((100vw - 30px)/2 - 50px);
    margin-bottom: 20px;
  }
  .why-cbilling .flex {
    flex-wrap: wrap;
  }
  .one-fourth {
    width: 47%;
  }
  .steps .active .step-content {
    top: 240px;
  }
  .step-content-img {
    flex-basis: 350px;
  }
  header {
    background: rgba(1, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    position: fixed;
    width: 100%;
    z-index: 100;
  }
  header .container nav,
  header .container .telegram {
    display: none;
  }
  .mob-menu-btn {
    display: block;
  }
  .top {
    padding-top: 180px;
  }
  .top-content .btn {
    display: block;
  }
  .top-content .btn-arrow {
    display: none;
  }
  .share-info {
    flex-direction: column;
  }
  .share-info .two-third,
  .share-info .one-third {
    width: 100%;
  }
  .share-info .one-third .btn {
    margin-top: 30px;
  }
} 
@media (max-width: 680px) {
  .flex {
    flex-wrap: wrap;
  }
  .top .container {
    flex-direction: column;
    height: 100%;
  }
  .top {
    height: 100vh;
    min-height: 700px;
  }
  .top-content {
    width: 100%;
    height: 100%;
  }
  .top-content h1 {
    font-size: 32px;
    line-height: 46px;
    text-align: center;
  }
  .top-content p {
    font-size: 16px;
    line-height: 26px;
    text-align: left;
  }
  .top-content .btn {
    position: relative;
  }
  .about .one-third {
    margin-bottom: 45px;
  }
  .about .one-third:last-child {
    margin-bottom: 0px;
  }
  .steps {
    padding-bottom: 0px;
  }
  .step-title {
    width: calc(100% - 20px);
    margin-left: 20px;
    margin-bottom: 40px;
    pointer-events: none;
  }
  .steps .active .step-content,
  .steps .step-content {
    display: block;
    position: relative;
    top: auto;
    margin-bottom: 45px;
  }
  .step-content-img {
    flex-basis: 100%;
    margin-bottom: 30px;
    margin-right: 0px;
  }
  .about .btn {
    display: block;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }
  .steps .step-content .btn {
    display: none;
  }
  .active .step-title {
    color: #1B1B1B;
    background: #ffffff;
  }
  .half {
    justify-content: center;
    text-align: center;
    margin-bottom: 20px;
    flex-direction: column;
  }
  .half img {
    margin-right: 0px;
    margin-bottom: 20px;
  }
  .sell-easy {
    padding-bottom: 40px;
  }
  .sell-easy h2 {
    margin-bottom: 25px;
    font-size: 28px;
  }
  .share-info {
    margin-top: 30px;
  }
  .two-third h3 {
    font-size: 18px;
    text-align: center;
  }
  .two-third p {
    font-size: 16px;
    margin-bottom: 20px;
    text-align: center;
  }
  .one-fourth h4 {
    min-height: unset;
  }
  .share-info .one-third,
  .one-third,
  .half,
  .two-third,
  .one-fourth {
    width: 100%;
  }
  .why-cbilling {
    padding: 70px 0px 30px;
  }
  .why-cbilling h2 {
    font-size: 28px;
    margin-bottom: 20px;
  }
  .payment {
    flex-wrap: wrap;
    margin-top: 40px
  }
  .paym-img {
    width: 47%;
    text-align: center;
    margin-bottom: 40px;
  }
  .paym-img img {
    max-width: 100%;
  }
  .have-questions {
    padding: 40px 0px;
  }
  .have-questions .flex {
    justify-content: center;
  }
  .q_text1 {
    font-size: 28px;
    line-height: 34px;
    margin-bottom: 24px;
    margin-top: 0px;
  }
  .q_text2 {
    font-weight: 600;
    font-size: 18px;
    line-height: 20px;
    padding: 0px;
    text-align: center;
    background-image: none;
    margin-bottom: 45px;
  }
} </pre></body></html>