@charset "UTF-8";
/* animations */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
    color: #322c31;
  }
}
html {
  width: 100vw;
  height: 100vh;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: "Poppins", sans-serif;
}

a {
  text-decoration: none;
  color: #e23832;
}
a.button {
  background-color: #e23832;
  color: #fff;
  padding: 0.3em 1.3em;
  border-radius: 0.3em;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  flex-direction: row;
}
a.button i {
  margin-left: 1em;
  transition: 0.3s;
  font-size: 0.9em;
}
a.button:hover {
  background-color: rgba(226, 56, 50, 0.9);
  color: #fff;
}
a.button:hover i {
  transform: translateX(4px);
}
a.button.secondary {
  background-color: #575267;
}
a.button.secondary:hover {
  background-color: rgba(87, 82, 103, 0.9);
  color: #fff;
}
a.button.clear {
  background: transparent;
  color: #e23832;
}
a.button.clear:hover {
  background: transparent;
}
a.button.clear.secondary {
  color: #575267;
}

h1 {
  font-weight: 800;
  font-size: 2.6rem;
  color: #575267;
  margin-bottom: 1em;
}

h2,
strong.title {
  font-weight: 800;
  font-size: 1.6rem;
}

.subtitle {
  color: #e23832;
  font-weight: 500;
  font-size: 1.1em;
  display: block;
}

.undertitle {
  color: #575267;
  font-weight: 600;
  font-size: 1.3em;
  display: block;
}

.texttitle {
  font-size: 0.9em;
  color: #575267;
  margin: 0.4em 0;
  max-width: 80%;
}
.texttitle p {
  margin: 0;
}

/* width */
::-webkit-scrollbar {
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #eee;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #575267;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: #e23832;
}

@media all and (max-width: 1200px) {
  .container {
    padding: 1em 2em;
  }
}

/* Header */
header {
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  height: 15vh;
}
@media all and (max-width: 1400px) {
  header {
    height: 12vh;
  }
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-top: 2em;
  padding-bottom: 2em;
  box-sizing: border-box;
}
header .container .logo img {
  width: 10em;
}
@media all and (max-width: 700px) {
  header .container .logo img {
    width: 5em;
  }
}
header .container .navigation {
  justify-self: flex-end;
  position: relative;
}
header .container .navigation .lang {
  float: right;
  margin-left: 3em;
}
header .container .navigation .lang ul {
  list-style: none;
  display: flex;
  flex-direction: row;
}
header .container .navigation .lang ul li {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5em;
  height: 1.5em;
  margin-left: 0.5em;
  border-radius: 0.3em;
  cursor: pointer;
}
header .container .navigation .lang ul li a {
  color: #fff;
  font-weight: 600;
  font-size: 0.8em;
  text-transform: uppercase;
}
header .container .navigation .lang ul li.current-lang {
  background-color: #fff;
}
header .container .navigation .lang ul li.current-lang a {
  color: #322c31;
}
header .container .navigation .socials {
  float: right;
  position: absolute;
  right: 0;
  top: -2.5em;
}
header .container .navigation ul.menu {
  list-style: none;
  padding: 0;
  text-align: right;
}
header .container .navigation ul.menu li {
  display: inline-block;
  margin: 0 1em;
}
header .container .navigation ul.menu li a {
  font-weight: 500;
  color: #575267;
  font-size: 0.95em;
  transition: 0.3s;
}
header .container .navigation ul.menu li a:hover {
  color: #e23832;
}
@media all and (max-width: 1400px) {
  header .container .navigation ul.menu li {
    margin: 0 1em;
  }
  header .container .navigation ul.menu li a {
    font-size: 0.9em;
  }
}
@media all and (max-width: 768px) {
  header .container .navigation ul.menu li a {
    font-size: 1.2em;
  }
}
header .container .navigation ul.menu li.current-menu-item a {
  color: #e23832;
}
header .container .navigation ul.menu li.button {
  background-color: #e23832;
  padding: 0.1em 0.5em;
  border-radius: 0.3em;
  transition: 0.3s;
}
header .container .navigation ul.menu li.button a {
  color: #fff;
}
header .container .navigation ul.menu li.button:hover {
  background-color: #575267;
}
header .container .navigation ul.menu li:last-child {
  margin-right: 0;
}

/* background */
#main {
  min-height: 70vh;
  position: relative;
  width: 100vw;
  overflow: hidden;
}
#main .bg {
  position: absolute;
  z-index: 0;
  width: 90%;
  border-top-right-radius: 5em;
  background-color: #fafafa;
  height: 70vh;
  max-height: 40em;
}
@media all and (max-width: 1450px) {
  #main .bg {
    width: 91%;
  }
}
@media all and (max-width: 1200px) {
  #main .bg {
    height: 40vh;
    width: 92vw;
  }
}
@media all and (max-width: 500px) {
  #main .bg {
    width: 94vw;
  }
}
#main.page .bg {
  height: 100%;
  max-height: none;
}
#main.home .bg {
  background-color: #fff7e9;
}
#main.blog .bg {
  background-color: #7bb9b3;
}
#main.pricing .bg {
  background-color: #fff7e9;
}
#main .container {
  position: relative;
  z-index: 1;
  padding-top: 2em;
  padding-bottom: 2em;
}

/* footer */
#start {
  background-color: #fafafa;
}
#start .row > div {
  padding-top: 4em;
  padding-bottom: 4em;
}
#start .row > div a {
  display: inline-block;
  margin-top: 2em;
}
#start .row .col-md-6 strong {
  font-size: 1.5em;
  color: #575267;
}
#start .row .col-md-6 p {
  font-size: 0.9em;
  width: 80%;
  margin: 2em 0;
}
#start .row .footer_bloc {
  border-left: solid 1px #eee;
  padding-top: 8em;
  padding-bottom: 4em;
}
#start .row .footer_bloc a i {
  margin-left: 10px;
  font-size: 1em;
}
#start .row .footer_bloc p {
  font-size: 0.9em;
  width: 80%;
}
#start .row .footer_bloc span {
  color: #e23832;
  font-weight: 500;
  position: relative;
}
#start .row .footer_bloc span:before {
  content: "";
  display: block;
  height: 2em;
  width: 2px;
  background-color: #e23832;
  position: absolute;
  left: -14px;
  top: 0;
}
@media all and (max-width: 768px) {
  #start .row .footer_bloc {
    border: none;
    border-top: solid 1px #eee;
    padding: 2em;
  }
  #start .row .footer_bloc span::before {
    width: 2em;
    height: 2px;
    left: 0;
    top: -34px;
  }
  #start .row .footer_bloc strong {
    display: block;
  }
}

footer {
  background: #322c31;
  color: #fff;
  padding: 2em;
  box-sizing: border-box;
  height: 18vh;
}
footer .container .row {
  align-items: center;
}
footer .container .row .center {
  text-align: center;
}
footer .container .row .center img {
  max-width: 8em;
}
footer .container .row .right {
  text-align: right;
}
footer .container .row .right .nav_menu ul {
  list-style: none;
}
footer .container .row .right .nav_menu ul li {
  display: inline-block;
  margin-left: 1em;
  padding-left: 1em;
}
footer .container .row .right .nav_menu ul li:first-child {
  border: none;
}
footer .container .row .right .nav_menu ul li a {
  color: #fff;
  font-size: 0.8em;
  letter-spacing: 0.4px;
}
footer .container .row .right .nav_menu ul li span {
  color: #fff;
  letter-spacing: 0.4px;
  font-size: 0.7rem;
}
@media all and (max-width: 768px) {
  footer {
    height: auto;
  }
  footer .row {
    text-align: center;
  }
  footer .row img {
    width: 6em;
    -o-object-fit: contain;
       object-fit: contain;
    margin: 1em 0;
  }
  footer .row .right {
    border-top: solid 1px rgba(255, 255, 255, 0.3);
    margin-top: 1em;
    padding-top: 1em;
    text-align: center !important;
  }
  footer .row .right ul {
    padding: 0;
  }
  footer .row .right ul li {
    width: 60%;
    display: block !important;
    border-left: none !important;
    border-top: solid 2px rgba(255, 255, 255, 0.1);
    margin: 0.5em 20% !important;
    padding: 0.5em 0 !important;
  }
  footer .row .right ul li:first-child {
    border-top: none !important;
  }
}

/* contact form */
#contact_form {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  background: rgba(50, 44, 49, 0.96);
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5em;
  box-sizing: border-box;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-1em);
}
#contact_form.show {
  z-index: 3;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#contact_form .container {
  width: 900px;
  max-width: 90%;
  position: relative;
  padding: 0;
}
#contact_form .container #close_contact_form {
  position: absolute;
  color: #fff;
  top: 0;
  right: 0.5em;
  cursor: pointer;
}
#contact_form .content {
  text-align: center;
}
#contact_form .content img {
  width: 5em;
  height: auto;
  margin-bottom: 2em;
}
#contact_form .content p,
#contact_form .content span,
#contact_form .content strong,
#contact_form .content a {
  color: #fff;
}
#contact_form .content span {
  display: block;
  margin: 3em 0 0.4em 0;
}
#contact_form .content form .nf-form-fields-required {
  display: none;
}
#contact_form .content form input,
#contact_form .content form textarea {
  padding: 0.5em;
  border-radius: 0.4em;
  border: none;
}
#contact_form .content form .listcheckbox-container {
  background: #fff;
  border-radius: 0.4em;
}
#contact_form .content form .listcheckbox-container ul,
#contact_form .content form .listcheckbox-container li {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 !important;
  height: 100%;
}
#contact_form .content form .submit-wrap .nf-field-element {
  text-align: right;
}
#contact_form .content form .submit-wrap .nf-field-element input {
  border: solid 2px #fff;
  color: #fff;
  background: transparent;
  padding: 0.3em 1em;
  transition: 0.3s;
}
#contact_form .content form .submit-wrap .nf-field-element input:hover {
  background: #fff;
  color: #322c31;
}
@media all and (max-width: 768px) {
  #contact_form {
    overflow: auto;
    padding: 5em 2em;
  }
  #contact_form .container {
    height: 100%;
    max-width: 100%;
  }
}

/* menu */
#toggleNav,
#close_menu {
  display: none;
}

@media all and (max-width: 991px) {
  header {
    z-index: 3;
  }
  header .container {
    align-items: center;
  }
  header .container #toggleNav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  header .container #toggleNav .try_header_button {
    margin-right: 15px;
    padding: 3px 10px;
    font-size: 0.8em;
  }
  header .container #toggleNav .toggle {
    display: flex;
    flex-direction: row;
  }
  header .container #toggleNav .toggle span {
    display: block;
    width: 0.3em;
    height: 0.3em;
    background: #575267;
    margin: 0 0.3em;
    border-radius: 1em;
  }
  header .container .navigation {
    display: flex;
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    background: #322c31;
    flex-direction: column;
    padding: 2em;
    box-sizing: border-box;
    text-align: right;
    align-items: flex-end;
    visibility: hidden;
    opacity: 0;
    transform: translateX(2em);
    transition: 0.3s;
    z-index: -1;
  }
  header .container .navigation #close_menu {
    display: block;
    margin-bottom: 2em;
    color: #fff;
    cursor: pointer;
  }
  header .container .navigation .socials {
    position: relative;
    top: 0;
    margin-bottom: 2em;
  }
  header .container .navigation ul.menu li {
    display: block;
    margin: 2em 0;
    text-align: right;
  }
  header .container .navigation ul.menu li a {
    color: #fff7e9;
  }
  header .container .navigation.show {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
    z-index: 99999;
  }
}
/* socials icons */
.socials {
  margin-bottom: 0.3em;
}
.socials a {
  color: #fff;
  margin-right: 0.8em;
  cursor: pointer;
  font-size: 1.2em;
}

/* pages */
#page {
  padding: 3em 0;
}

/* sliders */
.swiper-container {
  position: relative;
}
.swiper-container .swiper-slide {
  height: 10em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.swiper-container .swiper-slide img {
  width: 6em;
  height: 6em;
  -o-object-fit: contain;
     object-fit: contain;
}

/* 404 */
#lost {
  height: 66vh;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
#lost strong {
  font-size: 6em;
  font-weight: 800;
  background: linear-gradient(156deg, rgb(1, 1, 17) 0%, rgb(5, 17, 52) 100%);
  -webkit-background-clip: text;
  margin-bottom: 0;
  -webkit-text-fill-color: transparent;
}
#lost span {
  background: linear-gradient(156deg, rgb(1, 1, 17) 0%, rgb(5, 17, 52) 100%);
  -webkit-background-clip: text;
  font-weight: 500;
  font-size: 2rem;
}

/* cookie banner */
.cky-consent-bar {
  box-shadow: none !important;
  border: none !important;
  background: linear-gradient(156deg, rgb(1, 1, 17) 0%, rgb(5, 17, 52) 100%) !important;
}

/** orveride bootstrap **/
@media all and (max-width: 1400px) {
  .container {
    max-width: 1050px;
  }
}

@media all and (min-width: 2000px) {
  #main.home {
    min-height: 60vh !important;
  }
}
#main.home .bg {
  height: 30em;
}
@media all and (min-width: 2000px) {
  #main.home .bg {
    width: 78vw;
  }
}
@media all and (max-width: 500px) {
  #main.home .bg {
    width: 92vw;
  }
}
#main.home p {
  margin: 0;
  max-width: 90%;
  font-size: 1.1em;
  color: #575267;
}
@media all and (max-width: 500px) {
  #main.home p {
    font-size: 1em;
  }
}
#main.home h1.title {
  display: flex;
  flex-direction: column;
  line-height: 1.4em;
  font-size: 3em;
  margin-top: 1.5em;
  margin-bottom: 0.3em;
}
#main.home h1.title span {
  color: #575267;
}
#main.home h1.title strong {
  color: #e23832;
}
@media all and (max-width: 1200px) {
  #main.home h1.title {
    font-size: 2.5em;
  }
}
@media all and (max-width: 768px) {
  #main.home h1.title {
    font-size: 1.8em;
  }
}
@media all and (max-width: 500px) {
  #main.home h1.title {
    font-size: 1.65em;
  }
}
#main.home .sample {
  position: relative;
}
#main.home .sample .phone {
  width: 300px;
  height: 550px;
  border: solid 10px #fff;
  background-color: #fff;
  border-radius: 3em;
  left: -65px;
  top: 15px;
  box-shadow: 5px 14px 38px -17px rgba(0, 0, 0, 0.1);
  position: absolute;
  margin-top: 4em;
  z-index: 2;
  overflow: hidden;
}
#main.home .sample .phone:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: transparent;
  z-index: 2;
  border-radius: 2.4em;
  box-shadow: inset 0px 0px 10px -5px rgba(0, 0, 0, 0.2);
}
#main.home .sample .phone img {
  position: relative;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#main.home .sample .desktop {
  width: 900px;
  height: 500px;
  border-radius: 1em;
  box-shadow: 5px 14px 38px -17px rgba(0, 0, 0, 0.1);
  position: absolute;
  z-index: 1;
  margin-left: 150px;
}
#main.home .sample .desktop img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media all and (max-width: 768px) {
  #main.home .sample {
    display: none;
    height: 300px;
  }
  #main.home .sample .phone {
    width: 150px;
    border-radius: 20px;
    height: 300px;
    border: solid 5px #fff;
  }
  #main.home .sample .phone:before {
    border-radius: 20px;
  }
  #main.home .sample .desktop {
    width: 400px;
    height: 230px;
  }
}
#main.home .pres {
  display: none;
}
@media all and (max-width: 768px) {
  #main.home .pres {
    display: block;
    width: 90%;
    margin: 5%;
  }
}
#main.home .start .line {
  height: 80px;
  background-color: #e23832;
  margin-top: -2em;
  margin-bottom: 2em;
  width: 63%;
  margin-left: -3%;
  padding-left: 4%;
  font-size: 1.6em;
  font-weight: bold;
  color: #fff;
  display: flex;
  align-items: center;
}
@media all and (max-width: 768px) {
  #main.home .start .line {
    width: 90%;
  }
}
@media all and (max-width: 500px) {
  #main.home .start .line {
    width: 100%;
    font-size: 1.3em;
  }
}
#main.home .start .action {
  margin-top: 5em;
}
#main.home .start .action a.link {
  color: #575267;
}
#main.home .start .action a.button {
  margin-right: 1em;
}
@media all and (max-width: 500px) {
  #main.home .start .action .col-md-7 {
    text-align: center;
  }
  #main.home .start .action .col-md-7 .button {
    margin-bottom: 1em;
    margin-right: 0;
  }
  #main.home .start .action .col-md-7 .link {
    display: block;
  }
}

#features {
  padding: 8em 0 4em 0;
}
@media all and (min-width: 2000px) {
  #features {
    padding: 0em 0 4em 0;
  }
}
@media all and (max-width: 1200px) {
  #features {
    padding: 0em 0 4em 0;
  }
}
#features .container {
  position: relative;
  z-index: 2;
}
#features .container h3 {
  font-size: 1.2em;
}
@media all and (min-width: 1400px) {
  #features .features_desc {
    width: 58.3333333333%;
  }
}
#features .bg {
  position: relative;
  z-index: 1;
  background-color: #fafafa;
  transform: skew(0deg, -5deg);
  margin-bottom: -10em;
  margin-top: -4em;
}
#features .bg .container {
  position: relative;
  top: 6em;
  padding-bottom: 10em;
  transform: skew(0deg, 5deg);
}
#features .bg .container .features_blocks {
  display: flex;
  flex-wrap: wrap;
  margin-left: -2px;
  padding-right: 0;
  margin-right: 0;
}
@media all and (max-width: 768px) {
  #features .bg .container .features_blocks {
    padding: 0;
    margin: 0;
  }
}
#features .bg .container .feature {
  width: 19.5vw;
  height: 19.5vw;
  margin: 2px;
  background-color: #fff;
  padding: 1em;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
#features .bg .container .feature img {
  width: 50px;
  height: 50px;
  margin-bottom: 1em;
  -o-object-fit: contain;
     object-fit: contain;
}
#features .bg .container .feature.clear {
  background-color: transparent;
}
#features .bg .container .feature.clear a {
  width: 50%;
  align-items: flex-end;
}
#features .bg .container .feature.clear a i {
  margin-left: 2em;
  position: relative;
  top: -0.4em;
}
#features .bg .container .feature span {
  color: #575267;
  font-size: 1.1em;
}
@media all and (min-width: 2000px) {
  #features .bg .container .feature {
    width: 34em;
    height: 24em;
  }
}
@media all and (max-width: 1450px) {
  #features .bg .container .feature {
    width: 26vw;
    height: 20.5vw;
  }
}
@media all and (max-width: 1200px) {
  #features .bg .container .feature {
    width: 24.1vw;
    height: 24.1vw;
  }
}
@media all and (max-width: 1100px) {
  #features .bg .container .feature {
    width: 45vw;
    height: 45vw;
  }
}
@media all and (max-width: 768px) {
  #features .bg .container .feature {
    width: 44vw;
    height: 44vw;
  }
}
@media all and (max-width: 500px) {
  #features .bg .container .feature {
    width: 100%;
    height: auto;
  }
  #features .bg .container .feature span {
    font-size: 1em;
  }
}
#features .bg .container .more_blocks {
  padding-left: 0;
  margin-left: 0;
}
#features .bg .container .more_blocks .feature {
  text-align: left;
}
#features .bg .container .more_blocks .feature span {
  color: #e23832;
  font-weight: 600;
  font-size: 2.3em;
  line-height: 1.5em;
}
@media all and (max-width: 1100px) {
  #features .bg .container .more_blocks {
    padding-left: calc(var(--bs-gutter-x) / 2);
    display: flex;
  }
  #features .bg .container .more_blocks .feature {
    margin-left: 0;
  }
}
@media all and (max-width: 768px) {
  #features .bg .container .more_blocks {
    flex-direction: column;
    align-items: center;
    padding: 0;
    margin-top: 1em;
  }
  #features .bg .container .more_blocks .feature {
    margin: 0;
  }
  #features .bg .container .more_blocks .feature span {
    font-size: 1.4em;
  }
}

#mobile {
  padding: 14em 0 4em 0;
  background-color: #322c31;
  border-bottom: solid 3px #fccd87;
  min-height: 50vh;
}
@media all and (max-width: 500px) {
  #mobile {
    padding-top: 8em;
  }
}
#mobile .headline {
  color: #fff;
  font-size: 1.6em;
  font-weight: 400;
}
#mobile .headline p {
  color: #fff;
}
@media all and (max-width: 500px) {
  #mobile .headline {
    font-size: 1em;
  }
}
#mobile .app {
  height: 50vh;
  position: relative;
}
@media all and (max-width: 500px) {
  #mobile .app img {
    max-width: 100%;
  }
}
#mobile .app .cover {
  position: relative;
}
#mobile .app .devices {
  position: absolute;
  top: 35%;
  left: -20%;
  width: 70%;
  z-index: 2;
}
@media all and (max-width: 1200px) {
  #mobile .app .devices {
    top: 55%;
    width: 100%;
  }
}
@media all and (max-width: 768px) {
  #mobile .app .devices {
    width: 75%;
    left: 12.5%;
  }
}

#testimonials {
  padding: 18em 0 4em 0;
  min-height: 50vh;
  position: relative;
}
@media all and (max-width: 500px) {
  #testimonials {
    padding-top: 8em;
  }
}
#testimonials .container p br {
  display: none;
}
#testimonials .swiper {
  overflow: hidden;
  position: relative;
}
#testimonials .swiper-pagination .swiper-pagination-bullet {
  background-color: #fafafa;
  opacity: 0.2;
}
#testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #fafafa !important;
  opacity: 1;
}
#testimonials .swiper-button-prev:after,
#testimonials .swiper-button-next:after {
  font-size: 1.3em;
  color: #fff;
}
#testimonials .testimonials_blocks .view {
  width: 100%;
  padding: 2em 4em;
  box-sizing: border-box;
  background-color: #fafafa;
  border-radius: 2em;
  min-height: 60vh;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  margin-top: 3em;
}
@media all and (max-width: 1450px) {
  #testimonials .testimonials_blocks .view {
    min-height: 75vh;
  }
}
#testimonials .testimonials_blocks .view .header {
  display: flex;
  align-items: center;
}
#testimonials .testimonials_blocks .view .header .avatar {
  width: 3em;
  height: 3em;
  background-color: #fff;
  margin-right: 1em;
  border-radius: 2em;
}
#testimonials .testimonials_blocks .view .header span {
  color: #fff;
  font-weight: 600;
  font-size: 1.2em;
}
@media all and (max-width: 500px) {
  #testimonials .testimonials_blocks .view {
    padding: 2em 2.5em;
    height: 500px;
  }
}
#testimonials .testimonials_blocks .view .content {
  position: absolute;
  bottom: 2em;
  font-size: 1.15em;
  line-height: 1.6em;
  color: #fff;
  z-index: 2;
  width: 88%;
}
#testimonials .testimonials_blocks .view .content p {
  color: #fff;
}
@media all and (max-width: 768px) {
  #testimonials .testimonials_blocks .view .content {
    font-size: 0.9em;
    width: 75%;
    line-height: 1.3em;
  }
}
#testimonials .testimonials_blocks .view:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: linear-gradient(0deg, rgba(226, 56, 50, 0.8) 0%, rgba(2, 5, 15, 0) 80%);
}

.blog .bg {
  height: 50vh !important;
}
@media all and (max-width: 1200px) {
  .blog .bg {
    height: 40vh !important;
  }
}
.blog h1.title {
  line-height: 1.4em;
  font-size: 2.6em;
  margin-top: 1.5em;
  margin-bottom: 1em;
}
@media all and (max-width: 1200px) {
  .blog h1.title {
    width: 80%;
  }
}
@media all and (max-width: 768px) {
  .blog h1.title {
    font-size: 1.4em;
  }
}
.blog h1.title span {
  color: #fff;
}
.blog h1.title strong {
  color: #fff7e9;
  font-weight: 800;
}
.blog .main_article_row {
  align-items: flex-end;
}
.blog .main_article_row .article:last-child .item {
  background-color: #fff7e9;
}
.blog .other_article .article .item {
  background-color: #fff7e9;
}
.blog .other_article .article:nth-child(2n) .item {
  background-color: #fff;
}
.blog .article {
  margin: 1em 0;
}
.blog .article a {
  color: #575267;
}
.blog .article .item {
  width: 100%;
  height: 300px;
  background: #fff;
  padding: 30px;
  box-sizing: border-box;
  box-shadow: 0 0 30px -3px rgba(0, 0, 0, 0.04);
  border-radius: 0.3em;
  display: flex;
  flex-direction: column;
  transition: 0.3s;
  position: relative;
}
.blog .article .item:hover {
  box-shadow: 0 0 30px 5px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}
.blog .article .item .header {
  flex: 0.2;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.blog .article .item .header .tag {
  display: inline-block;
  background-color: #7bb9b3;
  color: #fff;
  padding: 0.1em 1em;
  border-radius: 2em;
}
.blog .article .item .header .date {
  float: right;
  flex-grow: 1;
  text-align: right;
  color: #575267;
}
.blog .article .item strong {
  flex-grow: 1;
  font-size: 1.2em;
  display: flex;
  align-items: flex-end;
  padding: 3em 0;
  width: 95%;
}
.blog .article .item .link {
  display: block;
  text-align: right;
  flex: 0.1;
  color: #7bb9b3;
  position: absolute;
  right: 30px;
  bottom: 30px;
}
.blog .article.main {
  margin-top: 4.5em;
}
.blog .article.main .item {
  height: 100%;
  background-color: #fff7e9;
}
.blog .article.main .item strong {
  font-size: 2em;
  width: 90%;
}
@media all and (max-width: 768px) {
  .blog .article.main .item strong {
    font-size: 1.4em;
  }
}

@media all and (max-width: 500px) {
  #main.contact .bg {
    height: 60vh;
  }
}
#main.contact .content {
  padding-top: 4em;
}
@media all and (max-width: 500px) {
  #main.contact .content h1 {
    font-size: 1.6em;
  }
}
#main.contact .content .text {
  height: 55vh;
  position: relative;
}
@media all and (max-width: 1200px) {
  #main.contact .content .text {
    height: auto;
    min-height: 350px;
  }
}
@media all and (max-width: 500px) {
  #main.contact .content .text {
    width: 80%;
  }
}
#main.contact .content .socials {
  position: absolute;
  bottom: 0;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  width: 100%;
  justify-content: flex-starts;
}
#main.contact .content .socials span {
  font-size: 0.9em;
  color: #575267;
  opacity: 0.6;
  margin-right: 2em;
  flex: 0.6;
}
@media all and (max-width: 1400px) {
  #main.contact .content .socials span {
    flex: 0.5;
    font-size: 0.8em;
  }
}
#main.contact .content .socials .links {
  flex: 0.3;
}
@media all and (max-width: 1450px) {
  #main.contact .content .socials .links {
    flex: 0.4;
  }
}
#main.contact .content .socials a {
  flex: 0.15;
  margin: 0 5px;
  color: #e23832;
  transition: 0.3s;
  font-size: 2em;
}
#main.contact .content .socials a:hover {
  color: #575267;
}
@media all and (max-width: 500px) {
  #main.contact .content .socials {
    flex-direction: column;
  }
}

.form {
  background: #fff;
  padding: 2em;
  box-sizing: border-box;
  border-radius: 5px;
  box-shadow: 22px 10px 60px -2px rgba(0, 0, 0, 0.1);
}
.form .nf-form-fields-required {
  display: none;
}
.form .nf-field-label {
  margin: 0;
}
.form .nf-field-label label {
  font-weight: 500;
  color: #575267;
}
.form input, .form textarea {
  padding: 5px 15px;
  border: solid 1px #EBEBEB;
  transition: 0.3s;
}
.form input:focus, .form textarea:focus {
  outline: none;
  border: solid 1px #fccd87;
}
.form input[type=submit], .form textarea[type=submit] {
  background-color: #575267;
  color: #fff;
  border: none;
  border-radius: 5px;
}

#main.page .content {
  padding-top: 4em;
}
@media all and (max-width: 500px) {
  #main.page .content h1 {
    font-size: 1.2em;
    width: 80%;
  }
}
#main.page .content .faq {
  box-shadow: 22px 10px 60px -2px rgba(0, 0, 0, 0.1);
}
#main.page .content .faq .item {
  background-color: #fff;
}
#main.page .content .faq .item .question {
  color: #575267;
  border-top: solid 2px #fafafa;
  padding: 20px 20px 15px 20px;
  box-sizing: border-box;
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  flex-direction: row;
}
#main.page .content .faq .item .question h3 {
  margin: 0;
  font-size: 1.2em;
  font-weight: 500;
  flex: 0.9;
  line-height: 1.6em;
}
@media all and (max-width: 400px) {
  #main.page .content .faq .item .question h3 {
    font-size: 1em;
  }
}
#main.page .content .faq .item .question::after {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  content: "\f078";
  display: block;
  width: 20px;
  height: 20px;
  flex: 0.1;
  text-align: right;
  transition: 0.3s;
}
#main.page .content .faq .item .answer {
  font-size: 0.9em;
  color: #3D3D3D;
  line-height: 1.5em;
  padding: 0px 20px;
  box-sizing: border-box;
  transition: 0.3s;
  visibility: hidden;
  height: 0;
  opacity: 0;
}
#main.page .content .faq .item.active .question::after {
  content: "\f077";
}
#main.page .content .faq .item.active .answer {
  padding: 15px 20px 40px 20px;
  height: auto;
  opacity: 1;
  visibility: visible;
}
#main.page .content .header_text p {
  width: 80%;
}

#main.pricing h1.title {
  line-height: 1.4em;
  font-size: 2.6em;
  margin-top: 1.5em;
  margin-bottom: 1em;
}
#main.pricing h1.title span {
  color: #575267;
}
#main.pricing h1.title strong {
  color: #e23832;
  font-weight: 800;
}
@media all and (max-width: 500px) {
  #main.pricing h1.title {
    font-size: 1.2em;
    width: 80%;
  }
}
#main.pricing .switch_duration {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  padding-bottom: 40px;
}
#main.pricing .switch_duration button {
  border: solid 3px #e23832;
  margin: 0;
  padding: 3px 15px;
  background-color: #fff7e9;
  transition: 0.3s;
  height: 40px;
  outline: none;
  position: relative;
  text-transform: uppercase;
  color: #e23832;
  display: inline-block;
}
#main.pricing .switch_duration button.active {
  color: #fff7e9;
  background-color: #e23832;
}
#main.pricing .switch_duration button:first-child {
  border-right: none;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  left: 3px;
}
#main.pricing .switch_duration button:last-child {
  border-left: none;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  right: 3px;
}
@media all and (max-width: 500px) {
  #main.pricing .switch_duration {
    justify-content: flex-start;
  }
}
#main.pricing .price_container {
  margin-bottom: 0.5em;
}
#main.pricing .price {
  background-color: #fff;
  padding: 50px 20px;
  text-align: center;
  height: 100%;
  border-radius: 15px;
  box-shadow: 22px 10px 60px -2px rgba(0, 0, 0, 0.1);
}
#main.pricing .price .title {
  font-size: 1.7em;
  font-weight: 700;
  color: #575267;
  margin-bottom: 20px;
}
#main.pricing .price .pricing {
  display: flex;
  flex-direction: column;
}
#main.pricing .price .pricing span {
  color: #e23832;
  font-size: 1.3em;
  font-weight: 600;
  display: block;
  margin: 0.2em 0;
}
#main.pricing .price .pricing span.switch {
  display: none;
}
#main.pricing .price .pricing span.switch.active {
  display: block;
}
#main.pricing .price ul {
  list-style: none;
  padding: 0;
  margin: 2em 0 1em 0;
}
#main.pricing .price ul li {
  margin: 15px 0;
  color: #3D3D3D;
}
#main.pricing .price ul li strong {
  font-size: 1.2em;
}
#main.pricing .price ul li .disabled {
  color: #EBEBEB;
}
#main.pricing .price ul li .year_bonus {
  color: #e23832;
  display: none;
}
#main.pricing .price ul li .year_bonus.active {
  display: block;
}

#main.features .content {
  padding-top: 4em;
}
@media all and (max-width: 500px) {
  #main.features .content h1 {
    font-size: 1.6em;
  }
}
#main.features .content .features .row {
  margin: 2em 0 5em 0;
  align-items: center;
}
@media all and (max-width: 1400px) {
  #main.features .content .features .row {
    margin: 2em;
  }
}
#main.features .content .features .row img {
  max-width: 400px;
  height: auto;
  border-radius: 10px;
}
#main.features .content .features .row img.big {
  max-width: 500px;
}
#main.features .content .features .row .full {
  text-align: center;
  padding: 2em 6em;
  font-size: 1.2em;
  background: #fbfbfb;
  border-radius: 10px;
}
@media all and (max-width: 1200px) {
  #main.features .content .features .row .full {
    padding: 2em 0.5em;
    font-size: 1.1em;
  }
}
#main.features .content .features .row .image {
  padding: 0;
}
#main.features .content .features .row .image.right {
  text-align: right;
}
#main.features .content .features .row .image.left {
  text-align: left;
}
#main.features .content .features .row .image.big img {
  max-width: 500px;
}
@media all and (max-width: 768px) {
  #main.features .content .features .row .image {
    text-align: center !important;
  }
  #main.features .content .features .row .image img {
    width: 70% !important;
  }
  #main.features .content .features .row .image.big img {
    width: 100% !important;
  }
}
#main.features .content .features .row .text {
  padding: 4em 6em;
}
@media all and (max-width: 1400px) {
  #main.features .content .features .row .text {
    padding: 2em 3em;
  }
}
@media all and (max-width: 1200px) {
  #main.features .content .features .row .text {
    padding: 2em 0;
  }
}
#main.features .content .features .row .text ul {
  list-style: none;
  padding: 0;
}
#main.features .content .features .row .text ul li {
  line-height: 1.4em;
  color: #3D3D3D;
  font-size: 0.95em;
  margin: 4px 0;
}
#main.features .content .features .row .text ul li:before {
  content: "✓";
  color: #a9ce7d;
  margin-right: 10px;
}
#main.features .content .features .row:nth-child(2n) {
  flex-direction: row-reverse;
}
@media all and (max-width: 500px) {
  #main.features .content .features .row {
    margin: 2em 0;
  }
}

.premium {
  background-color: #fff;
  color: #fccd87;
  border: solid 2px #fccd87;
  border-radius: 5px;
  display: inline-block;
  padding: 4px 15px;
  margin-bottom: 10px;
  font-size: 0.9em;
}

#landingPages {
  width: 100vw;
  overflow-y: auto;
  position: relative;
}
#landingPages.solo {
  background-color: #FFF;
}
#landingPages:after {
  content: "";
  display: block;
  width: 100%;
  height: 60%;
  bottom: 0;
  position: absolute;
  z-index: 1;
  background: rgb(255, 255, 255);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 40%);
}
@media all and (max-width: 768px) {
  #landingPages:after {
    height: 40%;
  }
}
#landingPages .container {
  padding: 2rem;
  max-width: 90vw;
  box-sizing: border-box;
  width: 1000px;
  position: relative;
  z-index: 2;
  text-align: center;
}
#landingPages .partner {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 0.5rem 0;
  color: #FFF;
}
#landingPages .partner img {
  margin: 1rem 0;
}
#landingPages .actions a.button {
  background-color: #FFF;
  color: #e23832;
}
#landingPages h1 {
  text-align: center;
  color: #FFF;
  margin: 0;
}
#landingPages p {
  font-size: 1.2rem;
  line-height: 2rem;
  color: #FFF;
}
#landingPages video,
#landingPages iframe {
  max-width: 80%;
  border-radius: 10px;
  margin: 4rem 0;
}
@media all and (max-width: 768px) {
  #landingPages video,
  #landingPages iframe {
    background-color: #575267;
    max-width: 100%;
    min-height: 5rem;
  }
}
#landingPages .mobile .register {
  margin: 1rem;
}

a:hover {
  color: #575267;
}

p {
  color: #3D3D3D;
  line-height: 1.7em;
}

strong {
  font-weight: 600;
}

@media all and (min-width: 2000px) {
  .container {
    max-width: 1900px !important;
  }
}/*# sourceMappingURL=main.css.map */