@font-face {
  font-family: "Lato-regular";
  src: url("../fonts/Lato-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Lato-black";
  src: url("../fonts/Lato-Black.ttf") format("truetype");
}
@font-face {
  font-family: "Lato-bold";
  src: url("../fonts/Lato-Bold.ttf") format("truetype");
}
@font-face {
  font-family: "Lato-thin";
  src: url("../fonts/Lato-Thin.ttf") format("truetype");
}
* {
  box-sizing: border-box;
}
.section-content h1,
.section-content h2,
.section-content h3{
  color: #4192d9;
}
html {
  scroll-behavior: smooth;
}
body {
  padding: 0;
  overflow-x: hidden;
  font-family: "Lato-regular", Arial, Helvetica, sans-serif;
  font-size: 0.85rem;
}
a {
  text-decoration: none;
  color: inherit;
}
a:hover {
  color: initial;
}
ul {
  margin-bottom: 0;
}
li {
  list-style: none;
}
.form-control {
  box-shadow: none !important;
}
button {
  outline: none !important;
  box-shadow: none !important;
}
button.navbar-toggler {
  font-size: 0.85rem;
  padding: 5px 10px;
  border: none;
}
#_app {
  padding-top: 100px;
}
.top-bar {
  background-color: #000;
  color: #fff;
}
.top-bar a.tob-bar-link {
  display: inline-block;
  padding: 15px;
}
.top-bar ul.top-social-icons {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.top-bar ul.top-social-icons li {
  border-right: 1px solid rgba(58, 58, 58, 0.8784313725);
}
.top-bar ul.top-social-icons li:last-of-type {
  border: none;
}
.top-bar ul.top-social-icons li .social-icon-class {
  transition: all 300ms ease-in-out;
  display: inline-block;
  padding: 15px;
}
.top-bar ul.top-social-icons li .social-icon-class span {
  display: inline-block;
  width: 0;
  opacity: 0;
  pointer-events: none;
}
.top-bar ul.top-social-icons li .social-icon-class:hover {
  color: #fff;
}
.top-bar ul.top-social-icons li .social-icon-class:hover span {
  transition: all 300ms ease-in-out;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  opacity: 1;
  pointer-events: visible;
}
.top-bar ul.top-social-icons li .social-icon-class:hover i,
.top-bar ul.top-social-icons li .social-icon-class:hover svg {
  margin-right: 8px;
}
.top-bar ul.top-social-icons li .social-icon-class.facebook:hover {
  background-color: #3b5998 !important;
}
.top-bar ul.top-social-icons li .social-icon-class.twitter:hover {
  background-color: #00acee !important;
}
.top-bar ul.top-social-icons li .social-icon-class.instagram:hover {
  background-color: #3f729b !important;
}
.top-bar ul.top-social-icons li .social-icon-class.mail:hover {
  background-color: #6567a5 !important;
}
.nav-fixed-top {
  position: -webkit-fixed;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10000;
  background-color: #fff0;
  transition: all 300ms ease;
  height: 100px;
}
.nav-fixed-top .nav-item {
  margin-right: 10px;
}
.nav-fixed-top .navbar-brand {
  width: 200px;
}
.nav-fixed-top .navbar-brand .dark-color {
  display: none;
}
.nav-fixed-top .nav-item .nav-link {
  color: #000;
  transition: all 100ms ease-in;
}
.nav-fixed-top .nav-item .nav-link.active {
  color: #4192d9;
}
.nav-fixed-top .nav-item .nav-link:hover {
  color: #4192d9;
}
.nav-fixed-top.scrolled {
  position: fixed;
  height: 60px;
  background-color: #000;
}
.nav-fixed-top.scrolled .navbar-brand {
  width: 150px;
}
.nav-fixed-top.scrolled .navbar-brand .light-color {
  display: none;
}
.nav-fixed-top.scrolled .navbar-brand .dark-color {
  display: block;
}
.nav-fixed-top.scrolled .search-button .fa-search,
.nav-fixed-top.scrolled .search-button svg {
  color: #fff;
  fill: #fff;
}
.nav-fixed-top.scrolled .navbar-toggler,
.nav-fixed-top.scrolled .navbar-toggler-icon {
  color: #fff;
}
.nav-fixed-top.scrolled .search-form-field {
  background-color: #fff;
}
.nav-fixed-top.scrolled .search-form-field form .form-control {
  color: #000;
}
.nav-fixed-top .navbar-collapse {
  position: absolute;
  width: 100%;
  background-color: #292929;
  top: 100%;
  left: 0;
}
.nav-fixed-top .navbar-collapse ul.navbar-nav {
  padding-left: 12px;
  padding-right: 12px;
  padding-top: 16px;
}
.nav-fixed-top .navbar-collapse ul.navbar-nav li.nav-item {
  margin-bottom: 12px;
}
.nav-fixed-top .navbar-collapse ul.navbar-nav .nav-link {
  color: #cfe4f6;
}
.nav-fixed-top .navbar-collapse ul.navbar-nav .nav-link.active,
.nav-fixed-top .navbar-collapse ul.navbar-nav .nav-link:hover {
  color: #4192d9;
}
.primary-btn-link {
  background-color: #4192d9;
  transition: all 100ms ease-in;
  border-radius: 5px;
  color: #fff !important;
}
.primary-btn-link:hover {
  background-color: #cfe4f6;
  color: #4192d9 !important;
}
.search-button {
  width: 35px;
}
.search-button svg.close,
.search-button i.close {
  display: none;
}
.search-button.open svg.open,
.search-button.open i.open {
  display: none;
}
.search-button.open svg.close,
.search-button.open i.close {
  display: inline-block;
}
.w-80 {
  width: 80%;
}
.w-60 {
  width: 60%;
}
.w-65 {
  width: 65%;
}
.w-50 {
  width: 50%;
}
.font-12 {
  font-size: 0.85rem;
}
.font-14 {
  font-size: 0.85rem;
}
.search-form-field {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: calc(100% - 55px);
  background-color: #000;
  display: flex;
  pointer-events: none;
  opacity: 0;
  visibility: 0;
  justify-content: center;
  align-items: center;
  transition: 200ms ease-in;
}
.search-form-field.show {
  pointer-events: visible;
  visibility: visible;
  opacity: 1;
}
.search-form-field form {
  width: 90%;
  margin-right: auto;
}
.search-form-field form .form-control {
  background-color: rgba(0, 0, 0, 0);
  color: #fff;
  border: none !important;
  outline: 0 !important;
  box-shadow: none !important;
}
button.scroll-top {
  position: fixed;
  bottom: 85px;
  right: 14px;
  border-radius: 2px;
  background-color: #6c6c6c;
  width: 28px;
  height: 30px;
  transition: 200ms ease-in;
  opacity: 0;
  pointer-events: none;
}
button.scroll-top.show {
  opacity: 1;
  pointer-events: visible;
}
button.scroll-top i,
button.scroll-top svg {
  color: #fff;
  fill: #fff;
}
.hero-section .hero-section-img-layout {
  max-height: 80vh;
  min-height: 50vh;
  background: url("../images/banner_1836204988.png") no-repeat center
    center/cover;
  overflow: hidden;
}
.hero-section .hero-section-img-layout img.img-fluid {
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
  height: 100%;
}
.form-group-single {
  width: 100%;
  max-width: 400px;
  display: flex;
  justify-content: space-between;
}
.form-group-single .form-control {
  width: 80%;
  margin-right: 1rem;
  font-size: 0.85rem;
}
.form-group-single .form-control::-moz-placeholder {
  font-size: 0.85rem;
}
.form-group-single .form-control:-ms-input-placeholder {
  font-size: 0.85rem;
}
.form-group-single .form-control::placeholder {
  font-size: 0.85rem;
}
.form-group-single button,
.button-group-single a,
.button-group-single button,
.contact-submit {
  background-color: #292929;
  color: #fff;
}
.no-select {
  user-select: none;
}
.form-group-single button:hover,
.button-group-single a:hover,
.button-group-single button:hover,
.contact-submit:hover {
  color: #fff;
  background-color: #000;
}
main {
  background-color: #fff;
}
.bold {
  font-weight: bolder;
}
.section-group {
  margin-bottom: 2rem;
}
.section-group p {
  font-size: 1rem;
}
.section-group .section-title {
  text-align: center;
  text-transform: uppercase;
  font-size: 0.85rem;
  font-family: "Lato-bold", Arial, Helvetica, sans-serif;
  font-weight: bold;
  color: #000;
}
.section-group .section-title.text-left {
  text-align: left;
}
.section-group .section-sub-text {
  text-align: center;
  color: #292929;
}
.section-group .section-sub-text.text-left {
  text-align: left;
}
.section-webpay .section-view {
  display: flex;
  justify-content: center;
  align-items: center;
}
.section-webpay .section-logo {
  width: 40px;
}
.section-webpay .section-logo img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: auto;
}
.section-webpay .section-top-group {
  padding: 25px 20px 0;
  display: inherit;
  justify-content: space-between;
  max-width: 275px;
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
  margin-top: -58px;
  background-color: #fff;
}
.section-webpay .section-title-top {
  font-size: 16px;
  width: 70%;
  text-align: right;
}
.section-webpay .section-markdown .justify-contents {
  justify-content: center;
}
.section-webpay .section-markdown .img-markdown {
  width: 100%;
}
.section-webpay .section-markdown .intro-group {
  max-width: 420px;
  margin: auto;
}
.section-make-it-easy .group-item {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
.section-make-it-easy .__item-image {
  min-width: 90px;
}
.section-make-it-easy .__item-image img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  max-width: 68px;
  height: auto;
}
.section-make-it-easy .__item-text-intro h6 {
  font-size: 0.85rem;
}
.section-make-it-easy .__item-text-intro p {
  font-size: 0.85rem;
  width: 80%;
}
.section-community {
  margin-bottom: 5.5rem;
}
.section-community .community-items-group h6.bold {
  font-size: 0.85rem;
}
.section-community ul.module-items {
  margin-left: 40px;
}
.section-community ul.module-items li {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
.section-community ul.module-items li img {
  margin-right: 15px;
}
.section-community ul.module-items li p {
  width: 60%;
  margin-right: auto;
}
.section-community .carousel-indicators {
  bottom: -65px;
  align-items: center;
}
.section-community .carousel-indicators [data-bs-target] {
  background-color: #4192d9;
  width: 7px;
  height: 7px;
  border-radius: 50%;
}
.section-community .carousel-indicators .active[data-bs-target] {
  width: 10px;
  height: 10px;
}
.section-community button.carousel-control-prev {
  left: -15%;
}
.section-community button.carousel-control-prev img {
  width: 10px;
}
.section-community button.carousel-control-next {
  left: 100%;
}
.section-community button.carousel-control-next img {
  width: 10px;
}
.section-community .drop-shadow {
  margin-right: 1rem;
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}
.section-community .padding-right {
  padding: 30px;
}
.section-management {
  background-color: #cfe4f6;
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}
.section-management .section-sub-text {
  width: 70%;
}
.section-management .form-extended-group {
  height: 100%;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  align-items: flex-start;
}
.section-management .max-frame-video {
  width: 100%;
  display: flex;
  justify-content: center;
}
.section-management .max-width-frame {
  max-width: 450px;
  width: 100%;
}
.section-pricing .pricing-tags {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.section-pricing .pricing-tags .tag-item.bg-light-color .card .card-header {
  background-color: #6c6c6c;
}
.section-pricing
  .pricing-tags
  .tag-item.bg-light-color
  .card
  .card-footer-group
  a {
  background-color: #6c6c6c;
}
.section-pricing .pricing-tags .tag-item.bg-dark-color .card .card-header {
  background-color: #000;
}
.section-pricing
  .pricing-tags
  .tag-item.bg-dark-color
  .card
  .card-footer-group
  a {
  background-color: #000;
}
.section-pricing .pricing-tags .tag-item.bg-primary-color .card .card-header {
  background-color: #4192d9;
}
.section-pricing
  .pricing-tags
  .tag-item.bg-primary-color
  .card
  .card-footer-group
  a {
  background-color: #4192d9;
}
.section-pricing .pricing-tags .tag-item {
  display: flex;
  justify-content: center;
  align-items: center;
}
.section-pricing .pricing-tags .tag-item .card {
  width: 100%;
  max-width: 350px;
  border: none;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
    rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
  min-width: 300px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.8rem;
}
.section-pricing .pricing-tags .tag-item .card .card-header {
  color: #fff;
  text-align: center;
  padding: 1.2rem 0;
}
.section-pricing .pricing-tags .card-text-group {
  min-height: 255px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.section-pricing .pricing-tags .card-text-group ul {
  padding-left: 10px;
}
.section-pricing .pricing-tags .card-text-group li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 8px;
}
.section-pricing .pricing-tags .card-text-group li p {
  margin-bottom: 0;
  margin-left: 10px;
}
.section-pricing .pricing-tags .card-footer-group {
  display: flex;
  justify-content: center;
  align-items: center;
}
.section-pricing .pricing-tags .card-footer-group a {
  font-size: 0.85rem;
  border: none;
  box-shadow: none;
  outline: none;
}
.section-faq {
  margin-bottom: 4rem;
}
.section-faq .accordion-group .accordion-button {
  border-radius: 10px;
  background-color: #4192d9;
  color: #fff;
  font-size: 0.85rem;
  padding-top: 25px;
  padding-bottom: 25px;
}
.section-faq .accordion-group .accordion-button::after {
  background-image: url("../images/icons/plus.svg");
}
.section-faq .accordion-item {
  margin-bottom: 15px;
  border-radius: 12px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.section-footer {
  background-color: #cfe4f6;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.section-footer .flex-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.section-footer .flex-content h6 {
  font-size: 0.85rem;
  color: #4192d9;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.section-footer .flex-content a {
  color: #fff;
  background-color: #4192d9;
  font-size: 0.85rem;
}
footer {
  background-color: #4192d9;
  color: #fff;
  font-size: 0.85rem;
}
footer .footer-link {
  margin-bottom: 10px;
  display: inline-block;
}
footer .footer-link-extended {
  display: inline-block;
  background-color: #292929;
  color: #fff;
  padding: 8px 15px;
  border-radius: 4px;
  margin-top: 10px;
}
footer .footer-link-extended:hover {
  background-color: #000;
}
footer .footer-top-group {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
footer ._logo {
  width: 200px;
  margin-bottom: 15px;
}
footer ._footer_text {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
footer .links-formated ul {
  padding: 0;
}
footer .form-group-single {
  max-width: 100%;
}
footer .footer-bottom {
  padding: 20px;
}
.section-community button.carousel-control-next,
.section-community button.carousel-control-prev {
  display: none;
}
.testimonial-img,
.testimonial-body {
  padding: 1rem;
}
.testimonial-img img {
  border-radius: 5px;
}
.card-text-group.extensions {
  flex-direction: column;
  padding-left: 0;
  align-items: flex-start !important;
}
.cursor-pointer {
  cursor: pointer;
}
.contact-content {
  padding: 2rem 0 4rem;
}
.contact-content .text-black {
  color: #000;
}
.contact-content .heading {
  font-size: 2.5rem;
  font-weight: 900;
}
.contact-content .form-control {
  border: none;
  border-bottom: 1px solid #afafaf82;
  padding-left: 0;
  padding-right: 0;
  border-radius: 0;
  background: none;
}
.contact-content .form-control:active,
.contact-content .form-control:focus {
  outline: none;
  box-shadow: none;
  border-color: #000;
}
.contact-content .col-form-label {
  color: #000;
  font-size: 13px;
}
.contact-content .btn,
.contact-content .form-control,
.contact-content .custom-select {
  height: 45px;
  border-radius: 0;
}
.contact-content .custom-select {
  border: none;
  border-bottom: 1px solid #afafaf82;
  padding-left: 0;
  padding-right: 0;
  border-radius: 0;
}
.contact-content .custom-select:active,
.contact-content .custom-select:focus {
  outline: none;
  box-shadow: none;
  border-color: #000;
}
.contact-content .btn {
  border: none;
  border-radius: 5px;
  font-size: 1rem;
}
.contact-content .btn.btn-primary {
  background: #4d80e4;
  color: #fff;
}
.contact-content .btn:hover {
  color: #fff;
}
.contact-content .btn:active,
.contact-content .btn:focus {
  outline: none;
  box-shadow: none;
}
.contact-content .contact-wrap,
.contact-form-content .contact-wrap {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  background: #fff;
  border-radius: 8px;
}
.section-wrapper-group {
  max-width: 800px;
}
.contact-content .contact-wrap .col-form-label {
  font-size: 14px;
  color: #b3b3b3;
  margin: 0 0 10px 0;
  display: inline-block;
  padding: 0;
}
.contact-content .contact-wrap .form,
.contact-content .contact-wrap .contact-info {
  padding: 40px;
}
.contact-content .contact-wrap .contact-info {
  color: rgba(255, 255, 255, 0.5);
}
.contact-content .contact-wrap .contact-info ul li {
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.5);
}
.contact-content .contact-wrap .contact-info ul li .wrap-icon {
  font-size: 20px;
  color: #fff;
  margin-top: 5px;
}
.contact-content .contact-wrap .form {
  background: #fff;
}
.contact-content .contact-wrap .form h3 {
  color: #000;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 30px;
}
.contact-content .contact-wrap .contact-info {
  height: 100vh;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.contact-content .contact-wrap .contact-info a {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.contact-content .contact-wrap .contact-info h3 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 30px;
}
.contact-content label.error {
  font-size: 12px;
  color: red;
}
.contact-content #message {
  resize: vertical;
}
.contact-content #form-message-warning,
.contact-content #form-message-success {
  display: none;
}
.contact-content #form-message-warning {
  color: #b90b0b;
}
.contact-content #form-message-success {
  color: #55a44e;
  font-size: 18px;
  font-weight: bold;
}
.contact-content .submitting {
  float: left;
  width: 100%;
  padding: 10px 0;
  display: none;
  font-weight: bold;
  font-size: 12px;
  color: #000;
}
@media (max-width: 1199px) {
  .contact-wrap .contact-info {
    height: 400px !important;
  }
}
/* SIGNUP CSS */
.signup {
  font-family: "Rubik", Helvetica, Arial, Lucida, sans-serif;
}
.sp-padding {
  padding-top: 30px;
  padding-bottom: 30px;
}
.signup .gegevens {
  background-color: #e1ebf7;
}
.sp-header .sp-title {
  color: #09456b;
  font-weight: bold;
  font-size: 25px;
}
.signup .sp-subtitle {
  font-weight: bold;
  font-size: 21px;
}

.signup label {
  font-weight: 200;
  font-size: 14px;
  display: block;
}
.aanhef label {
  display: inline-block !important;
}
.signup .gegevens .form-group {
  margin-bottom: 20px;
}
.signup .documenten .card {
  background: white;
  border-radius: 5px;
  box-shadow: 0 0 10px 0 rgb(0 0 0 / 10%);
  padding: 10px;
  padding-left: 30px !important;
  margin-bottom: 20px;
}
.signup .dn-body .form-check-label {
  font-size: 17px;
  color: black;
}
.signup .dn-body .form-check-input {
  margin-top: 6px;
}
.signup .dn-body .dn-details {
  margin-left: 20px;
  font-weight: lighter;
  margin-bottom: 0;
  line-height: 25px;
}
.signup .handtekening .signature {
  background: #e1ebf7;
}
.signup .canvas-con {
  line-height: 0;
}
.signup .btn-clear {
  border: 2px solid black;
  padding: 0px 7px;
  font-size: 14px;
  font-weight: bold;
}
.btn-verzende {
  border: 2px solid black;
  padding: 5px 20px;
  font-size: 23px;
  font-weight: bold;
}
.br-5 {
  border-radius: 5px;
}
.accordion-button:not(.collapsed)::after {
  transform: rotate(45deg) !important;
}
.bg-primary-solid {
  background-color: #4192d9;
}
.alert-group {
  position: fixed;
  bottom: 75px;
  right: 0;
  transition: 3ms ease;
}
.alert-group.hide {
  right: -100%;
}
@media only screen and (min-width: 768px) {
  .section-group .section-title {
    font-size: 1rem;
  }
  .section-community button.carousel-control-prev {
    left: -9%;
  }
  .section-community button.carousel-control-next {
    left: 95%;
  }
  .section-webpay .section-top-group {
    max-width: 420px;
  }
  .section-webpay .section-title-top {
    font-size: 18px;
  }
  .section-webpay .section-logo {
    width: 60px;
  }
  .section-community button.carousel-control-next,
  .section-community button.carousel-control-prev {
    display: block;
  }
  .card-text-group.extensions {
    flex-direction: row;
  }
  .sp-padding {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media only screen and (min-width: 992px) {
  .order-lg-1 {
    order: 1 !important;
  }
  .order-lg-2 {
    order: 2 !important;
  }
  .nav-fixed-top.scrolled .nav-item .nav-link {
    color: #fff !important;
  }
  .nav-fixed-top.scrolled .nav-item .nav-link:hover,
  .nav-fixed-top.scrolled .nav-item .nav-link.active {
    color: #4192d9 !important;
  }
  .nav-fixed-top .navbar-collapse {
    position: initial;
    width: initial;
    background-color: initial;
    top: initial;
    left: initial;
  }
  .nav-fixed-top .navbar-collapse ul.navbar-nav {
    padding: 0;
  }
  .nav-fixed-top .navbar-collapse ul.navbar-nav li.nav-item {
    margin-bottom: 0;
  }
  .nav-fixed-top .navbar-collapse ul.navbar-nav .nav-link {
    color: #000;
  }
  .section-group .section-title {
    font-size: 1rem;
  }
  .section-group .section-title.text-lg-left {
    text-align: left;
  }
  .section-group .section-title.fs-large {
    font-size: 1.25rem;
  }
  .section-group .section-sub-text {
    text-align: left;
  }
  .section-webpay .section-view {
    justify-content: flex-end;
  }
  .section-webpay .section-logo {
    width: 60px;
  }
  .section-webpay .section-top-group {
    padding: 30px 25px 0;
    max-width: 500px;
    border-top-right-radius: 25px;
    border-top-left-radius: 25px;
    margin-top: -58px;
  }
  .section-webpay .section-title-top {
    font-size: 20px;
    width: 70%;
  }
  .section-webpay .section-markdown .justify-contents {
    justify-content: flex-end;
  }
  .section-webpay .section-markdown .text-group {
    max-width: 332px;
  }
  .section-webpay .section-markdown .text-group p {
    text-align: left !important;
  }
  .section-webpay .section-markdown .img-markdown {
    width: 100%;
    min-width: 750px;
  }
  .section-webpay .section-markdown .intro-group {
    margin-left: 0;
  }
  .section-community button.carousel-control-prev {
    left: -120px;
  }
  .section-community button.carousel-control-next {
    left: 95%;
  }
  .section-pricing .pricing-tags {
    position: relative;
    flex-direction: row;
  }
  .section-pricing .pricing-tags .tag-item.tag-premium {
    position: relative;
    z-index: 5;
  }

  .section-pricing .pricing-tags .tag-item.tag-premium .card {
    min-height: 520px;
    min-width: 320px;
  }
  .section-pricing .pricing-tags .tag-item.tag-premium .card-text-group {
    min-height: 300px;
  }
  .section-pricing .pricing-tags .tag-item.bg-light-color {
    margin-right: -10px;
  }
  .section-pricing .pricing-tags .tag-item.bg-dark-color {
    margin-left: -10px;
  }
  .section-pricing .pricing-tags .tag-item.bg-light-color.inner-spacing {
    margin-left: -10px;
  }
  .section-faq .accordion-group {
    margin-left: 2.5rem;
  }
  .section-footer .flex-content h6 {
    font-size: 0.85rem;
    margin-bottom: 40px;
  }
  .section-footer .flex-content a {
    font-size: 0.85rem;
  }
  footer {
    font-size: 0.85rem;
  }
  .testimonial-body {
    padding-left: 0;
    padding-right: 0;
  }
}
