/********** Template CSS **********/
:root {
  --primary: #5469c9;
  --light: #edf5ff;
  --dark: #202942;
}

/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 45px;
  bottom: 45px;
  z-index: 99;
}

.my-6 {
  margin-top: 6rem;
  margin-bottom: 6rem;
}

.py-6 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

/*** Heading ***/
h1,
h2,
.fw-bold {
  font-weight: 700 !important;
}

h3,
h4,
.fw-semi-bold {
  font-weight: 600 !important;
}

h5,
h6,
.fw-medium {
  font-weight: 500 !important;
}

/*** Button ***/
.btn {
  transition: 0.5s;
}

.btn:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.btn.btn-primary {
  color: var(--light);
}

.btn.btn-light {
  color: var(--primary);
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
  border-radius: 50px;
}

/*** Navbar ***/
.navbar .dropdown-toggle::after {
  border: none;
  content: '\f067';
  font-family: 'Font Awesome 5 Free';
  font-size: 10px;
  font-weight: bold;
  vertical-align: middle;
  margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
  position: relative;
  margin-right: 25px;
  padding: 35px 0;
  font-weight: 500;
  color: var(--light);
  outline: none;
  transition: 0.5s;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: var(--light);
}

.sticky-top.navbar .navbar-nav .nav-link {
  padding: 20px 0;
  color: var(--dark);
}

.sticky-top.navbar .navbar-nav .nav-link:hover,
.sticky-top.navbar .navbar-nav .nav-link.active {
  color: var(--primary);
}

.navbar .navbar-brand h1 {
  color: #ffffff;
}

.navbar .navbar-brand img {
  max-height: 60px;
  transition: 0.5s;
}

.sticky-top.navbar .navbar-brand img {
  max-height: 45px;
}

@media (max-width: 991.98px) {
  .sticky-top.navbar {
    position: relative;
    background: #ffffff;
  }

  .navbar .navbar-collapse {
    margin-top: 15px;
    border-top: 1px solid #dddddd;
  }

  .navbar .navbar-nav .nav-link,
  .sticky-top.navbar .navbar-nav .nav-link {
    padding: 10px 0;
    margin-left: 0;
    color: var(--dark);
  }

  .navbar .navbar-nav .nav-link:hover,
  .navbar .navbar-nav .nav-link.active {
    color: var(--primary);
  }

  .navbar .navbar-brand h1 {
    color: var(--primary);
  }

  .navbar-light .navbar-brand img {
    max-height: 45px;
  }
}

@media (min-width: 992px) {
  .navbar {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
  }

  .sticky-top.navbar {
    position: fixed;
    background: #ffffff;
  }

  .sticky-top.navbar .navbar-brand h1 {
    color: var(--primary);
  }

  .navbar .navbar-nav .nav-item .dropdown-menu {
    display: block;
    border: none;
    margin-top: 0;
    top: 150%;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
  }

  .navbar .navbar-nav .nav-item:hover .dropdown-menu {
    top: 100%;
    visibility: visible;
    transition: 0.5s;
    opacity: 1;
  }

  .sticky-top.navbar .btn {
    color: var(--light);
    background: var(--primary);
    border-color: var(--primary);
  }
}

/*** Hero Header ***/
.hero-header {
  margin-bottom: 4rem;
  padding: 9rem 0;
}

@media (max-width: 991.98px) {
  .hero-header {
    padding: 5rem 0 5rem 0;
  }
}

/*** Feature ***/
.feature-item,
.advanced-feature-item {
  height: 100%;
  transition: 0.5s;
}

.feature-item:hover {
  margin-top: -15px;
}

.advanced-feature-item {
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
}

.advanced-feature-item * {
  transition: 0.5s;
}

.advanced-feature-item:hover {
  background: var(--primary);
}

.advanced-feature-item:hover * {
  color: #ffffff !important;
}

/*** Process ***/
.process {
  padding: 0;
  list-style: none;
}

.process li {
  position: relative;
  display: flex;
  padding-bottom: 25px;
}

.process li::after {
  position: absolute;
  content: '';
  width: 1px;
  height: 100%;
  top: 0;
  left: 20px;
  background: var(--primary);
}

.process li:last-child {
  padding-bottom: 0;
}

.process li:last-child:after {
  display: none;
}

.process li span {
  position: relative;
  width: 40px;
  height: 40px;
  margin-right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #ffffff;
  background: var(--primary);
  border-radius: 40px;
  z-index: 1;
}

.process li p {
  margin: 0;
}

/*** Price ***/
.price-item {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
  transition: 0.5s;
  height: 100% !important;
}

.price-item .d-flex {
  align-items: center;
  font-size: 14px;
}

.price-item .d-flex .money {
  font-style: normal;
  font-size: 11px;
  color: red;
}

/*** Testimonial ***/
.testimonial-carousel .testimonial-item {
  padding: 0 30px 30px 30px;
}

.testimonial-carousel .owl-nav {
  display: flex;
  justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
  margin: 0 12px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  background: var(--light);
  border-radius: 40px;
  font-size: 16px;
  transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
  color: #ffffff;
  background: var(--primary);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

/*** Footer ***/
.footer {
  margin-top: 6rem;
  padding-top: 3rem;
}

.footer .btn.btn-social {
  margin-right: 5px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  border: 1px solid #858585;
  border-radius: 40px;
  transition: 0.3s;
}

.footer .btn.btn-social:hover {
  color: var(--primary);
  border-color: var(--light);
}

.footer .btn.btn-link {
  display: block;
  margin-bottom: 10px;
  padding: 0;
  text-align: left;
  color: #858585;
  font-weight: normal;
  transition: 0.3s;
}

.footer .btn.btn-link::before {
  position: relative;
  content: '\f105';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  letter-spacing: 1px;
  box-shadow: none;
  color: var(--light);
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid rgba(256, 256, 256, 0.1);
}

.footer .copyright a {
  color: var(--light);
}

.footer .footer-menu a {
  margin-right: 15px;
  padding-right: 15px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 991.98px) {
  .footer .footer-menu a {
    display: flex;
    justify-content: center;
    padding: 5px 0;
    margin: 0;
    border: none;
  }
}

.footer .footer-menu a:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}

.footer .copyright a:hover,
.footer .footer-menu a:hover {
  color: var(--secondary);
}

/* Скрыть стандартное отображение стрелки выпадающего списка */
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  padding: 5px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  cursor: pointer;
  border-radius: 15px;
  padding: 5px 15px;
}

/* Стилизация стрелки выпадающего списка */
select::after {
  content: '\25BC';
  position: absolute;
  top: 12px;
  right: 10px;
  pointer-events: none;
}

select:focus {
  outline: none; /* Убирает рамку при фокусе */
  box-shadow: none; /* Убирает тень при фокусе (в некоторых браузерах) */
  border: 1px solid #ccc; /* Вернуть стандартную рамку */
}

.cta-card {
  position: relative;
  border-radius: 2rem;
  padding: 8.5rem;
  text-align: center;
  background-color: #5469c9 !important;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: -2.5rem;
  left: -2.5rem;
  z-index: -10;
  display: block;
  width: calc(100% + 5rem);
  height: calc(100% + 5rem);
  border-radius: 2rem;
  background-color: #dde5f9;
}

.cta-card__container {
  max-width: 46rem;
  margin: 0 auto;
}

.cta-card__title {
  margin-bottom: 1rem;
  font-size: calc(1.175rem + 1vw);
  font-weight: 700;
  color: #fff;
}

.cta-card__description {
  max-width: 75%;
  margin: 0 auto;
  margin-bottom: 3rem;
  font-size: 1rem;
  font-weight: 300;
  color: #fff;
}

.cta-card__input-box {
  position: relative;
}

.cta-card__input {
  width: 100%;
  padding: 2.2rem 2.5rem;
  display: inline-block;
  outline: none;
  border: 2px solid rgba(243, 248, 254, 0.3);
  border-radius: 10rem;
  font-size: 2rem;
  font-family: 'Mulish', sans-serif;
  color: #fff;
  background-color: rgba(243, 248, 254, 0.4);
}

.cta-card__input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.cta-card__input:focus {
  outline: 4px solid rgba(rgb(218, 70, 218), 0.4);
  border: 2px solid transparent;
}

.cta-card-button {
  position: absolute;
  top: 50%;
  right: 0.9rem;
  width: 5.1rem;
  height: 5.1rem;
  transform: translateY(-50%);
  outline: none;
  border: none;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;

  position: relative;
  top: auto;
  right: auto;
  display: block;
  height: auto;
  border-radius: 100rem;
  margin-top: 1.2rem;
  padding: 0.8rem;
  transform: none;
  border: 2px solid transparent;
  width: 50%;
  margin: auto;
}

.cta-card-button span {
  margin-right: 15px;
}

svg {
  max-width: 50px !important  ;
}
.cta-card-button path {
  transition: all 0.3s ease;
}

.cta-card-button:hover {
  border: 2px solid #54a9eb;
}

.cta-card__img-box {
  position: absolute;
  left: 50%;
  bottom: 0;
  display: flex;
  justify-content: space-between;
  gap: 4rem;
  transform: translate(-50%, 50%);
}

.cta-card__img {
  width: 9.4rem;
  height: 9.4rem;
  border: 0.8rem solid #fff;
  border-radius: 50%;
  box-shadow: 0 1.4rem 2.5rem -1.5rem rgba(82, 113, 224, 0.5);
  transition: filter 0.3s ease;
}

.cta-card__img:hover {
  filter: grayscale(1);
}

.support-container {
  background: #5469c9;
  padding: 6rem;
  border-radius: 2rem;
  text-align: center;
}

.pricing-name {
  /*   min-height: 70px !important;
 */
}

.pricing-channel-limit {
  color: black;
  opacity: 0.75;
}

.splide__slide {
  height: 100% !important;
}

.splide__slide .wow {
  padding: 20px !important;
  height: 100% !important;
}

.splide__list {
  height: 640px;
}
@media screen and (max-width: 56.25em) {
  .cta-card::before {
    display: none;
  }

  .cta-card-button {
    position: relative;
    top: auto;
    right: auto;
    display: block;
    width: 100%;
    height: auto;
    border-radius: 100rem;
    margin-top: 1.2rem;
    padding: 1.6rem;
    transform: none;
  }

  .cta-card__img {
    margin-right: -2.4rem;
  }

  .support-container {
    padding: 3rem;
  }
}

.wow .price-item {
  position: relative;
}

.wow .price-item a {
  position: absolute;
  bottom: 20px !important;
}

#policy h1 {
  color: black;
  border: none;
  background: none;
}

#policy nav {
  color: black;
  border-bottom: 1px solid;
}

#policy .navbar-collapse a {
  background: white;
  font-weight: bold;
  border: 1px solid;
}

#policy .navbar-nav a{
  color: var(--dark);
  border: none;
  background: none;
}

.navbar-brand{
  border: none !important;
  background: none!important;
}

.testimonial-carousel .testimonial-item {
  height: 400px!important;
  display: flex!important;
  flex-direction: column!important;
  justify-content: space-between!important;
}



@media screen and (max-width: 67.5em) {
  .cta-card {
    width: 90%;
  }

  .support-container {
    padding: 4rem;
  }
}

@media screen and (max-width: 56.25em) {
  .cta-card {
    padding: 6rem 0 8.5rem;
  }
}

@media screen and (max-width: 800px) {
  .container-fluid .hero-header {
    margin-bottom: 0 !important;
  }

  .container-fluid .container-xxl {
    padding-top: 40px !important;
  }

  .container-fluid .my-6 {
    margin-bottom: 0 !important;
    padding-bottom: 50px !important;
  }
  .container-fluid .py-6 {
    padding-bottom: 50px !important;
  }
  .container-fluid .py-5 {
    padding-top: 40px !important;
  }
  .support-container {
    padding: 2rem;
  }

  .cta-card-button {
    padding: 10px;
  }

  .cta-card-button svg {
    max-width: 30px !important;
  }

  .testimonial-carousel .testimonial-item {
    height: 500px!important;
  }

  
}

@media screen and (max-width: 450px) {
  .splide__list {
    height: 690px;
  }
  .testimonial-carousel .testimonial-item {
    height: 600px!important;
  }
}
