#blog .swiper {
  display: none;
}

@media only screen and (max-width: 768px) {
  .custom-flex-1 {
    display: flex;
  }

  .custom-logo-1 {
    width: 30%;
    flex-shrink: 0;
    margin-right: 15px;
  }

  .alt-features-item {
    padding-left: 0 !important;
    border-left: 0 !important;
  }

  .swiper-pagination-bullet {
    background-color: #000;
  }

  #blog .swiper {
    display: block;
  }

  #tab-annual .swiper-wrapper {
    padding-bottom: 30px;
  }
}

.show-sm {
  display: none !important;
  align-self: center;
}

@media screen and (max-width: 768px) {
  .show-sm {
    display: block !important;
  }
}

@media screen and (max-width: 768px) {
  .hide-sm {
    display: none !important;
  }
}

.rm-mobile-nav-buttons-btn {
  background: #1a1a1a;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 58px;
}

.rm-mobile-nav-buttons-telegram {
  background: #1a1a1a;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 58px;
  margin-left: auto;
}

.mobile-nav {
  margin-left: 0;
}

.main-nav-sub {
  display: flex;
  justify-content: flex-end;
}

.pulse {
  -webkit-animation: pulse-primary 2s linear infinite;
  animation: pulse-primary 2s linear infinite;
}

@-webkit-keyframes pulse-primary {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(51, 51, 51, 0.8);
    box-shadow: 0 0 0 0 rgba(51, 51, 51, 0.8);
  }

  40% {
    -webkit-box-shadow: 0 0 0px 5px rgba(51, 51, 51, 0.5);
    box-shadow: 0 0 0px 5px rgba(51, 51, 51, 0.5);
  }

  80% {
    -webkit-box-shadow: 0 0 3px 10px rgba(51, 51, 51, 0);
    box-shadow: 0 0 3px 10px rgba(51, 51, 51, 0);
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(51, 51, 51, 0);
    box-shadow: 0 0 0 0 rgba(51, 51, 51, 0);
  }
}

.head_iframe {
  width: 100%;
}

.head_iframe iframe {
  display: block;
  width: 100%;
  height: 300px;
}

@media only screen and (max-width: 768px) {
  .head_iframe iframe {
      height: 250px;
    }
}

/* Modal */

.modal-order {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.3607843137);
  z-index: 211;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}
@media screen and (max-width: 768px) {
  .modal-order {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0;
  }
}
.modal-order.active {
  opacity: 1;
  visibility: visible;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.modal-order.active .content {
  -webkit-transform: translateY(0px) scale(1);
  transform: translateY(0px) scale(1);
}
.modal-order .title {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 30px;
  text-align: center;
}
.modal-order .content {
  width: 550px;
  max-width: calc(100% - 30px);
  padding: 50px;
  background-color: #fff;
  border-radius: 3rem;
  position: relative;
  -webkit-transform: translateY(0px) scale(1.1);
  transform: translateY(0px) scale(1.1);
  -webkit-transition: -webkit-transform 300ms ease;
  transition: -webkit-transform 300ms ease;
  transition: transform 300ms ease;
  transition: transform 300ms ease, -webkit-transform 300ms ease;
}
@media screen and (max-width: 768px) {
  .modal-order .content {
    padding: 30px 15px;
    padding-top: 60px;
    border-radius: 1rem;
  }
}
.modal-order .content .close_btn {
  position: absolute;
  top: 20px;
  right: 40px;
}
@media screen and (max-width: 768px) {
  .modal-order .content .close_btn {
    right: 20px;
  }
}
.logo-grid-img {
  /*filter: grayscale(1) !important;*/
}
.modal-order .content .close_btn button {
  border: none;
  background-color: #1a1a1a;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 5px;
  width: 40px;
  height: 40px;
  padding: 10px;
  cursor: pointer;
}
.modal-order .content .close_btn button img {
  width: 20px;
}
.modal-order .content label.input {
  display: block;
  position: relative;
  height: 50px;
  margin-bottom: 30px;
}
.modal-order .content label.input p {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 5;
  font-size: 16px;
  color: #1a1a1a;
  background-color: #fff;
  z-index: 10;
  padding: 0 5px;
  line-height: 1;
  -webkit-transition: left 300ms ease, top 300ms ease, color 300ms ease,
    font-size 300ms ease;
  transition: left 300ms ease, top 300ms ease, color 300ms ease,
    font-size 300ms ease;
}
.modal-order .content label.input span {
  color: #1a1a1a;
}
.modal-order .content label.input input {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 10;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #1a1a1a;
  padding-left: 0;
  border-radius: 1rem;
  color: #1a1a1a;
  -webkit-transition: border-color 300ms ease;
  transition: border-color 300ms ease;
  text-align: center;
}

.modal-order .content label.input input:focus {
    outline: none;
}

.open_modal::before {
    display: none !important;
}

.modal-order .content label.input textarea {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 10;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  background-color: rgba(0, 0, 0, 0);
  border-bottom: 1px solid #fff;
  padding-left: 15px;
  color: #fff;
  resize: none;
}
.modal-order .content label.input textarea::-webkit-input-placeholder {
  color: #fff;
  font-size: 14px;
}
.modal-order .content label.input textarea::-moz-placeholder {
  color: #fff;
  font-size: 14px;
}
.modal-order .content label.input textarea:-ms-input-placeholder {
  color: #fff;
  font-size: 14px;
}
.modal-order .content label.input textarea::-ms-input-placeholder {
  color: #fff;
  font-size: 14px;
}
.modal-order .content label.input textarea::placeholder {
  color: #fff;
  font-size: 14px;
}
.modal-order .content label.input:focus-within p {
  top: 0;
  /* left: 15px; */
  color: #000;
  font-size: 12px;
}
.modal-order .content label.input.focused p,
.modal-order .content label.input.filled p {
  -webkit-transition: none;
  transition: none;
  top: 0;
  left: 15px;
  font-size: 12px;
}
.modal-order .content .btn {
  text-align: center;
  width: 100%;
}
.modal-order .content .btn button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.modal-order .content .btn button .inner {
  position: relative;
}
.modal-order .content .btn button .loader {
  position: absolute;
  top: 50%;
  left: 100%;
  width: 15px;
  margin-left: 5px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0;
  -webkit-transition: opacity 300ms ease;
  transition: opacity 300ms ease;
}
.modal-order .content .btn button .loader svg path,
.modal-order .content .btn button .loader svg rect {
  fill: #fff;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 3rem;
    color: #fff;
    background-color: #1a1a1a;
    font-size: 16px;
    font-weight: 400;
    border-radius: 1rem;
    border: none;
    cursor: pointer;
}
@media screen and (max-width: 768px) {
    .btn-primary {
      font-size: 18px;
    }
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after,
.swiper-button-prev:after, 
.swiper-rtl .swiper-button-next:after {
    content: none;
}

.swiper-button-prev,
.swiper-button-next {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 50%;
    user-select: none;
    color: #000;
    box-shadow: 0 0 5px rgba(0, 0, 0, .1);
}

.custom-form {
  margin-top: 30px;
}

.custom-form label.input {
  display: block;
  position: relative;
  height: 50px;
  margin-bottom: 30px;
}

.custom-form label.input p {
  position: absolute;
  left: 50%;
  white-space: nowrap;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 10;
  font-size: 16px;
  color: #1a1a1a;
  background-color: #fff;
  padding: 0 5px;
  line-height: 1;
  -webkit-transition: left 300ms ease, top 300ms ease, color 300ms ease, font-size 300ms ease;
  transition: left 300ms ease, top 300ms ease, color 300ms ease, font-size 300ms ease;
}

.custom-form label.input span {
  color: #1a1a1a;
}

.custom-form label.input input,
.custom-form label.input select {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 10;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #1a1a1a;
  padding-left: 0;
  border-radius: 1rem;
  color: #1a1a1a;
  -webkit-transition: border-color 300ms ease;
  transition: border-color 300ms ease;
  text-align: center;
}

/* was nested: option { ... } */
.custom-form label.input input option,
.custom-form label.input select option {
  text-align: center !important;
}

.custom-form input[type="number"]::-webkit-inner-spin-button,
.custom-form input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.custom-form select {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align-last: center;
}

/* was nested inside select { option { ... } } */
.custom-form select option {
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-form label.input input:focus {
  outline: none;
}

.custom-form label.input:focus-within p {
  top: 0;
  color: #000;
  font-size: 12px;
}

.custom-form label.input.focused p,
.custom-form label.input.filled p {
  -webkit-transition: none;
  transition: none;
  top: 0;
  font-size: 12px;
}

.custom-form .btn {
  text-align: center;
  width: 100%;
}

/* was nested: .btn { button { ... } } */
.custom-form .btn button {
  background-color: #1a1a1a;
  color: #fff;
  font-size: 18px;
  border: none;
  padding: 15px 55px;
  border-radius: 1rem;
}

.custom-form .flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

/* was nested: .flex { .half/.full/.centered } */
.custom-form .flex .half {
  width: calc(50% - 15px);
}

.custom-form .flex .full {
  width: 100%;
}

.custom-form .flex .centered {
  text-align: center;
}

.pricing-item-innero:hover {
  z-index: 111;
}

.pricing-item-inner:hover {
  z-index: 111;
}

.lead-page {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100vh;
  padding: 15px;
}

.lead-page .lead-logo {
  margin-top: 15px;
  margin-bottom: 50px;
}

.lead-page .lead-logo img {
  width: 250px;
}

.lead-page .custom-form {
  max-width: 500px;
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
}

.lead-page .lead-form-title {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 25px;
}

@media only screen and (max-width: 768px) {
  .lead-page {
    justify-content: flex-start;
    padding-top: 50px;
  }
  .lead-page .lead-logo img {
    width: 150px;
  }
  .custom-form .flex .half {
    width: 100%;
  }

  .sm-none {
    display: none;
  }

  #contact {
    padding-bottom: 0 !important;
  }

  .swiper-wrapper {
    padding-bottom: 30px;
  }

  .page-section {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }

  .center-sm {
    text-align: center;
    justify-content: center;
  }
}

.custom-footer {
  padding: 50px 0;
  background-color: #1a1a1a !important;
  color: #fff !important;
}

.custom-footer a {
  color: #fff !important;
}

.custom-footer .flex {
  display: flex;
}

.custom-footer .flex .cols {
  width: 25%;
  padding: 0 15px;
}

.custom-footer .footer-logo {
  margin-bottom: 20px;
}

.custom-footer .footer-socials {
  display: flex;
  align-items: center;
}

.custom-footer .footer-socials .item {
  margin-right: 15px;
}

.custom-footer .footer-socials .item a {
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
}

.custom-footer .footer-socials .item a img {
  width: 15px;
}

.custom-footer .footer-desc {
  font-size: 13px !important;
  line-height: 1.5;
  opacity: 0.4;
  margin-bottom: 15px;
}

.custom-footer .footer-copy {
  margin-top: 25px;
  font-size: 12px !important;
  line-height: 1.5;
  opacity: 0.4;
}

.custom-footer .col-title {
  font-size: 16px;
  letter-spacing: 0.5px;
  font-weight: bold;
  color: #c9c9c9;
  margin-bottom: 20px;
}

.custom-footer .footer-menu {
  padding-left: 0;
}

.custom-footer .footer-menu li {
  list-style: none;
  margin-bottom: 10px;
}

.custom-footer .footer-menu li a {
  font-size: 15px;
  text-decoration: none;
}

@media only screen and (max-width: 768px) {
  .custom-footer .container {
    padding: 0;
  }

  .custom-footer .flex {
    flex-wrap: wrap;
  }

  .custom-footer .flex .cols {
    width: 50%;
    flex-shrink: 0;
    margin-bottom: 30px;
  }

  .custom-footer .footer-desc {
    display: none;
  }

  .footer-socials {
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 0px !important;
  }

  .footer-socials .item {
    margin-right: 0px !important;
  }

  .footer-copy {
    margin-top: 10px !important;
  }

  .footer-menu li {
  margin-bottom: 5px !important;
  }

  .footer-menu li a {
    font-size: 13px !important;
  }
}