@charset "UTF-8";
@font-face {
  font-family: "SF Pro Display";
  src: url("../src/fonts/SF-Pro-Display-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SF Pro Display";
  src: url("../src/fonts/SF-Pro-Display-Semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SF Pro Display";
  src: url("../src/fonts/SF-Pro-Display-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SF Pro Display";
  src: url("../src/fonts/SF-Pro-Display-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SF Pro Display";
  src: url("../src/fonts/SF-Pro-Display-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SF Pro Display";
  src: url("../src/fonts/SF-Pro-Display-Thin.woff2") format("woff2");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
* {
  padding: 0;
  margin: 0;
  scroll-behavior: smooth;
  box-sizing: border-box;
}

body {
  font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  font-display: swap;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

#cta_menu {
  width: 100%;
  background: #0071E3;
  z-index: 1000;
}

.cta_mcontainer {
  max-width: 940px;
  padding: 10px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.cta_mcontainer p {
  color: #fff;
  font-size: 17px;
  font-weight: 400;
  margin-right: 20px;
  letter-spacing: 0.3px;
}
.cta_mcontainer p span {
  font-weight: 700;
}
.cta_mcontainer .btnOpenForm {
  background: #ff5740;
  color: #fff;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 700;
  text-decoration-line: none;
}
.cta_mcontainer img {
  width: 20%;
}

#menu.close_mcta {
  transition: 0.3s;
}

header {
  transform: translateY(-100%);
  transition: 0.3s;
}

header.close_mcta {
  transform: translateY(0);
  transition: 0.3s;
}

.section_title {
  font-size: 56px;
  color: #1D1D1F;
  font-weight: 600;
  font-display: swap;
  text-rendering: optimizeLegibility;
}

.section_subtitle {
  font-size: 24px;
  color: #696969;
  margin-top: 12px;
}

#menu {
  background: #000;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 1000;
  transition: 0.3s;
}
#menu .menu_container {
  max-width: 940px;
  padding: 20px;
  margin: 0 auto;
}
#menu .menu_items {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#menu .menu_items a {
  font-size: 15px;
  font-weight: 300;
  text-decoration: none;
  color: #E8E8ED;
  transition: all 0.2s ease-in-out;
}
#menu .menu_items a:hover {
  opacity: 0.8;
  transition: all 0.2s ease-in-out;
}
#menu .menu_logo {
  margin-left: unset;
}

#logo_ae {
  font-weight: 300;
  font-size: 17px;
  color: #fff;
  text-decoration: none;
}

.menu_mobileblock #logo_ae {
  margin-left: 5px;
}

#main_page {
  width: 100%;
  overflow: hidden;
  background-color: #000;
  position: relative;
}
#main_page .main_content {
  position: relative;
  z-index: 1;
  text-align: center;
  margin: 0 auto;
  align-content: center;
}
#main_page .main_content h1 {
  font-size: 56px;
  font-weight: 600;
  color: #fff;
  font-display: swap;
  text-rendering: optimizeLegibility;
}
#main_page .main_content p {
  margin-top: 30px;
  font-size: 26px;
  font-weight: 100;
  color: #fff;
  margin: 0 auto;
  margin-bottom: 40px;
  margin-top: 40px;
  max-width: 450px;
}
#main_page .main_content img {
  margin-top: -60px;
  max-width: -moz-fit-content;
  max-width: fit-content;
  width: 100%;
}

#first_video {
  margin-top: 10px !important;
  font-size: 15px !important;
  color: #c7c7c7;
}

#main_container {
  padding-top: calc(100px + 15vh);
  padding-bottom: 10vh;
  height: 100%;
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.link_get a {
  display: inline-block;
  margin: 0 auto;
  padding: 14px 32px;
  text-decoration: none;
  color: #fff;
  background: #0071E3;
  border-radius: 50px;
  font-size: 26px;
  font-weight: 500;
  font-display: swap;
  text-rendering: optimizeLegibility;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}
.link_get a:hover {
  opacity: 0.8;
  transition: all 0.2s ease-in-out;
}

#services_page {
  padding-top: 60px;
}
#services_page .services_content {
  margin-top: 40px;
  display: flex;
  justify-content: space-around;
  gap: 40px;
  flex-wrap: wrap;
}
#services_page .service_item {
  background: linear-gradient(to right, #090808 32%, #222222 100%);
  max-width: -moz-fit-content;
  max-width: fit-content;
  min-width: 356px;
  height: 340px;
  border-radius: 30px;
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 20px 0 0;
}
#services_page .si_desc {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-left: auto;
}
#services_page .si_desc p {
  color: #fff;
  font-size: 23px;
  font-weight: 300;
}
#services_page .si_image img {
  border-radius: 30px;
  position: absolute;
  left: -30px;
  top: 40px;
}
#services_page .service_title {
  text-align: center;
  font-weight: 600;
  font-size: 36px;
  color: #1D1D1F;
  margin-top: 12px;
}

#about_section {
  margin-top: 180px;
}
#about_section .about_boxes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 50px;
}
#about_section .box_item {
  background-color: #F5F5F7;
  border-radius: 20px;
  text-align: center;
  flex: 1 1 calc(50% - 10px);
  transition: 0.2s;
}
#about_section .box_item img {
  width: 120px;
}
#about_section .box_item p {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 40px;
}
#about_section .box_item:hover {
  transform: scale(1.02);
  transition: 0.2s;
}

#five_star {
  z-index: 1;
}

.fs_content {
  z-index: 1;
  display: flex;
  margin-top: 20px;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 10px 0;
}
.fs_content p {
  font-size: 17px;
  font-weight: 600;
  color: #000;
}

.fs_trust {
  font-size: 16px;
  color: #000;
  text-align: center;
  margin-top: 20px;
}

.fs_marque {
  max-width: 600px;
  margin: 0 auto;
  margin-top: 15px;
}
.fs_marque .marquee__item {
  margin-inline-end: 20px;
}

#fs_work {
  text-decoration: none;
  text-align: center;
  display: block;
  color: #fff;
  font-weight: 500;
  font-size: 18px;
  margin-top: 8px;
  background: none;
}
#fs_work:hover {
  text-decoration: underline;
}

.st_img1 {
  height: 30px;
  width: auto;
}

.st_img2 {
  height: 20px;
  width: auto;
}

#cases_section {
  padding-top: 180px;
}

.tabs {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.tab {
  color: #1D1D1F;
  border: none;
  background: none;
  font-size: 24px;
  font-weight: 100;
  cursor: pointer;
  padding: 10px 20px;
  border-radius: 50px;
  transition: all 0.2s ease-in-out;
}
.tab.active_tab {
  background-color: #1D1D1F;
  color: #fff;
}

.tab-content {
  display: none;
  padding: 10px;
  opacity: 0;
}
.tab-content.activeContent {
  padding-top: 20px;
  display: block;
  opacity: 1;
}

.owl-carousel-tabfour .owl-dots {
  display: block !important;
}

.video_holder {
  display: flex;
  justify-content: center;
}

#vw_horizontal {
  aspect-ratio: 16/9;
  width: 100%;
  max-width: 97%;
  position: relative;
}

.vw_play::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 48px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 68 48"><path fill="%23f00" d="M66.52 7.74c-.78-2.93-2.49-5.41-5.64-5.64C58.33 0 34 0 34 0S9.67 0 7.12 2.1c-3.15.23-4.86 2.7-5.64 5.64C0 10.15 0 24 0 24s0 13.85 1.48 16.26c.78 2.93 2.49 5.41 5.64 5.64C9.67 48 34 48 34 48s24.33 0 26.88-2.1c3.15-.23 4.86-2.7 5.64-5.64C68 37.85 68 24 68 24s0-13.85-1.48-16.26z"/><path fill="%23fff" d="M45 24 27 15v18z"/></svg>') no-repeat center center;
  background-size: contain;
  opacity: 0.8;
  transition: opacity 0.2s ease-in-out;
  z-index: 1;
}

.vw_play:hover::after {
  opacity: 1;
}

.vw_play.video-playing::after {
  display: none;
}

.video-wrapper {
  position: relative;
  aspect-ratio: 9/16;
  overflow: hidden;
  border-radius: 12px;
  background: #000;
  margin: 0 10px;
}
.video-wrapper .video {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.video-wrapper.video-playing .play-btn {
  display: none;
}

.video-wrapper-feedback {
  max-width: 90%;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  cursor: pointer;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 48px;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: white;
  padding: 20px 20px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition: 0.2s ease;
}
.play-btn img {
  width: 40px !important;
}

.play-btn.hidden {
  opacity: 0;
  pointer-events: none;
}

#cta_section {
  margin-top: 50px;
  text-align: center;
  background-color: #1D1D1F;
  padding: 70px 0;
}
#cta_section h1 {
  font-size: 48px;
  font-weight: 600;
  color: #fff;
}
#cta_section p {
  font-size: 24px;
  font-weight: 500;
  margin-top: 20px;
  color: #c7c7c7;
}
#cta_section .link_get {
  margin-top: 30px;
}
#cta_section .inform {
  font-size: 16px;
  letter-spacing: 0.3px;
  font-weight: 400;
  margin-top: 40px;
}

.timeline__cover {
  padding: 100px 0;
  color: #ffffff;
}

.timeline__cover .timeline__title {
  max-width: 840px;
  margin: 0 auto;
  text-align: center;
  padding: 0 16px;
}

.timeline__cover .timeline__title h2 {
  font-size: 48px;
  font-weight: 600;
  line-height: 56px;
  letter-spacing: -0.5px;
  text-transform: capitalize;
  margin-bottom: 16px;
}

.timeline__cover .timeline__title p {
  font-size: 18px;
  font-weight: 400;
  line-height: 28.8px;
  color: #959595;
}

.timeline__cover .timeline {
  padding-top: 64px;
}

.timeline__cover .timeline ul {
  padding-top: 100px;
}

.timeline__cover .timeline ul li {
  background: #9a9a9a;
  position: relative;
  margin: 0 auto;
  width: 2px;
  margin-bottom: 48px;
  list-style-type: none;
}

.timeline__cover .timeline ul li:last-child {
  padding-bottom: 7px;
  width: 0;
  height: 0;
}

.timeline__cover .timeline ul li:before {
  content: "";
  background: #dc4a38;
  position: absolute;
  left: 50%;
  top: -32px;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
}

.timeline__cover .timeline ul li .hidden {
  opacity: 0;
}

.timeline__cover .timeline ul li .content {
  position: relative;
  top: -100px;
  width: 289px;
}

.timeline__cover .timeline ul li .content .badge {
  font-size: 12px;
  line-height: 16px;
  text-transform: uppercase;
  color: #fff;
  display: inline-block;
  padding: 6px 12px;
  background: #0071E3;
  border-radius: 1000px;
}

.timeline__cover .timeline ul li .content h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  color: #1D1D1F;
  margin: 16px 0 8px;
}

.timeline__cover .timeline ul li .content p {
  color: #696969;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.timeline__cover .timeline ul li:nth-child(odd) .content {
  left: 70px;
}

.timeline__cover .timeline ul li:nth-child(odd) .content:before {
  left: -38px;
}

.timeline__cover .timeline ul li:nth-child(even) .content {
  left: -359px;
}

.timeline__cover .timeline ul li:nth-child(even) .content:before {
  right: -38px;
}

.time_zones {
  background: #232325;
  margin-top: 175px;
  padding: 50px 0 90px 0;
  z-index: 1;
}
.time_zones .container {
  position: relative;
}
.time_zones .container img {
  position: absolute;
  z-index: 1;
  bottom: -250px;
  left: 0;
  opacity: 10%;
  width: 25%;
}

.tz_city {
  color: #c7c7c7;
  font-size: 60px;
}

.tz_time {
  color: #c7c7c7;
  font-size: 60px;
}

.tz_adr {
  margin-top: 20px;
  color: #fff;
}

.time_zone_items {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

.cta_new_us {
  background: #F5F5F7;
  padding: 40px 20px;
  border-radius: 60px;
  margin: 0 auto;
  margin-top: -125px;
  max-width: 900px;
}

.cns_wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cns_title {
  font-size: 40px;
  font-weight: 600;
  color: #1D1D1F;
}

.cns_description {
  font-size: 20px;
  color: #646464;
}

footer {
  position: relative;
  z-index: 2;
  background: #1D1D1F;
  padding: 50px 20px;
  color: #fff;
}

.we_accept img {
  height: 40px;
  width: auto;
}

.footer_content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  margin: 0 auto;
  align-items: center;
  padding-bottom: 40px;
}

.footer_logo img {
  max-width: 150px;
  height: auto;
}
.footer_logo p {
  font-size: 18px;
  max-width: 300px;
  color: #c7c7c7;
}

.footer_bottom {
  border-top: 1px solid #c7c7c7;
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer_bottom p {
  color: #c7c7c7;
}

.footer_socials a {
  margin-left: 15px;
}
.footer_socials a img {
  width: 30px;
  height: 30px;
  filter: brightness(1);
  transition: all 0.2s ease-in-out;
}
.footer_socials a img:hover {
  filter: brightness(1.5);
}

.footer_links {
  display: flex;
  gap: 20px;
}
.footer_links a {
  text-decoration: none;
  color: #c7c7c7;
  filter: brightness(1);
  transition: all 0.2s ease-in-out;
}
.footer_links a:hover {
  filter: brightness(1.5);
}

.footer_policy {
  display: flex;
  gap: 20px;
}
.footer_policy a {
  text-decoration: none;
  color: #c7c7c7;
  filter: brightness(1);
  transition: all 0.2s ease-in-out;
}
.footer_policy a:hover {
  filter: brightness(1.5);
}

.rb-text h2 {
  font-size: 26px;
  line-height: 1.3846153846;
  margin-top: 30px;
}

.rb-page-header {
  text-align: center;
  margin-bottom: 40px;
  margin-top: 100px;
}

.blog_heading {
  margin-top: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  border-bottom: 1px solid #e2e2e2;
  padding-bottom: 40px;
}
.blog_heading img {
  max-width: 150px;
  width: 100%;
  display: block;
}
.blog_heading p {
  margin-top: -25px;
  font-size: 40px;
  font-weight: 400;
  display: block;
  color: #525252;
}

.blog_content {
  margin-top: 40px;
  margin-bottom: 40px;
}

.blog_item {
  display: flex;
  gap: 20px;
}
.blog_item img {
  max-width: 300px;
  border-radius: 15px;
  transition: 0.2s;
}
.blog_item img:hover {
  opacity: 0.8;
  transition: 0.2s;
}

.bgi_text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bgi_head {
  font-size: 25px;
  text-decoration: none;
  color: #1D1D1F;
  font-weight: 600;
  transition: 0.2s;
}
.bgi_head:hover {
  opacity: 0.8;
  transition: 0.2s;
}

.bgi_desc {
  margin-top: 10px;
  font-size: 20px;
  text-decoration: none;
  color: #505050;
  transition: 0.2s;
}
.bgi_desc:hover {
  opacity: 0.8;
  transition: 0.2s;
}

.bgi_date {
  margin-top: 15px;
  font-size: 16px;
  color: #A0A0A0;
}

.btn_back {
  margin-bottom: 40px;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.2s ease-in-out;
}
.btn_back:hover {
  opacity: 0.8;
  transition: all 0.2s ease-in-out;
}
.btn_back a {
  color: #0071E3;
  text-decoration: none;
  display: flex;
  align-items: center;
}
.btn_back a img {
  width: 15px;
}

.main_blog {
  padding-top: 100px;
  padding-bottom: 100px;
}

.bh_img {
  width: 50%;
  border-radius: 15px;
}

.art_top {
  margin-top: 40px;
  margin-bottom: 40px;
}
.art_top h1 {
  font-size: 40px;
  font-weight: 600;
  color: #1D1D1F;
}

.art_socials {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.art_socials p {
  font-size: 20px;
  color: #747474;
}
.art_socials a img {
  margin-left: 10px;
  width: 30px;
  height: 30px;
}

#blog_container p {
  margin-bottom: 10px;
}
#blog_container h2 {
  margin-top: 25px;
  margin-bottom: 5px;
}
#blog_container h3 {
  margin-top: 20px;
  margin-bottom: 5px;
}
#blog_container ul {
  padding-left: 18px;
  margin: 10px 0 10px 0;
}

.ex_img {
  max-width: 300px;
  border-radius: 15px;
  margin-top: 15px;
  margin-bottom: 15px;
}

.blog_ll {
  font-weight: 600;
  color: #0071E3;
  transition: all 0.2s ease-in-out;
}
.blog_ll:hover {
  opacity: 0.8;
  transition: all 0.2s ease-in-out;
}

/* Media Queries */
@media screen and (max-width: 1020px) {
  .timeline__cover .timeline ul li .content {
    width: 41vw;
  }
  .timeline__cover .timeline ul li:nth-child(even) .content {
    left: calc(-41vw - 45px);
  }
  .cns_wrapper {
    flex-direction: column;
    text-align: center;
  }
}
@media screen and (max-width: 700px) {
  .bh_img {
    width: 100%;
  }
  .blog_item {
    flex-direction: column;
    align-items: center;
  }
  .blog_item img {
    max-width: 100%;
    width: 100%;
  }
  .bgi_head {
    font-size: 20px;
  }
  .bgi_desc {
    font-size: 16px;
  }
  .bgi_date {
    font-size: 14px;
  }
  .video-wrapper {
    max-width: 200px;
    margin: 0 auto;
  }
  .video-wrapper-feedback {
    max-width: 90%;
  }
  #services_page .service_title {
    font-size: 23px;
    margin-top: 6px;
  }
  #why_section {
    padding-bottom: 100px;
  }
  .timeline__cover {
    padding: 32px 0;
  }
  .timeline__cover .timeline__title {
    text-align: left;
  }
  .timeline__cover .timeline {
    padding-top: 32px;
  }
  .timeline__cover .timeline ul li {
    margin-left: 10px !important;
  }
  .timeline__cover .timeline__title h2 {
    font-size: 32px;
    line-height: 44px;
    letter-spacing: 0.08px;
  }
  .timeline__cover .timeline ul li .content {
    width: calc(100vw - 100px);
    transition: 0.2s;
  }
  .timeline__cover .timeline ul li .content p {
    min-height: 110px;
  }
  .timeline__cover .timeline ul li:nth-child(even) .content {
    left: 38px;
  }
  .timeline__cover .timeline ul li:nth-child(even) .content:before {
    left: -33px;
  }
  .timeline__cover .timeline ul li:nth-child(odd) .content {
    left: 38px;
  }
}
#why_section {
  background-color: #F5F5F7;
  padding-top: 65px;
}
#why_section .why_we_content {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
}
#why_section .ww_title {
  display: flex;
  align-items: center;
  gap: 10px;
}
#why_section .ww_title p {
  font-size: 40px;
  font-weight: 500;
}
#why_section .ww_title img {
  max-width: 33px;
  width: 100%;
}
#why_section .ww_about {
  font-size: 25px;
  font-weight: 300;
}

#feedback_section {
  padding: 50px 0 100px;
  background-color: #F5F5F7;
}

.feedback_content {
  margin-top: 50px;
}

.owl-theme .owl-nav {
  text-align: right !important;
}
.owl-theme .owl-nav button {
  background-color: transparent;
  border: none;
  outline: none;
  width: 50px;
  height: 50px;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: cover !important;
  transition: all 0.2s ease-in-out;
}
.owl-theme .owl-nav button:hover {
  opacity: 0.8;
  transition: all 0.2s ease-in-out;
}
.owl-theme .owl-nav button.owl-prev {
  background-image: url("https://pub-28805301dffd4bc98f29951ab8e9e6e6.r2.dev/site/prev.webp") !important;
}
.owl-theme .owl-nav button.owl-next {
  background-image: url("https://pub-28805301dffd4bc98f29951ab8e9e6e6.r2.dev/site/next.webp") !important;
}
.owl-theme .owl-nav button span {
  display: none;
}
.owl-theme .owl-nav button:hover {
  background-color: unset !important;
}

@media (max-width: 768px) {
  .section_title {
    font-size: 42px;
  }
  #services_page .service_item {
    min-width: 300px;
  }
  .about_boxes .box_item {
    flex: 1 1 100%;
  }
}
.marquee-wrapper {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.partners_section {
  margin-top: 60px;
  margin-bottom: 60px;
}

.why_title span {
  color: #0071E3;
}

.wrapper_mr {
  display: grid;
  place-content: center;
}

.stat_main {
  background: #F5F5F7;
  border-radius: 50px;
  padding: 40px 20px;
  margin-top: 50px;
}

.stat_container {
  display: flex;
  flex-wrap: wrap; /* разрешает перенос элементов на следующую строку */
  gap: 15px;
  justify-content: center;
  margin-top: 40px;
  padding: 0 10px;
}

.stat_item {
  flex: 0 0 48%;
  text-align: center;
  max-width: 400px;
  background: #e2e2e2;
  border-radius: 25px;
  padding: 55px 20px;
}

.stat_number {
  font-size: 75px;
  font-weight: 700;
  color: #0071E3;
}
.stat_number b {
  font-size: 25px;
}

.stat_label {
  margin-top: 10px;
  font-size: 18px;
  font-weight: 500;
  color: #1D1D1F;
}

.marquee {
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(var(--mask-direction, to right), hsla(0, 0%, 0%, 0), hsl(0, 0%, 0%) 10%, hsl(0, 0%, 0%) 90%, hsla(0, 0%, 0%, 0));
          mask-image: linear-gradient(var(--mask-direction, to right), hsla(0, 0%, 0%, 0), hsl(0, 0%, 0%) 10%, hsl(0, 0%, 0%) 90%, hsla(0, 0%, 0%, 0));
}

.marquee__ctn {
  display: flex;
  width: 100%;
}

.marquee__track {
  display: flex;
}

@supports (-webkit-touch-callout: none) {
  .marquee__ctn {
    transform: translate3d(0, 0, 0) scale(1);
    perspective: 1px;
  }
}
.marquee__item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 120px;
  margin-inline-end: 3rem;
}
.marquee__item img {
  height: 60px;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  backface-visibility: hidden;
  filter: brightness(100%);
}

.faq_content {
  margin-top: 50px;
}

.accordion-container {
  width: 100%;
}

.accordion-item {
  border-bottom: 1px solid #CCCCCC;
}

.accordion-header {
  background: none;
  color: #333;
  padding: 14px 0px 14px 0;
  width: 100%;
  text-align: left;
  border: none;
  font-size: 22px;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-header .icon {
  transition: transform 0.3s; /* Smooth rotation for icon */
}

.accordion-header.active_accord .icon {
  transform: rotate(180deg); /* Rotate to form a minus sign */
}

.accordion-content {
  padding: 0 0px;
  overflow: hidden;
  max-height: 0; /* Initially hidden */
  font-size: 18px;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out; /* Smooth slide effect */
}

.accordion-content.show {
  max-height: 300px; /* Adjust based on expected content height */
  padding: 15px 0px;
}

.accordion-content p {
  margin: 0;
  color: #555;
  line-height: 1.6;
}

#faq_section {
  padding: 70px 0;
}

.faq_title {
  text-align: center;
  font-size: 90px;
  color: #1D1D1F;
}

#cta {
  margin-top: 200px;
  margin-bottom: 200px;
}

.cta_logo {
  text-align: center;
  margin-bottom: 30px;
}
.cta_logo img {
  max-width: 30%;
  height: auto;
}
.cta_logo h1 {
  text-align: center;
  font-weight: 100;
  font-size: 90px;
  color: #1D1D1F;
}

.cta_cont {
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  margin: -40px 0 30px 0;
}

.cta_btn {
  text-align: center;
}

#testimonials_section {
  margin-top: 150px;
  padding: 50px 0;
  background-color: #F5F5F7;
}

.testimonials_content {
  margin-top: 20px;
}
.testimonials_content .owl-stage-outer {
  padding: 10px 10px 30px 10px;
}
.testimonials_content .owl-carousel .owl-stage {
  display: flex;
  gap: 30px;
}
.testimonials_content .owl-carousel .owl-stage .owl-item {
  display: flex;
  justify-content: center;
}

.testimonial_item {
  background: #fff;
  padding: 15px;
  border-radius: 20px;
  position: relative;
  max-width: 350px !important;
  width: 100% !important;
}
.testimonial_item:before {
  content: "";
  z-index: -1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(-45deg, #45caff 0%, #ff1b6b 100%);
  transform: translate3d(0px, 10px, 0) scale(0.85);
  filter: blur(20px);
  opacity: var(0.7);
  transition: opacity 0.3s;
  border-radius: inherit;
}
.testimonial_item::after {
  content: "";
  z-index: -1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: inherit;
  border-radius: inherit;
}

.tsi_title {
  display: flex;
  align-items: center;
  gap: 10px;
}
.tsi_title img {
  width: 90px !important;
  height: 90px !important;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 100%;
  border: 4px solid rgba(0, 204, 255, 0.4666666667);
}
.tsi_title p {
  font-size: 22px;
  font-weight: 500;
}
.tsi_title span {
  font-size: 18px;
  font-weight: 300;
  color: #808080;
}

.tsi_content p {
  font-size: 18px;
  color: #1D1D1F;
  margin-top: 20px;
  font-weight: 300;
}

.tsi_content {
  margin-top: 10px;
}

.contact_form_section {
  max-width: 700px;
  width: 100%;
}

.form-group {
  margin-bottom: 2rem;
  width: 100%;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  width: 100%;
  font-size: 20px;
  font-weight: 400;
  color: #1D1D1F;
}

.form-group input[type=text],
.form-group input[type=email],
.form-group input[type=tel],
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border-radius: 50px;
  border: 1px solid #B4B4B4;
  box-sizing: border-box;
}

.form-group textarea {
  min-height: 220px;
  resize: none;
  border-radius: 30px;
}

.contact_content {
  margin-top: 60px;
  display: flex;
  gap: 100px;
}
.contact_content button {
  background-color: #1D1D1F;
  color: white;
  width: 100%;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 17px;
  border-radius: 100px;
  transition: 0.3s;
}
.contact_content button:hover {
  opacity: 95%;
  transition: 0.3s;
}

.rs_contact h1 {
  font-size: 30px;
  font-weight: 600;
  color: #1D1D1F;
}
.rs_contact a {
  text-decoration: underline;
  display: block;
  color: #0071E3;
  font-size: 20px;
  font-weight: 400;
  text-decoration: none;
}

.connect_itm {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 10px;
}
.connect_itm img {
  width: 8%;
}

#price_section {
  background: #F5F5F7;
}

.price_card {
  padding: 0px 0px 15px 0;
  background: #fff;
  border: 2px solid #E0E0E0;
  border-radius: 40px;
  position: relative;
}
.price_card img {
  border-radius: 35px 35px 0 0;
  width: 100%;
  height: auto;
}

.price_title {
  font-size: 22px;
  font-weight: 600;
  color: #1D1D1F;
  margin-bottom: 10px;
}

.price_description {
  font-size: 18px;
  font-weight: 400;
  color: #535353;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}
.price_description img {
  width: 6% !important;
  margin-right: 5px;
}

.price_div {
  display: flex;
  align-items: center;
  gap: 10px;
  text-wrap: nowrap;
  min-width: 280px;
  width: 100%;
}
.price_div p {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  border: 2px solid #0071E3;
  border-radius: 50px;
  padding: 10px 20px;
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: rgba(2, 96, 204, 0.4);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
}
.price_div button {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  background-color: #0071E3;
  border-radius: 50px;
  padding: 10px 20px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: 0.3s;
  width: 100%;
}
.price_div button:hover {
  opacity: 90%;
  transition: 0.3s;
}

.price_pad {
  padding: 15px 15px 8px 15px;
}

#price_section .tab-content {
  max-width: 1500px;
  margin: 0 auto;
}
#price_section .owl-stage {
  display: flex;
}

.price_content {
  background: #F2F2F2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 50px;
}

.price_l {
  text-align: center;
  padding: 60px;
  margin: 0 auto;
}
.price_l h1 {
  font-size: 38px;
  font-weight: 600;
}
.price_l p {
  font-size: 18px;
  font-weight: 300;
  margin: 40px 0 0px 0;
}
.price_l h3 {
  font-size: 24px;
  font-weight: 500;
  color: #1D1D1F;
  margin-top: 20px;
}

.lst_itm {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  max-width: 400px;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.lst_itm p {
  margin: 0;
  display: block;
  text-wrap: nowrap;
}
.lst_itm span {
  color: #dc4a38;
}

.price_r {
  background: #1D1D1F;
  padding: 150px 80px;
  border-radius: 50px;
  border: 3px solid #808080;
  text-align: center;
}
.price_r h1 {
  font-size: 64px;
  font-weight: 700;
  color: #fff;
}
.price_r h1 br {
  display: none;
}
.price_r p {
  font-size: 18px;
  color: #CECECE;
}
.price_r .cta_btn {
  margin: 20px 0 20px 0;
}

.tbc_pck .price_div p {
  font-size: 18px;
}
.tbc_pck .price_div a {
  font-size: 19px;
}

.pc_holder {
  margin-top: 70px;
  padding-bottom: 100px;
}

.pcw_title {
  text-align: center;
  font-size: 32px;
  font-weight: 600;
}

.packages_wrapper {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.package_item {
  flex: 0 0 20%;
  background: #fff;
  border: 2px solid #0071E3;
  max-width: 300px;
  padding: 20px;
  border-radius: 35px;
}

.pc_title {
  display: flex;
  align-items: center;
  font-size: 25px;
  font-weight: 500;
}
.pc_title img {
  width: 20%;
  margin-right: 15px;
}

.pc_dsc {
  font-size: 18px;
  color: #555555;
  font-weight: 500;
  margin-top: 10px;
}

.form-title {
  margin-top: 55%;
  font-size: 39px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #1D1D1F;
  text-align: center;
}
.form-title span {
  font-weight: 700;
  color: #0071E3;
}

.form-subtitle {
  font-size: 20px;
  color: #646464;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 30px;
  font-weight: 700;
  max-width: 400px;
}

.form_cta_btn {
  width: 100%;
  background: #0071E3;
  text-decoration: none;
  color: #fff;
  text-align: center;
  padding: 10px 0;
  font-weight: 500;
  border-radius: 40px;
}

@media screen and (max-width: 1250px) {
  #main_page .main_content p {
    font-size: 21px;
  }
  #main_page .main_content h1 {
    font-size: 48px;
  }
  .section_title {
    font-size: 48px;
  }
  .faq_title {
    font-size: 70px;
  }
  .price_r {
    width: 100%;
    box-sizing: border-box;
  }
  .price_content {
    flex-direction: column;
  }
}
@media screen and (max-width: 1250px) {
  .package_item {
    flex: 0 0 40%;
  }
}
@media screen and (max-width: 768px) {
  .pc_holder {
    padding-bottom: 20px;
    margin-top: 20px;
  }
  .pcw_title {
    font-size: 22px;
    font-display: swap;
  }
  .pc_title {
    font-size: 19px;
    font-display: swap;
  }
  .pc_title img {
    width: 15%;
  }
  .pc_dsc {
    font-size: 16px;
    font-display: swap;
  }
  #main_page .main_content p {
    font-size: 19px;
    margin-bottom: 40px;
    font-display: swap;
    max-width: 300px;
    margin-top: 25px;
    margin-bottom: 25px;
  }
  #main_page .main_content h1 {
    font-size: 30px;
    font-display: swap;
    max-width: 250px;
    margin: 0 auto;
  }
  .section_title {
    font-size: 28px;
    font-display: swap;
  }
  .section_subtitle {
    font-size: 16px;
    font-display: swap;
  }
  .faq_title {
    font-size: 48px;
    font-display: swap;
  }
  .accordion-header {
    font-size: 18px;
    font-display: swap;
  }
  .cta_cont {
    font-size: 17px;
    font-display: swap;
  }
  .contact_content {
    margin-top: 30px;
    flex-direction: column;
    gap: 40px;
  }
  .why_we_content {
    flex-direction: column;
    gap: 30px;
  }
  #cases_section {
    padding-top: 100px;
  }
  .tabs {
    gap: 0;
  }
  .tab {
    font-size: 17px;
    text-wrap: nowrap;
    padding: 5px 10px;
  }
  #about_section .box_item {
    padding: 10px;
  }
  #about_section .box_item p {
    font-size: 18px;
  }
  #about_section .box_item img {
    width: 40%;
  }
  #why_section .ww_title p {
    font-size: 30px;
  }
  #feedback_section {
    padding: 50px 0 60px 0;
  }
  #faq_section {
    margin-top: 0;
    padding-top: 100px;
  }
  #services_page .si_desc p {
    font-size: 18px;
  }
  #about_section {
    margin-top: 100px;
  }
  .price_l {
    padding: 60px 20px;
  }
  .price_l h1 {
    font-size: 32px;
  }
  .price_l p {
    font-size: 17px;
  }
  .price_r {
    padding: 50px 20px;
  }
  .price_r h1 br {
    display: inline;
  }
  .price_r p {
    font-size: 14px;
  }
  #cta {
    margin-top: 0;
    margin-bottom: 100px;
  }
}
@media (max-width: 600px) {
  .ex_img {
    max-width: 200px;
  }
  .art_top h1 {
    font-size: 26px;
  }
  .art_socials {
    margin-top: 15px;
  }
  .art_socials p {
    font-size: 16px;
  }
  .art_socials a img {
    width: 25px;
    height: 25px;
  }
  .blog_heading p {
    margin-top: -10px;
    font-size: 20px;
  }
  .blog_heading img {
    max-width: 100px;
  }
  .blog_heading {
    gap: 20px;
    margin-top: 85px;
    padding-bottom: 20px;
  }
  #menu_onit {
    font-size: 20px;
  }
  #main_container {
    justify-content: unset;
  }
  .packages_wrapper {
    margin-top: 20px;
    gap: 10px;
  }
  .package_item {
    flex: 0 0 100%;
  }
  .cta_mcontainer {
    gap: 15px;
  }
  .cta_mcontainer p {
    font-size: 12px !important;
  }
  .cns_title {
    font-size: 22px;
  }
  .cns_description {
    margin-top: 10px;
    font-size: 20px;
  }
  .cta_new_us {
    padding: 20px 10px;
    margin-top: -110px;
  }
  .cns_r {
    margin-top: 20px;
  }
  .time_zones {
    padding: 10px 0 60px 0;
  }
  .time_zones .container img {
    bottom: -100px;
    left: unset;
    opacity: 10%;
    right: 0;
    width: 50%;
  }
  .tz_city {
    font-size: 40px;
  }
  .tz_time {
    font-size: 40px;
  }
  .tz_adr {
    margin-top: 5px;
  }
  .fs_trust {
    font-size: 14px;
  }
  .link_get a {
    font-size: 20px;
  }
  .contact-form-section {
    margin: 1rem;
  }
  #testimonials_section {
    margin-top: 60px;
  }
  .price_l h1 {
    font-size: 26px;
  }
  .price_l h3 {
    font-size: 20px;
  }
  .price_l p br {
    display: none;
  }
  .video_holder {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .stat_item {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .stat_number {
    font-size: 40px;
  }
  .stat_label {
    font-size: 16px;
  }
  .stat_item {
    padding: 15px;
  }
  .stat_container {
    margin-top: 20px;
  }
  .stat_main {
    padding: 20px;
    border-radius: 35px;
  }
  .price_title {
    font-size: 20px;
  }
  .price_description {
    font-size: 18px;
  }
  .footer_bottom {
    gap: 30px;
    flex-direction: column;
  }
  .footer_links {
    flex-direction: column;
  }
  .footer_content {
    flex-direction: column;
    align-items: flex-start;
  }
}
header {
  display: none;
  justify-content: flex-end;
  z-index: 3;
  position: fixed;
  width: 100%;
  background: #000;
  transition: 0.3s;
}

.menu-btn {
  width: 30px;
  height: 30px;
  position: relative;
  z-index: 4;
  overflow: hidden;
  padding: 10px 20px;
}

.menu-btn .bar {
  width: 30px;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 0px;
  transform: translate(-50%, -50%);
  background-color: rgb(255, 255, 255);
  transition: all 0.3s ease-in-out;
}

.menu-btn .bar:nth-of-type(2) {
  top: calc(50% - 9px);
}

.menu-btn .bar:nth-of-type(3) {
  top: calc(50% + 9px);
}

.menu-btn.active .bar:nth-of-type(1) {
  opacity: 0;
}

.menu-btn.active .bar-hide {
  opacity: 0;
}

.menu-btn.active .bar:nth-of-type(2) {
  top: 50%;
  transform: translate(-50%, 0%) rotate(45deg);
}

.menu-btn.active .bar:nth-of-type(3) {
  top: 50%;
  transform: translate(-50%, 0%) rotate(-45deg);
}

.nav {
  position: fixed;
  top: 45px;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 70px 20px 0 20px;
  background: #000000;
  transition: transform 0.5s;
  z-index: 2;
}
.nav a {
  text-decoration: none;
  color: #fff;
  font-size: 32px;
  display: block;
  margin-top: 15px;
}

.nav.active {
  transform: translateX(0) !important;
}

.nav .nav__list_item {
  list-style-type: none;
}

.menu_mobileblock {
  display: flex;
  align-items: center;
  padding: 5px 0;
}

.logo_mm {
  margin-left: 10px;
  font-size: 20px;
  font-weight: 300;
  color: #F5F5F7;
}

.menu_logo {
  display: block;
  position: relative;
  margin-left: auto;
  padding: 10px 20px;
  transition: 0.3s;
  transform: scale(0);
}
.menu_logo button {
  display: block;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  border: 1px solid #ff5740;
  border-radius: 35px;
  background: #ff5740;
  padding: 8px 15px;
}

.menu_logo.scale_logo {
  transform: scale(1);
  transition: 0.3s;
}

#popup-form textarea {
  min-height: 120px;
}

.form-popup-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 20px;
}

.form-popup-bg {
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s 0s, visibility 0s 0.3s;
  overflow-y: auto;
  z-index: 10000;
}

.form-popup-bg.is-visible {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s 0s, visibility 0s 0s;
}

.form-container {
  background-color: #ffffff;
  background-image: url(https://pub-28805301dffd4bc98f29951ab8e9e6e6.r2.dev/site/pc_cta.webp);
  background-size: 100%;
  background-repeat: no-repeat;
  border-radius: 10px;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  padding: 20px;
  color: #fff;
  box-sizing: border-box;
}

.close-button {
  background: none;
  color: #000000;
  width: 40px;
  height: 40px;
  position: absolute;
  display: block;
  top: 10px;
  right: 10px;
  border: none;
  cursor: pointer;
  box-sizing: border-box;
}
.close-button:focus {
  outline: none;
}
.close-button img {
  width: 100%;
  height: 100%;
  display: block;
}

.form-popup-bg:before {
  content: "";
  background-color: #000000;
  opacity: 0.5;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.btnSubmitPop {
  background-color: #1D1D1F;
  color: white;
  width: 100%;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 17px;
  border-radius: 100px;
  transition: 0.3s;
}
.btnSubmitPop:hover {
  opacity: 95%;
  transition: 0.3s;
}

@media screen and (max-width: 960px) {
  #main_container {
    padding-top: calc(80px + 5vh);
  }
  .form-title {
    font-size: 21px;
  }
  .form-subtitle {
    font-size: 15px;
    max-width: 100%;
  }
  #menu {
    display: none;
  }
  header {
    display: flex;
    flex-direction: column;
  }
  .cta_cont {
    margin: -10px 0 30px 0;
  }
  .cta_logo img {
    max-width: 50%;
    height: auto;
  }
  .cta_mcontainer img {
    width: 20px;
  }
  .cta_mcontainer .btnOpenForm {
    font-size: 15px;
    text-wrap: nowrap;
  }
  .cta_mcontainer p {
    font-size: 14px;
    text-align: center;
  }
  #cta_section {
    padding: 40px 0;
  }
  #cta_section h1 {
    font-size: 28px;
  }
  #cta_section p {
    font-size: 17px;
  }
  #cta_section .inform {
    margin: 0 auto;
    margin-top: 30px;
    font-size: 15px;
    max-width: 300px;
  }
  .fs_content p {
    font-size: 14px;
  }
  .st_img1 {
    height: 25px;
    width: auto;
  }
  .st_img2 {
    height: 18px;
    width: auto;
  }
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background: #dc4a38 !important;
}

.rb-text h1, .rb-text h2, .rb-text h3, .rb-text h4, .rb-text h5, .rb-text p {
  margin-top: 15px;
  font-size: 14px;
}

.rb-text ul {
  font-size: 14px;
  margin: 10px 0;
  padding-left: 20px;
}
.rb-text ul li {
  margin-bottom: 10px;
}

.rb-text h3 {
  margin-top: 15px;
  border-top: 1px solid #ccc;
  padding-top: 15px;
}

.rb-page {
  margin-bottom: 50px;
}

@media (max-width: 400px) {
  #main_container {
    padding-top: calc(60px + 5vh);
  }
}
.fpopup-overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.fpopup-content {
  background-color: white;
  padding: 20px 40px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.fpopup-content h3 {
  margin-top: 0;
}

.fclose-btn {
  margin-top: 10px;
  padding: 8px 16px;
  cursor: pointer;
  border: none;
  border-radius: 20px;
  font-size: 15px;
  background-color: #007BFF;
  color: white;
}

video:fullscreen {
  -o-object-fit: contain !important;
     object-fit: contain !important;
  background: #000;
}

.quiz-stepper {
  max-width: 700px;
  margin: 0 auto;
}

.step {
  display: none; /* По умолчанию все шаги скрыты */
}

.step.active {
  display: block; /* Активный шаг отображается */
}

.stepper-header {
  text-align: center;
  margin-bottom: 25px;
}

.step-indicator {
  height: 30px;
  width: 30px;
  margin: 0 5px;
  background-color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #333;
  font-weight: bold;
  opacity: 0.6;
}

.step-indicator.active {
  opacity: 1;
  background-color: #3498db;
  color: white;
  border-color: #3498db;
}

/* ---------------------------------- */
/* 3. Стили для полей ввода и кнопок */
/* ---------------------------------- */
.input-group {
  margin-bottom: 20px;
}

.input-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

input[type=text] {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.7);
  box-sizing: border-box;
  color: #333;
}

input[type=text]:focus {
  outline: none;
  border-color: #3498db;
  box-shadow: 0 0 5px rgba(52, 152, 219, 0.5);
}

.stepper-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

.stepper-footer button {
  background-color: #3498db;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.stepper-footer button:hover {
  background-color: #2980b9;
}

.stepper-footer #prevBtn {
  background-color: #95a5a6;
}

.stepper-footer #prevBtn:hover {
  background-color: #7f8c8d;
}

.input-group label input[type=radio] {
  margin-right: 10px;
}

.input-group label {
  font-weight: normal;
  padding: 10px 0;
  cursor: pointer;
}/*# sourceMappingURL=styles.css.map */