@charset "UTF-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600&family=Playfair+Display&family=Roboto:wght@300;400;500&display=swap');

body {
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  overflow-y: hidden;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
}

.text-green {
  color: #2b926e;
}

.ls-lg {
  letter-spacing: 5px;
}

.ls-md {
  letter-spacing: 4px;
}

.ls-sm {
  letter-spacing: 3px;
}

.landing-container {
    overflow: scroll;
    padding: 0px!important;
}

p.lead {
    font-size: 1rem;
}

.btn-primary {
    color: #fff;
    background-color: #2a926d;
    border-color: #2a926d;
  
}

.btn-primary:hover {
    color: #fff;
    background-color: #237155;
    border-color: #237155;
  
  }

.cd-section {
    min-height: 100%;
    position: relative;
    padding: 2em 0;
    display: flex;
    align-items: center;
}

.section-container {
    margin-left: 0px;
    background-color: black;
    padding: 0px;
    color: white;
    height: 120px;
    top: 0px;
    position: absolute;
    width: 100%;
    z-index: 1;
    overflow: hidden;
}

.section-text {
    width: 50%;
    background-color: rgba(0,0,0,0.3);
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;
  
}

.altText {
    font-family: 'Playfair Display', serif;
    color: white;
}
  
.stepNumber {
    font-family: 'Playfair Display', serif;
    font-size: 150px;
    color: white;
    position: absolute;
    z-index: 0;
    left: 20px;
    line-height: 70px;
    opacity: 0.2;
}

.stepTitle {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    opacity: 1;
    color: #e5e5e5;
    position: absolute;
    z-index: 0;
    left: 50px;
    margin-top: 28px;
    width: 100%;
}

.section-footer {
    position: absolute;
    z-index: 2;
    width: 100%;
    bottom: 0px;
}

.stepTitle .small {
    font-size: 20px;
    left: 0px;
    margin-top: 0px;
}

.crossfade {
    position: absolute;
    width: 100%;
    height: 120%;
    z-index: -1;
    left: 0px;
    top: 0px;
    opacity: 0.3;
}

.crossfade > figure {
  animation: imageAnimation 30s linear infinite 0s;
  backface-visibility: hidden;
  background-size: cover;
  background-position: center center;
  color: transparent;
  height: 100%;
  left: 0px;
  opacity: 0;
  position: absolute;
  top: 0px;
  width: 100%;
  z-index: 0;
}

.crossfade > figure:nth-child(1) {
  background-image: url('../img/bkg1.jpg');
}
.crossfade > figure:nth-child(2) {
  animation-delay: 6s;
  background-image: url('../img/bkg2.jpg');
}
.crossfade > figure:nth-child(3) {
  animation-delay: 12s;
  background-image: url('../img/bkg3.jpg');
}
.crossfade > figure:nth-child(4) {
  animation-delay: 18s;
  background-image: url('../img/bkg4.jpg');
}
.crossfade > figure:nth-child(5) {
  animation-delay: 24s;
  background-image: url('../img/bkg5.jpg');
}

@keyframes imageAnimation {
  0% {
    animation-timing-function: ease-in;
    opacity: 0;
  }
  8% {
    animation-timing-function: ease-out;
    opacity: 1;
  }
  17% {
    opacity: 1
  }
  25% {
    opacity: 0
  }
  100% {
    opacity: 0
  }
}


/* -=-=-=-=-=-=-=-=- GALLERY CONTAINER -=-=-=-=-=-=-=-=-=-*/
.gallery-container {
    width: 100%;
    max-height: 100px;
    overflow: hidden;
    margin-top: -5px;
    margin-left: 50px;
}

.gallery-img img {
    max-height: 70px;
    width: auto;
    position: relative;
    float: left;
    margin-right: 0px;
    margin-top: 0px;
}


/* -=-=-=-=-=-=-=- CAROUSEL -=-=-=-=-=-=-=-=-=- */ 
.carousel {
    position: relative;
    top: -75px;
    height: calc(100vh - 150px);
}

.carousel-inner {
    position: relative;
    width: auto;
    overflow: hidden;
    height: auto;
    z-index: 0;
}

.carousel-control-next, .carousel-control-prev {
    top: calc(100vh - 80px);
    height: 50px;
    background: black;
}

.carousel-indicators {
    position: absolute;
    top: 0px;
    display: inline-flex;
    padding: 0;
    list-style: none;
    width: auto;
    margin-left: 60%;
    margin-right: 100px;
    height: 120px;
    margin-bottom: 0px;
    z-index: 5;
}

.carousel-indicators [data-bs-target] {
    width: auto!important;
    height: 120px;
    background-color: transparent;
    border: none;
}

.carousel-control-prev {
    width: 5%;
}

.carousel-control-next {
    width: 5%;
}

.carousel-item-next, .carousel-item-prev, .carousel-item.active {
    display: flex;
    justify-content: center;
    align-content: center;
  background-color: rgba(0,0,0,0);
}

.carousel-item {
    position: relative;
    float: left;
    width: 100vw;
    margin-right: -100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition: transform .6s ease-in-out;
    height: 100vh;
    object-fit: cover;
}

.carousel-item img {
    object-fit: cover;
}

.carousel-indicators .active img {
    border: 1px solid #333;
}

.carousel-indicators img {
    border: 1px solid #000;
}

.carousel-item img {
    object-fit: cover;
    animation: zoomIn 20s ease;
}

@keyframes zoomIn {
  0% {transform: scale(1);}
  100% {transform: scale(1.05);}
}

.carousel-caption {
    position: absolute;
    color: white;
    bottom: 250px;
    background-color: rgba(0,0,0,0.7);
    height: auto;
    left: 30px;
    text-align: left;
    padding: 20px;
    width: 40%;
    max-height: 50%;
    overflow: scroll;
}

.carousel-caption p {
    color: #fff!important;
    line-height: 30px;
    font-size: 16px!important;
}

input[type='checkbox'].icon-checkbox{cursor: pointer;display:none}
input[type='checkbox'].icon-checkbox+label .unchecked{cursor: pointer;display:inline}
input[type='checkbox'].icon-checkbox+label .checked{cursor: pointer;display:none}
input[type='checkbox']:checked.icon-checkbox{cursor: pointer;display:none}
input[type='checkbox']:checked.icon-checkbox+label .unchecked{cursor: pointer;display:none}
input[type='checkbox']:checked.icon-checkbox+label .checked{cursor: pointer;display:inline}
label {
    display: inline-block;
    padding: 10px;
    cursor: pointer;
}

.captionContainer {
    width: 100px;
    padding: 0px;
    margin-top: 40px;
    position: absolute;
    z-index: 1600;
    cursor: pointer;
    transition: 0.4s;
    font-family: 'Roboto';
    text-transform: uppercase;
    font-weight: 400;
    font-size: 13px;
    color: #999;
    left: calc(5% + 1px);
    bottom: 30px;
    height: 50px;
    background-color: rgba(0,0,0,0.6);
    line-height: 30px;
}

.captionContainer:hover {
    background-color: rgba(0,0,0,1);
    transition: 0.4s;
    color: #666;
}

.captionBtnText {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}


/* -=-=-=-=-=-=-=- AUDIO PLAYER -=-=-=-=-=-=-=- */
.audioWrapper {
    position: relative;
    left: 0px;
    width: 100%;
}

.containerAudio {
    width: 100%;
    background: #ECE7E7;
    margin: 0px;
    text-align: center;
    padding-bottom: 0px;
    height: 74px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.audioText {
    position: relative;
    font-size: 1em;
    text-align: left;
    font-weight: 400;
    width: 100%;
    padding: 10px 15px;
    height: auto;
}

.btnMasAudio {
    position: relative;
    left: 0px;
    top: 0px;
    display: flex;
    align-items: center;
    flex-direction: column;
    align-content: center;
    justify-content: center;
}

.descripcionAudio {
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: auto;
    display: flex;
    flex-direction: row;
    align-content: center;
    align-items: center;
}

.fechaAudio {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    align-content: center;
    height: 100%;
}

.download-audio {
  transition: 0.4s;
}

a.download-audio:hover {
  color: #009FE3!important;
  transition: 0.4s;
}

@media (max-width:991px) {
.containerAudio {
    height: 125px;
    border-bottom: 1px solid #999;
}
	
.audioText {
    top: 0px;
    height: 100%;
    line-height: 20px;
    font-size: 0.85em;
    max-width: 100%;
    position: relative;
}
	
.descipcionAudio {
    margin-bottom: 10px;
    margin-top: 10px;
}
	
.btn-descargar-audio {
	width: 80%;
	margin-left: 10%;
}
	
.btn-descargar-audio {
    width: 70%;
    margin-left: 15%;
    position: absolute;
    left: 0px;
}

}

@media (max-width:768px) {
  .btnMasAudio {
    top: 5px;
}
  
.btnMas.sm {
    width: 35px!important;
    min-height: 35px!important;
    border-radius: 50%;
    font-size: 18px;
    padding: 0px;
    margin: 0px;
    position: relative;
}
  
.btnMasAudio {
    justify-content: flex-start;
}
  
.btnMas.xxs {
    top: 20px;
    right: -20px;
}
}

@media (max-width:576px) {
.download-audio {
    position: relative;
    top: -17px;
    float: right;
}
	
.audioplayer {
    padding: 0px 44px 0px 0px!important;
}
}

.audioplayer {
    display: flex;
    flex-direction: row;
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
    width: 80%;
    height: 120px;
    align-items: center;
    border: none;
    background: transparent;
    border-radius: 0px;
}

.audioplayer-playpause {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    transition: all .2s ease-in-out;
}

.audioplayer:not(.audioplayer-playing) .audioplayer-playpause {
    background: rgba(0, 0, 0, 0);
    border: none;
}

.audioplayer:not(.audioplayer-playing) .audioplayer-playpause:hover {
    background: rgba(255,255,255, 0.2);
}

.audioplayer-playing .audioplayer-playpause {
    background: rgba(0, 0, 0, 0);
    border: none;
}

.audioplayer-playing .audioplayer-playpause:hover {
    background: rgba(255,255,255, 0.2);
}

.audioplayer:not(.audioplayer-playing) .audioplayer-playpause a {
    content: '';
    justify-content: center;
    width: 0;
    height: 0;
    margin-left: 6px;
    border-top: 12px solid transparent;
    border-right: none;
    border-bottom: 12px solid transparent;
    border-left: 20px solid #fff;
}

.audioplayer-playing .audioplayer-playpause a {
    content: '';
    display: flex;
    justify-content: space-between;
    width: 12px;
    height: 18px;
}

.audioplayer-playing .audioplayer-playpause a::before, .audioplayer-playing .audioplayer-playpause a::after {
    content: '';
    width: 4px;
    height: 18px;
    background-color: #fff;
}

.audioplayer-time {
    display: flex;
    width: 30px;
    justify-content: center;
    font-size: 13px;
    color: #fff;
    font-weight: normal;
    margin-top: -1px;
}

.audioplayer-time-current {
    margin-right: 6px;
    margin-left: 26px;
}

.audioplayer-time-current::after {
    content: '|';
    position: relative;
    padding: 0px 6px;
}

.audioplayer-time-duration {
    margin-right: 0px;
    margin-left: 6px;
}

.audioplayer-bar {
    position: relative;
    display: flex;
    margin: 0px 0px 0px 12px;
    height: 12px;
    flex-basis: 0;
    flex-grow: 1;
    cursor: pointer;
    top: -1px;
}

.audioplayer-bar::before {
    content: '';
    position: absolute;
    top: 6px;
    width: 100%;
    height: 3px;
    background-color: #BFBFBF;
    border-radius: 0px;
}

.audioplayer-bar > div {
    position: absolute;
    left: 0;
    top: 6px;
}
.audioplayer-bar-loaded {
    z-index: 1;
    height: 3px;
    background: #636363;
    border-radius: 0px;
}

.audioplayer-bar-played {
    flex-direction: row-reverse;
    z-index: 2;
    height: 3px;
    background: #fff;
    border-radius: 0px;
}

.audioplayer-bar-played::after {
    display: flex;
    position: absolute;
    content: '';
    box-sizing: border-box;
    top: -6px;
    right: -1px;
    margin-right: -5px;
    width: 14px;
    height: 14px;
    background-color: #fff;
    border-radius: 10px;
}

.audioplayer:not(.audioplayer-playing) .audioplayer-bar-played::after {
    border: 2px solid #fff;
}

.audioplayer-playing .audioplayer-bar-played::after {
    border: 2px solid #fff;

}

.audioplayer-volume {
    display: flex;
    align-items: center;
}

.audioplayer-volume-button {
    display: flex;
    align-items: center;
    width: 14px;
    height: 24px;
    cursor: pointer;
    margin-left: 12px;
}

.audioplayer-volume-button a {
    display: flex;
    width: 8px;
    height: 10px;
    background-color: #fff;
    position: relative;
    border-radius: 1px;
    left: -4px;
    top: -1px;
}

.audioplayer-volume-button a:before, .audioplayer-volume-button a:after {
    content: '';
    position: absolute;
}

.audioplayer-volume-button a:before {
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-right: 10px solid #fff;
    border-bottom: 10px solid transparent;
    border-left: none;
    top: -5px;
}

.audioplayer:not(.audioplayer-mute) .audioplayer-volume-button a:after {
    left: 12px;
    top: 0px;
    width: 12px;
    height: 12px;
    border: 6px double #fff;
    border-width: 6px 6px 0 0;
    border-radius: 0 12px 0 0;
    transform: rotate(45deg);
}

.audioplayer-mute .audioplayer-volume-button a {
    background-color: #fff;
}

.audioplayer-mute .audioplayer-volume-button a:before {
    border-right: 9px solid #fff;
}

.audioplayer-volume-adjust {
    display: flex;
    align-items: center;
    margin-left: 10px;
    width: 50%;
}

.audioplayer-volume-adjust > div {
    position: relative;
    display: flex;
    width: 60px;
    height: 3px;
    cursor: pointer;
    background-color: #636363;
    border-radius: 0px;
}

.audioplayer-volume-adjust div div {
    position: absolute;
    top: 0px;
    left: 0;
    height: 3px;
    background-color: #fff;
    border-radius: 0px;
}

.audioplayer-volume-adjust div div::after {
    height: 14px;
    width: 14px;
    background: #fff;
    position: absolute;
    content: '';
    border-radius: 50%;
    top: -6px;
    right: -10px;
}

.audioTitle {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 90%;
}

#audio-player-container {
    width: 98%;
}


/* responsive | you can change the max-width value to match your theme */

@media screen and (max-width: 991px) {
.audioplayer {
	width: 110%;
	
}
	
.audioplayer-volume-adjust {
		display: none;
}
	
.audioplayer-time {
   	position: relative;
		top: -83px;
    right: 65px;
    font-size: 14px;
}
	
.audioplayer-bar {
    position: relative;
    display: flex;
    margin: 0px -5px 0px 15px;
    top: -3px;
    min-width: 150px;
}
	
.audioplayer-volume {
    display: flex;
    align-items: center;
    position: relative;
    right: 120px;
}
	
.audioplayer-playpause {
    min-width: 48px;
    min-height: 48px;
}
	
.audioTitle {
    white-space: pre-wrap;
    overflow: visible;
    text-overflow: inherit;
}
	
}

@media (max-width: 576px) {
	.audioplayer {
	width: 125%;	
}
}


/* -=-=-=-=-=-=- ANIMATED ARROW -=-=-=-=-=-=-=-*/
.arrowContainer {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    width: 100%;
    height: 100vh;
    bottom: 100px;
    position: absolute;
}

.chevron {
    position: absolute;
    width: 2.1rem;
    height: 0.25rem;
    opacity: 0;
    transform: scale(0.3);
    -webkit-animation: move-chevron 3s ease-out infinite;
    animation: move-chevron 3s ease-out infinite;
}

.chevron:first-child {
  -webkit-animation: move-chevron 3s ease-out 1s infinite;
          animation: move-chevron 3s ease-out 1s infinite;
}

.chevron:nth-child(2) {
  -webkit-animation: move-chevron 3s ease-out 2s infinite;
          animation: move-chevron 3s ease-out 2s infinite;
}

.chevron:before, .chevron:after {
    content: "";
    position: absolute;
    top: 0;
    height: 100%;
    width: 50%;
    background: #fff;
    opacity: 0.5;
}

.chevron:before {
  left: 0;
  transform: skewY(35deg);
}

.chevron:after {
  right: 0;
  width: 50%;
  transform: skewY(-35deg);
}

@-webkit-keyframes move-chevron {
  25% {
    opacity: 1;
  }
  33.3% {
    opacity: 1;
    transform: translateY(2.28rem);
  }
  66.6% {
    opacity: 1;
    transform: translateY(3.12rem);
  }
  100% {
    opacity: 0;
    transform: translateY(4.8rem) scale(0.5);
  }
}

@keyframes move-chevron {
  25% {
    opacity: 1;
  }
  33.3% {
    opacity: 1;
    transform: translateY(2.28rem);
  }
  66.6% {
    opacity: 1;
    transform: translateY(3.12rem);
  }
  100% {
    opacity: 0;
    transform: translateY(4.8rem) scale(0.5);
  }
}


/* -=-=-=-=-=-=-=- ACCORDION -=-=-=-=-=-=-=-=- */
#accordionFlushExample {
    width: 100%;
    position: absolute;
    z-index: 5;
    top: 0px;
}

.accordion-item {
    background-color: transparent;
    border: 1px solid rgba(0,0,0,.125);
}

.accordion-button {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0.25rem 3.25rem;
    font-size: 1rem;
    color: #ffffff;
    text-align: left;
    background-color: rgba(0,0,0,0.5);
    border: 0;
    border-radius: 0;
    overflow-anchor: none;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,border-radius .15s ease;
    justify-content: center;
}

.accordion-button::after {
    filter: invert(1);
}

.accordion-button:not(.collapsed) {
    background-color: transparent;
}

.accordion-body {
    height: 120px;
    position: relative;
    width: 100%;
    padding-left: 0px!important;
}

.accordion-header {
    margin-bottom: 0;
    width: 50px;
    position: absolute;
    z-index: 5;
    background: transparent;
    border-bottom: none;
    left: calc(50% - 25px);
}

.accordion-button:not(.collapsed) {
    color: #0c63e4;
    background-color: transparent;
    box-shadow: none;
}

.accordion-button:focus {
    z-index: 3;
    border-color: transparent;
    outline: 0;
    box-shadow: none;
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(-180deg);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

button.accordion-button {
    position: relative;
    top: 120px;
    transition: 0.35s;
}


button.accordion-button.collapsed {
    position: relative;
    top: 0px;
    transition: 0.35s;
}


.accordion-flush .accordion-item .accordion-button {
    border-radius: 0;
    background-color: black;
    border-bottom: 2px solid #2a926d;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
}

.accordion-item:last-of-type .accordion-button.collapsed {
    border-bottom-right-radius: calc(.25rem - 1px);
    border-bottom-left-radius: calc(.25rem - 1px);
    background-color: rgba(0,0,0,0.25);
}





.iso-AmalArgentina {
    position: fixed;
    top: 15px;
    left: 15px;
    background-image: url(../img/logo-amal-horizontal.svg);
    content: '';
    background-repeat: no-repeat;
    background-size: contain;
    width: 300px;
    height: 100px;
    z-index: 1;
    opacity: 0.7;
}

.thumbsContainer {
    width: 96%;
    position: relative;
    overflow: scroll;
    top: 0px;
}

.arrowLeft {
    position: relative;
    left: 0px;
    top: 0px;
    padding: 48px 0px;
    width: 50px;
    float: left;
    transition: 0.4s;
}

.arrowRight {
    position: relative;
    top: -120px;
    right: 30px;
    float: right;
    padding: 48px 0px;
    width: 50px;
    transition: 0.4s;
}

.arrowRight:hover, .arrowLeft:hover {
    opacity: 0.4;
}

.carousel-indicators {
    position: relative;
    top: 0px;
    display: flex;
    padding: 0;
    list-style: none;
    width: 100%!important;
    margin-bottom: 0px;
    z-index: 5;
    margin-left: 0px;
    flex-direction: row;
    justify-content: flex-start;
}

.carousel-indicators [data-bs-target] {
    width: auto!important;
    height: 120px;
    background-color: transparent;
    border: none;
}

.gallery-img {
    width: 105px;
}

.gallery-img img {
    height: 80px;
    width: 100%;
    position: relative;
    float: left;
    margin-right: 0px;
    margin-top: 0px;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.thumbsContainer::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.thumbsContainer {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

.sliderWrapper {
    left: 40px;
    width: calc(100% - 100px);
    white-space: nowrap !important;
    height: 100%;
    position: relative;
    background: transparent;
    overflow-x: hidden;
}

.gallery-img img {
    position: relative;
    top: 35px;
    transform: translateY(-50%);
}

.next {
    height: 100%;
    position: absolute;
    right: 30px;
    background: #000;
    z-index: 1;
    display: flex;
    align-items: center;
    transition: 0.4s;
    cursor: pointer;
}

.prev {
    height: 100%;
    position: absolute;
    left: 10px;
    background: #000;
    z-index: 1;
    display: flex;
    align-items: center;
    transition: 0.4s;
    cursor: pointer;
}

.next:hover, .prev:hover {
    opacity: 0.4;
    transition: 0.4s;
}

.imageSlider {
    width: 96%;
    height: 120px;
    position: relative;
    overflow: hidden;
}

::-webkit-scrollbar {
    display: none;
}


@media (max-width: 991px) {
.iso-AmalArgentina {
    top: 0px;
    left: 0px;
    background-size: 200px 70px;
    height: 65px;
    opacity: 0.9;
    background-color: black;
    width: 100%;
    background-position: 10px 0px;
    z-index: 1500;
}
  
.touch .cd-nav-trigger {
    position: fixed;
    top: 10px;
    background: transparent;
    z-index: 1501;
    right: 40px;
}
  
.touch .cd-nav-trigger span {
  background-color: #adb5bd;
}
  
.touch #cd-vertical-nav a {
    display: block;
    padding: 1em;
    border-bottom: 1px solid rgba(62, 57, 71, 0.1);
    color: white;
    text-decoration: none;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
}
  
.cd-scroll-down {
    position: absolute;
    transform: translateX(-50%);
    bottom: -20px;
    width: 31px;
    height: 90px;
    float: right;
    right: 20px;
    left: auto;
}
  
.touch #cd-vertical-nav {
    background-color: rgba(0, 0, 0, 0.9);
    bottom: 0px;
    max-height: 100%;
    width: 100%;
    right: 0px;
    height: 100%;
    top: 65px;
    padding-top: 25px;
    border-radius: 0px;
    z-index: 100;
}
  
.cd-vertical-nav, ul {
    padding-left: 0px!important;
}
  
#section0 {
    background-image: url(../img/main.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    overflow-y: auto;
    height: 100%;
    text-align: center;
    padding: 30px 20px 0px 20px;
}

.sectionHome {
    padding: 0px 20px 40px 20px;
    height: 80vh;
    overflow: scroll;
}
  
.audioWrapper {
  position: absolute;
} 
  
.audioplayer {
    width: 20%;
}
  
.audioplayer-bar {
  display: none;
}

.audioplayer-volume {
    display: none;
}
  
.audioplayer-playpause {
    margin-top: -40px;
    margin-left: 13px;
}
  
  
  
/* -=-=-=-=-=-=-=- CAROUSEL -=-=-=-=-=-=-=-*/
.carousel {
    height: 100%;
    top: 0px;
    position: absolute;
}
  
.carousel-control-next, .carousel-control-prev {
    top: 50%;
    background-color: transparent;
    width: 10%;
}
  
.carousel-item img {
    object-fit: contain;
    background-position: top;
    height: 38%;
    margin-top: 65px;
}

.captionContainer {
    width: 35px;
    position: absolute;
    right: 100px;
    bottom: 16px;
    left: auto;
}
  
.captionBtnText {
    display: none;
}
  
.carousel-caption {
    position: absolute;
    color: white;
    top: 50%;
    height: 38%;
    left: 0px;
    text-align: left;
    padding: 0px 40px;
    width: 100%;
}
  
.carousel-caption p {
    line-height: 15px;
    font-size: 13px!important;
}
  
  
@media (max-width: 576px) {
.captionContainer {
    display: none;
}
}

.imageSlider {
    display: none;
}
  
.accordion {
    position: absolute;
    width: 100%;
    bottom: 0px;
}
  
.accordion-body {
  height: 80px;
}
  
.section-container {
  height: 80px;
  background-color: rgba(0,0,0,0.9);
}

.thumbsContainer {
  display: none;
}
  

  
button.accordion-button {
    display: none;
}
  
.stepTitle {
    font-size: 17px;
    left: 70px;
    margin-top: 20px;
}
  
.stepTitle .small {
    font-size: 16px;
}
  
.stepNumber {
    line-height: 40px;
    font-size: 90px;
    left: 40px;
}
  
}

.languageSelector {
    position: fixed;
    right: 0px;
    top: 14px;
    background-color: #242424;
    z-index: 1501;
    padding: 5px 10px;
}

.languageSelector a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
}

a.btn.btn-primary.cd-scroll-down.cd-img-replace {
    position: absolute;
    transform: translateX(0%);
    bottom: 0px;
    width: 100%;
    height: 40px;
    float: none;
    right: 0px;
    left: 0px;
    display: flex;
    justify-content: center;
    text-indent: 0%;
    border-radius: 0px;
    background-color: #484848;
    border: none;
    align-items: center;
    font-weight: 500;
  transition: 0.4s;
}

a.btn.btn-primary.cd-scroll-down.cd-img-replace:hover {
    background-color: #111;
    transition: 0.4s;
}