/* 
 * Custom Variables
 *
 */
/* 
 * Bootstrap 
 *
 */
.carousel {
  position: relative;
}

.carousel.pointer-event {
  -ms-touch-action: pan-y;
      touch-action: pan-y;
}

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.carousel-inner::after {
  display: block;
  clear: both;
  content: "";
}

.carousel-item {
  position: relative;
  display: none;
  float: left;
  width: 100%;
  margin-right: -100%;
  backface-visibility: hidden;
  transition: transform 0.6s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-item {
    transition: none;
  }
}

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
  display: block;
}

.carousel-item-next:not(.carousel-item-left),
.active.carousel-item-right {
  transform: translateX(100%);
}

.carousel-item-prev:not(.carousel-item-right),
.active.carousel-item-left {
  transform: translateX(-100%);
}

.carousel-fade .carousel-item {
  opacity: 0;
  transition-property: opacity;
  transform: none;
}
.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right {
  z-index: 1;
  opacity: 1;
}
.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
  z-index: 0;
  opacity: 0;
  transition: opacity 0s 0.6s;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-fade .active.carousel-item-left,
  .carousel-fade .active.carousel-item-right {
    transition: none;
  }
}

.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  width: 15%;
  color: #fff;
  text-align: center;
  opacity: 0.5;
  transition: opacity 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-control-prev,
  .carousel-control-next {
    transition: none;
  }
}
.carousel-control-prev:hover, .carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  opacity: 0.9;
}

.carousel-control-prev {
  left: 0;
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.001));
}

.carousel-control-next {
  right: 0;
  background-image: linear-gradient(270deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.001));
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: no-repeat 50% / 100% 100%;
}

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e");
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e");
}

.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 15;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  padding-left: 0;
  margin-right: 15%;
  margin-left: 15%;
  list-style: none;
}
.carousel-indicators li {
  box-sizing: content-box;
  -ms-flex: 0 1 auto;
      flex: 0 1 auto;
  width: 30px;
  height: 3px;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #fff;
  background-clip: padding-box;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: .5;
  transition: opacity 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-indicators li {
    transition: none;
  }
}
.carousel-indicators .active {
  opacity: 1;
}

.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 20px;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
}

.card {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
}
.card > hr {
  margin-right: 0;
  margin-left: 0;
}
.card > .list-group {
  border-top: inherit;
  border-bottom: inherit;
}
.card > .list-group:first-child {
  border-top-width: 0;
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}
.card > .list-group:last-child {
  border-bottom-width: 0;
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}
.card > .card-header + .list-group,
.card > .list-group + .card-footer {
  border-top: 0;
}

.card-body {
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  min-height: 1px;
  padding: 1.25rem;
}

.card-title {
  margin-bottom: 0.75rem;
}

.card-subtitle {
  margin-top: -0.375rem;
  margin-bottom: 0;
}

.card-text:last-child {
  margin-bottom: 0;
}

.card-link:hover {
  text-decoration: none;
}
.card-link + .card-link {
  margin-left: 1.25rem;
}

.card-header {
  padding: 0.75rem 1.25rem;
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}
.card-header:first-child {
  border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}

.card-footer {
  padding: 0.75rem 1.25rem;
  background-color: rgba(0, 0, 0, 0.03);
  border-top: 1px solid rgba(0, 0, 0, 0.125);
}
.card-footer:last-child {
  border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
}

.card-header-tabs {
  margin-right: -0.625rem;
  margin-bottom: -0.75rem;
  margin-left: -0.625rem;
  border-bottom: 0;
}

.card-header-pills {
  margin-right: -0.625rem;
  margin-left: -0.625rem;
}

.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.25rem;
  border-radius: calc(0.25rem - 1px);
}

.card-img,
.card-img-top,
.card-img-bottom {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
}

.card-img,
.card-img-top {
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}

.card-img,
.card-img-bottom {
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}

.card-deck .card {
  margin-bottom: 15px;
}
@media (min-width: 576px) {
  .card-deck {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row wrap;
        flex-flow: row wrap;
    margin-right: -15px;
    margin-left: -15px;
  }
  .card-deck .card {
    -ms-flex: 1 0 0%;
        flex: 1 0 0%;
    margin-right: 15px;
    margin-bottom: 0;
    margin-left: 15px;
  }
}

.card-group > .card {
  margin-bottom: 15px;
}
@media (min-width: 576px) {
  .card-group {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row wrap;
        flex-flow: row wrap;
  }
  .card-group > .card {
    -ms-flex: 1 0 0%;
        flex: 1 0 0%;
    margin-bottom: 0;
  }
  .card-group > .card + .card {
    margin-left: 0;
    border-left: 0;
  }
  .card-group > .card:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:last-child) .card-img-top,
  .card-group > .card:not(:last-child) .card-header {
    border-top-right-radius: 0;
  }
  .card-group > .card:not(:last-child) .card-img-bottom,
  .card-group > .card:not(:last-child) .card-footer {
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .card-group > .card:not(:first-child) .card-img-top,
  .card-group > .card:not(:first-child) .card-header {
    border-top-left-radius: 0;
  }
  .card-group > .card:not(:first-child) .card-img-bottom,
  .card-group > .card:not(:first-child) .card-footer {
    border-bottom-left-radius: 0;
  }
}

.card-columns .card {
  margin-bottom: 0.75rem;
}
@media (min-width: 576px) {
  .card-columns {
    -moz-column-count: 3;
         column-count: 3;
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
    orphans: 1;
    widows: 1;
  }
  .card-columns .card {
    display: inline-block;
    width: 100%;
  }
}

.accordion {
  overflow-anchor: none;
}
.accordion > .card {
  overflow: hidden;
}
.accordion > .card:not(:last-of-type) {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.accordion > .card:not(:first-of-type) {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.accordion > .card > .card-header {
  border-radius: 0;
  margin-bottom: -1px;
}

.jumbotron {
  padding: 2rem 1rem;
  margin-bottom: 2rem;
  background-color: #e9ecef;
  border-radius: 0.3rem;
}
@media (min-width: 576px) {
  .jumbotron {
    padding: 4rem 2rem;
  }
}

.jumbotron-fluid {
  padding-right: 0;
  padding-left: 0;
  border-radius: 0;
}

/* 
 * Sections 
 *
 */
#__home_hero .slide-down {
  bottom: 2.5rem;
}
#__home_hero .carousel-item {
  padding: 10rem 0;
  height: 620px !important;
}
@media (max-width: 767.98px) {
  #__home_hero .carousel-item {
    padding-bottom: 35rem;
  }
}
#__home_hero .carousel-item h1 {
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1;
  max-width: 65rem;
  display: block;
  width: 100%;
  padding: 0 4rem;
}
@media (max-width: 767.98px) {
  #__home_hero .carousel-item h1 {
    font-size: 2.5rem;
    padding: 0 1rem;
  }
}
#__home_hero .carousel-item p {
  font-size: 1.5rem;
  line-height: 1.24;
  max-width: 65rem;
  margin: 4rem 0 0;
  display: block;
  width: 100%;
  padding: 0 4rem;
}
@media (max-width: 767.98px) {
  #__home_hero .carousel-item p {
    font-size: 1.125rem;
    padding: 0 1rem;
  }
}
#__home_hero .carousel-control-prev-icon {
  transform: rotate(180deg);
}
#__home_hero .carousel-control-prev,
#__home_hero .carousel-control-next {
  width: 7.5%;
}
#__home_hero .carousel-control-prev span,
#__home_hero .carousel-control-next span {
  display: block;
  padding: 0 1.5rem;
  max-width: 100%;
}
@media (max-width: 767.98px) {
  #__home_hero .carousel-control-prev,
  #__home_hero .carousel-control-next {
    display: none;
  }
}

#__home_about {
  background: url(../images/home/ellipse_1.png) right 4rem no-repeat, linear-gradient(to right, #FEF9F2 50%, #fff 50%);
  background-size: 42.5%, auto;
  padding-bottom: 8rem;
}
@media (max-width: 767.98px) {
  #__home_about {
    background: transparent;
    background-size: unset;
    padding-bottom: 3rem;
  }
}
@media (max-width: 767.98px) {
  #__home_about .img-home-about {
    background: #FEF9F2;
    padding: 0 2rem 2.25rem;
  }
}
#__home_about .img-home-about img {
  margin-top: -4.125rem;
}
@media (max-width: 767.98px) {
  #__home_about .img-home-about img {
    margin-top: -2.75rem;
  }
}
#__home_about .content-home-about {
  padding-top: 6.875rem;
}
@media (max-width: 767.98px) {
  #__home_about .content-home-about {
    background: url(../images/home/ellipse_1.png) left 3.25rem no-repeat;
    background-size: 250%;
    padding: 2.25rem 2rem 0;
  }
}
#__home_about .section-title {
  margin: 1.375rem 0 2rem;
}
@media (max-width: 767.98px) {
  #__home_about .section-title {
    font-size: 2rem;
  }
}
#__home_about .section-content {
  color: #6D6D6C;
  line-height: 1.54;
}
@media (max-width: 767.98px) {
  #__home_about .section-content {
    font-size: 0.8125rem;
  }
}

#__home_banner {
  margin-top: 6rem;
}
@media (max-width: 767.98px) {
  #__home_banner {
    background: #EF8100;
    margin-top: initial;
  }
}
#__home_banner .banner {
  position: relative;
  padding: 0;
}
#__home_banner .banner .banner-background {
  position: relative;
  z-index: 0;
}
@media (max-width: 767.98px) {
  #__home_banner .banner .banner-background {
    display: none;
  }
}
#__home_banner .banner .banner-content {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column nowrap;
      flex-flow: column nowrap;
  -ms-flex-pack: center;
      justify-content: center;
  z-index: 1;
  padding: 3.375rem 5.375rem;
}
@media (max-width: 767.98px) {
  #__home_banner .banner .banner-content {
    position: relative;
    padding: 3rem 2rem;
  }
}
#__home_banner .banner .banner-content .section-title {
  color: #fff;
  line-height: normal;
  margin-bottom: 2rem;
}
@media (max-width: 767.98px) {
  #__home_banner .banner .banner-content .section-title {
    font-size: 1.875rem;
  }
}
#__home_banner .banner .banner-content .banner-actions {
  margin-left: -1.3125rem;
}
#__home_banner .banner .banner-content .btn-link {
  color: #fff;
  font-size: 1.125rem;
  font-weight: 500;
  text-transform: uppercase;
  padding: .75rem 1rem;
}
#__home_banner .banner .banner-content .btn-link:not(:last-child) {
  margin-right: 1.5rem;
}
#__home_banner .banner .banner-content .btn-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid #fff;
  text-decoration: none;
}
#__home_banner .banner .banner-content .btn-link:hover svg {
  fill: #fff;
}
#__home_banner .banner .banner-content .btn-link svg {
  margin-right: 1.5rem !important;
  width: 0.75rem;
}

#__home_blog {
  background: url("../images/home/ellipse_4.png") left top no-repeat;
  padding: 6.375rem 0 12rem;
}
@media (min-width: 992px) {
  #__home_blog {
    padding: 6.375rem 0 8.75rem;
  }
}
@media (max-width: 1199.98px) {
  #__home_blog .carousel > .row {
    margin-left: .5rem;
    margin-right: .5rem;
  }
}
#__home_blog .carousel-item a:hover {
  color: #EF8100;
}
#__home_blog .carousel-item .thumb {
  border-radius: .5rem;
  transition: all .25s ease-in-out;
}
#__home_blog .carousel-item .thumb:hover {
  filter: grayscale(1) brightness(1.2);
}
#__home_blog .carousel-item h3 {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.19;
  margin-bottom: 1rem;
  margin-top: 1rem;
}
@media (min-width: 992px) {
  #__home_blog .carousel-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    margin-top: initial;
  }
}
#__home_blog .carousel-item h3 a {
  color: #242424;
}
#__home_blog .carousel-item p {
  font-size: 0.75rem;
  line-height: 1.19;
}
@media (min-width: 992px) {
  #__home_blog .carousel-item p {
    font-size: .875rem;
  }
}
#__home_blog .carousel-item p a {
  color: #6D6D6C;
}
@media (min-width: 992px) {
  #__home_blog .carousel-item p:last-child {
    margin-bottom: 0;
  }
}
#__home_blog .carousel-item-post:not(:last-child) {
  margin-bottom: 1.5rem;
}
#__home_blog .carousel-item-body > .container > .row {
  -ms-flex-align: center;
      align-items: center;
}
#__home_blog .carousel-item-body > .container > .row > div:last-child {
  padding-right: 3rem;
}
#__home_blog .carousel-item-body a {
  display: block;
}
#__home_blog .carousel-item-body a img {
  width: 100%;
}
#__home_blog .carousel-control-prev span,
#__home_blog .carousel-control-next span {
  filter: grayscale(1);
}
#__home_blog .carousel-control-prev:hover span,
#__home_blog .carousel-control-next:hover span {
  filter: grayscale(0);
}
#__home_blog .carousel-control-prev {
  left: .5rem;
  right: unset;
  bottom: -5rem;
  top: unset;
}
@media (min-width: 992px) {
  #__home_blog .carousel-control-prev {
    left: unset;
    right: 0;
    top: 0;
    bottom: unset;
  }
}
#__home_blog .carousel-control-prev span {
  transform: rotate(90deg);
}
@media (min-width: 992px) {
  #__home_blog .carousel-control-prev span {
    transform: rotate(180deg);
  }
}
#__home_blog .carousel-control-next {
  top: unset;
  bottom: -5rem;
  right: .5rem;
}
@media (min-width: 992px) {
  #__home_blog .carousel-control-next {
    right: 0;
    bottom: 0;
  }
}
#__home_blog .carousel-control-next span {
  transform: rotate(-90deg);
}
@media (min-width: 992px) {
  #__home_blog .carousel-control-next span {
    transform: none;
  }
}
@media (min-width: 992px) {
  #__home_blog .carousel-item-next:not(.carousel-item-left),
  #__home_blog .active.carousel-item-right {
    transform: translateY(100%);
  }
}
@media (min-width: 992px) {
  #__home_blog .carousel-item-prev:not(.carousel-item-right),
  #__home_blog .active.carousel-item-left {
    transform: translateY(-100%);
  }
}

#__home_features {
  background: #EF8100 url("../images/home/points_2.png") left bottom no-repeat;
  color: #fff;
}
#__home_features .controlers {
  display: none;
  position: absolute;
  top: 3rem;
  left: 0;
  width: 100%;
}
@media (min-width: 992px) {
  #__home_features .controlers {
    display: block;
  }
}
#__home_features .controlers .controls {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
#__home_features .carousel-control-prev,
#__home_features .carousel-control-next {
  position: relative;
  bottom: unset;
  right: unset !important;
  left: 0;
  width: auto;
}
#__home_features .carousel-control-prev span,
#__home_features .carousel-control-next span {
  width: 1.25rem !important;
}
#__home_features .carousel-control-prev-icon {
  transform: rotate(180deg);
}
#__home_features .carousel-inner {
  z-index: 10;
}
#__home_features .carousel-item {
  background: url("../images/home/ellipse_7.png") 25% center no-repeat;
  background-size: 35%;
  padding: 12.5rem 0 3.25rem;
  height: auto;
}
@media (min-width: 992px) {
  #__home_features .carousel-item {
    padding: 9rem 0 6rem;
    height: 31rem;
  }
}
#__home_features .carousel-item h3 {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1;
}
@media (min-width: 992px) {
  #__home_features .carousel-item h3 {
    font-size: 3.875rem;
  }
}
@media (max-width: 375px) {
  #__home_features .carousel-item h3 {
    font-size: 2rem;
  }
}
#__home_features .carousel-figure {
  position: absolute;
  margin-bottom: 0;
  max-width: 60%;
  right: 0;
  bottom: 0;
}
@media (max-width: 1199.98px) {
  #__home_features .carousel-figure {
    max-width: 80%;
  }
}

#__home_tour {
  background-color: #FEF9F2;
  padding: 3.75rem 1rem 4.25rem;
  position: relative;
}
@media (min-width: 992px) {
  #__home_tour {
    background-color: #fff;
    padding: 3.75rem 0 4.25rem;
  }
}
#__home_tour:before {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 10rem;
  width: 60vw;
  background: #FEF9F2;
}
@media (min-width: 992px) {
  #__home_tour:before {
    content: "";
    display: block;
  }
}
#__home_tour .section-title {
  margin-bottom: 1.5rem;
}
@media (max-width: 1199.98px) {
  #__home_tour .section-title {
    font-size: 2rem;
  }
}
#__home_tour .section-title span {
  color: #EF8100;
}
@media (max-width: 1199.98px) {
  #__home_tour .section-title span {
    display: block;
  }
}
#__home_tour .section-content {
  color: #242424;
  line-height: 1.38;
}
#__home_tour .btn-home-tour {
  border: none;
  font-weight: 600;
  margin: 2.5rem 0;
  display: block;
}
@media (min-width: 992px) {
  #__home_tour .btn-home-tour {
    display: inline-block;
    margin: 1.5rem 0 3.75rem;
  }
}
#__home_tour ul li {
  color: #6D6D6C;
  font-size: 0.875rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: start;
      justify-content: flex-start;
}
#__home_tour ul li:before {
  content: '';
  background: url(../images/vector_2.png) left top no-repeat;
  height: 1rem;
  margin-right: 1.5rem;
  -ms-flex-preferred-size: 2rem;
      flex-basis: 2rem;
}
#__home_tour ul li:not(:last-child) {
  margin-bottom: 2rem;
}

#__home_cta {
  background: url("../images/home/points_3.png") bottom left repeat-x, url("../images/home/rectangle_3_2.png") top left no-repeat, url("../images/home/rectangle_2_2.png") top left no-repeat;
  background-size: auto, cover, cover !important;
  position: relative;
  margin-top: 50px;
}
#__home_cta h2 {
  color: #fff;
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -2px;
  margin: 5rem 0;
}
@media (min-width: 992px) {
  #__home_cta h2 {
    font-size: 3rem;
    margin: 8.6275rem 0 7.5rem;
    text-align: left;
  }
}
#__home_cta .btn-home-cta {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate3d(-50%, 50%, 0);
  padding: .75rem 2.75rem .75rem 3.25rem;
  z-index: 10;
}
@media (max-width: 1199.98px) {
  #__home_cta .btn-home-cta {
    padding: .75rem 0 .75rem .5rem;
    width: calc(100% - 5rem);
  }
}
#__home_cta .img-home-cta {
  position: absolute;
  bottom: 0;
  left: 0;
}

#__home_testimonials {
  padding: 20px;
}
@media (min-width: 992px) {
  #__home_testimonials {
    padding: 4.5rem 0;
  }
}
#__home_testimonials .section-title {
  margin-bottom: 3rem;
}
@media (max-width: 1199.98px) {
  #__home_testimonials .section-title {
    font-size: 2rem;
  }
  #__home_testimonials .section-title img {
    display: block;
    margin-bottom: 2rem;
    width: 6rem;
  }
}
@media (max-width: 1199.98px) {
  #__home_testimonials .card-deck {
    display: -ms-flexbox;
    display: flex;
    overflow-y: hidden;
    overflow-x: auto;
  }
  #__home_testimonials .card-deck:after {
    content: "";
    display: block;
    width: .5rem;
    -ms-flex: 1 0 auto;
        flex: 1 0 auto;
  }
  #__home_testimonials .card-deck ::-webkit-scrollbar {
    display: none;
    width: 0px;
    background: transparent;
  }
}
#__home_testimonials .card {
  border-color: #FFF4E5;
  color: #6D6D6C;
  font-size: 0.875rem;
}
@media (max-width: 1199.98px) {
  #__home_testimonials .card.card-testimonial {
    font-size: .75rem;
    -ms-flex: 1 0 auto;
        flex: 1 0 auto;
    width: 100%;
  }
}
#__home_testimonials .card .card-body,
#__home_testimonials .card .card-footer {
  padding: 20px;
}
@media (min-width: 992px) {
  #__home_testimonials .card .card-body,
  #__home_testimonials .card .card-footer {
    padding: 2rem;
  }
}
#__home_testimonials .card .card-footer {
  background-color: #FFF4E5;
  border-color: #FFF4E5;
}
@media (max-width: 1199.98px) {
  #__home_testimonials .card .card-footer {
    min-height: 7.875rem;
  }
}
#__home_testimonials .card .card-footer figure {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 0;
  width: 100%;
}
#__home_testimonials .card .card-footer figure img {
  width: 80px;
  border-radius: 5px;
  height: auto;
  margin-right: 2rem;
}
@media (max-width: 1199.98px) {
  #__home_testimonials .card .card-footer figure figcaption {
    -ms-flex: 1;
        flex: 1;
  }
}
#__home_testimonials .card .card-footer figure figcaption h6 {
  color: #EF8100;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .25rem;
}
@media (max-width: 1199.98px) {
  #__home_testimonials .card .card-footer figure figcaption h6 {
    -ms-flex: 0.875rem;
        flex: 0.875rem;
  }
}
#__home_testimonials .card .card-footer figure figcaption p {
  color: #6D6D6C;
  font-size: 0.8125rem;
}
@media (max-width: 1199.98px) {
  #__home_testimonials .card .card-footer figure figcaption p {
    -ms-flex: .75rem;
        flex: .75rem;
  }
}

.arrows {
  width: 48px;
  height: 48px;
  border-color: #000;
  position: absolute;
  top: 50%;
  margin-top: -31px;
}

.prev {
  border-bottom: 6px solid;
  border-left: 6px solid;
  transform: translateY(-50%) rotate(45deg);
  left: -10px;
}

.next {
  border-bottom: 6px solid;
  border-left: 6px solid;
  transform: translateY(-50%) rotate(-135deg);
  right: -10px;
}

@media (min-width: 960px) {
  .depoimentos-inner {
    padding: 0 180px;
  }
}
@media (max-width: 960px) {
  .depoimentos-inner {
    padding: 0 20px;
  }
}

.depoimentos-arrow {
  color: #ee910f !important;
  width: 30px;
  height: 30px;
  transition: all 250ms;
  top: 50%;
}
@media (max-width: 960px) {
  .depoimentos-arrow {
    bottom: 40px;
    top: unset;
  }
}
