@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");
/**
 * Set up a decent box model on the root element
 */
html {
  box-sizing: border-box;
}

/**
 * Make all elements from the DOM inherit from the parent box-sizing
 * Since `*` has a specificity of 0, it does not override the `html` value
 * making all elements inheriting from the root box-sizing value
 * See: https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/
 */
*,
*::before,
*::after {
  box-sizing: inherit;
}

/**
 * Basic styles for links
 */
a {
  color: rgb(0, 0, 0);
  text-decoration: none;
  cursor: pointer;
}
a:hover, a:active, a:focus {
  color: rgb(153, 153, 153);
  text-decoration: none;
}

@media (min-width: 320px) {
  .mb {
    margin-bottom: 45px;
  }
}
@media (min-width: 768px) {
  .mb {
    margin-bottom: 90px;
  }
}
@media (min-width: 1200px) {
  .mb {
    margin-bottom: 120px;
  }
}
@media (min-width: 1600px) {
  .mb {
    margin-bottom: 180px;
  }
}

.mb02 {
  margin-bottom: 20px;
}

.mt03 {
  margin-top: 30px;
}

.mb03 {
  margin-bottom: 30px;
}

.mb54 {
  margin-bottom: 45px;
}

.mb51 {
  margin-bottom: 23px;
}

@media (min-width: 320px) {
  .pb {
    padding-bottom: 45px;
  }
}
@media (min-width: 768px) {
  .pb {
    padding-bottom: 90px;
  }
}

.pb42 {
  padding-bottom: 24px;
}

.pl0 {
  padding-left: 0px;
}

.pr0 {
  padding-right: 0px;
}

@media (min-width: 320px) {
  .top-left {
    text-align: center;
  }
}
@media (min-width: 768px) {
  .top-left {
    text-align: left;
  }
}

@media (min-width: 320px) {
  .top-center {
    text-align: center;
  }
}
@media (min-width: 768px) {
  .top-center {
    text-align: center;
  }
}

@media (min-width: 320px) {
  .top-right {
    text-align: center;
  }
}
@media (min-width: 768px) {
  .top-right {
    text-align: right;
  }
}

@media (min-width: 320px) {
  .mw_display {
    display: none;
  }
}
@media (min-width: 768px) {
  .mw_display {
    display: inline;
  }
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left !important;
}

.pr0 {
  padding-right: 0;
}

.pl0 {
  padding-left: 0;
}

body {
  color: rgb(63, 63, 63);
  font: normal 100%/1.4 "Outfit", sans-serif;
  transition: 0.6s linear;
}

.navbar-toggler:focus {
  color: rgb(37, 99, 235);
  text-decoration: none !important;
  outline: 0;
  box-shadow: none !important;
}
.navbar-toggler:focus i {
  color: rgb(255, 255, 255);
}

.navbar-toggler {
  color: rgb(37, 99, 235);
}

.navbar-toggler {
  color: rgb(37, 99, 235);
  text-decoration: none !important;
  font-size: 42px;
  outline: 0;
  box-shadow: none !important;
}

.navbar-toggler:focus i {
  color: rgb(37, 99, 235) !important;
}

button:focus {
  outline: 0;
  box-shadow: none !important;
}

.mw-cover-bg {
  background-size: cover;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  -o-background-size: cover;
  -ms-background-size: cover;
  background-repeat: no-repeat;
  /*@include respond-to("xsmall") {
    background-position: -600px center;
  }
  @include respond-to("medium") {
    background-position: center center;
  }*/
  background-position: center center;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.height-cover {
  height: 100vh;
}

.mw-overlay {
  position: relative;
  z-index: 0;
}

.mw-overlay:before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

a.btn-style-01,
input.btn-style-01 {
  display: block;
  background: rgb(249, 115, 22);
  font-size: 1.125rem;
  color: white;
  padding: 10px 10px;
  border-radius: 12px;
  text-align: center;
}
a.btn-style-01:hover,
input.btn-style-01:hover {
  color: rgb(237, 237, 237);
  text-decoration: none;
}
a.btn-style-01.focus, a.btn-style-01:focus,
input.btn-style-01.focus,
input.btn-style-01:focus {
  outline: 0 !important;
  box-shadow: 0 0 0 0.1rem rgba(0, 0, 0, 0) !important;
}

a.btn-style-02,
input.btn-style-02 {
  display: block;
  background: rgb(255, 255, 255);
  font-size: 1.125rem;
  color: rgb(37, 99, 235);
  font-weight: 600;
  padding: 10px 10px;
  border-radius: 12px;
  text-align: center;
}
a.btn-style-02:hover,
input.btn-style-02:hover {
  color: rgb(83.7142857143, 132.4285714286, 239.2857142857);
  text-decoration: none;
}
a.btn-style-02.focus, a.btn-style-02:focus,
input.btn-style-02.focus,
input.btn-style-02:focus {
  outline: 0 !important;
  box-shadow: 0 0 0 0.1rem rgba(0, 0, 0, 0) !important;
}

strong {
  color: rgb(249, 115, 22);
}

.parallax {
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (min-width: 320px) {
  .parallax {
    background-position: -600px center;
  }
}
@media (min-width: 768px) {
  .parallax {
    background-position: center center;
  }
}

.form-group {
  margin-bottom: 16px !important;
}

.fancybox-content {
  background: transparent !important;
}

.fancybox-slide--html .fancybox-close-small {
  color: rgb(255, 255, 255) !important;
}

.mw_cintillo {
  min-height: 50px;
  display: flex;
  align-items: center;
}
.mw_cintillo p {
  font-size: 16px;
  color: rgb(255, 255, 255);
  margin-bottom: 0 !important;
  margin-top: 13px;
}
.mw_cintillo .owl-carousel .owl-item img {
  display: block;
  width: auto !important;
}

.mw_top-header-01 {
  background: rgb(37, 99, 235);
  min-height: 50px;
  display: flex;
  align-items: center;
}
.mw_top-header-01 p {
  font-size: 16px;
  color: rgb(255, 255, 255) !important;
  margin-bottom: 0 !important;
  margin-top: 13px;
}

.mw_top-header-01 a {
    color: rgb(255, 255, 255)!important;
}

.mw_top-header-01 .owl-carousel .owl-item img {
  display: block;
  width: auto !important;
}

.mw_slide-02 {
  position: relative;
}
.mw_slide-02 .heroe-img {
  position: absolute;
  bottom: 0;
  left: 2%;
  z-index: 1;
}
.mw_slide-02 .inner-content {
  position: relative;
  z-index: 5;
}
.mw_slide-02 .logo-kick {
  padding: 15px 0;
}
.mw_slide-02 .cta {
  color: rgb(68, 68, 68);
  margin-bottom: 15px;
  font-weight: bold;
}
@media (min-width: 320px) {
  .mw_slide-02 .cta {
    font-size: 26px;
    text-align: center;
    text-shadow: #fff 2px 0px 0px, #fff 1.75517px 0.958851px 0px, #fff 1.0806px 1.68294px 0px, #fff 0.141474px 1.99499px 0px, #fff -0.832294px 1.81859px 0px, #fff -1.60229px 1.19694px 0px, #fff -1.97998px 0.28224px 0px, #fff -1.87291px -0.701566px 0px, #fff -1.30729px -1.5136px 0px, #fff -0.421592px -1.95506px 0px, #fff 0.567324px -1.91785px 0px, #fff 1.41734px -1.41108px 0px, #fff 1.92034px -0.558831px 0px;
  }
}
@media (min-width: 768px) {
  .mw_slide-02 .cta {
    font-size: 45px;
    text-align: left;
    text-shadow: #fff 2px 0px 0px, #fff 1.75517px 0.958851px 0px, #fff 1.0806px 1.68294px 0px, #fff 0.141474px 1.99499px 0px, #fff -0.832294px 1.81859px 0px, #fff -1.60229px 1.19694px 0px, #fff -1.97998px 0.28224px 0px, #fff -1.87291px -0.701566px 0px, #fff -1.30729px -1.5136px 0px, #fff -0.421592px -1.95506px 0px, #fff 0.567324px -1.91785px 0px, #fff 1.41734px -1.41108px 0px, #fff 1.92034px -0.558831px 0px;
  }
}
@media (min-width: 1600px) {
  .mw_slide-02 .cta {
    font-size: 60px;
  }
}
.mw_slide-02 .sub-cta {
  color: rgb(68, 68, 68);
  margin-bottom: 20px;
  font-size: 22px;
  margin-bottom: 30px !important;
}
@media (min-width: 320px) {
  .mw_slide-02 .sub-cta {
    text-align: center;
    text-shadow: #fff 2px 0px 0px, #fff 1.75517px 0.958851px 0px, #fff 1.0806px 1.68294px 0px, #fff 0.141474px 1.99499px 0px, #fff -0.832294px 1.81859px 0px, #fff -1.60229px 1.19694px 0px, #fff -1.97998px 0.28224px 0px, #fff -1.87291px -0.701566px 0px, #fff -1.30729px -1.5136px 0px, #fff -0.421592px -1.95506px 0px, #fff 0.567324px -1.91785px 0px, #fff 1.41734px -1.41108px 0px, #fff 1.92034px -0.558831px 0px;
  }
}
@media (min-width: 768px) {
  .mw_slide-02 .sub-cta {
    text-align: left;
    text-shadow: #fff 2px 0px 0px, #fff 1.75517px 0.958851px 0px, #fff 1.0806px 1.68294px 0px, #fff 0.141474px 1.99499px 0px, #fff -0.832294px 1.81859px 0px, #fff -1.60229px 1.19694px 0px, #fff -1.97998px 0.28224px 0px, #fff -1.87291px -0.701566px 0px, #fff -1.30729px -1.5136px 0px, #fff -0.421592px -1.95506px 0px, #fff 0.567324px -1.91785px 0px, #fff 1.41734px -1.41108px 0px, #fff 1.92034px -0.558831px 0px;
  }
}
@media (min-width: 320px) {
  .mw_slide-02 .btn01 {
    margin-bottom: 15px;
  }
}
@media (min-width: 768px) {
  .mw_slide-02 .btn01 {
    margin-bottom: 0;
  }
}

.mw_about-11 .content-right .title-section {
  margin-bottom: 30px;
}
.mw_about-11 .content-right .title-section h2 {
  color: rgb(37, 99, 235);
  font-weight: 700;
}
@media (min-width: 320px) {
  .mw_about-11 .content-right .title-section h2 {
    font-size: 26px;
  }
}
@media (min-width: 768px) {
  .mw_about-11 .content-right .title-section h2 {
    font-size: 32px;
  }
}
.mw_about-11 .content-right .intro-section code {
  color: rgb(249, 115, 22);
}
.mw_about-11 .content-right .intro-section ul {
  padding-left: 0;
}
.mw_about-11 .content-right .intro-section ul li {
  list-style: none;
  margin-bottom: 5px;
}
.mw_about-11 .content-right .intro-section ul li::before {
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  content: "\f058";
  margin-right: 5px;
  color: #22c55e;
}
.mw_about-11 .content-right .intro-section blockquote {
  position: relative;
  padding-top: 90px;
  padding-bottom: 90px;
  font-family: "Georgia", serif;
  font-weight: 500;
  color: #333;
  quotes: "“" "”" "‘" "’";
}
@media (min-width: 320px) {
  .mw_about-11 .content-right .intro-section blockquote {
    font-size: 1.6rem;
    padding-left: 26px;
  }
}
@media (min-width: 768px) {
  .mw_about-11 .content-right .intro-section blockquote {
    font-size: 2.2rem;
    padding-left: 50px;
  }
}
.mw_about-11 .content-right .intro-section blockquote::before, .mw_about-11 .content-right .intro-section blockquote::after {
  color: #c6c6c6;
  font-size: 2em;
  font-weight: 400;
  line-height: 0.1em;
}
.mw_about-11 .content-right .intro-section blockquote::before {
  position: absolute;
  left: 0;
  content: open-quote;
  margin-right: 0.15em;
  vertical-align: -0.15em;
}
.mw_about-11 .content-right .intro-section blockquote::after {
  content: close-quote;
  vertical-align: -0.7em;
}
.mw_about-11 .content-left {
  position: relative;
}
.mw_about-11 .content-left .media-cta {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 500;
}
@media (min-width: 320px) {
  .mw_about-11 .content-left .media-cta {
    top: 75%;
  }
}
@media (min-width: 768px) {
  .mw_about-11 .content-left .media-cta {
    top: 65%;
  }
}
.mw_about-11 .content-left .media-cta .play-video i {
  color: rgb(255, 255, 255);
}
@media (min-width: 320px) {
  .mw_about-11 .content-left .media-cta .play-video i {
    font-size: 60px;
  }
}
@media (min-width: 768px) {
  .mw_about-11 .content-left .media-cta .play-video i {
    font-size: 100px;
  }
}
@media (min-width: 320px) {
  .mw_about-11 .content-left {
    margin-bottom: 120px;
  }
}
@media (min-width: 768px) {
  .mw_about-11 .content-left {
    margin-bottom: 0;
  }
}
.mw_about-11 .content-left .item-img-01 {
  position: relative;
  z-index: 5;
}
.mw_about-11 .content-left .item-img-01 img {
  border-radius: 16px;
}
@media (min-width: 320px) {
  .mw_about-11 .content-left .item-img-01 {
    top: 40%;
    left: 18%;
  }
}
@media (min-width: 768px) {
  .mw_about-11 .content-left .item-img-01 {
    top: 25%;
    left: 98%;
  }
}
.mw_about-11 .content-left .item-img-02 {
  position: relative;
  z-index: 1;
}
.mw_about-11 .content-left .item-img-02 img {
  border-radius: 16px;
}
@media (min-width: 320px) {
  .mw_about-11 .content-left .item-img-02 {
    top: 13%;
    right: 19%;
  }
}
@media (min-width: 768px) {
  .mw_about-11 .content-left .item-img-02 {
    top: 0;
    left: -88%;
  }
}
@media (min-width: 320px) {
  .mw_about-11 .item-continue {
    margin-bottom: 30px;
  }
}
@media (min-width: 768px) {
  .mw_about-11 .item-continue {
    margin-bottom: 0;
  }
}

.calendario .intro-section {
  margin-bottom: 30px;
  text-align: center;
}
.calendario .title-section {
  margin-bottom: 20px;
  text-align: center;
}
.calendario .title-section h2 {
  color: rgb(37, 99, 235);
  font-weight: 700;
  margin-bottom: 0;
}
@media (min-width: 320px) {
  .calendario .title-section h2 {
    font-size: 26px;
  }
}
@media (min-width: 768px) {
  .calendario .title-section h2 {
    font-size: 32px;
  }
}
.calendario .owl-carousel .owl-item img {
  display: block;
  width: auto !important;
  border-radius: 50% !important;
}
@media (min-width: 320px) {
  .calendario .logo-calendario {
    text-align: center;
  }
}
@media (min-width: 768px) {
  .calendario .logo-calendario {
    text-align: center;
  }
}
.calendario .img-featured {
  text-align: center;
  margin-bottom: 20px;
}
.calendario .img-featured i {
  color: rgb(249, 115, 22);
  font-size: 42px;
}
.calendario .title-post,
.calendario .intro-post {
  text-align: center;
}
.calendario .title-post h3 {
  font-size: 20px;
  font-weight: bold;
  color: rgb(37, 99, 235);
}
.calendario .owl-theme .owl-dots .owl-dot span {
  width: 20px;
  height: 20px;
  margin: 5px 7px;
  background: rgb(255, 255, 255);
  border: 1px solid rgb(249, 115, 22);
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 0.2s ease;
  border-radius: 30px;
}
.calendario .owl-theme .owl-dots .owl-dot.active span,
.calendario .owl-theme .owl-dots .owl-dot:hover span {
  background: rgb(37, 99, 235);
}
.calendario .mw_owl-02 .owl-nav {
  position: absolute !important;
  top: 35% !important;
  width: 100% !important;
}
.calendario .mw_owl-02 .owl-nav button.owl-prev {
  position: absolute !important;
  background-color: transparent !important;
  color: rgb(249, 115, 22) !important;
  font-size: 36px;
  width: 45px;
  border-radius: 0 !important;
}
@media (min-width: 320px) {
  .calendario .mw_owl-02 .owl-nav button.owl-prev {
    right: 87% !important;
  }
}
@media (min-width: 768px) {
  .calendario .mw_owl-02 .owl-nav button.owl-prev {
    right: 100% !important;
  }
}
.calendario .mw_owl-02 .owl-nav button.owl-next {
  position: absolute !important;
  background-color: transparent !important;
  color: rgb(249, 115, 22) !important;
  font-size: 36px;
  width: 45px;
  border-radius: 0 !important;
}
@media (min-width: 320px) {
  .calendario .mw_owl-02 .owl-nav button.owl-next {
    left: 87% !important;
  }
}
@media (min-width: 768px) {
  .calendario .mw_owl-02 .owl-nav button.owl-next {
    left: 100% !important;
  }
}
.calendario .item-post .card {
  border-radius: 12px !important;
}

.mw_cta-02 .image-cta {
  background: linear-gradient(to right, rgb(37, 99, 235), rgb(249, 115, 22));
  min-height: 450px;
  display: flex;
  align-items: center;
  position: relative;
}
.mw_cta-02 .content-cta {
  text-align: center;
}
.mw_cta-02 .content-cta .title-cta {
  margin-bottom: calc(1.375rem + 1.5vw);
  position: relative;
  color: rgb(255, 255, 255);
}
@media (min-width: 1200px) {
  .mw_cta-02 .content-cta .title-cta {
    margin-bottom: 2.5rem;
  }
}
.mw_cta-02 .content-cta .title-cta h4 {
  font-weight: 700;
}
@media (min-width: 320px) {
  .mw_cta-02 .content-cta .title-cta h4 {
    font-size: 26px;
  }
}
@media (min-width: 768px) {
  .mw_cta-02 .content-cta .title-cta h4 {
    font-size: 42px;
  }
}
@media (min-width: 320px) {
  .mw_cta-02 .content-cta .title-cta h5 {
    font-size: 20px;
  }
}
@media (min-width: 768px) {
  .mw_cta-02 .content-cta .title-cta h5 {
    font-size: 24px;
  }
}
.mw_cta-02 .btn-cta {
  position: relative;
}
.mw_cta-02 a.btn-style-03,
.mw_cta-02 input.btn-style-03 {
  display: block;
  background: transparent;
  font-size: 1.125rem;
  color: rgb(255, 255, 255);
  border: 2px solid rgb(255, 255, 255);
  padding: 10px 10px;
  border-radius: 12px;
  text-align: center;
}
.mw_cta-02 a.btn-style-03:hover,
.mw_cta-02 input.btn-style-03:hover {
  color: rgb(237, 237, 237);
  text-decoration: none;
}
.mw_cta-02 a.btn-style-03.focus, .mw_cta-02 a.btn-style-03:focus,
.mw_cta-02 input.btn-style-03.focus,
.mw_cta-02 input.btn-style-03:focus {
  outline: 0 !important;
  box-shadow: 0 0 0 0.1rem rgba(0, 0, 0, 0) !important;
}
@media (min-width: 320px) {
  .mw_cta-02 .btn-01 {
    margin-bottom: 15px;
  }
}
@media (min-width: 768px) {
  .mw_cta-02 .btn-01 {
    margin-bottom: 0;
  }
}

.mw_faqs-03 .content-right {
  position: relative;
}
.mw_faqs-03 .content-right .media-cta {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 500;
}
@media (min-width: 320px) {
  .mw_faqs-03 .content-right .media-cta {
    top: 75%;
  }
}
@media (min-width: 768px) {
  .mw_faqs-03 .content-right .media-cta {
    top: 65%;
  }
}
.mw_faqs-03 .content-right .media-cta .play-video i {
  color: rgb(255, 255, 255);
}
@media (min-width: 320px) {
  .mw_faqs-03 .content-right .media-cta .play-video i {
    font-size: 60px;
  }
}
@media (min-width: 768px) {
  .mw_faqs-03 .content-right .media-cta .play-video i {
    font-size: 100px;
  }
}
@media (min-width: 320px) {
  .mw_faqs-03 .content-right {
    margin-bottom: 85px;
  }
}
@media (min-width: 768px) {
  .mw_faqs-03 .content-right {
    margin-bottom: 0;
  }
}
.mw_faqs-03 .content-right .item-img-01 {
  position: relative;
  z-index: 5;
}
.mw_faqs-03 .content-right .item-img-01 img {
  border-radius: 12px;
}
@media (min-width: 320px) {
  .mw_faqs-03 .content-right .item-img-01 {
    top: 40%;
    left: 30%;
  }
}
@media (min-width: 768px) {
  .mw_faqs-03 .content-right .item-img-01 {
    top: 25%;
    left: 35%;
  }
}
.mw_faqs-03 .content-right .item-img-02 {
  position: relative;
  z-index: 1;
}
.mw_faqs-03 .content-right .item-img-02 img {
  border-radius: 12px;
}
@media (min-width: 320px) {
  .mw_faqs-03 .content-right .item-img-02 {
    top: 13%;
    right: 10%;
  }
}
@media (min-width: 768px) {
  .mw_faqs-03 .content-right .item-img-02 {
    top: 0;
    left: 0;
  }
}
.mw_faqs-03 .content-left .title-section {
  text-align: center;
  margin-bottom: 30px;
}
.mw_faqs-03 .content-left .title-section h2 {
  font-weight: 700;
  color: rgb(37, 99, 235);
}
@media (min-width: 320px) {
  .mw_faqs-03 .content-left .title-section h2 {
    font-size: 26px;
  }
}
@media (min-width: 768px) {
  .mw_faqs-03 .content-left .title-section h2 {
    font-size: 32px;
  }
}
.mw_faqs-03 .content-left ul {
  padding-left: 0;
}
.mw_faqs-03 .content-left ul li {
  list-style: none;
  margin-bottom: 5px;
}
.mw_faqs-03 .content-left ul li::before {
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  content: "\f058";
  margin-right: 5px;
  color: #22c55e;
}
.mw_faqs-03 .content-left strong {
  color: rgb(37, 99, 235) !important;
}
.mw_faqs-03 .accordion-item {
  background-color: transparent !important;
}
.mw_faqs-03 .accordion-item:first-of-type .accordion-button,
.mw_faqs-03 .accordion-item:last-of-type .accordion-button {
  border-radius: 4px !important;
}
.mw_faqs-03 .accordion-button {
  border-radius: 4px;
  padding: 20px;
  background: rgba(59, 77, 243, 0.1);
  box-shadow: 0 8px 24px rgba(11, 27, 43, 0.08);
  color: rgb(63, 63, 63);
  margin-bottom: 10px;
}
.mw_faqs-03 .accordion-body {
  font-size: 16px;
  color: rgb(63, 63, 63);
}
.mw_faqs-03 .accordion-button:focus {
  box-shadow: none !important;
  color: rgb(63, 63, 63);
}
.mw_faqs-03 .accordion-button:hover {
  color: rgb(63, 63, 63);
}
.mw_faqs-03 .accordion-item {
  border: none !important;
}
.mw_faqs-03 .accordion-button::before {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  content: "\f105" !important;
  font-weight: 300;
  font-family: "Font Awesome 5 Pro" !important;
  color: rgb(249, 115, 22) !important;
  margin-right: 10px;
  background-size: 1.25rem;
  transition: transform 0.2s ease-in-out;
  font-size: 18px;
}
.mw_faqs-03 .accordion-button::after {
  background-image: none !important;
}
.mw_faqs-03 .accordion-button:not(.collapsed) {
  color: rgb(68, 68, 68);
  font-weight: bold;
  box-shadow: none !important;
  background: rgba(11, 27, 43, 0.08);
}
.mw_faqs-03 .accordion-button:not(.collapsed)::before {
  font-family: "Font Awesome 5 Pro" !important;
  font-weight: 300;
  content: "\f107" !important;
  color: rgb(249, 115, 22) !important;
  font-size: 18px;
}
.mw_faqs-03 .accordion-button:not(.collapsed)::after {
  background-image: none !important;
}

.mw_footer-04 {
  background-color: rgb(37, 99, 235);
  padding: 20px 0;
}
.mw_footer-04 p {
  margin-bottom: 0;
}
.mw_footer-04 p a {
  color: rgb(255, 255, 255);
}
.mw_footer-04 p a:hover {
  color: rgb(255, 255, 255);
}

.mw_contact-01 {
  display: none;
}
.mw_contact-01 h4 {
  margin-bottom: 20px;
  font-weight: bold;
  color: rgb(37, 99, 235);
}
.mw_contact-01 h5 {
  margin-bottom: 20px;
  font-size: 18px;
}
.mw_contact-01 .myForm-container {
  background-color: rgb(255, 255, 255);
  padding: 30px;
  border-radius: 16px !important;
}

.mw_contact-01 .myForm-container .mw_state {
  display: none !important;
}

.mw_pages {
  display: flex;
  align-items: center;
}
@media (min-width: 320px) {
  .mw_pages {
    min-height: 63vh;
  }
}
@media (min-width: 992px) {
  .mw_pages {
    min-height: 37.2vh;
  }
}
@media (min-width: 1920px) {
  .mw_pages {
    min-height: 45.2vh;
  }
}

.mw_pages .title-section {
  margin-bottom: 20px;
}
.mw_pages .title-section h2 {
  font-size: 32px;
  color: rgb(37, 99, 235);
  font-weight: 700;
}/*# sourceMappingURL=main.css.map */