@import "https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&family=Rubik:wght@300;400;600&display=swap";
html,
body {
  height: 100%;
  background: #f7f7f9;
  padding-top: 6rem;
}
@media (max-width: 480px) {
  html,
  body {
    padding-top: 2rem;
  }
}
html {
  height: 100%;
}
body {
  height: 100%;
  position: relative;
  min-height: 100%;
}
body.home {
  background: #fff;
}
* {
  border: none;
  margin: 0;
  padding: 0;
}
*,
*:before,
*::after {
  box-sizing: border-box;
}
a {
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  cursor: pointer;
  display: block;
  text-decoration: none;
}
ul {
  margin: 0;
}
ul li {
  list-style-type: none;
}
img {
  display: block;
  width: 100%;
}
.overlay {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  position: fixed;
  bottom: inherit;
  height: 100%;
  left: 0;
  top: 0;
  right: inherit;
  width: 100%;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  background: rgba(38, 38, 38, 0.7);
  display: none;
  z-index: 10;
}
.bg-gradient,
.nav {
  background: linear-gradient(
    278.29deg,
    #8890ff 6.75%,
    #43a1ff 108.62%
  ) !important;
}
.color-white,
.color-white * {
  color: #fff !important;
}
img {
  display: block;
  height: auto;
}
.text-high {
  color: #43a1ff;
  font-weight: 600;
}
.bg-white {
  background: #fff !important;
}
.bg-grey {
  background: #f7f7f9 !important;
}
.color-primary {
  color: #43a1ff;
}
.color-secondary {
  color: #8890ff;
}
.color-tertiary,
.color-tertiary * {
  color: orange !important;
}
.number {
  font-family: "Rubik", sans-serif;
  font-size: 40px;
  font-weight: 300;
  margin: 0;
  line-height: 1.5;
}
.logo {
  width: 100px;
}
.logo img {
  display: block;
}
.text-center {
  text-align: center;
}
.block {
  position: relative;
  margin: -2rem 0 0 0;
  z-index: 2;
}
.block__container {
  padding: 1.5rem 2rem;
  border-radius: 3rem;
  background: #262626;
  align-items: center;
  display: flex;
  margin-left: auto;
  justify-content: space-between;
  width: 600px;
}
.block__container h3 {
  color: #fff;
  margin: 0;
  font-size: 1.25rem;
}
@media (max-width: 480px) {
  .block {
    margin: 0;
  }
  .block__container {
    border-radius: 0;
    padding: 2rem;
    flex-direction: column;
    width: 100%;
  }
  .block__container h3 {
    margin-bottom: 1rem;
  }
}
hr {
  background: #e8e8e8;
  height: 1px;
  margin: 3rem 0;
}
.flex {
  display: flex;
}
.flex .flex-col {
  width: 100%;
}
.flex-row {
  display: flex;
  gap: 4rem;
}
.flex-row .flex-row__col {
  width: 100%;
}
@media (max-width: 480px) {
  .flex-row {
    flex-direction: column;
  }
}
.flex-center-y {
  align-items: center;
}
.flex-center-x {
  justify-content: center;
}
.flex-space-between {
  justify-content: space-between;
}
.icon {
  display: inline-block;
}
.icon--next {
  background: url("./../../icons/i-arrow-next.svg");
}
.icon--prev {
  background: url("./../../icons/i-arrow-prev.svg");
}
.accordion {
  margin: 1rem 0;
}
.accordion .card {
  padding: 2rem;
}
.accordion__title {
  margin-bottom: 2rem;
}
.accordion__item {
  margin-bottom: 2rem;
}
.accordion__header {
  align-items: center;
  display: flex;
  position: relative;
  cursor: pointer;
}
.accordion__header h2 {
  margin: 0;
}
.accordion__header:after {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: center;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  border: 2px solid #8890ff;
  border-radius: 100%;
  content: "+";
  font-size: 2rem;
  margin-left: auto;
  padding: 0.5rem;
  height: 3rem;
  width: 3rem;
  flex-grow: 0;
  flex-shrink: 0;
}
@media (max-width: 480px) {
  .accordion__header:after {
    height: 2rem;
    width: 2rem;
  }
}
.accordion__header--active::after {
  content: "-";
}
.accordion__header:hover::after,
.accordion__header:focus::after {
  background: #8890ff;
  color: #fff;
}
.accordion__content {
  display: none;
  padding: 2rem 0 0 0;
}
.container {
  margin: 0 auto;
  max-width: 1300px;
  padding: 0 4rem;
  position: relative;
  width: 100%;
}
.container--sm {
  max-width: 800px;
}
@media (max-width: 768px) {
  .container--sm-full {
    padding: 0 !important;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 2rem;
  }
}
.description .figure {
  max-width: 20rem;
  float: left;
  margin: 0 2rem 0 0;
}
@media (max-width: 768px) {
  .description .figure {
    float: none;
    margin-bottom: 2rem;
    width: 50%;
  }
}
.description p {
  margin-bottom: 1.5rem;
}
.description p + h2,
.description p + h3 {
  margin-top: 2rem;
}
.description a {
  color: #43a1ff;
  display: inline;
  text-decoration: underline;
}
.description a.btn {
  color: #fff;
  text-decoration: none;
}
.description ul {
  margin: 2rem;
}
.description ul li {
  line-height: 1.5;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}
.description ul li::after {
  content: "";
  border: 2px solid #8890ff;
  display: block;
  border-radius: 50%;
  position: absolute;
  bottom: inherit;
  height: 0.75rem;
  left: 0;
  top: 0.25rem;
  right: inherit;
  width: 0.75rem;
}
@media (max-width: 768px) {
  .description ul {
    margin: 1rem 0;
  }
}
.description .cita {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: start;
  margin: 3rem 0;
}
.description .cita .figure {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: center;
  border-radius: 100%;
  margin-right: 2rem;
  display: flex;
  justify-content: center;
  height: 6.25rem;
  width: 6.25rem;
  flex-grow: 0;
  flex-shrink: 0;
}
.description .cita h4 {
  margin: 0;
}
@media (max-width: 768px) {
  .description .cita {
    align-items: start;
    flex-direction: column;
  }
  .description .cita .figure {
    margin-bottom: 2rem;
  }
}
@media (max-width: 768px) {
  .description {
    margin: 0;
    max-width: 100%;
  }
}
.footer {
  background: #fff;
  padding: 1rem 0;
}
@media (max-width: 480px) {
  .footer {
    padding: 0 !important;
  }
}
.footer__container {
  display: flex;
}
.footer__container .logo {
  margin-right: 1rem;
}
@media (max-width: 480px) {
  .footer__container {
    flex-direction: column-reverse;
    gap: 0 !important;
  }
}
.footer__info {
  width: 40%;
  display: flex;
  justify-content: flex-end;
}
.footer__info .info {
  max-width: 300px;
  margin-right: 2rem;
}
.footer__info .info .logo {
  margin-bottom: 1rem;
}
.footer__info .info .logo img {
  mix-blend-mode: multiply;
}
@media (max-width: 480px) {
  .footer__info .info {
    margin: 0;
    max-width: 100%;
    padding: 2rem;
  }
  .footer__info .info .logo {
    width: 50px;
  }
}
@media (max-width: 480px) {
  .footer__info {
    width: 100%;
  }
  .footer__info .info {
    width: 100%;
  }
}
.footer__form {
  border-radius: 1.5rem 0 0 1.5rem;
  background: #262626;
  width: 60%;
  padding: 4rem;
}
.footer__form * {
  color: #fff;
}
.footer__form form {
  /*max-width: 400px;*/
  margin-left: 2rem;
}
@media (max-width: 480px) {
  .footer__form form {
    width: 100%;
    margin: 0;
    padding: 0 2rem;
  }
}
@media (max-width: 480px) {
  .footer__form {
    border-radius: 0;
    width: 100%;
    padding: 2rem 0;
  }
}
.footer--home {
  display: none;
}
.home .footer {
  display: none;
}
.home .footer--home {
  background: transparent;
  display: block !important;
  padding: 4rem 0;
}
@media (max-width: 768px) {
  .home__container.flex-row {
    padding: 0;
  }
}
.form-box {
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  display: inline-flex;
  align-items: start;
  border: none;
  border-bottom: 1px solid #fff;
  border-color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1rem;
  padding: 1rem 0;
  width: 100%;
}
.form-box:hover,
.form-box:focus {
  border-color: #fff;
}
.form-box span {
  width: 100%;
}
.form-input {
  border: none;
  outline: none;
  background: transparent;
  width: 100%;
}
textarea {
  height: 5rem;
}
label {
  color: #fff;
  margin-right: 1rem;
  line-height: 2;
  width: 5rem;
}
.owl-nav {
  margin-top: 2rem;
}
.owl-nav .owl-prev,
.owl-nav .owl-next {
  background: #43a1ff !important;
  height: 20px;
  width: 40px;
  margin-right: 1rem;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
}
.owl-nav .owl-prev span,
.owl-nav .owl-next span {
  display: none;
}
.owl-nav .owl-prev:hover,
.owl-nav .owl-prev:focus,
.owl-nav .owl-next:hover,
.owl-nav .owl-next:focus {
  opacity: 0.5;
}
.owl-nav .owl-prev.disabled,
.owl-nav .owl-next.disabled {
  opacity: 0.25;
}
.owl-nav .owl-prev {
  mask: url("../icons/i-arrow-prev-short.svg") no-repeat 50% 50% !important;
  -moz-mask: url("../icons/i-arrow-prev-short.svg") no-repeat 50% 50% !important;
  -msmask: url("../icons/i-arrow-prev-short.svg") no-repeat 50% 50% !important;
  -webkit-mask: url("../icons/i-arrow-prev-short.svg") no-repeat 50% 50% !important;
}
.owl-nav .owl-next {
  mask: url("../icons/i-arrow-next-short.svg") no-repeat 50% 50% !important;
  -moz-mask: url("../icons/i-arrow-next-short.svg") no-repeat 50% 50% !important;
  -msmask: url("../icons/i-arrow-next-short.svg") no-repeat 50% 50% !important;
  -webkit-mask: url("../icons/i-arrow-next-short.svg") no-repeat 50% 50% !important;
}
.bg-gradient .owl-nav .owl-prev,
.nav .owl-nav .owl-prev,
.bg-gradient .owl-nav .owl-next,
.nav .owl-nav .owl-next {
  background: #fff !important;
}
.header {
  background: #fff;
  padding: 2rem 0;
  z-index: 2;
  padding-bottom: 6rem;
  top: 0;
  width: 100%;
  position: fixed;
}
.header__container {
  align-items: center;
  display: flex;
  justify-content: space-between;
}
.header__item {
  align-items: center;
  display: flex;
}
.header__item .logo {
  margin-right: 2rem;
}
.header__item .logo img {
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
}
.header--fixed {
  box-shadow: 0px 0px 20px rgba(211, 211, 211, 0.25);
  margin: 0;
  z-index: 4;
  padding: 2rem 0;
}
.header--fixed .logo img {
  width: 80px;
}
.header--nav {
  box-shadow: none;
  padding: 2rem 0;
  background-color: transparent;
  z-index: 35;
}
.header--nav .logo {
  background: #fff;
  mask: url("../images/logoNublit.svg") no-repeat 50% 50% !important;
  -moz-mask: url("../images/logoNublit.svg") no-repeat 50% 50% !important;
  -msmask: url("../images/logoNublit.svg") no-repeat 50% 50% !important;
  -webkit-mask: url("../images/logoNublit.svg") no-repeat 50% 50% !important;
  height: 50px;
}
.header--nav .logo img {
  display: none;
}
.header--nav .text-sm,
.header--nav .tag span,
.tag .header--nav span,
.header--nav .btn,
.header--nav label {
  color: #fff;
}
.header--nav .nav-link .text-sm,
.header--nav .nav-link .tag span,
.tag .header--nav .nav-link span,
.header--nav .nav-link .btn,
.header--nav .nav-link label {
  color: #fff;
}
.header--nav .nav-link span {
  background: #fff;
}
.header--nav .btn-outline--secondary {
  display: none;
}
@media (max-width: 480px) {
  .header {
    padding: 1rem 0;
  }
  .header .btn,
  .header .color-secondary {
    display: none !important;
  }
  /*.header .logo img {
    width: 80px;
  }*/
}
.grid {
  display: grid;
  grid-gap: 3rem;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1024px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .grid {
    grid-gap: 1rem;
    grid-template-columns: 1fr;
  }
}
.nav {
  position: fixed;
  bottom: inherit;
  height: auto;
  left: 2rem;
  top: 0;
  right: 2rem;
  width: calc(100% - 4rem);
  border-radius: 0 0 2rem 2rem;
  display: none;
  padding: 10% 0;
  z-index: 20;
}
.nav .menu {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-left: auto;
  z-index: 12;
}
.nav .menu a {
  color: #fff;
  font-family: "Rubik", sans-serif;
  font-size: 22px;
  font-weight: 300;
}
.nav .menu .current-menu-ancestor a:first-child {
  font-weight: 600;
}
.nav .sub-menu {
  margin: 2rem 0;
}
.nav .sub-menu a {
  border-bottom: 1px solid transparent;
  display: inline-block;
  font-size: 16px;
  font-weight: 300 !important;
  padding: 0.25rem 0;
  margin-bottom: 0.5rem;
  opacity: 0.5;
}
.nav .sub-menu a:hover,
.nav .sub-menu a:focus {
  border-color: #fff;
  opacity: 1;
}
.nav .sub-menu .current-menu-item a {
  color: #fff;
  opacity: 1;
  font-weight: 600 !important;
}
@media (max-width: 1024px) {
  .nav {
    padding: 8rem 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    overflow-y: scroll;
  }
}
@media (max-width: 768px) {
  .nav .menu {
    flex-direction: column;
  }
}
.nav .block {
  position: absolute;
  bottom: -2rem;
  right: 2rem;
}
@media (max-width: 768px) {
  .nav .block {
    display: none;
  }
}
.nav-link {
  margin-left: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  position: relative;
}
.i-nav {
  cursor: pointer;
  margin: 0 1rem;
  height: 1rem;
  width: 1.5rem;
  position: relative;
  z-index: 10;
}
.i-nav__line {
  background: #8890ff;
  display: block;
  position: absolute;
  bottom: inherit;
  height: 2px;
  left: 0;
  top: 0;
  right: inherit;
  width: 100%;
  transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -ms-transition: 0.25s ease-in-out;
  -webkit-transition: 0.25s ease-in-out;
  transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
}
.i-nav__line:nth-child(1),
.i-nav__line:nth-child(2),
.i-nav__line:nth-child(3) {
  transform-origin: left center;
  -moz-transform-origin: left center;
  -ms-transform-origin: left center;
  -webkit-transform-origin: left center;
}
.i-nav__line:nth-child(1) {
  top: 0px;
}
.i-nav__line:nth-child(2) {
  top: 6px;
}
.i-nav__line:nth-child(3) {
  top: 12px;
}
.i-nav:hover__line,
.i-nav:focus__line {
  background: red;
}
.i-nav--active .i-nav__line {
  background: #8890ff;
}
.i-nav--active .i-nav__line:nth-child(1) {
  transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  position: absolute;
  top: 0;
  left: 0;
}
.i-nav--active .i-nav__line:nth-child(2) {
  width: 0%;
  opacity: 0;
}
.i-nav--active .i-nav__line:nth-child(3) {
  transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  position: absolute;
  top: 15px;
  left: 0;
}
.section {
  padding: 6rem 0;
  position: relative;
}
.section--small {
  padding: 4rem 0;
}
@media (max-width: 480px) {
  .section--small {
    padding: 2rem 0 !important;
  }
}
@media (max-width: 480px) {
  .section--sm-full {
    padding: 0 !important;
  }
}
.section__header {
  margin-bottom: 2rem;
}
.section__header h2 {
  margin: 0;
}
.section__header p {
  color: #43a1ff;
  margin: 0;
  font-size: 16px;
}
.section--full {
  min-height: calc(100vh - 220px);
}
@media (max-width: 480px) {
  .section {
    padding: 4rem 0;
  }
}
.main {
  margin-top: -3rem;
  position: relative;
  z-index: 2;
}
@media (max-width: 480px) {
  .main {
    margin-top: 3rem;
  }
}
* {
  color: #262626;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  line-height: 1.25;
  letter-spacing: 0.005rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Rubik", sans-serif;
  font-weight: normal;
  font-size: 30px;
  margin-bottom: 1rem;
}
@media (max-width: 480px) {
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-size: 24px;
  }
}
h2 {
  font-size: 22px;
}
@media (max-width: 480px) {
  h2 {
    font-size: 18px;
  }
}
h3 {
  font-size: 18px;
}
h4 {
  color: #43a1ff;
  font-size: 20px;
  margin-bottom: 2rem;
}
p {
  margin-bottom: 1rem;
  line-height: 1.6;
}
strong {
  font-weight: 600;
}
.text-lg,
.text-lg * {
  font-family: "Rubik", sans-serif;
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: 1rem;
}
@media (max-width: 480px) {
  .text-lg,
  .text-lg * {
    font-size: 18px;
  }
}
.text-md,
.text-md * {
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  line-height: 1.5;
}
.text-sm,
.tag span,
.btn,
label,
.text-sm *,
.tag span *,
.btn *,
label * {
  font-family: "Rubik", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  display: inline-block;
  letter-spacing: 0.25rem;
  text-transform: uppercase;
}
@media (max-width: 480px) {
  br {
    display: none;
  }
}
.btn {
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  border-radius: 1.5rem;
  cursor: pointer;
  padding: 0.75rem 2rem;
}
.btn--primary {
  background-color: #43a1ff;
  color: #fff;
}
.btn--primary:hover,
.btn--primary:focus {
  background-color: #1088ff;
}
.btn--secondary {
  background-color: #8890ff;
  color: #fff;
}
.btn--secondary:hover,
.btn--secondary:focus {
  background-color: #5560ff;
}
.btn--black {
  background-color: #262626;
  color: #fff;
}
.btn--black:hover,
.btn--black:focus {
  background-color: #0d0d0d;
}
.btn--white {
  background-color: #fff;
  color: #fff;
}
.btn--white:hover,
.btn--white:focus {
  background-color: #e6e6e6;
}
.btn--grey {
  background-color: #f7f7f9;
  color: #fff;
}
.btn--grey:hover,
.btn--grey:focus {
  background-color: #dadae3;
}
.btn-outline {
  border: 1px solid #262626;
  background: transparent;
  color: #262626;
}
.btn-outline--primary {
  border-color: #43a1ff;
  color: #43a1ff;
}
.btn-outline--primary:hover,
.btn-outline--primary:focus {
  background-color: #43a1ff;
  color: #fff;
}
.btn-outline--secondary {
  border-color: #8890ff;
  color: #8890ff;
}
.btn-outline--secondary:hover,
.btn-outline--secondary:focus {
  background-color: #8890ff;
  color: #fff;
}
.btn-outline--black {
  border-color: #262626;
  color: #262626;
}
.btn-outline--black:hover,
.btn-outline--black:focus {
  background-color: #262626;
  color: #fff;
}
.btn-outline--white {
  border-color: #fff;
  color: #fff;
}
.btn-outline--white:hover,
.btn-outline--white:focus {
  background-color: #fff;
  color: #fff;
  color: #43a1ff !important;
}
.btn-outline--grey {
  border-color: #f7f7f9;
  color: #f7f7f9;
}
.btn-outline--grey:hover,
.btn-outline--grey:focus {
  background-color: #f7f7f9;
  color: #fff;
}
.btn-link {
  background: transparent;
  border: none;
  align-items: center;
  display: flex;
  color: #262626;
  padding: 0;
}
.btn-link:after {
  mask: url("../icons/i-arrow-next.svg") no-repeat 50% 50% !important;
  -moz-mask: url("../icons/i-arrow-next.svg") no-repeat 50% 50% !important;
  -msmask: url("../icons/i-arrow-next.svg") no-repeat 50% 50% !important;
  -webkit-mask: url("../icons/i-arrow-next.svg") no-repeat 50% 50% !important;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  content: "";
  display: block;
  height: 1rem;
  width: 6rem;
  margin-left: 1rem;
}
.btn-link:hover:after,
.btn-link:focus:after {
  margin-left: 2rem;
}
.btn-link--primary {
  color: #43a1ff;
}
.btn-link--primary:after {
  background: #43a1ff;
}
.btn-link--primary:hover,
.btn-link--primary:focus {
  color: #1088ff;
}
.btn-link--secondary {
  color: #8890ff;
}
.btn-link--secondary:after {
  background: #8890ff;
}
.btn-link--secondary:hover,
.btn-link--secondary:focus {
  color: #5560ff;
}
.btn-link--black {
  color: #262626;
}
.btn-link--black:after {
  background: #262626;
}
.btn-link--black:hover,
.btn-link--black:focus {
  color: #0d0d0d;
}
.btn-link--white {
  color: #fff;
}
.btn-link--white:after {
  background: #fff;
}
.btn-link--white:hover,
.btn-link--white:focus {
  color: #e6e6e6;
}
.btn-link--grey {
  color: #f7f7f9;
}
.btn-link--grey:after {
  background: #f7f7f9;
}
.btn-link--grey:hover,
.btn-link--grey:focus {
  color: #dadae3;
}
.card {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0px 0px 20px rgba(211, 211, 211, 0.25);
  padding: 3rem;
}
.card .icon {
  margin-bottom: 1rem;
  margin-top: 4rem;
  width: 120px;
}
.card .icon img {
  width: 100%;
}
.card .btn {
  margin-top: 2rem;
}
.card--outline {
  background: transparent;
  border: 1px solid #fff;
  padding: 2rem;
}
.card--img {
  padding: 0 !important;
  overflow: hidden;
}
.card--small {
  border-radius: 0.75rem;
  padding: 1rem 2rem !important;
  width: fit-content;
  margin-bottom: 1rem;
}
@media (max-width: 480px) {
  .card {
    padding: 2rem;
  }
  .card--icon .icon {
    margin: 1rem 0;
  }
}
.figure {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
}
.figure::after {
  content: "";
  background: #8890ff;
  position: absolute;
  bottom: inherit;
  height: 100%;
  left: 0;
  top: 0;
  right: inherit;
  width: 100%;
  opacity: 0.3;
  display: block;
  z-index: 2;
}
.figure--circle {
  border-radius: 100%;
}
.figure img {
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
}
.figure:hover img,
.figure:focus img {
  transform: scale(1.05);
  filter: grayscale(100%) brightness(50%);
}
.figure br {
  display: none;
}
.figure .tag {
  color: #fff;
  margin: 0;
  z-index: 3;
}
.figure .tag * {
  color: #fff;
}
@media (max-width: 480px) {
  .figure--home {
    max-width: 12rem;
  }
}
.customers {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.customers__item {
  padding: 1rem;
  width: 20%;
}
@media (max-width: 768px) {
  .customers__item {
    width: 25%;
  }
}
@media (max-width: 480px) {
  .customers__item {
    width: 33%;
  }
}
.customers .logo-company {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: center;
  background: #f7f7f9;
}
.customers .logo-company img {
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  filter: grayscale(100%);
  mix-blend-mode: multiply;
  max-width: 8rem;
  opacity: 0.5;
}
.customers .logo-company:hover img,
.customers .logo-company:focus img {
  filter: none;
  opacity: 1;
}
.slide {
  background: linear-gradient(278.29deg, #8890ff 6.75%, #43a1ff 108.62%);
  border-radius: 1.5rem;
  box-shadow: 0px 0px 20px rgba(211, 211, 211, 0.25);
  padding: 3rem;
  position: relative;
}
.slide * {
  color: #fff;
}
.slide h1 {
  margin: 0;
}
.slide h1 + p {
  margin: 1rem 0 0 0;
}
.slide p {
  font-size: 16px;
  margin: 0;
}
@media (max-width: 480px) {
  .slide p {
    font-size: 13px;
  }
  .slide p br {
    display: none;
  }
}
.slide .btn {
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .slide {
    padding: 3rem 2rem;
    border-radius: 0;
  }
}
.home .slide {
  background: url("../images/bg-slide.jpg") bottom right no-repeat;
  padding: 6rem;
}
@media (max-width: 480px) {
  .home .slide {
    padding: 3rem 2rem;
  }
}
.tag {
  position: absolute;
  bottom: inherit;
  height: initial;
  left: 1rem;
  top: 50%;
  right: inherit;
  width: initial;
  transform-origin: 0 0;
  transform: rotate(-90deg) translateX(-50%);
}
@media (max-width: 480px) {
  .tag {
    display: none;
  }
}
.tag--primary span {
  color: #43a1ff;
}
.tag--primary span:after {
  background-color: #8890ff;
}
.tag--secondary span {
  color: #8890ff;
}
.tag--secondary span:after {
  background-color: #8890ff;
}
.tag--black span {
  color: #262626;
}
.tag--black span:after {
  background-color: #8890ff;
}
.tag--white span {
  color: #fff;
}
.tag--white span:after {
  background-color: #8890ff;
}
.tag--grey span {
  color: #f7f7f9;
}
.tag--grey span:after {
  background-color: #8890ff;
}
.cases__container {
  display: flex;
}
@media (max-width: 1024px) {
  .cases__container {
    flex-direction: column;
  }
}
.cases .case {
  padding: 0 4rem;
}
.cases .case .card {
  margin: -10rem -5rem 0 auto;
  padding: 2rem;
  position: relative;
  width: 90%;
  z-index: 2;
}
@media (max-width: 1024px) {
  .cases .case {
    padding: 2rem;
    display: flex;
  }
  .cases .case .card {
    margin: 0;
  }
}
@media (max-width: 480px) {
  .cases .case {
    padding: 2rem 0;
    flex-direction: column;
  }
  .cases .case .card {
    margin: -10rem 0 0;
  }
}
.partners__container {
  display: flex;
  gap: 8rem;
}
@media (max-width: 1024px) {
  .partners__container {
    flex-direction: column;
    gap: 2rem;
  }
}
.partners__col {
  width: 100%;
}
.partners .card {
  height: 4rem;
  display: flex;
  align-items: center;
  justify-items: center;
  width: 10rem;
  justify-content: center;
}
.partners .card img {
  max-width: 7rem;
  max-height: 2rem;
  width: auto;
}
.partners img {
  max-width: 7rem;
}
.partners__items {
  display: flex;
  gap: 4rem;
}
@media (max-width: 480px) {
  .partners__items {
    flex-direction: column;
  }
}
.testimonials {
  margin: 5rem 0 0;
  position: relative;
  padding-bottom: 4rem;
}
@media (max-width: 480px) {
  .testimonials {
    margin: 0;
    padding: 4rem 0;
  }
}
.testimonials__content {
  align-items: center;
  display: flex;
}
@media (max-width: 768px) {
  .testimonials__content {
    flex-direction: column;
  }
}
.testimonials__figure {
  margin: -40px 0 0 0;
}
@media (max-width: 480px) {
  .testimonials__figure {
    margin: 0;
  }
}
.testimonials__figure .figure {
  height: 320px;
  width: 320px;
}
.testimonials__figure .figure .tag {
  top: auto;
  bottom: 0;
  margin: 2rem;
  transform: none;
}
.testimonials__body {
  padding: 2rem;
}
@media (max-width: 480px) {
  .testimonials__body {
    padding: 2rem 0;
  }
}
.testimonials__author {
  margin-top: 1rem;
}
.testimonials__author h3,
.testimonials__author p {
  margin: 0;
}
@media (max-width: 768px) {
  .testimonials {
    flex-direction: column;
  }
}
.testimonials .owl-stage-outer {
  overflow-y: visible !important;
  overflow-x: clip !important;
}
.testimonials .owl-nav {
  position: absolute;
  bottom: -2rem;
  height: auto;
  left: inherit;
  top: inherit;
  right: inherit;
  width: auto;
}
.card p + .btn {
  margin-top: 2rem;
}
.section--cta p {
  margin: 0 !important;
  line-height: 0.5;
}
.section--cta p + p {
  margin-top: 4rem !important;
}
.cases__container {
  display: grid;
  gap: 6rem;
  grid-template-columns: repeat(2, 1fr);
}
.card .btn {
  margin: 0;
}
/*.copyright {
  position: absolute;
  bottom: 0;
  left: -5%;
}*/
@media (max-width: 768px) {
  .copyright {
    position: relative;
  }
  .customers .logo-company img {
    max-width: 4rem;
  }
  .cases__container {
    display: flex;
    gap: 2rem;
    flex-direction: column;
  }
  .cases__container .case {
    padding: 0;
  }
}
.accordion__item .accordion__header h2 {
  margin-right: 2rem;
}
.grid-team {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}
@media (max-width: 768px) {
  .grid-team {
    grid-template-columns: repeat(3, 1fr);
  }
} /*# sourceMappingURL=main.css.map */
