* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-decoration: none;
  scroll-behavior: smooth;
  font-family: 'Red Hat Display', sans-serif;
}
a,
button:active,
button:focus,
input:active,
input:focus {
  outline: 0 !important;
}
a:hover {
  text-decoration: none;
}

/* animations */
@-webkit-keyframes bounce {
  from,
  20%,
  53%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -8px, 0);
    transform: translate3d(0, -8px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -3px, 0);
    transform: translate3d(0, -3px, 0);
  }
}
@keyframes bounce {
  from,
  20%,
  53%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -8px, 0);
    transform: translate3d(0, -8px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -3px, 0);
    transform: translate3d(0, -3px, 0);
  }
}

/* formbox */
#formbox {
  background: rgba(33, 37, 41, 0.4);
  border: 2px solid #7ed322;
  max-width: 350px;
}
.filed_group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 15px 15px 30px 15px;
  position: relative;
}
.form_title {
  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;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 16px;
  padding-bottom: 0;
}
.form_title img {
  display: block;
  max-width: 100%;
}
.form_title h3 {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  font-size: 21px;
  line-height: 150%;
  text-align: center;
  color: #ffffff;
}
.fname,
.lname,
.email,
.phone {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  padding: 7.5px 20px;
  background: #ffffff;
  border: 1px solid #b6bac8;
  width: 100%;
  margin-bottom: 10px;
  outline: none;
}
.phone {
  padding-left: 60px;
  width: 100%;
}
.intl-tel-input.allow-dropdown {
  width: 100%;
}
.arrowImg {
  width: 100%;
  margin: 30px 0;
  text-align: center;
}
.arrowImg img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  -ms-transform-origin: center bottom;
  transform-origin: center bottom;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.submit {
  display: inline-block;
  width: 100%;
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  font-size: 21px;
  line-height: 150%;
  text-align: center;
  color: #ffffff;
  background: #7ed322;
  border: 1px solid #ffffff;
  border-radius: 24px;
  padding: 9px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.submit:hover {
  background: #f89b08;
}
.formText {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}
.formSub {
  color: #fff;
  font-size: 11px;
  font-family: Roboto;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.formSub a {
  color: rgba(26, 103, 173, 1);
}
.checklabel,
.check {
  display: none;
}
.error-msg {
  display: block;
  margin-top: 20px;
  color: red;
  font-size: 20px;
  width: 100%;
  text-align: center;
  -webkit-box-ordinal-group: 6;
  -ms-flex-order: 5;
  order: 5;
}
.loadingView {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.loadingView img {
  max-width: 100%;
}

/* formbox 1 formbox2*/
#formbox1,
#formbox2 {
  max-width: 250px;
}

/* formbox 3*/
#formbox3 {
  width: 100%;
  max-width: 100%;
  margin-top: 23px;
}
#formbox3 .filed_group {
  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;
  padding: 14px 25px;
  background: #7ed322;
  position: relative;
}
#formbox3 .intl-tel-input.allow-dropdown {
  width: 18%;
}
#formbox3 .fname,
#formbox3 .lname,
#formbox3 .email,
#formbox3 .phone {
  width: 19%;
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  padding: 12px 20px;
  background: #ffffff;
  border: 1px solid #b6bac8;
  margin: 0;
  outline: none;
}
#formbox3 .phone {
  width: 100%;
  padding-left: 60px;
}
#formbox3 .submit {
  display: inline-block;
  width: 18%;
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  font-size: 21px;
  line-height: 150%;
  text-align: center;
  color: #ffffff;
  background: transparent;
  border-radius: 24px;
  border: 1px solid #fff;
  padding: 6.5px;
  margin: 0;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: relative;
}
#formbox3 .submit:hover {
  background: #f89b08;
}
#formbox3 .formText {
  gap: 2px;
}
#formbox3 .formSub {
  color: #fff;
  font-size: 11px;
  font-family: Roboto;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
#formbox3 .formSub a {
  color: #fff;
  text-decoration: underline;
}
/* container */
.container {
  max-width: 1150px;
  margin: 0 auto;
}

/* header */
.header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  background: #ffffff;
}
.headerInner {
  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 {
  padding-left: 40px;
}
.logo img {
  display: block;
  max-width: 100%;
}
.headerSub {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 800;
  font-size: 20px;
  line-height: 23px;
  text-align: center;
  color: #ffffff;
  padding: 19px 35px;
  background: #dd5879;
}

/* intro */
.intro {
  margin-top: 60px;
  padding-top: 50px;
  padding-bottom: 25px;
  background: url('../../assets/img/img-xl-1 1.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0 0;
}
.introTitle a,
.introTitle {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 800;
  font-size: 36px;
  line-height: 42px;
  text-align: center;
  color: #ffffff;
}
.introSub,
.introSub a {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 800;
  font-size: 36px;
  line-height: normal;
  text-align: center;
  color: #ffffff;
  margin-top: 20px;
}
.introContent {
  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;
  margin-top: 40px;
}
.introVideoContainer {
  width: 60%;
  height: 410px;
  position: relative;
}
.introVideo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
}
.introBottom {
  margin-top: 30px;
}
.introBottomImgs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.introBottomImgs a {
  width: 14%;
}
.introBottomImgs img {
  display: block;
  max-width: 100%;
  width: 100%;
}

.introBottomSub {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 800;
  font-size: 20px;
  line-height: 23px;
  text-align: center;
  color: #f8f8f8;
  margin-top: 35px;
}

/* users */
.users {
  background: #142331;
  height: 60px;
}
.usersInner {
  padding: 10px 0;
}
.userBlock {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 15px;
  border-left: 1px solid #1e456b;
}
.userBlockImg img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.userName {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  text-align: center;
  color: #ffffff;
  text-transform: capitalize;
  margin: 0 20px;
}
.userBlockPrice {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 800;
  font-size: 16px;
  line-height: 19px;
  color: #ffd046;
}
.userBlockPrice span {
  color: #7dd222;
}

/* slider */
.slick-list.draggable {
  overflow: hidden;
}
.slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* bot */
.bot {
  padding-top: 40px;
  padding-bottom: 16px;
}
.botBoxs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.botBox {
  width: 48%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.botBoxImg {
  width: 45%;
}
.botBoxImg img {
  display: block;
  max-width: 100%;
}
.botBoxText {
  width: 45%;
}
.potBoxName {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-size: 26px;
  line-height: 30px;
  color: #000000;
}
.botBoxPosition {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 21px;
  color: #000000;
}
.botBoxDivider {
  background: #000000;
  height: 1px;
  width: 100%;
  margin-top: 20px;
}
.botBoxSub {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 800;
  font-size: 18px;
  line-height: 21px;
  color: #000000;
  margin-top: 10px;
}
.botTitle,
.botTitle a {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 800;
  font-size: 36px;
  line-height: 42px;
  text-align: center;
  color: #3696f5;
}

/* claim */
.crypto {
  background: url('../../assets/img/device 1.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 900px;
}
.cryptos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  max-width: 210px;
  padding-top: 200px;
}
.cryptoBlock {
  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;
  padding: 10px;
  background: rgba(33, 37, 41, 0.5);
}
.cryptoBlockName {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  text-align: center;
  color: #ffffff;
}
.cryptoBlockPrice {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  text-align: center;
  color: #fcce48;
}
.cryptoBlock img {
  display: block;
  max-width: 100%;
}

/* claim */
.claim {
  margin-top: -200px;
  padding-bottom: 40px;
}
.claimInner {
  text-align: center;
}
.claimBtn {
  display: inline-block;
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 800;
  font-size: 28px;
  line-height: 33px;
  text-align: center;
  color: #ffffff;
  background: #7ed322;
  border-radius: 30px;
  padding: 18px 200px;
  position: relative;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.claimBtn:hover {
  background: #f89b08;
}
.claimBtn::before {
  content: '';
  position: absolute;
  left: 50px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: url('../../assets/img/ic-arrw-r-lrg.png');
  background-size: cover;
}
.claimBtn::after {
  content: '';
  position: absolute;
  right: 50px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: url('../../assets/img/ic-arrw-l-lrg.png');
  background-size: cover;
}
.claimTitle {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 800;
  font-size: 36px;
  line-height: 42px;
  text-align: center;
  color: #4f637c;
  margin-top: 35px;
}
.claimSub,
.claimSub a {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 25px;
  text-align: center;
  color: #4f637c;
  margin-top: 25px;
}

/* persons */
.persons {
  padding-top: 40px;
  padding-bottom: 50px;
  background: -webkit-gradient(linear, left bottom, left top, from(#203041), to(#203041)),
    -webkit-gradient(linear, left bottom, left top, from(#1355c0), to(#1355c0)),
    -webkit-gradient(linear, left bottom, left top, from(#1355c0), to(#1355c0)), #1355c0;
  background: -o-linear-gradient(bottom, #203041, #203041),
    -o-linear-gradient(bottom, #1355c0, #1355c0), -o-linear-gradient(bottom, #1355c0, #1355c0),
    #1355c0;
  background: linear-gradient(0deg, #203041, #203041), linear-gradient(0deg, #1355c0, #1355c0),
    linear-gradient(0deg, #1355c0, #1355c0), #1355c0;
}
.personsInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.personsBlocks {
  width: 73%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.personBlock {
  width: 30%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.personImg img {
  display: block;
  max-width: 100%;
}
.personName {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 800;
  font-size: 21px;
  line-height: 25px;
  text-align: center;
  color: #ffffff;
  margin-top: 20px;
}
.personBlockSub,
.personBlockSub a {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  text-align: center;
  color: #ffffff;
  margin-top: 10px;
}
.personBlockBottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
}
.personBlockBottomInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #1f2224;
  border-radius: 2px;
  padding: 10px;
}
.flagImg {
  width: 40px;
  height: 30px;
  background-image: url('../../assets/img/flags.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #dbdbdb;
  background-position: 20px 0;
}
.personBlockPrice {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: #7ed321;
}

/* items */
.items {
  padding: 34px 0;
  background: url('../../assets/img/img-xl-1 2.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0 0;
}
.itemsTitle {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 800;
  font-size: 30px;
  line-height: 35px;
  text-align: center;
  color: #ffffff;
}
.itemsSub,
.itemsSub a {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 28px;
  text-align: center;
  color: #ffffff;
  margin-top: 20px;
}
.itemsBlocks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 30px;
}
.itemBlock {
  width: 31%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background: #ffffff;
  padding: 25px 13px;
}
.itemBlockImg img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}
.itemBlockTitle {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 23px;
  text-align: center;
  color: #212529;
}
.itemBlockSub,
.itemBlockSub a {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 21px;
  text-align: center;
  color: #4f637c;
  margin-top: 15px;
}
.itemBlockBottomImg {
  margin-top: 50px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
}
.itemBlockBottomImg a {
  margin: 0 auto;
}
.itemBlockBottomImg img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}
.itemsBottom {
  margin-top: 60px;
  text-align: center;
}
.itemsBottomImg img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}
.itemsBottomTitle {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 800;
  font-size: 36px;
  line-height: 42px;
  text-align: center;
  color: #f8f8f8;
  margin-top: 10px;
}
.itemsBottomTitle span {
  color: #7ed322;
}

/* nasdaq */
.nasdaq {
  padding-top: 40px;
  padding-bottom: 25px;
}
.nasdaqInner {
  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;
}
.nasdaqImg {
  width: 30%;
}
.nasdaqImg img {
  display: block;
  max-width: 100%;
}
.nasdaqText {
  width: 65%;
}
.nasdaqTitle,
.nasdaqTitle a {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 800;
  font-size: 36px;
  line-height: 42px;
  color: #4f637c;
  padding-top: 10px;
  padding-bottom: 30px;
}
.nasdaqDivider {
  height: 1.5px;
  width: 100%;
  background: #4f637c;
}
.nasdaqSub,
.nasdaqSub a {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 21px;
  color: #4f637c;
  margin-top: 20px;
}
.nasdaqSub1 {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 600;
  font-size: 18px;
  line-height: 21px;
  color: #4f637c;
  margin-top: 5px;
}

/* comments */
.comments {
  padding-top: 40px;
  padding-bottom: 50px;
}
.facebookImg {
  text-align: center;
}
.facebookImg img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}
.commentsDate {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  font-size: 20px;
  line-height: 23px;
  color: #000000;
  padding: 10px 0;
  text-align: center;
  border-top: 1px solid #202d44;
  border-bottom: 1px solid #202d44;
  margin-top: 30px;
}
.commentsBlocks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.commentBlock {
  padding: 25px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: 1px solid #202d44;
}
.commentBlockImg {
  width: 15%;
}
.commentBlockImg img {
  display: block;
  max-width: 100%;
}
.commentBlockText {
  width: 80%;
}
.commentName {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  font-size: 21px;
  line-height: 25px;
  color: #4267b2;
}
.starsImg {
  margin-top: 10px;
}
.starsImg img {
  display: block;
}
.commentBlockSubm,
.commentBlockSub a {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #6d6d6d;
  margin-top: 15px;
}
.commentBlockBottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 50px;
  margin-top: 16px;
}
.like {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}
.likeSub {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  -webkit-text-decoration-line: underline;
  text-decoration-line: underline;
  color: #4267b2;
}

/* register */
.register {
  padding-top: 22px;
  padding-bottom: 76px;
  background: url('../../assets/img/img-xl-2\ 2.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.registerImg {
  text-align: center;
}
.registerImg img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}
.registerTitle,
.registerTitle a {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  font-size: 30px;
  line-height: 150%;
  text-align: center;
  color: #ffffff;
  margin-top: 20px;
}
.registerBottom {
  margin-top: 47px;
}
.registerBottomImgs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.registerBottomImgs a {
  width: 15%;
}
.registerBottomImgs img {
  display: block;
  width: 100%;
  opacity: 0.5;
}

/* footer */
.footer {
  padding: 40px 0;
}
.footerLinks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 70px;
}
.footerLink {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 23px;
  text-align: center;
  color: #000000;
}
.footerLogo {
  text-align: center;
  margin-top: 30px;
}
.footerSubs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 30px;
  gap: 20px;
}
.footerSub {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 150%;
  text-align: center;
  color: #000000;
}
.footerSub a {
  color: #000000;
  text-decoration: underline;
}
