/*********************
START: INTRO SECTION STYLES
*********************/
section.intro {
  text-align: center;
  padding-block: var(--gap) 0;
  background-color: var(--primary-color);
  background-image: url(../img/Pattern.svg);
  background-size: 100%;
  background-position: 0 32px;
  background-repeat: no-repeat;
}

section.intro img.top-star {
  width: 168px;
  height: auto;
  margin-block-end: 37px;
}

section.intro h1 {
  font-size: var(--h1-size);
  width: 47%;
  margin: 0 auto 50px;
  font-weight: 800;
  color: var(--white);
}

section.intro h1 span {
  color: var(--secondary-color);
}

section.intro .but-wrap {
  width: 25%;
  margin: 0 auto 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

section.intro img.top-img {
  margin-block-end: -50px;
  width: 100%;
  height: auto;
}

/*********************
END: INTRO SECTION STYLES
*********************/
/*********************
START: BENEFITS SECTION STYLES
*********************/
ul.benefits {
  display: flex;
  justify-content: space-evenly;
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 29px;
  margin: var(--gap) 0;
}

ul.benefits li {
  width: 16%;
  display: flex;
  align-items: center;
}

ul.benefits li .left-benefits {
  margin-inline-end: 16px;
}

ul.benefits li .number-benefits {
  font-weight: 800;
  font-size: var(--h2-size);
  color: var(--primary-color);
}

/*********************
END: BENEFITS SECTION STYLES
*********************/
/*********************
START: REVIEWS SECTION STYLES
*********************/
section.reviews .top-reviews {
  display: flex;
  justify-content: space-between;
}

section.reviews .top-reviews .left-reviews {
  font-size: var(--h2-size);
  width: 37%;
  font-weight: bold;
  line-height: var(--line-height2);
}

section.reviews .top-reviews .right-reviews {
  width: 50%;
  line-height: var(--line-height);
}

section.reviews .top-reviews .right-reviews a {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 13px 33px;
  font-weight: 600;
  box-sizing: border-box;
  display: block;
  width: 230px;

  text-align: center;
  margin-block-start: 44px;
  border-radius: var(--border-radius);
}

section.reviews .swiper {
  padding: 15px 15px 40px;
  margin-block-start: var(--gap);
}

section.reviews .swiper .swiper-slide {
  box-shadow: var(--box-shadow);
  padding: 25px;
  border-radius: var(--border-radius);
  background-color: var(--white);
  height: 220px;
  position: relative;
}

section.reviews .swiper .swiper-slide .top-slide {
  display: flex;
  align-items: center;
  font-weight: bold;
  margin-block-end: 20px;
}

section.reviews .swiper .swiper-slide .top-slide img {
  margin-inline-end: 15px;
}

section.reviews .swiper .swiper-slide p {
  font-size: var(--text-size3);
}

section.reviews .swiper .swiper-slide:after,
section.reviews .swiper .swiper-slide:before {
  content: "";
  width: 68px;
  height: 120px;
  background: url(../img/icons/g-border.svg) no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  right: 0;
}

section.reviews .swiper .swiper-slide:before {
  transform: rotate(180deg);
  right: auto;
  left: 0;
  top: auto;
  bottom: 0;
}

section.reviews .swiper .swiper-slide:nth-child(2):after,
section.reviews .swiper .swiper-slide:nth-child(2):before {
  background: url(../img/icons/m-border.svg) no-repeat;
  width: 72px;
}

section.reviews .swiper .swiper-slide:nth-child(3):after,
section.reviews .swiper .swiper-slide:nth-child(3):before {
  background: url(../img/icons/s-border.svg) no-repeat;
  width: 72px;
}

section.reviews .swiper .swiper-slide:nth-child(4):after,
section.reviews .swiper .swiper-slide:nth-child(4):before {
  background: url(../img/icons/y-border.svg) no-repeat;
  width: 72px;
}

section.reviews .swiper .swiper-slide:nth-child(5):after,
section.reviews .swiper .swiper-slide:nth-child(5):before {
  background: url(../img/icons/bb-border.svg) no-repeat;
  width: 72px;
}

section.reviews .swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--secondary-color) !important;
}

section.reviews .swiper-pagination-bullet {
  background: #e0aaff;
}

/*********************
END: REVIEWS SECTION STYLES
*********************/

/*********************
START: TEAM SECTION STYLES
*********************/
.team {
  position: relative;
  min-height: 500px;
  overflow-y: hidden;
  margin-block: 3rem;
}

.team::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: -20%;
  left: 0;
  background-image: url(../img/bg-team.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.team--title {
  width: 50%;
  text-align: center;
  margin-inline: auto;
  color: var(--white);
}

.team--title h3 {
  font-size: 40px;
  margin-block-end: 0.5rem;
  margin-top: 5rem;
}

.team ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 80%;
  margin-inline: auto;
  margin-block-start: 40px;
}

.team ul li {
  margin: 20px;
  flex-basis: calc(33.33% - 40px);
  padding: 0.75rem;
  border-radius: var(--border-radius);
  background-color: var(--white);
}

.team ul li :is(h4, span) {
  font-size: 18px;
}


.team ul li p {
  color: var(--text-color2);
  margin-block-start: 0.5rem;
}

.team ul li img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 4;
  object-fit: cover;
}

/*********************
END: TEAM SECTION STYLES
*********************/

/*********************
START: RATING SECTION STYLES
*********************/
section.rating {
  position: relative;
  margin-block: var(--gap);
}

section.rating .in-rating {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

section.rating .in-rating .left-rating {
  width: 30%;
}

section.rating .in-rating .left-rating img {
  width: 80%;
}

section.rating .in-rating .left-rating .main-pat {
  background-color: #b37ee5;
  height: 110px;
  width: 24%;
  position: absolute;
  left: 0;
  top: 35%;
  border-radius: 0 30px 30px 0;
  z-index: -1;
}

section.rating .in-rating .right-rating {
  width: 60%;
}

section.rating .in-rating .right-rating h2 {
  font-size: var(--h2-size);
  margin-block: 85px 37px;
  font-weight: 800;

}

.video-player {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  border-radius: var(--border-radius);
  width: 100%;
}

.video-player .playback-animation {
  display: flex;
  position: absolute;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  background-color: rgba(64, 59, 117, 15%);
  z-index: 5;
}

.video-player .video {
  width: 100%;
}

.video-player .player-controls {
  display: flex;
  position: absolute;
  bottom: 0;
  width: 100%;
  transform: translateY(100%) translateY(-5px);
  transition: 0.3s;
  flex-wrap: wrap;
  background: rgba(0, 0, 0, 0.6);
}

.video-player:hover .player-controls {
  transform: translateY(0);
}

.video-player .play-button {
  width: 10%;
  border: none;
  background: var(--text-color);
  color: var(--white);
  padding: 10px;
}

.video-player .play-button:focus {
  outline: none;
}

.video-player .time {
  font-size: var(--text-size);
  color: var(--white);
  width: 15%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family);
}

.video-player input[type="range"] {
  -webkit-appearance: none;
  background: transparent;
  margin: 0;
  width: 75%;
  padding: 0 10px;
}

.video-player input[type="range"]:focus {
  outline: none;
}

.video-player input[type="range"]::-webkit-slider-runnable-track {
  width: 100%;
  height: 10px;
  cursor: pointer;
  background: var(--text-color);
}

.video-player input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 10px;
  width: 10px;
  background: var(--secondary-color);
  cursor: pointer;
}

.video-player .video-progress {
  position: relative;
  display: flex;
  width: 100%;
  height: 5px;
  transition: 0.3s;
  background: rgba(0, 0, 0, 0.6);
  cursor: pointer;
}

.video-player .video-progress-filled {
  width: 0;
  background: var(--secondary-color);
}

.video-player .video-player:hover .video-progress {
  height: 20px;
}

/*********************
END: RATING SECTION STYLES
*********************/
/*********************
START: BLOCKCHAIN SECTION STYLES
*********************/
section.blockchain {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

section.blockchain .left-blockchain {
  width: 45%;
}

section.blockchain .left-blockchain h2 {
  font-size: var(--h2-size);
  margin-block-end: 26px;
  font-weight: bold;
}

section.blockchain .left-blockchain p {
  line-height: var(--line-height);
}

section.blockchain .right-blockchain {
  width: 35%;
}

section.blockchain .right-blockchain img {
  width: 100%;
}

/*********************
END: BLOCKCHAIN SECTION STYLES
*********************/
/*********************
START: TESTIMONIAL SECTION STYLES
*********************/
section.testimonial {
  margin-block-start: var(--gap);
  background-color: var(--white);
  border-radius: 20px;
  padding: 50px;
}

.testimonial .top-testimonial {
  display: flex;
  justify-content: space-between;
  margin-block-end: 48px;
}

.testimonial .top-testimonial h2 {
  width: 45%;
  font-size: var(--h2-size);
  line-height: var(--line-height);
}

.testimonial .top-testimonial h2 span {
  color: var(--primary-color);
}

.testimonial .main-testimonial {
  display: flex;
  justify-content: space-between;
}

.testimonial .main-testimonial .icon-testimonial {
  width: 20%;
  position: relative;
}

.testimonial .main-testimonial .icon-testimonial .under-qoute {
  background-color: rgb(245 213 71 / 20%);
  border-radius: 100%;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: -18px;
  bottom: 22%;
  z-index: 0;
}

.testimonial .main-testimonial .my-carousel {
  width: 80%;
}

.testimonial .main-testimonial .my-carousel .swiper-slide {
  background-color: var(--background-color);
  border-radius: var(--border-radius);
  padding: 15px;
  box-sizing: border-box;
}

.testimonial .main-testimonial .my-carousel .swiper-slide img {
  width: 64px;
  height: 64px;
  border-radius: 100%;
  margin-block-end: 14px;
}

.testimonial .main-testimonial .my-carousel .swiper-slide p {
  font-size: var(--text-size2);
  line-height: var(--line-height);
  margin-block-end: 14px;
}

.testimonial .main-testimonial .my-carousel .swiper-slide span {
  color: var(--text-color2);
  font-size: var(--text-size3);
  display: flex;
  align-items: center;
}

.testimonial .main-testimonial .my-carousel .swiper-slide span::before {
  content: "";
  width: 25px;
  height: 1px;
  background-color: var(--text-color2);
  margin-inline-end: 5px;
  display: block;
}

.under-but-swiper {
  display: flex;
  flex-direction: row-reverse;
}

.but-swiper {
  position: relative;
  width: 10%;
  margin-block-start: 35px;
}

.swiper-button-next,
.swiper-button-prev {
  width: 35px !important;
  height: 35px !important;
  background-color: var(--primary-color);
  border-radius: 100%;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 19px !important;
  color: white;
}

/*********************
START: TESTIMONIAL SECTION STYLES
*********************/

/*********************
START: MEDIA QUERY
*********************/
@media screen and (max-width: 1320px) {
  section.intro .but-wrap {
    width: 30%;
  }
}
@media screen and (max-width: 1200px) {
  section.intro .but-wrap {
    width: 35%;
  }

  .team--title {
    width: 60%;
  }

  .team ul {
    width: 90%;
  }

  .team ul li {
    margin: 15px;
    flex-basis: calc(33.33% - 30px);
  }
}

@media screen and (max-width: 992px) {
  .team--title {
    width: 70%;
  }

  .team ul {
    width: 100%;
  }

  .team ul li {
    margin: 10px;
    flex-basis: calc(33.33% - 20px);
  }
}

@media screen and (max-width: 768px) {
  section.intro h1 {
    width: 100%;
  }

  section.intro .but-wrap {
    width: 60%;
  }

  section.intro {
    background-position: bottom;
  }

  ul.benefits {
    justify-content: space-between;
    padding: 10px;
    margin: 4rem 0 2rem;
  }

  ul.benefits li {
    width: 33%;
    text-align: center;
  }

  ul.benefits li .text-benefits {
    font-size: var(--text-size3);
  }

  section.reviews .top-reviews,
  section.rating .in-rating,
  section.blockchain,
  .testimonial .top-testimonial {
    flex-wrap: wrap;
  }

  section.reviews .top-reviews .left-reviews,
  section.reviews .top-reviews .right-reviews,
  section.rating .in-rating .left-rating,
  section.rating .in-rating .right-rating,
  section.blockchain .left-blockchain,
  .testimonial .main-testimonial .my-carousel {
    width: 100%;
  }

  section.reviews .top-reviews .right-reviews {
    margin-block-start: 10px;
  }

  section.reviews .top-reviews .right-reviews a {
    margin-block-start: 15px;
  }

  .team--title {
    width: 90%;
  }

  .team ul li {
    margin: 5px;
    flex-basis: calc(33.33% - 10px);
  }

  section.rating .in-rating .left-rating img {
    width: 50%;
  }

  section.rating .in-rating .left-rating .main-pat {
    height: 80px;
    width: 40%;
    left: 0;
    top: 19%;
  }

  section.rating .in-rating .right-rating iframe {
    height: 240px;
  }

  section.blockchain .right-blockchain {
    width: 100%;
    margin-block-start: 35px;
  }

  section.testimonial {
    padding: 20px;
  }

  .testimonial .top-testimonial h2 {
    width: 100%;
    text-align: center;
  }

  .testimonial .top-testimonial img {
    margin: 0 auto;
    width: 40%;
    margin-block-start: 20px;
  }

  .testimonial .main-testimonial .icon-testimonial {
    display: none;
  }

  .but-swiper {
    width: 32%;
    margin-block-start: 45px;
  }

  ul.benefits li .left-benefits {
    width: 20%;
  }

  ul.benefits li .left-benefits img {
    width: 25px;

  }

  ul.benefits li .number-benefits {
    font-size: var(--text-size);
  }

  .video-player .play-button {
    width: 13%;
  }

  .video-player input[type=range] {
    width: 65%;
  }

  .video-player .time {
    width: 20%;
    ;
  }
}

@media screen and (min-width: 769px) and (max-width: 992px) {
  section.intro h1 {
    width: 100%;
  }

  section.intro .but-wrap {
    width: 46%;
  }

  ul.benefits li {
    width: 25%;
    text-align: center;
  }

  section.rating .in-rating .left-rating .main-pat {
    top: 18%;
  }

  section.rating .in-rating .right-rating {
    width: 72%;
  }

  section.rating .in-rating .right-rating iframe {
    height: 297px;
  }

  section.blockchain .left-blockchain {
    width: 60%;
  }

  section.testimonial {
    padding: 25px;
  }

  .testimonial .main-testimonial .icon-testimonial {
    width: 10%;
  }

  .testimonial .main-testimonial .my-carousel {
    width: 90%;
  }
}

@media screen and (max-width: 576px) {
  .team ul li {
    margin: 5px;
    flex-basis: calc(50% - 10px);
  }

  section.intro .but-wrap {
    width: 80%;
  }
}

@media screen and (max-width: 425px) {
  section.intro .but-wrap {
    width: 100%;
  }
    
}

@media screen and (max-width: 375px) {
  .team ul li {
    margin: 5px;
    flex-basis: calc(100% - 10px);
  }
}