.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto; }

.modal {
position: fixed;
top: 0;
left: 0;
z-index: 1050;
display: none;
width: 100%;
height: 100%;
overflow: hidden;
outline: 0; }

.modal-dialog {
position: relative;
width: auto;
margin: 0.5rem;
pointer-events: none; }
.modal.fade .modal-dialog {
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  -o-transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  -ms-transform: translate(0, -50px);
  transform: translate(0, -50px); }
  @media (prefers-reduced-motion: reduce) {
    .modal.fade .modal-dialog {
      -webkit-transition: none;
      -o-transition: none;
      transition: none; } }
.modal.show .modal-dialog {
  -webkit-transform: none;
  -ms-transform: none;
  transform: none; }

.modal-dialog-scrollable {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
max-height: calc(100% - 1rem); }
.modal-dialog-scrollable .modal-content {
  max-height: calc(100vh - 1rem);
  overflow: hidden; }
.modal-dialog-scrollable .modal-header,
.modal-dialog-scrollable .modal-header2,
.modal-dialog-scrollable .modal-header3,  
.modal-dialog-scrollable .modal-footer {
  -ms-flex-negative: 0;
  flex-shrink: 0; }
.modal-dialog-scrollable .modal-body {
  overflow-y: auto; }

.modal-dialog-centered {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
min-height: calc(100% - 1rem); }
.modal-dialog-centered::before {
  display: block;
  height: calc(100vh - 1rem);
  content: ""; }
.modal-dialog-centered.modal-dialog-scrollable {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%; }
  .modal-dialog-centered.modal-dialog-scrollable .modal-content {
    max-height: none; }
  .modal-dialog-centered.modal-dialog-scrollable::before {
    content: none; }

.modal-content {
position: relative;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
width: 100%;
pointer-events: auto;
background-color: #fff;
background-clip: padding-box;
border: 1px solid rgba(0, 0, 0, 0.2);
border-radius: 0.3rem;
outline: 0; }

.modal-backdrop {
position: fixed;
top: 0;
left: 0;
z-index: 1040;
width: 100vw;
height: 100vh;
background-color: #000; }
.modal-backdrop.fade {
  opacity: 0; }
.modal-backdrop.show {
  opacity: 0.5; }

.modal-header {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: start;
-ms-flex-align: start;
align-items: flex-start;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
padding: 1rem 1rem;
border-bottom: 1px solid #dee2e6;
border-top-left-radius: 0.3rem;
border-top-right-radius: 0.3rem; }
.modal-header2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: 0.3rem;
  border-top-right-radius: 0.3rem; }
  .modal-header3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 1rem 1rem;
    border-bottom: 1px solid #dee2e6;
    border-top-left-radius: 0.3rem;
    border-top-right-radius: 0.3rem; }
.modal-header .close {
  padding: 1rem 1rem;
  margin: -1rem -1rem -1rem auto; }
  .modal-header2 .close {
    padding: 1rem 1rem;
    margin: -1rem -1rem -1rem auto; }
    .modal-header3 .close {
      padding: 1rem 1rem;
      margin: -1rem -1rem -1rem auto; }

.modal-title {
margin-bottom: 0;
line-height: 1.5; }

.modal-body {
position: relative;
-webkit-box-flex: 1;
-ms-flex: 1 1 auto;
flex: 1 1 auto;
padding: 1rem; }

.modal-footer {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: end;
-ms-flex-pack: end;
justify-content: flex-end;
padding: 1rem;
border-top: 1px solid #dee2e6;
border-bottom-right-radius: 0.3rem;
border-bottom-left-radius: 0.3rem; }
.modal-footer > :not(:first-child) {
  margin-left: .25rem; }
.modal-footer > :not(:last-child) {
  margin-right: .25rem; }

.modal-scrollbar-measure {
position: absolute;
top: -9999px;
width: 50px;
height: 50px;
overflow: scroll; }

@media (min-width: 576px) {
.modal-dialog {
  max-width: 500px;
  margin: 1.75rem auto; }
.modal-dialog-scrollable {
  max-height: calc(100% - 3.5rem); }
  .modal-dialog-scrollable .modal-content {
    max-height: calc(100vh - 3.5rem); }
.modal-dialog-centered {
  min-height: calc(100% - 3.5rem); }
  .modal-dialog-centered::before {
    height: calc(100vh - 3.5rem); }
.modal-sm {
  max-width: 300px; } }

@media (min-width: 992px) {
.modal-lg,
.modal-xl {
  max-width: 800px; } }

@media (min-width: 1200px) {
.modal-xl {
  max-width: 1140px; } }


.ftco-section {
background: #fff; }
.ftco-section h2 {
  margin-bottom: 0; }

.modal-dialog {
max-width: 600px; }

.modal-content {
overflow: hidden;
border: none;
position: relative;
padding: 0 !important;
-webkit-box-shadow: 0px 10px 34px -15px rgba(0, 0, 0, 0.24);
-moz-box-shadow: 0px 10px 34px -15px rgba(0, 0, 0, 0.24);
box-shadow: 0px 10px 34px -15px rgba(0, 0, 0, 0.24); }
.modal-content .modal-header {
  position: relative;
  padding: 0;
  border: none;
  height: 230px;
  background: #915eff;
  background: -moz-linear-gradient(45deg, #915eff 0%, #3264c2 100%);
  background: -webkit-gradient(left bottom, right top, color-stop(0%, #915eff), color-stop(100%, #3264c2));
  background: -webkit-linear-gradient(45deg, #915eff 0%, #3264c2 100%);
  background: -o-linear-gradient(45deg, #915eff 0%, #3264c2 100%);
  background: -ms-linear-gradient(45deg, #915eff 0%, #3264c2 100%);
  background: linear-gradient(45deg, #915eff 0%, #3264c2 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#915eff', endColorstr='#3264c2', GradientType=1 ); }
  .modal-content .modal-header2 {
    position: relative;
    padding: 0;
    border: none;
    height: 230px;
    background: #b2c9f5;
    background: -moz-linear-gradient(45deg, #b2c9f5 0%, #709ef3 100%);
    background: -webkit-gradient(left bottom, right top, color-stop(0%, #b2c9f5), color-stop(100%, #709ef3));
    background: -webkit-linear-gradient(45deg, #b2c9f5 0%, #709ef3 100%);
    background: -o-linear-gradient(45deg, #b2c9f5 0%, #709ef3 100%);
    background: -ms-linear-gradient(45deg, #b2c9f5 0%, #709ef3 100%);
    background: linear-gradient(45deg, #b2c9f5 0%, #709ef3 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b2c9f5', endColorstr='#709ef3', GradientType=1 ); }
    .modal-content .modal-header3 {
      position: relative;
      padding: 0;
      border: none;
      height: 230px;
      background: #b8a11e;
      background: -moz-linear-gradient(45deg, #b8a11e 0%, #d63cb5 100%);
      background: -webkit-gradient(left bottom, right top, color-stop(0%, #b8a11e), color-stop(100%, #d63cb5));
      background: -webkit-linear-gradient(45deg, #b8a11e 0%, #d63cb5 100%);
      background: -o-linear-gradient(45deg, #b8a11e 0%, #d63cb5 100%);
      background: -ms-linear-gradient(45deg, #b8a11e 0%, #d63cb5 100%);
      background: linear-gradient(45deg, #b8a11e 0%, #d63cb5 100%);
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b8a11e', endColorstr='#d63cb5', GradientType=1 ); }
.modal-content button.close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0;
  margin: 0;
  width: 40px;
  height: 40px;
  z-index: 1;
  color: #fff; }
.modal-content .modal-body {
  border: none;
  overflow: hidden;
  margin-top: -180px;
  z-index: 2; }
  .modal-content .modal-body .icon_modal {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    margin: 0 auto;
    margin-bottom: 5px; }
  .modal-content .modal-body h2 {
    font-weight: 700;
    color: #fff; }
  .modal-content .modal-body h4 {
    font-size: 18px; }
  .modal-content .modal-body h3 {
    font-weight: 800;
    font-size: 22px; }
    .modal-content .modal-body h3 span {
      font-weight: 300; }

.ftco-degree-bg {
position: relative; }
.ftco-degree-bg:after {
  content: '';
  position: absolute;
  right: 0;
  bottom: -30px;
  overflow: visible;
  width: 50%;
  height: 60px;
  z-index: 1;
  -webkit-transform: skewY(-10deg);
  -moz-transform: skewY(-10deg);
  -ms-transform: skewY(-10deg);
  -o-transform: skewY(-10deg);
  transform: skewY(-10deg);
  background-color: #fff; }
.ftco-degree-bg:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -30px;
  overflow: visible;
  width: 50%;
  height: 60px;
  z-index: 1;
  -webkit-transform: skewY(10deg);
  -moz-transform: skewY(10deg);
  -ms-transform: skewY(10deg);
  -o-transform: skewY(10deg);
  transform: skewY(10deg);
  background-color: #fff; }

  
.cardRed h3{
font-weight: 300!important;
font-size: 25px !important;
}

.cardRed h4{
font-size: 18px !important;
font-weight: 300 !important;
}

.cardRed.cardRed-carousel {
border: 0;
margin-bottom: 30px;
margin-top: 30px;
border-radius: 6px ;
color: rgba(0,0,0,.87);
background: #fff;
width: 100%;
box-shadow: 0 2px 2px 0 rgba(0,0,0,.14), 0 3px 1px -2px rgba(0,0,0,.2), 0 1px 5px 0 rgba(0,0,0,.12);
}

.cardRed.cardRed-carousel img{
border-radius: 6px;
}



.carouselRed-indicators {
position: absolute;
right: 0;
bottom: 10px;
left: 0;
z-index: 15;
display: flex;
justify-content: center;
padding-left: 0;
margin-right: 15%;
margin-left: 15%;
list-style: none;
}

.carouselRed .carouselRed-indicators {
bottom: 5px;
}

.carouselRed .carouselRed-indicators li {
display: inline-block;
width: 10px;
height: 10px;
text-indent: -999px;
cursor: pointer;
border: 1px solid #fff;
border-radius: 10px;
background: #fff;
box-shadow: 0 2px 2px 0 rgba(0,0,0,.14), 0 3px 1px -2px rgba(0,0,0,.12), 0 1px 5px 0 rgba(0,0,0,.2);
border-radius: 2px;
}

.carouselRed .carouselRed-indicators .active{
margin: 11px 10px; 
} 

.carouselRed .carouselRed-indicators li {
margin: 11px 10px;
}

.carouselRed .carouselRed-indicators .active {
margin-top: 10px;
transform: scale(1.5);
box-shadow: 0 4px 5px 0 rgba(0,0,0,.14), 0 1px 10px 0 rgba(0,0,0,.12), 0 2px 4px -1px rgba(0,0,0,.2);
}

.carouselRed-inner {
position: relative;
width: 100%;
overflow: hidden;
}

.carouselRed-item {
position: relative;
display: none;
align-items: center;
width: 100% !important;
transition: transform .6s ease;
backface-visibility: hidden;
perspective: 1000px;
}

.carouselRed-item.active {
display: block;
}

.carouselRed .carouselRed-caption {
padding-bottom: 45px;
}

.carouselRed .carouselRed-caption .material-icons {
position: relative;
top: 5px;
}

.carouselRed .carouselRed-control-next .material-icons{
z-index: 5;
display: inline-block;
font-size: 50px;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
height: 50px;
margin: auto;
}

.carouselRed .carouselRed-control-prev .material-icons {
z-index: 5;
display: inline-block;
font-size: 50px;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
height: 50px;
margin: auto;
}
