.green-shade-bg {
  background-color: #E1EED9;
}

.purple-shade-bg {
  background-color: #E6E0E9;
}

.orange-shade-bg {
  background-color: #F6E6D3;
}

.yellow-shade-bg {
  background-color: #F7F0D6;
}

.green-color {
  color: #E3FF04;
}

.green-bg {
  background-color: #E3FF04;
}

.peach-color {
  color: #FDDA66;
}

.peach-bg {
  background-color: #FDDA66;
}

.blue-bg {
  background-color: #0C2346;
}

.cream-color {
  color: #FAF4DA;
}

.cream-bg {
  background-color: #FAF4DA;
}

.orange-color {
  color: #FF6407;
}

.orange-bg {
  background-color: #FF6407;
}

.brand-color {
  color: #5720F5;
}

.brand-bg {
  background-color: #5720F5;
}

.dark-blue-color {
  color: #0C2346;
}

.black-bg {
  background-color: #0C2346;
}

.light-black-bg {
  background-color: #071427;
}

.sky-blue-bg {
  background-color: #F5F9FF;
}

.light-green-bg {
  background-color: #B8FACD;
}

.white-bg {
  background-color: #FFFFFF;
}

.yellow-bg {
  background-color: #F6BE07;
}

.light-green-text {
  color: #B8FACD;
}

.grey-text {
  color: #B9B9B9;
}

.yellow-text {
  color: #F6BE07;
}

.ilo-bg {
  background-image: url("../assets/lines-bg.svg");
  background-repeat: no-repeat;
}

.btn {
  padding: 12px 28px;
  border-radius: 50px;
  color: #0C2346;
}
.btn:active {
  background-color: #FFFFFF;
  border: 1px solid #FFFFFF;
  color: #0C2346;
}
.btn:focus {
  background-color: #FFFFFF;
  border: 1px solid #FFFFFF;
  color: #0C2346;
}
.btn:hover {
  background-color: #FFFFFF;
  border: 1px solid #FFFFFF;
  color: #0C2346;
}
.btn.btn--brand {
  background-color: #0C2346;
  color: #FFFFFF;
}
.btn.btn--blue {
  background-color: #00CCFF;
  color: #0C2346;
}
.btn.btn--blue:hover {
  border: 1px solid #00CCFF;
  outline: none;
}

.btn.outline {
  background-color: #0C2346;
  color: #0C2346;
  border: 1px solid #FFFFFF;
}

.btn--white {
  color: #0C2346;
  background-color: #FFFFFF;
}

.btn--black {
  background-color: #0C2346;
  color: #FFFFFF;
}

@media (max-width: 450px) {
  .hide-on-mobile {
    display: none;
  }
}

.pt-100 {
  padding-top: 100px;
}

.pt-150 {
  padding-top: 150px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pb-150 {
  padding-bottom: 150px;
}

.pb-200 {
  padding-bottom: 200px;
}

.w-30 {
  width: 30%;
}

.w-40 {
  width: 40%;
}

.justify-content-evenly {
  justify-content: space-evenly;
}

@media (max-width: 450px) {
  .flexy-reverse {
    display: inline-flex;
    flex-direction: column-reverse;
  }
}

@font-face {
  font-family: "BRFirma-Regular";
  src: url("../fonts/BRFirma-Regular.woff") format("woff");
}
@font-face {
  font-family: "BRFirma-Medium";
  src: url("../fonts/BRFirma-Medium.woff") format("woff");
}
@font-face {
  font-family: "BRFirma-Semibold";
  src: url("../fonts/BRFirma-Semibold.woff") format("woff");
}
@font-face {
  font-family: "BRFirma-Bold";
  src: url("../fonts/BRFirma-Bold.woff") format("woff");
}
.font-bold {
  font-family: "BRFirma-Bold", sans-serif;
  letter-spacing: -1.5px;
}

@-webkit-keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
  }
}
@-webkit-keyframes counter-rotation {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(-359deg);
  }
}
@-webkit-keyframes bounce {
  0% {
    transform: translate(113px, 7px);
  }
  50% {
    transform: translate(113px, 0px);
  }
  100% {
    transform: translate(113px, 7px);
  }
}
.anim-bounce {
  -webkit-animation: bounce 3s infinite ease-in-out;
  -o-animation: bounce 3s infinite ease-in-out;
  -ms-animation: bounce 3s infinite ease-in-out;
  -moz-animation: bounce 3s infinite ease-in-out;
  animation: bounce 3s infinite ease-in-out;
  transition: all ease 0.3s;
}

.anim-rotate {
  -webkit-animation: rotation 5s infinite linear;
  -o-animation: rotation 5s infinite linear;
  -ms-animation: rotation 5s infinite linear;
  animation: rotation 5s infinite linear;
  transition: all ease 0.3s;
}

.anim-counter-rotate {
  -webkit-animation: counter-rotation 5s infinite linear;
  -o-animation: counter-rotation 5s infinite linear;
  -ms-animation: counter-rotation 5s infinite linear;
  animation: counter-rotation 5s infinite linear;
  transition: all ease 0.3s;
}
.anim-counter-rotate.slower {
  -webkit-animation: counter-rotation 8s infinite linear;
  -o-animation: counter-rotation 8s infinite linear;
  -ms-animation: counter-rotation 8s infinite linear;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1320px;
  }
}
@media (max-width: 300px) {
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
body {
  font-family: "BRFirma-Regular", sans-serif;
  background-color: #0C2346;
  color: #FFFFFF;
}

header {
  background-color: #FFFFFF;
  color: #0C2346;
  padding: 10px 0;
  margin-bottom: -1px;
}
@media (max-width: 450px) {
  header {
    top: 20px;
    left: 20px;
  }
}

.navbar-brand > img {
  height: 24px;
}

ul.no-style {
  list-style: none;
  padding-left: 0;
}

.btn {
  padding: 12px 28px;
  border-radius: 50px;
  font-family: "BRFirma-Regular", sans-serif;
}

@media (max-width: 450px) {
  .sparne-navbar {
    /* 		border-bottom: 0;*/
    padding: 0;
  }
}

@media (max-width: 450px) {
  .sparne-navbar .navbar-brand {
    margin-left: 0;
  }
}

.sparne-navbar .navbar-toggler {
  border: none;
  padding: 20px;
  padding-right: 10px;
  border-radius: 0;
}
.sparne-navbar .navbar-toggler:focus {
  box-shadow: none;
}

.sparne-navbar .navbar-toggler .navbar-toggler-icon {
  background-image: url("../assets/hamburger.svg");
  background-size: 24px;
  background-position: right;
}

.sparne-navbar .navbar {
  padding: 0;
}

@media (max-width: 450px) {
  .sparne-navbar .navbar .pype-btn {
    width: 100%;
  }
}

@media (min-width: 576px) {
  nav .navbar-nav {
    width: 100%;
    justify-content: flex-end;
  }
}
.sparne-navbar .sparne-navlink .sparne-navlink__item {
  color: #0C2346;
  font-family: "BRFirma-Regular", sans-serif;
}
@media (max-width: 450px) {
  .sparne-navbar .sparne-navlink .sparne-navlink__item {
    border-left: 0;
  }
}
.sparne-navbar .sparne-navlink .sparne-navlink__item a {
  color: #0C2346;
  font-size: 15px;
  padding: 24px 36px;
  display: inline-flex;
  align-items: center;
  transition: all ease 0.3s;
  border-bottom: 1px solid transparent;
}
@media (max-width: 450px) {
  .sparne-navbar .sparne-navlink .sparne-navlink__item a {
    padding-left: 0;
  }
}
.sparne-navbar .sparne-navlink .sparne-navlink__item a:hover {
  background-color: #FFFFFF;
  color: #0C2346;
  border-bottom: 1px solid #0C2346;
}
.sparne-navbar .sparne-navlink .sparne-navlink__item a img {
  height: 24px;
  margin-right: 10px;
}
.sparne-navbar .sparne-navlink .sparne-navlink__item .dropdown-toggle::after {
  display: none;
}

.sparne-navbar .sparne-navlink .pype-btn {
  display: none;
}
@media (max-width: 450px) {
  .sparne-navbar .sparne-navlink .pype-btn {
    display: inline-block;
  }
}

.hero-section {
  padding: 0;
  padding-left: 200px;
}
.hero-section .sparne-image {
  max-width: 100%;
}
@media (max-width: 450px) {
  .hero-section {
    padding: 10px;
  }
}

.hero-bg {
  padding: 120px 0;
  background-image: url("../assets/wocintechchat.jpg");
  background-size: 800px;
  background-repeat: no-repeat;
  background-position: 100%;
}
@media (max-width: 450px) {
  .hero-bg {
    padding: 280px 0;
    background-image: url(../assets/wocintechchat.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom;
    padding-top: 0;
  }
}
@media only screen and (min-width: 900px) and (max-width: 1320px) {
  .hero-bg {
    background-size: 800px;
    background-position: 200%;
  }
}

.intro-section > h1 {
  font-family: "BRFirma-Bold", sans-serif;
  letter-spacing: -1.5px;
  font-weight: 800;
  color: #0C2346;
  font-size: 65px;
  line-height: 70px;
  height: 100%;
  display: inline-flex;
  align-items: center;
  padding-right: 0px;
}
@media (max-width: 450px) {
  .intro-section > h1 {
    font-size: 40px;
    line-height: 42px;
    width: 100%;
    padding-top: 50px;
    padding-right: 0;
  }
}

.intro-section > p {
  color: #0C2346;
  font-size: 18px;
  line-height: 32px;
  margin-bottom: 30px;
  margin-top: 30px;
}
@media (max-width: 450px) {
  .intro-section > p {
    font-size: 16px;
    line-height: 26px;
    width: 100%;
    margin-bottom: 0;
    margin-top: 20px;
  }
}

.intro-section > img {
  max-width: 100%;
}
.about-section {
  align-items: center;
  display: inline-flex;
}
@media (max-width: 450px) {
  .about-section {
    padding-bottom: 20px;
  }
}

.about-section h1 {
  letter-spacing: -1.5px;
  font-family: "BRFirma-Bold", sans-serif;
  font-weight: 800;
  color: #0C2346;
  font-size: 45px;
  line-height: 50px;
  padding-right: 40px;
}
@media (max-width: 450px) {
  .about-section h1 {
    font-size: 34px;
    line-height: 38px;
    width: 100%;
    padding-top: 16px;
  }
}

.about-section p {
  color: #0C2346;
  font-size: 18px;
  line-height: 32px;
  margin-bottom: 30px;
  margin-top: 30px;
}
@media (max-width: 450px) {
  .about-section p {
    font-size: 16px;
    line-height: 26px;
    width: 100%;
    margin-bottom: 0;
    margin-top: 20px;
  }
}

.about-section a {
  color: #0C2346;
  font-weight: 600;
}

.about-section img {
  max-width: 100%;
}
.about-section .about-image {
  margin-bottom: -40px;
}

@media (max-width: 450px) {
  .about-us .button-group {
    display: inline-flex;
    justify-content: space-between;
    width: 100%;
  }
}

.btn.app-button {
  display: inline-flex;
  margin-right: 20px;
}
@media (max-width: 450px) {
  .btn.app-button {
    margin-right: 0;
  }
}

.btn.app-button.exchange {
  padding: 12px 42px;
}

.btn.app-button.exchange .text-group .info-text {
  font-size: 11px;
  margin-bottom: 2px;
}

.btn.app-button img {
  margin-right: 6px;
}

.btn.app-button .text-group {
  display: inline-flex;
  flex-direction: column;
  text-align: left;
}

.btn.app-button .text-group .info-text {
  font-size: 8px;
  line-height: 8px;
}

.btn.app-button .text-group .store-name {
  font-size: 16px;
  line-height: 18px;
}

#carouselWrapper .carousel-image-wrapper {
  display: inline-flex;
  justify-content: center;
}
@media (max-width: 450px) {
  #carouselWrapper .carousel-image-wrapper {
    justify-content: center;
    padding-bottom: 40px;
  }
}

#carouselWrapper .carousel-image {
  width: auto;
  height: 450px;
}
@media (max-width: 450px) {
  #carouselWrapper .carousel-image {
    width: auto;
    height: 300px;
  }
}

#carouselWrapper .button-wrapper {
  display: inline-flex;
  position: absolute;
  top: 25%;
  width: 50%;
}
@media (max-width: 450px) {
  #carouselWrapper .button-wrapper {
    top: 4%;
  }
}

#carouselWrapper .carousel-control-prev-icon {
  background-image: url("../assets/arrow-left.svg");
  height: 32px;
  margin-bottom: auto;
}

#carouselWrapper .carousel-control-prev {
  position: relative;
  left: 0;
  width: 30px;
  display: inline-block;
  margin-right: 20px;
}

#carouselWrapper .carousel-control-next {
  position: relative;
  right: 0;
  left: 0;
  width: 30px;
  display: inline-block;
}

#carouselWrapper .carousel-control-next-icon {
  background-image: url("../assets/arrow-right.svg");
  height: 32px;
  margin-bottom: auto;
}

@media (max-width: 450px) {
  #carouselWrapper .carousel-item {
    padding-top: 30px;
  }
}

#carouselWrapper .carousel-item h1 {
  color: #110B43;
  font-size: 40px;
  line-height: 44px;
  font-family: "BRFirma-Regular", sans-serif;
  margin-bottom: 40px;
}
@media (max-width: 450px) {
  #carouselWrapper .carousel-item h1 {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 30px;
  }
}

#carouselWrapper .carousel-item p {
  color: #292A31;
  font-size: 18px;
  line-height: 30px;
  width: 80%;
}
@media (max-width: 450px) {
  #carouselWrapper .carousel-item p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 40px;
    width: 100%;
  }
}

@media (max-width: 450px) {
  .about-us .row.reverse {
    display: flex;
    flex-direction: column-reverse;
  }
}

.about-us .about-us_header {
  font-size: 40px;
}
@media (max-width: 450px) {
  .about-us .about-us_header {
    font-size: 32px;
  }
}

.about-us .about-us_intro {
  font-family: "BRFirma-Regular", sans-serif;
  font-size: 28px;
  line-height: 38px;
}
@media (max-width: 450px) {
  .about-us .about-us_intro {
    font-size: 24px;
    line-height: 32px;
  }
}

.about-us .about-us_intro.faq {
  width: 40%;
}
@media (max-width: 450px) {
  .about-us .about-us_intro.faq {
    width: 100%;
  }
}

.about-us.faq-panel {
  background-color: #FFFFFF;
  border-radius: 20px;
}

.about-us.faq-panel .faq-panel__header {
  color: #0a0b0b;
  font-family: "BRFirma-Regular", sans-serif;
  font-size: 40px;
  margin-bottom: 40px;
}
@media (max-width: 450px) {
  .about-us.faq-panel .faq-panel__header {
    font-size: 28px;
    line-height: 36px;
  }
}

.about-us.faq-panel .faq-panel-tab .accordion-item {
  background-color: #F7F7F8;
  border: none;
  border-radius: 12px;
  padding: 32px 24px;
  margin-bottom: 10px;
}
@media (max-width: 450px) {
  .about-us.faq-panel .faq-panel-tab .accordion-item {
    padding: 12px 10px;
  }
}

.about-us.faq-panel .faq-panel-tab .accordion-item .accordion-button {
  background-color: #F7F7F8;
  border: none;
  outline: none;
  font-size: 18px;
}
.about-us.faq-panel .faq-panel-tab .accordion-item .accordion-button:focus {
  border: none;
  box-shadow: none;
  outline: none;
}
.about-us.faq-panel .faq-panel-tab .accordion-item .accordion-button:not(.collapsed) {
  color: #0C2346;
  box-shadow: none;
}
.about-us.faq-panel .faq-panel-tab .accordion-item .accordion-button:after {
  background-image: url("../assets/accordion-image.svg");
  right: 0;
  position: absolute;
}
@media (max-width: 450px) {
  .about-us.faq-panel .faq-panel-tab .accordion-item .accordion-button {
    font-size: 16px;
    line-height: 26px;
    padding-right: 40px;
  }
}

.about-us.faq-panel .faq-panel-tab .accordion-item .accordion-body {
  color: #718096;
  font-size: 14px;
  line-height: 27px;
}

.about-us .about-us_body {
  font-family: "BRFirma-Regular", sans-serif;
  font-weight: bold;
  font-size: 18px;
  line-height: 32px;
}
@media (max-width: 450px) {
  .about-us .about-us_body {
    font-size: 16px;
    line-height: 26px;
    width: 100%;
  }
}

.about-us_image {
  max-width: 100%;
}
@media (max-width: 450px) {
  .about-us_image {
    margin-bottom: 40px;
  }
}

.about-us .faq-box {
  margin-top: 60px;
}

.about-us .faq-box .accordion .accordion-item {
  margin-bottom: 10px;
  background-color: #0B0C0C;
  border-radius: 10px;
  border: none;
  padding-top: 10px;
}
.about-us .faq-box .accordion .accordion-item .accordion-header {
  margin-bottom: 0;
  font-size: 18px;
}
.about-us .faq-box .accordion .accordion-item .accordion-header .accordion-button {
  background-color: #0B0C0C;
  border: 0;
  color: #FFFFFF;
  font-size: 18px;
}
.about-us .faq-box .accordion .accordion-item .accordion-header .accordion-button:focus {
  box-shadow: none;
}
.about-us .faq-box .accordion .accordion-item .accordion-header .accordion-button::after {
  background-image: url("../assets/close-button.svg");
}
.about-us .faq-box .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
  transition: all ease 0.3s;
  transform: rotate(45deg);
  background-image: url("../assets/close-button.svg");
}
.about-us .faq-box .accordion .accordion-item .accordion-body {
  font-size: 16px;
  color: #B9B9B9;
  padding-top: 0;
  padding-bottom: 28px;
}
.about-us .faq-box .accordion .accordion-item .accordion-body .faq-text {
  padding-left: 12px;
}
.about-us .faq-box .accordion .accordion-item .accordion-body .faq-text > li {
  margin-bottom: 6px;
}

.about-us .about-us_list {
  padding-left: 0;
  list-style: none;
}

.about-us .tab-panel .tab-panel__left {
  width: 50%;
  height: auto;
}
@media (max-width: 450px) {
  .about-us .tab-panel .tab-panel__left {
    height: 100%;
  }
}

.about-us .tab-panel .tab-panel__left .list-item.active {
  color: #0C2346;
  font-size: 18px;
  font-family: "EuclidCircularA Regular";
  margin-bottom: 20px;
  text-align: left;
  padding: 22px 0;
  border-radius: 12px;
}
@media (max-width: 450px) {
  .about-us .tab-panel .tab-panel__left .list-item.active {
    font-size: 14px;
    line-height: 22px;
  }
}

.about-us.callout {
  padding: 40px 0;
}

.about-us.callout h2 {
  color: #FFFFFF;
  font-family: "BRFirma-Bold", sans-serif;
  font-weight: 800;
  font-size: 50px;
  line-height: 65px;
}
@media (max-width: 450px) {
  .about-us.callout h2 {
    font-size: 28px;
    line-height: 36px;
  }
}

.about-us.callout h2 .blue {
  color: #00CCFF;
}

.about-us.callout p {
  color: #0C2346;
  font-size: 18px;
  line-height: 27px;
  margin-bottom: 30px;
}
@media (max-width: 450px) {
  .about-us.callout p {
    font-size: 16px;
    line-height: 26px;
    width: 100%;
  }
}

.about-us.callout button {
  border: none;
  outline: none;
  display: inline-flex;
  align-items: center;
  padding: 12px 16px;
}
.about-us.callout button img {
  height: 24px;
  margin-left: 6px;
}
@media (max-width: 450px) {
  .about-us.callout button {
    margin-top: 16px;
  }
}

.about-us .pill {
  background-color: #B8FACD;
  border-radius: 4px;
  color: #0C2346;
  font-size: 12px;
  line-height: 12px;
  text-transform: uppercase;
  letter-spacing: 0.25px;
  padding: 4px 12px;
}
@media (max-width: 450px) {
  .about-us .pill {
    font-size: 8px;
  }
}

.about-us.features {
  padding: 40px 0;
}

.about-us.features h2 {
  color: #0C2346;
  font-size: 34px;
  line-height: 40px;
  text-align: left;
  letter-spacing: -1.5px;
  font-family: "BRFirma-Bold", sans-serif;
}
@media (max-width: 450px) {
  .about-us.features h2 {
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 30px;
  }
}

.about-us.features h2 .blue {
  color: #00CCFF;
}

@media (max-width: 450px) {
  .about-us.features .explainer-box {
    border-left: none;
  }
}

.about-us.features .explainer {
  margin-top: 40px;
  display: inline-flex;
}
@media (max-width: 450px) {
  .about-us.features .explainer {
    margin-top: 20px;
  }
}

.about-us.features .explainer.top {
  margin-top: 80px;
}

.about-us.features .explainer .explainer__image {
  width: 64px;
  margin-right: 20px;
  margin-bottom: auto;
}

.about-us.features .explainer .explainer__header {
  color: #FFFFFF;
  font-family: "BRFirma-Bold", sans-serif;
  font-weight: 800;
  font-size: 28px;
  line-height: 45px;
  margin-bottom: 4px;
}
@media (max-width: 450px) {
  .about-us.features .explainer .explainer__header {
    font-size: 20px;
    line-height: 25px;
    margin-bottom: 4px;
  }
}

.about-us.features .explainer .explainer__body {
  color: #9BA2B3;
  font-size: 16px;
  line-height: 24px;
}
@media (max-width: 450px) {
  .about-us.features .explainer .explainer__body {
    font-size: 14px;
    line-height: 24px;
    margin-top: 20px;
  }
}

.about-us.features .product-card {
  border-radius: 16px;
  padding: 40px;
  text-align: left;
  height: 495px;
  position: relative;
}
@media (max-width: 450px) {
  .about-us.features .product-card {
    padding: 40px 24px;
    height: auto !important;
    margin-bottom: 40px;
  }
}
.about-us.features .product-card.no-card {
  background: none;
  padding-right: 0;
  padding-left: 0;
}
@media (max-width: 450px) {
  .about-us.features .product-card.reverse {
    display: inline-flex;
    flex-direction: column-reverse;
  }
}
.about-us.features .product-card.blue-border {
  border: 4px solid #00CFFF;
}
.about-us.features .product-card.adjusted-height {
  height: 550px;
}

.about-us.features .product-card.flex-size {
  display: flex;
  height: auto;
  align-items: center;
  justify-content: space-around;
  margin: 40px 0;
  padding-top: 75px;
  padding-bottom: 75px;
}
@media (max-width: 450px) {
  .about-us.features .product-card.flex-size {
    display: inline-block;
  }
}

.about-us.features .product-card.flex-size .product-card__header {
  font-size: 36px;
  line-height: 45px;
  margin-bottom: 50px;
}
@media (max-width: 450px) {
  .about-us.features .product-card.flex-size .product-card__header {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 30px;
  }
}

.about-us.features .product-card.flex-size .product-card-text {
  width: 40%;
  margin-right: 15%;
}
@media (max-width: 450px) {
  .about-us.features .product-card.flex-size .product-card-text {
    width: 100%;
  }
}

.about-us.features .product-card.flex-size .product-card__image {
  height: auto;
}
@media (max-width: 450px) {
  .about-us.features .product-card.flex-size .product-card__image {
    width: 100%;
  }
}

.about-us.features .product-card .pos-img {
  position: absolute;
  width: 150px;
  right: -20%;
  top: -10%;
}
@media (max-width: 450px) {
  .about-us.features .product-card .pos-img {
    right: 0%;
    width: 100px;
  }
}

.about-us.features .product-card.no-card .list-header {
  visibility: hidden;
}

.about-us.features .product-card.no-card .card-list__item {
  font-family: "BRFirma-Regular", sans-serif;
  font-size: 20px;
  line-height: 52px !important;
}

.about-us.features .product-card .product-card__header {
  color: #0C2346;
  font-family: "BRFirma-Bold", sans-serif;
  letter-spacing: -1.5px;
  font-weight: 800;
  font-size: 26px;
  line-height: 36px;
  margin-bottom: 24px;
}
@media (max-width: 450px) {
  .about-us.features .product-card .product-card__header {
    font-size: 20px;
    line-height: 30px;
  }
}

.about-us.features .product-card .product-card__body {
  color: #0C2346;
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
  margin-bottom: 40px;
}
@media (max-width: 450px) {
  .about-us.features .product-card .product-card__body {
    font-size: 14px;
    line-height: 24px;
  }
}

.about-us.features .product-card .list-header {
  text-align: center;
  font-size: 28px;
  font-family: "BRFirma-Bold", sans-serif;
  font-weight: 800;
  line-height: 36px;
}
@media (max-width: 450px) {
  .about-us.features .product-card .list-header {
    font-size: 24px;
    line-height: 32px;
  }
}

.about-us.features .product-card .card-list {
  margin-top: 45px;
  list-style: none;
}
.about-us.features .product-card .card-list .card-list__item {
  color: #F7F7F8;
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 30px;
  position: relative;
}
@media (max-width: 450px) {
  .about-us.features .product-card .card-list .card-list__item {
    font-size: 16px;
    line-height: 24px;
  }
}

.about-us.features .product-card .card-list .card-list__item.x-mark::before {
  content: " ";
  background-image: url("../assets/x-mark.svg");
  position: absolute;
  left: -40px;
  top: 6px;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-size: 20px;
}
@media (max-width: 450px) {
  .about-us.features .product-card .card-list .card-list__item.x-mark::before {
    width: 18px;
    height: 18px;
    background-size: 16px;
  }
}

.about-us.features .product-card .card-list .card-list__item.check-mark::before {
  content: " ";
  background-image: url("../assets/check-mark.svg");
  position: absolute;
  left: -40px;
  top: 6px;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-size: 20px;
}
@media (max-width: 450px) {
  .about-us.features .product-card .card-list .card-list__item.check-mark::before {
    width: 18px;
    height: 18px;
    background-size: 16px;
  }
}

.about-us.features .product-card .product-card__link {
  color: #00CCFF;
  font-size: 16px;
  text-decoration: none;
  display: flex;
  align-items: center;
}
.about-us.features .product-card .product-card__link img {
  margin-left: 10px;
}

.about-us.features .product-card .product-card__image {
  height: 150px;
}
@media (max-width: 450px) {
  .about-us.features .product-card .product-card__image {
    width: 50%;
  }
}

.about-us .tab-panel .tab-panel__left .list-item {
  color: #718096;
  background-color: #FFFFFF;
  font-size: 18px;
  font-family: "EuclidCircularA Regular";
  margin-bottom: 20px;
  text-align: left;
  padding: 22px 0;
  border: none;
}
@media (max-width: 450px) {
  .about-us .tab-panel .tab-panel__left .list-item {
    font-size: 14px;
    margin-bottom: 12px;
  }
}

.about-us .tab-panel .tab-panel__right {
  width: 50%;
  background-color: #F7F7F8;
  color: #0C2346;
  padding: 40px 40px;
  margin-left: 50px;
  padding-bottom: 100px;
  border-radius: 20px;
  font-family: "Yellix Semibold";
  background-repeat: no-repeat;
  background-position: -40% 240%;
  background-size: 50%;
  height: 540px;
}
@media (max-width: 450px) {
  .about-us .tab-panel .tab-panel__right {
    height: 100%;
  }
}
@media (max-width: 450px) {
  .about-us .tab-panel .tab-panel__right {
    margin-left: 30px;
    padding: 40px 10px;
  }
}

.about-us .tab-panel .tab-panel__right .list-image {
  height: 48px;
  margin-bottom: 32px;
}
@media (max-width: 450px) {
  .about-us .tab-panel .tab-panel__right .list-image {
    font-size: 24px;
  }
}

.about-us .tab-panel .tab-panel__right .list-body {
  font-family: "EuclidCircularA Regular";
  font-size: 20px;
  line-height: 32px;
}
@media (max-width: 450px) {
  .about-us .tab-panel .tab-panel__right .list-body {
    font-size: 14px;
    width: 100%;
  }
}

.about-us .tab-panel .tab-panel__right .list-list {
  padding-left: 12px;
  font-size: 16px;
}
.about-us .tab-panel .tab-panel__right .list-list > li {
  padding-bottom: 15px;
}

@media (max-width: 450px) {
  .about-us.community {
    padding: 40px 0;
  }
}

.about-us.community h2 {
  font-size: 50px;
  line-height: 65px;
  margin-bottom: 26px;
}
@media (max-width: 450px) {
  .about-us.community h2 {
    font-size: 28px;
    line-height: 36px;
  }
}

.about-us.community p {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 40px;
}

.about-us.community .community__image {
  max-width: 100%;
}

.about-us.community .social-buttons {
  display: inline-flex;
  margin-bottom: 25px;
}

.about-us.community .social-buttons img {
  margin-right: 18px;
}

.about-us.community .social-terms {
  display: inline-block;
  color: #718096;
  font-size: 14px;
  line-height: 24px;
  width: 80%;
}

.about-us.community .comm-image-wrapper {
  display: inline-flex;
  justify-content: center;
  width: 100%;
}

form .form-control {
  background: none;
  border: 1px solid #0C2346;
  border-radius: 0;
  font-size: 16px;
  height: 48px;
  padding: 8px 16px;
  color: #0C2346;
  box-shadow: none;
}
form .form-control:hover {
  background: none;
  border: 1px solid #0C2346;
  border-radius: 0;
  color: #0C2346;
  outline: none;
  box-shadow: none;
}
form .form-control:focus {
  background: none;
  border: 1px solid #0C2346;
  border-radius: 0;
  color: #FAF4DA;
  outline: none;
  box-shadow: none;
}

@media (max-width: 450px) {
  form .form-control.neg-margin {
    margin-top: -1px;
  }
}

form .btn {
  border-radius: 0;
  border: none;
  color: #FAF4DA;
  outline: none;
  padding: 14px 40px;
  font-size: 16px;
  line-height: 20px;
}
form .btn:hover {
  background: #FF6407;
  color: #FAF4DA;
  outline: none;
}
form .btn:focus {
  background: #FF6407;
  color: #FAF4DA;
  outline: none;
}
@media (max-width: 450px) {
  form .btn {
    width: 110%;
    margin: 0 -10%;
  }
}

form .btn.black {
  background-color: #0C2346;
}
form .btn.black:hover {
  background: #0C2346;
  color: #FAF4DA;
  outline: none;
}
form .btn.black:focus {
  background: #0C2346;
  color: #FAF4DA;
  outline: none;
}

form.border-input .form-control {
  border-top: none;
  border-right: none;
  border-left: none;
  border-color: #0C2346;
  color: #0C2346;
}
form.border-input .form-control:hover {
  color: #0C2346;
  outline: none;
}
form.border-input .form-control:focus {
  color: #0C2346;
  outline: none;
}

.small-link {
  font-size: 12px;
}

.timeline {
  border-radius: 50px;
  font-size: 18px;
  padding: 8px 24px;
  transform: rotate(-8deg);
  display: inline-block;
  transition: all ease 0.3s;
}
.timeline:hover {
  transform: rotate(8deg);
}

.benefits .benefits-card:hover .timeline {
  transform: rotate(8deg);
}

.container-headers {
  color: #FFFFFF;
  font-family: "Yellix";
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 40px;
  line-height: 24px;
  /* identical to box height, or 150% */
  letter-spacing: 0.105em;
  text-transform: uppercase;
}
@media (max-width: 450px) {
  .container-headers {
    font-size: 14px;
  }
}

.benefits {
  margin: 100px 0;
  margin-top: 0;
}
@media (max-width: 450px) {
  .benefits {
    margin: 0;
  }
}

.benefits-card {
  border: 4px solid #0C2346;
  padding-top: 40px;
  padding-left: 40px;
}
.benefits-card img {
  height: 80px;
  margin-bottom: 20px;
}
.benefits-card h6 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
  margin-bottom: 5px;
}
@media (max-width: 450px) {
  .benefits-card h6 {
    font-size: 20px;
  }
}
.benefits-card p {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 30px;
}
@media (max-width: 450px) {
  .benefits-card p {
    font-size: 14px;
    line-height: 26px;
  }
}
.benefits-card .count {
  border-radius: 100%;
  height: 90px;
  width: 90px;
  font-size: 40px;
  margin-bottom: 40px;
}
@media (max-width: 450px) {
  .benefits-card {
    margin-bottom: 60px;
  }
}

.benefits-card .box-image {
  display: flex;
  justify-content: right;
}

.benefits-card .box-image img {
  height: 250px;
}

.benefits-card img.arrows {
  right: 0%;
  height: 30%;
}
@media (max-width: 450px) {
  .benefits-card img.arrows {
    transform: rotate(95deg);
  }
}

.newsletter {
  position: relative;
}

.newsletter h2 {
  font-size: 32px;
}

.newsletter .newsletter-shapes.one {
  left: -15%;
  top: 10%;
  width: 200px;
}
@media (max-width: 450px) {
  .newsletter .newsletter-shapes.one {
    top: -30%;
  }
}
.newsletter .newsletter-shapes.two {
  left: 25%;
  width: 200px;
  bottom: -61%;
}
@media (max-width: 450px) {
  .newsletter .newsletter-shapes.two {
    left: 65%;
    width: 110px;
    bottom: -31%;
  }
}

footer {
  position: relative;
  padding-top: 40px;
}

footer .description-box {
  display: flex;
  margin-left: 40px;
}
@media (max-width: 450px) {
  footer .description-box {
    padding: 10px 0;
    margin-left: 0;
    display: inline-block;
    width: 100%;
  }
}

footer .description-box .description {
  list-style: none;
  width: 50%;
  padding-left: 0;
}
@media (max-width: 450px) {
  footer .description-box .description {
    width: 100%;
    margin-top: 30px;
  }
}

footer .description-box .description .description__item {
  color: #F7F7F8;
  font-size: 15px;
  line-height: 22px;
  margin-bottom: 12px;
}
footer .description-box .description .description__item.header {
  color: #98A2B3;
  font-size: 15px;
  line-height: 22px;
  margin-bottom: 20px;
}
footer .description-box .description .description__item a {
  color: #F7F7F8;
  text-decoration: none;
}
footer .description-box .description .description__item img {
  height: 50px;
  margin-top: 10px;
}
@media (max-width: 450px) {
  footer .description-box .description .description__item {
    font-size: 13px;
    text-align: center;
  }
}

footer .social-link-box {
  height: 100%;
}

footer .social-link-box .social-link-box__content {
  display: flex;
  width: 100%;
  border-bottom: 1px solid #111113;
  height: 50%;
}
footer .social-link-box .social-link-box__content.bottom {
  border-bottom: none;
}
@media (max-width: 450px) {
  footer .social-link-box .social-link-box__content.top {
    border-top: 1px solid #111113;
  }
}

footer .social-link-box .social-link-box__content .social-link-box-image {
  color: #FFFFFF;
  width: 50%;
  text-align: center;
  padding: 40px;
  border-right: 1px solid #111113;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all ease 0.3s;
}
footer .social-link-box .social-link-box__content .social-link-box-image > img {
  margin-right: 10px;
}
footer .social-link-box .social-link-box__content .social-link-box-image.right {
  border-right: none;
}
footer .social-link-box .social-link-box__content .social-link-box-image:hover {
  color: #00CCFF;
}
@media (max-width: 450px) {
  footer .social-link-box .social-link-box__content .social-link-box-image {
    font-size: 13px;
    padding: 30px 40px;
  }
}

footer .footer__top .company-description {
  border-right: 1px solid #122540;
  display: inline-flex;
  height: 100%;
  width: 100%;
  align-items: flex-start;
}
@media (max-width: 450px) {
  footer .footer__top .company-description {
    border-right: none;
    display: inline-block;
  }
}

@media (max-width: 450px) {
  footer .footer__top .company-description .description-wrapper {
    text-align: center;
  }
}

footer .footer__top .company-description .description-wrapper .footer-logo {
  height: 38px;
  margin-bottom: 20px;
}
@media (max-width: 450px) {
  footer .footer__top .company-description .description-wrapper .footer-logo {
    height: 40px;
  }
}

footer .footer__top .company-description .description-wrapper p {
  font-size: 14px;
  line-height: 22px;
}
@media (max-width: 450px) {
  footer .footer__top .company-description .description-wrapper p {
    margin-bottom: 0;
  }
}

footer .footer__center {
  text-align: center;
}

.footer__top {
  border-top: 1px solid #122540;
  border-bottom: 1px solid #122540;
  padding: 30px 0;
}

footer .footer__bottom {
  color: #B9B9B9;
  font-size: 12px;
  text-align: center;
  margin-top: 50px;
  margin-bottom: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

footer .footer__bottom .footer-logo {
  margin-bottom: 30px;
}

/*# sourceMappingURL=main.css.map */
