html {
  min-height: 100%;
  height: 100%;
  scroll-behavior: smooth;
}

body {
  font-size: 12px;
  font-family: "CocoSharp", Arial, sans-serif;
  text-align: left;
  color: #181818;
  background: #fff;
  background-color: #fff;
  /*min-height: 100%;
    height: 100%;*/
  overflow-y: overlay;
  overflow-x: clip;
  position: relative;
  touch-action: pan-y;
}
body.overflow {
  overflow: clip;
}
body::-webkit-scrollbar-button {
  background-image: url("");
  background-repeat: no-repeat;
  width: 4px;
  height: 0px;
}
body::-webkit-scrollbar-track {
  background-color: transparent;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  -khtml-border-radius: 2px;
  border-radius: 2px;
}
body::-webkit-scrollbar-thumb {
  -webkit-border-radius: 0px;
  border-radius: 0px;
  background-color: rgba(0, 0, 0, 0.3);
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  -khtml-border-radius: 3px;
  border-radius: 3px;
}
body::-webkit-scrollbar-thumb:hover {
  background-color: rgba(0, 0, 0, 0.6);
}
body::-webkit-resizer {
  background-image: url("");
  background-repeat: no-repeat;
  width: 0px;
  height: 0px;
}
body::-webkit-scrollbar {
  width: 4px;
}

* {
  box-sizing: border-box;
}

:root {
  --app-height: 100%;
}

/* Container for horizontal spacing */
.page_container-padding {
  padding-left: 120px !important;
  padding-right: 120px !important;
}

@media (max-width: 1250px) {
  .page_container-padding {
    padding-left: 60px !important;
    padding-right: 60px !important;
  }
}

@media (max-width: 1024px) {
  .page_container-padding {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
}

@media (max-width: 768px) {
  .page_container-padding {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}
.page_container-margin {
  margin-left: 120px !important;
  margin-right: 120px !important;
}

@media (min-width: 1440px) {
  .page_container-margin {
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

@media (max-width: 1250px) {
  .page_container-margin {
    margin-left: 60px !important;
    margin-right: 60px !important;
  }
}

@media (max-width: 1024px) {
  .page_container-margin {
    margin-left: 40px !important;
    margin-right: 40px !important;
  }
}

@media (max-width: 768px) {
  .page_container-margin {
    margin-left: 20px !important;
    margin-right: 20px !important;
  }
}

img[src=""] {
  display: none !important;
}

a.full_link {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute !important;
  left: 0;
  top: 0;
}

a {
  color: #1b69de;
  text-decoration: underline;
}
a:hover {
  text-decoration: none;
}

input,
select,
textarea,
button {
  outline: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  /*font-family: "Futura New", Helvetica, Arial, sans-serif !important;*/
}

input.text,
input[type="text"],
input[type="button"],
input[type="submit"],
.input-checkbox {
  -webkit-appearance: none;
}

video::-webkit-media-controls-panel {
  display: none;
  -webkit-appearance: none;
}

video::-webkit-media-controls-play-button {
  display: none;
  -webkit-appearance: none;
}

video::-webkit-media-controls-start-playback-button {
  display: none;
  -webkit-appearance: none;
}

video::-webkit-media-controls {
  display: none;
  -webkit-appearance: none;
}

video {
  pointer-events: none;
}

video::-webkit-media-controls-start-playback-button {
  display: none;
}

video::-webkit-media-controls-panel {
  display: none !important;
  opacity: 1 !important;
}

.main_header {
  height: 90px;
  background-color: #282828;
}
.main_header > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  /*padding: 24px 0;*/
  padding: 24px 0 16px 0;
  position: relative;
  height: 100%;
}

.logo a {
  display: inline-block;
  width: 140px;
  height: 50px;
  background-image: url(../img/logo_white.png);
  background-repeat: no-repeat;
  background-position: 0 50%;
  background-size: contain;
  color: rgba(0, 0, 0, 0);
}

.hero {
  background-color: #181818;
  /*height: 70dvh;*/

  background-repeat: no-repeat;
  background-position: center;
}
.hero_inner {
  /*display: flex;*/
  /*justify-content: space-between;*/
  /*align-items: flex-start;*/
  display: grid;
  grid-template-columns: 45% 25% 300px;
  align-content: start;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 0 0 0;
}
.hero_img_container {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero_img_container::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 25%;
  bottom: 0;
  left: 0;
  background: linear-gradient(0deg, #171821 21.7%, rgba(23, 24, 33, 0) 100%);
  z-index: 1;
}

.hero_img_container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 1250px) {
}

@media (max-width: 1024px) {
  .hero {
  }
  .hero_inner {
    grid-template-columns: 1fr;
    max-width: 1200px;
    justify-content: center;
    margin: 0 auto;
    padding: 60px 0 0 0;
  }
  .hero_img_container {
    width: 100%;
    height: 500px;
  }
}

@media (max-width: 768px) {
  .hero_inner {
    padding: 24px 0 0 0;
  }
}
@media (max-width: 560px) {

}

.form_block {
  /*max-width: 488px;*/
  padding: 32px;
  margin-right: 60px;
  margin-bottom: 80px;
  background-color: #ffffff;
  border-radius: 10px;
}
.form_block h2 {
  font-size: 24px;
  font-weight: 450;
  line-height: 30px;
  margin-bottom: 32px;
}

.form_grid {
  display: grid;
  gap: 16px;
  grid-auto-rows: 1fr;
}

.form_item {
  display: block;
  width: 100%;
  height: 64px;
  padding: 20px;
  border: 1px solid #e6e6e6;
  border-radius: 6px;
  font-size: 15px;
}
.form_item::placeholder {
  color: #181818;
  font-weight: 400;
}

.form_item input:focus {
  border-color: rgba(0, 0, 0, 0.25);
}
.submit_button {
  text-align: center;
}

.submit_button button,
.submit_button a {
  outline: none;
  border: none;
  width: 100%;
  display: flex;
  padding: 20px 0;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
  text-decoration: none;
  background-color: #79001d;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 24px;
}

@media (max-width: 1024px) {
  .form_block {
    margin: 0 auto 32px auto;
    padding: 24px;
  }
}

@media (max-width: 768px) {
  .form_block {
    /*width: 90dvw;*/
  }
  .form_block h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 24px;
  }
}
@media (max-width: 560px) {
  .form_block {
    width: 90dvw;
  }
}

.app_download_links {
  margin-right: 30px;
}
.app_download_links h5 {
  color: #fff;
  font-size: 24px;
  font-weight: 450;
  line-height: 30px; /* 125% */
  margin-bottom: 12px;
}
.app_download_links p {
  color: #fff;
  font-size: 14px;
  font-style: normal;
  font-weight: 450;
  line-height: 20px; /* 142.857% */
  margin-bottom: 32px;
}
.app_download_links p span:first-child {
  opacity: 0.4;
  margin-right: 4px;
}
.app_download_links ul {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: minmax(min-content, max-content);
  grid-gap: 12px;
}
.app_download_links ul li {
  /*display: block;*/
}
.app_download_links ul li a {
  display: block;
}

@media (max-width: 1024px) {
  .app_download_links {
    margin-bottom: -44px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    justify-items: center;
    justify-content: center;
    text-align: center;
  }
  .app_download_links ul {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
  }
  .app_download_links p {
    font-size: 14px;
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 768px) {
  .app_download_links ul {
    flex-wrap: wrap;
  }
  .app_download_links h5 {
    font-size: 18px;
    line-height: 24px; /* 125% */
  }
}
/* About bonds */
.about_bond {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto 40px auto;
}
.about_bond article {
  display: grid;
  gap: 40px;
  width: 40%;
}
.about_bond article h2 {
  color: #181818;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 56px;
  letter-spacing: -0.96px;
}
.about_bond article p {
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
}
.about_bond article a {
  width: max-content;
  display: flex;
  padding: 20px 48px;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
  text-decoration: none;
  background-color: #79001d;
  border-radius: 6px;
}
.about_bond > div {
  width: 40%;
  height: 463px;
  border-radius: 10px;
  overflow: hidden;
}
.about_bond > div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1024px) {
  .about_bond {
    flex-direction: column;
    /*justify-content: space-between;*/
    align-items: center;
    gap: 32px;
  }
  .about_bond article {
    display: grid;
    gap: 40px;
    width: 100%;
  }

  .about_bond > div {
    width: 100%;
    height: 420px;
    border-radius: 10px;
    overflow: hidden;
  }
}
@media (max-width: 768px) {
  .about_bond {
    margin: 0 auto 40px auto;
  }
}
@media (max-width: 560px) {
  .about_bond article h2 {
    font-size: 32px;
    line-height: 32px;
  }
  .about_bond article p {
    font-size: 18px;
    line-height: 22px;
  }
  .about_bond > div {
    height: 320px;

  }
}

/* Feature Cards */
.features {
  max-width: 1200px;
  margin: 50px auto 80px auto;
}
.feature_cards ul {
  list-style: none;
  display: grid;
  /*grid-template-columns: repeat(4, 1fr);*/
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-auto-rows: 1fr;
  grid-gap: 20px;
}
.feature_cards ul li {
  display: grid;
  justify-items: center;
  gap: 24px;
  padding: 40px;
  background-color: #fafafa;
  border-radius: 10px;
}
.feature_cards ul li i {
  width: 50px;
  height: 50px;
}
.feature_cards ul li i img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.feature_cards ul li h5 {
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  text-align: center;
}

@media (max-width: 1250px) {
}

@media (max-width: 1024px) {
  .feature_cards ul {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .features {
    margin: 40px auto;
  }
  .feature_cards ul {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 16px;
  }
}
@media (max-width: 560px) {
  .feature_cards ul {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature_cards ul li {
    gap: 18px;
    padding: 24px;
  }
  .feature_cards ul li i {
    width: 40px;
    height: 40px;
  }
  .feature_cards ul li h5 {
    font-size: 18px;
    line-height: 24px;
  }
}
@media (max-width: 390px) {
  .feature_cards ul {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* Advantage Cards */
.advantages {
  max-width: 1200px;
  margin: 0 auto 146px auto;
}
.advantages h2 {
  color: #181818;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 56px;
  letter-spacing: -0.96px;
  margin-bottom: 64px;
  text-align: center;
}
.advantage_cards ul {
  grid-template-columns: repeat(3, 1fr);
}
.advantage_cards ul li {
  background-color: #79001d;
}
.advantage_cards ul li h5 {
  color: #fff;
}

@media (max-width: 1024px) {
    .advantage_cards ul {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 16px;
    }
}
@media (max-width: 768px) {

}
@media (max-width: 560px) {
  .advantages h2 {
    font-size: 32px;
    line-height: 32px;
  }
  .advantages p {
    font-size: 18px;
    line-height: 22px;
  }
}

/* Finca */
.finca {
  background-color: #f5f6f7;
  padding: 80px 0;
  margin: 0 auto 80px auto;
}
.finca_inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}

.finca_inner h2 {
  color: #181818;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 56px;
  letter-spacing: -0.96px;
  width: 40%;
}
.finca_inner > div {
  width: 40%;
  display: grid;
  gap: 40px;
}
.finca_img_container {
  width: 219px;
  height: 70px;
}
.finca_img_container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.finca_inner article p {
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
}
.finca_inner > div > a {
  width: max-content;
  display: flex;
  padding: 20px 48px;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
  text-decoration: none;
  background-color: #79001d;
  border-radius: 6px;
}

@media screen and (max-width: 768px) {
  .finca {
    margin: 0 auto 40px auto;
  }
  .finca_inner {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .finca_inner > div {
    width: 100%;
    gap: 24px;
  }
  .finca_inner h2 {
    font-size: 32px;
    line-height: 56px;
    width: 100%;
    margin-bottom: 16px;
  }
}

/**************/

.app_block {
  padding: 96px 0 0px;
}
.app_block > div {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 50px;
}

.app_links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: minmax(min-content, max-content);
  grid-gap: 12px;
  width: 250px;
  font-size: 0;
}
.app_links a {
  display: block;
}

.faq_wrapper {
  /*padding: 0 0 80px;*/
  margin: 0 auto 80px auto;
}
.faq_wrapper > div {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 50px;
}
.faq_wrapper h2 {
  margin-bottom: 64px;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.42;
  color: #181818;
  text-align: center;
}

.faq_accordion {
  max-width: 800px;
  margin: 0 auto;
}
.faq_accordion article {
  margin: 0 0 16px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 30px 0 rgba(14, 18, 35, 0.05);
}
.faq_accordion article.show_me h3 a {
  /*color: #79001D;*/
}
.faq_accordion article.show_me h3 a::before {
  /*background-image: url(../img/faq_pt_orange.svg);*/
  transform: rotate(180deg);
}
.faq_accordion h3 a {
  display: block;
  width: 100%;
  padding: 32px;
  font-size: 18px;
  line-height: 1.44;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: #181818;
  text-decoration: none;
  position: relative;
  transition: 0.2s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.faq_accordion h3 a::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-image: url(../img/faq_pt.svg);
  position: absolute;
  right: 32px;
  top: calc(50% - 12px);
  transition: 0.2s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.faq_accordion .inner {
  height: 0;
  padding: 0 32px;
  font-size: 14px;
  line-height: 1.57;
  color: #78808a;
  overflow: hidden;
  transition: height 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.faq_accordion .inner div {
  padding: 16px 0 32px 0;
  border-top: 1px solid #e4e4e4;
}
.faq_accordion .inner p {
  padding: 0 0 20px;
}
.faq_accordion .inner p:first-child {
  padding-top: 0;
}

/* Landing 2 FAQ Accordion - Unique styles to avoid conflicts */
.landing2_faq_accordion {
  max-width: 800px;
  margin: 0 auto;
}
.landing2_faq_item {
  -webkit-user-drag: none; /* For WebKit browsers (Chrome, Safari, etc.) */
  user-select: none;
  margin: 0 0 16px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 30px 0 rgba(14, 18, 35, 0.05);
}
.landing2_faq_item.landing2_faq_active h3 a::before {
  transform: rotate(180deg);
}
.landing2_faq_item h3 a {
  display: block;
  width: 100%;
  padding: 32px;
  font-size: 18px;
  line-height: 1.44;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: #181818;
  text-decoration: none;
  position: relative;
  transition: 0.2s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.landing2_faq_item h3 a::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-image: url(../img/faq_pt.svg);
  position: absolute;
  right: 32px;
  top: calc(50% - 12px);
  transition: 0.2s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.landing2_faq_content {
  height: 0;
  padding: 0 32px;
  font-size: 14px;
  line-height: 1.57;
  color: #78808a;
  overflow: hidden;
  transition: height 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.landing2_faq_content_inner {
  padding: 16px 0 32px 0;
  border-top: 1px solid #e4e4e4;
}
.landing2_faq_content p {
  padding: 0 0 20px;
}
.landing2_faq_content p:first-child {
  padding-top: 0;
}
.landing2_faq_trigger span {
  display: inline-block;
  width: 85%;
}

@media (max-width: 1024px) {

}

@media (max-width: 768px) {
  .faq_wrapper {
    margin: 0 auto 40px auto;
  }
  .faq_wrapper > div {
    padding: 0;
  }

}
@media (max-width: 560px) {
  .landing2_faq_item {
    margin: 0 0 16px;
  }
  .landing2_faq_item h3 a {
    padding: 20px;
  }
}

/* Footer */
.main_footer {
  padding: 40px 0 50px 0;
  background-color: #181818;
}
.main_footer > div {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
}
.main_footer .logo a {
  background-image: url(../img/logo_white.png);
}
.main_footer .r_side {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
}

/* .footer_contacts {
  padding: 40px 0 0;
  list-style: none;
}
.footer_contacts li {
  margin: 0 0 20px;
  padding: 0 0 0 28px;
  font-size: 12px;
  line-height: 1.5;
  color: #fff;
  background-repeat: no-repeat;
  background-position: 0 50%;
}
 */
.footer_contacts {
  list-style: none;
  padding: 40px 0 0;
}
.footer_contacts li:last-child {
  margin: 0;
}
.footer_contacts li.phone {
  background-image: url(../img/phone_white_icon.svg);
}
.footer_contacts li.email {
  background-image: url(../img/email_white_icon.svg);
}
.footer_contacts li.location {
  background-image: url(../img/location_white_icon.svg);
}

.footer_contacts li {
  position: relative;
  margin: 0 0 20px;
  padding: 0 0 0 32px;
  font-size: 12px;
  line-height: 1.5;
  color: #fff;
  background-repeat: no-repeat;
  background-position: 0 50%;
}
.footer_contacts li a {
  display: block;
  color: currentColor;
  text-decoration: none;
}
.footer_contacts li a:hover {
  text-decoration: underline;
}

.social_icons {
  padding: 0 0 24px;
  font-size: 0;
  text-align: right;
}
.social_icons a {
  display: inline-block !important;
  width: 40px;
  height: 40px;
  margin: 0 0 0 12px;
  background-color: rgba(255, 255, 255, 0.1);
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 20px;
  border-radius: 50%;
  transition: 0.2s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.social_icons a:hover {
  background-color: rgba(0, 0, 0, 0.25);
}
.social_icons a:first-child {
  margin: 0;
}
.social_icons a.facebook {
  background-image: url(../img/facebook_icon_new.svg?v=2);
}
.social_icons a.instagram {
  background-image: url(../img/instagram_icon_new.svg?v=2);
}
.social_icons a.linkedin {
  background-image: url(../img/linkedin_icon_new.svg?v=2);
}
.social_icons a.telegram {
  background-image: url(../img/telegram_icon_new.svg?v=2);
}

.up_link {
  display: block;
  width: 60px;
  height: 60px;
  position: fixed;
  right: 18px;
  bottom: 20px;
  background-color: #000;
  background-repeat: no-repeat;
  background-position: 50%;
  background-image: url(/site/templates/img/up_white_icon.svg);
  border-radius: 50%;
  z-index: 2;
  -webkit-box-shadow:
    0 11px 18px rgba(113, 0, 29, 0.13),
    0px 2.2px 2.925px rgba(113, 0, 29, 0.065);
  box-shadow:
    0 11px 18px rgba(113, 0, 29, 0.13),
    0px 2.2px 2.925px rgba(113, 0, 29, 0.065);
}

.success_block {
  display: none;
  padding: 90px 60px;
  text-align: center;
}

.success_block .icon {
  height: 105px;
}

.success_block .icon span {
  display: inline-block;
  width: 90px;
  height: 90px;
  background-color: #26ab5f;
  background-repeat: no-repeat;
  background-position: 50%;
  background-image: url(../img/success_white_icon.svg);
  border-radius: 50%;
}

.success_block .icon.another span {
  background-color: #79001d;
  background-image: url(../img/logo_white.png);
  background-size: contain;
}

.success_block h3 {
  padding: 0 0 8px;
  font-weight: bold;
  font-size: 32px;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.02em;
  color: #000;
}

.success_block p {
  padding: 0 0 48px;
  font-size: 18px;
  line-height: 1.78;
  text-align: center;
  color: #26262e;
}

.success_block .link a {
  display: inline-block;
  width: 100%;
  max-width: 430px;
  height: 64px;
  padding: 0 20px;
  font-size: 17px;
  line-height: 64px;
  text-align: center;
  letter-spacing: 0.02em;
  color: #fff;
  text-decoration: none;
  background-color: #000;
  border-radius: 6px;
  -webkit-animation-duration: 0.15s;
  -webkit-transition: all 0.15s linear;
  -moz-animation-duration: 0.15s;
  -moz-transition: all 0.15s linear;
  animation-duration: 0.15s;
  transition: all 0.15s linear;
}

/*.success_block .link a:hover {*/
/*    opacity: 0.9;*/
/*}*/

.bond_sides .success_block .link a {
  background-color: #79001d;
  border-radius: 12px;
}

.bond_sides .success_block h3 {
  color: #79001d;
}

.submit_preloader {
  position: relative;
  color: rgba(255, 255, 255, 0) !important;
}
.submit_preloader::before {
  content: "";
  width: 25px;
  height: 25px;
  position: absolute;
  border-radius: 50%;
  border-width: 5px;
  border-style: solid;
  border-color: #fff transparent #fff transparent;
  animation-name: example;
  animation-duration: 1.6s;
  animation-iteration-count: infinite;
  top: calc(50% - 17px);
  left: calc(50% - 17px);
}
@keyframes example {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@media (min-width: 240px) and (max-width: 768px) {
  .app_block .link_mobile {
    display: inline-block;
    padding: 12px 40px;
    font-size: 16px;
    line-height: 1.5;
    color: #fff;
    text-decoration: none;
    background-color: #79001d;
  }
  .app_block .link_mobile a {
    text-decoration: none;
    color: #fff;
  }

  .app_block {
    padding: 24px 0 0px;
  }
  .app_block > div {
    padding: 0 20px;
  }

  .form_block {
    padding: 20px;
  }
  .form_item {
    width: 100%;
  }
  .info_wrapper {
    padding: 0 0 40px;
  }
  .info_wrapper > div {
    padding: 0 20px;
  }
  .info_four {
    grid-template-columns: 1fr 1fr;
    grid-gap: 12px;
  }

  .faq_wrapper {
    padding: 0;
  }
  .faq_wrapper h2 {
    padding: 0;
    margin-bottom: 32px;
  }
  .main_footer {
    padding: 30px 0;
  }
  .main_footer > div {
    flex-wrap: wrap;
    padding: 0 20px;
  }
  .main_footer .l_side {
    width: 100%;
    padding: 0 0 48px;
  }
  .main_footer .r_side {
    width: 100%;
    align-items: center;
  }
}

.grecaptcha-badge {
  display: none !important;
}

.alert {
  border-color: #f00 !important;
}

/* Social Media Bar */

.smart_icons {
  position: fixed;
  right: 18px;
  bottom: 92px;
}
.smart_icons.show_me ul {
  opacity: 1;
  visibility: visible;
}
.smart_icons.show_me li {
  padding: 0 0 16px;
}
.smart_icons.show_me a.call::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #2371F3;
  background-repeat: no-repeat;
  background-position: 50%;
  background-image: url(../img/close_white_icon.svg) !important;
  background-size: 50% !important;
  position: relative;
  border-radius: 50%;
}
.smart_icons.show_me span {
  display: none;
}
.smart_icons.no_chat {
  bottom: 94px;
}
.smart_icons a.call {
  display: block;
  width: 60px;
  height: 60px;
  background-size: 100%;
  /*background-size: 60px 60px !important;
  background-position: 50% !important;*/
  background-repeat: no-repeat;
  position: relative;
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.2);
  border-radius: 50%;
}
.smart_icons ul {
  width: 60px;
  position: absolute;
  left: 0;
  bottom: 80px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translate(0, 20px);
  transform: translate(0, 20px);
  -webkit-animation-duration: 0.2s;
  -webkit-transition: all 0.2s linear;
  -moz-animation-duration: 0.2s;
  -moz-transition: all 0.2s linear;
  animation-duration: 0.2s;
  transition: all 0.2s linear;
}
.smart_icons li {
  list-style: none;
  padding: 0 0 5px;
  -webkit-animation-duration: 0.2s;
  -webkit-transition: all 0.2s linear;
  -moz-animation-duration: 0.2s;
  -moz-transition: all 0.2s linear;
  animation-duration: 0.2s;
  transition: all 0.2s linear;
}
.smart_icons li a {
  display: block;
  width: 60px;
  height: 60px;
  background-size: 60px 60px;
  background-position: 50%;
  background-repeat: no-repeat;
  position: relative;
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.3);
  border-radius: 50%;
}
.smart_icons li a.messenger {
  background-image: url(../img/messenger_fill_icon.svg);
}
.smart_icons li a.telegram {
  background-image: url(../img/telegram_fill_icon.svg);
}
.smart_icons li a.phone {
  background-image: url(../img/phone_fill_icon.svg?v=2);
}
.smart_icons li a.whatsapp {
  background-image: url(../img/whatsapp_fill_icon.svg);
}
.smart_icons li a:hover {
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.4);
}
.smart_icons span {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-size: 60px 60px;
  background-position: 50%;
  background-repeat: no-repeat;
}
.smart_icons span.messenger {
  background-image: url(../img/messenger_fill_icon.svg);
  -webkit-animation: migi_a 8s infinite linear;
  animation: migi_a 8s infinite linear;
}
.smart_icons span.telegram {
  background-image: url(../img/telegram_fill_icon.svg);
  -webkit-animation: migi_b 8s infinite linear;
  animation: migi_b 8s infinite linear;
}
.smart_icons span.whatsapp {
  background-image: url(../img/whatsapp_fill_icon.svg);
  -webkit-animation: migi_c 8s infinite linear;
  animation: migi_c 8s infinite linear;
}

.up_link {
  display: block;
  width: 60px;
  height: 60px;
  position: fixed;
  right: 18px;
  bottom: 20px;
  background-color: #000;
  background-repeat: no-repeat;
  background-position: 50%;
  background-image: url(../img/up_white_icon.svg);
  border-radius: 50%;
  z-index: 2;
  -webkit-box-shadow: 0px 11px 18px rgba(113, 0, 29, 0.13), 0px 2.2px 2.925px rgba(113, 0, 29, 0.065);
  box-shadow: 0px 11px 18px rgba(113, 0, 29, 0.13), 0px 2.2px 2.925px rgba(113, 0, 29, 0.065);
}

@media screen and (max-width: 479px) {
  .smart_icons {
    bottom: 94px;
  }
  .up_link {
    width: 50px;
    height: 50px;
    right: 14px;
    bottom: 14px;
  }
  .smart_icons {
    right: 14px;
    bottom: 72px;
  }
  .smart_icons.show_me li {
    padding: 0 0 8px;
  }
  .smart_icons ul {
    bottom: 70px;
  }
  .smart_icons a.call {
    width: 50px;
    height: 50px;
  }
  .smart_icons li {
    padding: 0 0 2px;
  }
  .smart_icons li a {
    width: 50px;
    height: 50px;
    background-size: 50px 50px;
  }
  .smart_icons span {
    background-size: 50px 50px;
  }
}