:root {

/* CARDS */
  --text-card-head-weight: 600;
  --text-card-body-color: #696969;
  --text-card-head-color: #696969;
  --text-card-footer-color: #313131;

  --location-text-color: #313131;
  --process-text-color: #FFFFFF;

  --slideshow2-text-title-size: 22px;
  --slideshow2-text-description-size: 14px;
}

/* WAVES */
.waves {
  position: absolute;
  height:6vh;
  width: 100vw;
  /* margin-bottom:-7px; Fix for safari gap */
  bottom: 0;
  left: 0;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
.waves-bg {
  background-image: url("");
}
.content {
  position:relative;
  height:20vh;
  text-align:center;
  background-color: white;
}
.parallax > use {
  animation: move-forever 25s cubic-bezier(.55,.5,.45,.5)     infinite;
}
.parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}
.parallax > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}
.parallax > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}
.parallax > use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
}
@keyframes move-forever {
  0% {
   transform: translate3d(-90px,0,0);
  }
  100% { 
    transform: translate3d(85px,0,0);
  }
}
/*Shrinking for mobile*/
@media (max-width: 768px) {
  .waves {
    height:40px;
    min-height:40px;
  }
  .content {
    height:30vh;
  }
  h1 {
    font-size:24px;
  }
}
/* Waves end */

/* Default page CSS */
.glitch.active span:not(:last-child) {
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
}
.glitch.active span:nth-child(odd) {
  -webkit-animation-name: slide-from-left;
          animation-name: slide-from-left;
}
.glitch.active span:nth-child(even) {
  -webkit-animation-name: slide-from-right;
          animation-name: slide-from-right;
}
.glitch.active span:last-child {
  -webkit-animation: reveal steps(1) forwards;
          animation: reveal steps(1) forwards;
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
.glitch span:not(:last-child) {
  --ratio: calc(100% / var(--slice-count));
  --top: calc(var(--ratio) * (var(--i) - 1));
  --bottom: calc(var(--ratio) * (var(--slice-count) - var(--i)));
  position: absolute;
  white-space: nowrap;
  -webkit-clip-path: inset(var(--top) 0 var(--bottom) 0);
          clip-path: inset(var(--top) 0 var(--bottom) 0);
}
.glitch span:last-child {
  opacity: 0;
}

@-webkit-keyframes slide-from-left {
  from {
    transform: translateX(-20%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes slide-from-left {
  from {
    transform: translateX(-20%);
  }
  to {
    transform: translateX(0);
  }
}
@-webkit-keyframes slide-from-right {
  from {
    transform: translateX(20%);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes slide-from-right {
  from {
    transform: translateX(20%);
  }
  to {
    transform: translateX(0);
  }
}
@-webkit-keyframes reveal {
  to {
    opacity: 1;
  }
}
@keyframes reveal {
  to {
    opacity: 1;
  }
}
/* .main-header {
  position: absolute;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 60px;
}
@media screen and (max-width: 750px) {
  .main-header {
    padding: 0 20px;
  }
} */

.logo {
  width: 400px;
  -webkit-filter: drop-shadow(-2px 5px 4px var(--box-shadow));
  filter: drop-shadow(-2px 5px 4px var(--box-shadow));
}





#speakers .speakers-cards .card {
  --card-bg-color: linear-gradient(-20deg, #dadada 0%, #ffffff 100%);
  position: relative;
  width: 280px;
  /* border: solid 1px var(--primary-color-1); */
  border-radius: 10px;
}
.card.active .card-borders .border-top {
  -webkit-animation: slide-in-horizontal 0.8s cubic-bezier(0.645, 0.045, 0.355, 1) forwards;
          animation: slide-in-horizontal 0.8s cubic-bezier(0.645, 0.045, 0.355, 1) forwards;
}
.card.active .card-borders .border-right {
  -webkit-animation: slide-in-vertical 0.8s cubic-bezier(0.645, 0.045, 0.355, 1) forwards;
          animation: slide-in-vertical 0.8s cubic-bezier(0.645, 0.045, 0.355, 1) forwards;
}
.card.active .card-borders .border-bottom {
  -webkit-animation: slide-in-horizontal-reverse 0.8s cubic-bezier(0.645, 0.045, 0.355, 1) forwards;
          animation: slide-in-horizontal-reverse 0.8s cubic-bezier(0.645, 0.045, 0.355, 1) forwards;
}
.card.active .card-borders .border-left {
  -webkit-animation: slide-in-vertical-reverse 0.8s cubic-bezier(0.645, 0.045, 0.355, 1) forwards;
          animation: slide-in-vertical-reverse 0.8s cubic-bezier(0.645, 0.045, 0.355, 1) forwards;
}
.card.active .card-content {
  -webkit-animation: bump-in 0.5s 0.8s forwards;
          animation: bump-in 0.5s 0.8s forwards;
}
.card.active .card-content .avatar {
  -webkit-animation: bump-in 0.5s 1s forwards;
          animation: bump-in 0.5s 1s forwards;
}
.card.active .card-content .username {
  -webkit-animation: fill-text-white 1.2s 2s forwards;
          animation: fill-text-white 1.2s 2s forwards;
}
.card.active .card-content .username::before {
  -webkit-animation: slide-in-out 1.2s 1.2s cubic-bezier(0.75, 0, 0, 1) forwards;
          animation: slide-in-out 1.2s 1.2s cubic-bezier(0.75, 0, 0, 1) forwards;
}
.card.active .card-content .info {
  -webkit-animation: fade-up 1.2s 2s forwards;
          animation: fade-up 1.2s 2s forwards;
}
.card .card-borders {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.card .card-borders .border-top {
  position: absolute;
  top: 0;
  width: 100%;
  height: 2px;
  background: var(--card-bg-color);
  transform: translateX(-100%);
}
.card .card-borders .border-right {
  position: absolute;
  right: 0;
  width: 2px;
  height: 100%;
  background: var(--card-bg-color);
  transform: translateY(100%);
}
.card .card-borders .border-bottom {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--card-bg-color);
  transform: translateX(100%);
}
.card .card-borders .border-left {
  position: absolute;
  top: 0;
  width: 2px;
  height: 100%;
  background: var(--card-bg-color);
  transform: translateY(-100%);
}
#speakers .speakers-cards .card .card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 340px;
  padding: 20px 10px 10px 10px;
  background: var(--card-bg-color);
  box-shadow: 0 0px 0.7px rgba(0, 0, 0, 0.056), 0 0px 1.7px rgba(0, 0, 0, 0.081), 0 0px 3.1px rgba(0, 0, 0, 0.1), 0 0px 5.6px rgba(0, 0, 0, 0.119), 0 0px 10.4px rgba(0, 0, 0, 0.144), 0 0px 25px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: scale(0.6);
  text-align: center;
  color: var(--text-color);
  border-radius: 10px;
}
.card .card-content .avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin-bottom: 40px;
  opacity: 0;
  transform: scale(0.6);
}
.card .card-content .username {
  position: relative;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.card .card-content .username span {
  color: var(--text-card-head-color);
  font-weight: var(--text-card-head-weight);
}
.card .card-content .username::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: black;
  background: rgba(0, 0, 0, 0.39);
  transform: scaleX(0);
  transform-origin: left;
}
.card .card-content .info {
  font-family: Roboto;
  font-size: 12px;
  text-align: justify;
  text-justify: inter-word;
  opacity: 0;
  transform: translateY(20%);
  margin-left: 20px;
  margin-right: 20px;
  color: var(--text-card-body-color);
}

@-webkit-keyframes bump-in {
  50% {
    transform: scale(1.05);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes bump-in {
  50% {
    transform: scale(1.05);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@-webkit-keyframes slide-in-horizontal {
  50% {
    transform: translateX(0);
  }
  to {
    transform: translateX(100%);
  }
}
@keyframes slide-in-horizontal {
  50% {
    transform: translateX(0);
  }
  to {
    transform: translateX(100%);
  }
}
@-webkit-keyframes slide-in-horizontal-reverse {
  50% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes slide-in-horizontal-reverse {
  50% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@-webkit-keyframes slide-in-vertical {
  50% {
    transform: translateY(0);
  }
  to {
    transform: translateY(-100%);
  }
}
@keyframes slide-in-vertical {
  50% {
    transform: translateY(0);
  }
  to {
    transform: translateY(-100%);
  }
}
@-webkit-keyframes slide-in-vertical-reverse {
  50% {
    transform: translateY(0);
  }
  to {
    transform: translateY(100%);
  }
}
@keyframes slide-in-vertical-reverse {
  50% {
    transform: translateY(0);
  }
  to {
    transform: translateY(100%);
  }
}
@-webkit-keyframes slide-in-out {
  50% {
    transform: scaleX(1);
    transform-origin: left;
  }
  50.1% {
    transform-origin: right;
  }
  100% {
    transform: scaleX(0);
    transform-origin: right;
  }
}
@keyframes slide-in-out {
  50% {
    transform: scaleX(1);
    transform-origin: left;
  }
  50.1% {
    transform-origin: right;
  }
  100% {
    transform: scaleX(0);
    transform-origin: right;
  }
}
@-webkit-keyframes fill-text-white {
  to {
    color: transparent;
  }
}
@keyframes fill-text-white {
  to {
    color: var(--text-color);
  }
}
.marker {
  position: relative;
  --marker-radius: 1em;
  --marker-diameter: calc(var(--marker-radius) * 2);
  --marker-color: #3498db;
}
.marker .pin {
  position: relative;
  z-index: 1;
  width: var(--marker-diameter);
  height: var(--marker-diameter);
  background: var(--marker-color);
  border-radius: 50% 50% 0 50%;
  -webkit-mask: radial-gradient(transparent calc(var(--marker-radius) / 2), black calc(var(--marker-radius) / 2));
          mask: radial-gradient(transparent calc(var(--marker-radius) / 2), black calc(var(--marker-radius) / 2));
  transform: rotate(45deg);
}
.marker .shadow {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: var(--marker-radius);
  height: var(--marker-radius);
  background: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  transform: translate(50%, -10%) rotateX(60deg);
}
.marker .shadow::before {
  position: absolute;
  content: "";
  width: var(--marker-diameter);
  height: var(--marker-diameter);
  background: transparent;
  border: 1px solid var(--marker-color);
  border-radius: inherit;
  opacity: 0;
  transform: scale(0);
  -webkit-animation: pulse 1s infinite;
          animation: pulse 1s infinite;
}

@-webkit-keyframes pulse {
  50% {
    opacity: 1;
  }
  to {
    transform: scale(1.2);
  }
}

@keyframes pulse {
  50% {
    opacity: 1;
  }
  to {
    transform: scale(1.2);
  }
}

@-webkit-keyframes expand {
  to {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
  }
}

@keyframes expand {
  to {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
  }
}
.fade-up {
  opacity: 0;
  transform: translateY(20%);
}
.fade-up.active {
  -webkit-animation: fade-up 0.6s forwards;
          animation: fade-up 0.6s forwards;
}

@-webkit-keyframes fade-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in {
  opacity: 0;
}
.fade-in.active {
  -webkit-animation: reveal 0.6s forwards;
          animation: reveal 0.6s forwards;
}


main {
  height: 100%;
background-color: var(--background-color);
  /* -webkit-animation: move1 10s 0s linear infinite, move1 19s 0s linear infinite;
  animation: move1 10s 0s linear infinite, move1 19s 0s linear infinite; */
}
main section h1,
main section h2 {
  margin: 0;
}
main section h1 {
  font-size: 32px;
}
main section h2 {
  font-size: 14px;
}
main section p {
  margin: 0;
}
main .hero-section {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  /* offset-x | offset-y | blur-radius | color */
  text-shadow: -2px 1px 5px var(--text-shadow-color);
}
main .hero-section h1 {
  margin-bottom: 8px;
  font-size: 46px;
  text-transform: uppercase;
}
main .hero-section h2 {
  font-size: 24px;
  font-weight: lighter;
}
@media screen and (max-width: 750px) {
  main .hero-section h1 {
    font-size: 30px;
  }
  main .hero-section h2 {
    font-size: 16px;
  }
}
main .normal-section {
  padding: 20px 0;
  display: grid;
  gap: 30px;
  overflow: hidden;


  -webkit-transition: background-color 500ms;
	transition: background-color 500ms;

}
main .normal-section#sponsors {
  justify-items: normal;
  color:  var(--text-color);
}
main .normal-section .titles {
  display: grid;
  gap: 0px;
  justify-items: center;
  justify-content: center;
  align-items: center;
  align-content: center;
  text-align: justify;
  text-justify: inter-word;
  /* letter-spacing: 0.1em; */
}

main .normal-section:nth-child(odd) {
  /* background-color: rgb(0, 113, 148); */
  color: var(--text-color);
}
main .normal-section:nth-child(even) {
  /* background-color: rgb(1, 110, 110); */
  color: var(--text-color);
}

/* .title-bg {
background-color: var(--footer-background-color);
margin-bottom: -48px;
width: 100vw;
height: 100px;
} */

main #sponsors {
  padding: 60px 0;
}

main #speakers {
  padding: 60px 0;
}
main #speakers .description {
  display: grid;
  grid-template-columns: 60vw;
  align-items: center;
  justify-content: center;
  justify-items: center;
}
main #speakers .description p:nth-child(1) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
main #speakers .description p:nth-child(2) {
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
}
main #speakers .description p:nth-child(3) {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}
main #speakers .description p:nth-child(4) {
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}

main #about {
  padding: 60px 0;
}
main #about .description {
  display: grid;
  grid-template-columns: 60vw;
  align-items: center;
  justify-content: center;
  justify-items: center;
  gap: 24px;
  width: 100vw;
}
main #about .description p:nth-child(1) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
main #about .description p:nth-child(2) {
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
}
main #about .description p:nth-child(3) {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}
main #about .description p:nth-child(4) {
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}
main #about .cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  justify-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  gap: 10px;
  font-size: 12px;
  color: var(--text-card-footer-color);
}
main #about .cards .card {
    display: flex;
    width: 300px;
    height: 400px;
    padding: 5px;
    border-radius: 10px;
    box-shadow: -2px 5px 10px rgba(0, 0, 0, 0.651);
    background: linear-gradient(to bottom right, rgb(255, 255, 255), #ffffff);
    border: solid 3px var(--primary-color-1);
}
main #about .cards .card .cert,
main #about .cards .card .cert,
main #about .cards .card .cert {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 100%;
}
main #about .cards .card .cert:hover,
main #about .cards .card .cert:hover,
main #about .cards .card .cert:hover {
  background-size: 500px;
}
/* main #about .cards .card #cert1 {
  background-image: url("../src/certs/cert1.png");
}
main #about .cards .card #cert2 {
  background-image: url("../src/certs/cert2.png");
}
main #about .cards .card #cert3 {
  background-image: url("../src/certs/cert3.png");
} */

main #speakers .speakers-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  justify-items: center;
  gap: 2.2rem;
  margin: 0 12.5rem;
}
@media screen and (max-width: 750px) {
  main #speakers .speakers-cards {
    margin: 0;
  }

main #projects {
margin: 60px 0;
}

main #location {
  padding: 0px 0;
}

.titles h1 {
font-size: large;
}

.description p {
text-align: center;
}

}

.titles h1 {
text-align: center;
}

main #projects {
  padding: 60px 0;
}

main #location {
  padding: 60px 0;
}
.contact-box {
  font-family: Roboto;
  margin-top: 10px;
  display: grid;
  grid-template-rows: auto auto auto auto;
}
.contact-box i b,  .contact-box i span{
  color: var(--location-text-color);
}
#company-address {
text-transform:uppercase;
}
#phone {
  color:var(--primary-color-1);
  width: fit-content;
}
#facebook {
  color: #1771E6;
  width: fit-content;
}
#whatsapp {
  color: #3FBA4E;
  width: fit-content;
}
#email {
  color:#AA2B92;
  width: fit-content;
}
.contact-box i {
  font-size: 34px;
  margin-top: 15px;
  cursor: pointer;
}
.contact-box i b, .contact-box i span {
  font-size: 12px;
  margin: 5px;
  font-weight: 100;
  
  font-family: Roboto;
  text-transform: capitalize;
}

#email b {
  text-transform: lowercase;
}
main #location .place {
  display: flex;
  flex-direction: row;
  justify-content: center;
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
main #location .place .marker {
  margin: 0 1em 0.5em 0;
}
main #location .place .place-name {
  word-spacing: 0px;
  text-align: justify;
  text-justify: inter-word;
  font-size: 14px;
  /* font-weight: bold; */
}
main #location #map {
  width: 100%;
  height: 360px;
  border-radius: 5px;
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}


/* Default page CSS end */

#contact-info {
  padding: 15px;
  border-radius: 5px;
}
#contact-form * {
font-size: 12px;
}

#contact-form label {
  color: #000000;
}

#contact-icons ul li p {
  font-size: 12px;
}

/* SLIDESHOW */
.slideshow {
  overflow: hidden;
  position: absolute;
  width: 100vw;
  height: 100vh;
  z-index: 1;
  border-radius: 0px;
}
.slideshow .slideshow-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.slideshow .slides {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.slideshow .slide {
  display: none;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.slideshow .slide.is-active {
  display: block;
}
.slideshow .slide.is-loaded {
  opacity: 1;
}
.slideshow .slide .caption {
  padding: 0 100px;
  width: 800px;
}
.slideshow .slide .image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-position: center;
  background-size: cover;
  image-rendering: optimizeQuality;

}
.slideshow .slide .image-container::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.904), rgba(0, 0, 0, 0.192));
}
.slideshow .slide .image {
  width: 100%;
  object-fit: cover;
  height: 100%;
}
.slideshow .slide-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.slideshow .slide .title {
  margin: 0 auto 15px;
  max-width: 1000px;
  font: 250 20px/1.1 "Oswald", sans-serif;
  letter-spacing: 0.15em;
  text-transform:capitalize;
}
.slideshow .slide .text {
  margin: 0 auto;
  max-width: 1000px;
  font-size: 18px;
  line-height: 1.4;
}
.slideshow .slide .btn {
  margin: 15px 0 0;
  border-color: #fff;
}
.slideshow .slide .btn::before {
  background: #fff;
}
.slideshow .pagination {
  position: absolute;
  bottom: 35px;
  left: 0;
  width: 100%;
  height: 12px;
  cursor: default;
  z-index: 2;
  text-align: center;
}
.slideshow .pagination .item {
  display: inline-block;
  padding: 15px 5px;
  position: relative;
  width: 46px;
  height: 32px;
  cursor: pointer;
  text-indent: -999em;
  z-index: 1;
}
.slideshow .pagination .item + .page {
  margin-left: -2px;
}
.slideshow .pagination .item::before {
  content: "";
  display: block;
  position: absolute;
  top: 15px;
  left: 5px;
  width: 36px;
  height: 2px;
  background: rgba(255, 255, 255, 0.5);
  transition: background 0.2s ease;
}
.slideshow .pagination .item::after {
  width: 0;
  background: #fff;
  z-index: 2;
  transition: width 0.2s ease;
}
.slideshow .pagination .item:hover::before, .slideshow .pagination .item.is-active::before {
  background-color: #fff;
}
.slideshow .arrows .arrow {
  margin: -33px 0 0;
  padding: 20px;
  position: absolute;
  top: 50%;
  cursor: pointer;
  z-index: 3;
}
.slideshow .arrows .prev {
  left: 30px;
}
.slideshow .arrows .prev:hover .svg {
  left: -10px;
}
.slideshow .arrows .next {
  right: 30px;
}
.slideshow .arrows .next:hover .svg {
  left: 10px;
}
.slideshow .arrows .svg {
  position: relative;
  left: 0;
  width: 14px;
  height: 26px;
  fill: #fff;
  transition: left 0.2s ease;
}
/* Slideshow end */

.address-wrappper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  /* grid-template-columns: 60% auto; */
  margin-left: 10%;
  margin-right: 10%;
  font-family: Roboto;
  text-transform: capitalize;
  gap: 20px;
}


main .normal-section .titles h1,
main .normal-section .titles h2,
main .normal-section .titles h3 {
  font-family: Roboto-bold;
  font-size: var(--text-header-size);
  text-transform: uppercase;
  color: var(--text-header-color);
}
/* .normal-section .description p {
  font-family: Roboto;
  font-weight: 100;
  font-style:normal;
  text-decoration: none;
  text-align: justify;
  text-justify:inter-word;
  color: var(--text-description-color);
  margin-top: 20px;
} */

.normal-section .description .subtitle {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-content: center;
  justify-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-subtitle-color);
  margin-top: 20px;
}

.description p {
  font-family: Roboto;
  font-weight: 100;
  font-style:normal;
  text-decoration: none;
  text-align: justify;
  text-justify:inter-word;
  color: var(--text-description-color);
  margin-top: 20px;
}



/* TIMELINE START*/
.hexa{
  border: 0px;
  float: left;
  text-align: center;
  height: 35px;
  width: 60px;
  font-size: 22px;
  background: #f0f0f0;
  color: #3c3c3c;
  position: relative;
  margin-top: 15px;
}

.hexa:before{
  content: ""; 
  position: absolute; 
  left: 0; 
  width: 0; 
  height: 0;
  border-bottom: 15px solid #f0f0f0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  top: -15px;
}

.hexa:after{
  content: ""; 
  position: absolute; 
  left: 0; 
  width: 0; 
  height: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-top: 15px solid #f0f0f0;
  bottom: -15px;
}

.timeline {
  position: relative;
  padding: 0;
  width: 100%;
  list-style-type: none;
}

.timeline:before {
  position: absolute;
  left: 50%;
  top: 0;
  content: ' ';
  display: block;
  width: 2px;
  height: 100%;
  margin-left: -1px;
  background: rgb(213,213,213);
  background: -moz-linear-gradient(top, rgba(213,213,213,0) 0%, rgb(213,213,213) 8%, rgb(213,213,213) 92%, rgba(213,213,213,0) 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(30,87,153,1)), color-stop(100%,rgba(125,185,232,1)));
  background: -webkit-linear-gradient(top, rgba(213,213,213,0) 0%, rgb(213,213,213) 8%, rgb(213,213,213) 92%, rgba(213,213,213,0) 100%);
  background: -o-linear-gradient(top, rgba(213,213,213,0) 0%, rgb(213,213,213) 8%, rgb(213,213,213) 92%, rgba(213,213,213,0) 100%);
  background: -ms-linear-gradient(top, rgba(213,213,213,0) 0%, rgb(213,213,213) 8%, rgb(213,213,213) 92%, rgba(213,213,213,0) 100%);
  background: linear-gradient(to bottom, rgba(213,213,213,0) 0%, rgb(213,213,213) 8%, rgb(213,213,213) 92%, rgba(213,213,213,0) 100%);
}

.timeline li {
  padding: 2em 0;
}

.timeline .hexa{
  width: 16px;
  height: 10px;
  position: absolute;
  background: #00c4f3;
  z-index: 50;
  left: 0;
  right: 0;
  margin-left:auto;
  margin-right:auto;
  top: -30px;
  margin-top: 0;
}

.timeline .hexa:before {
  border-bottom: 4px solid #00c4f3;
  border-left-width: 8px;
  border-right-width: 8px;
  top: -4px;
}

.timeline .hexa:after {
  border-left-width: 8px;
  border-right-width: 8px;
  border-top: 4px solid #00c4f3;
  bottom: -4px;
}

.direction-l,
.direction-r {
  float: none;
  width: 100%;
  text-align: center;
}

.flag-wrapper {
  text-align: center;
  position: relative;
}

.flag {
  position: relative;
  display: inline;
  background: rgb(255,255,255);
  font-weight: 600;
  z-index: 15;
  padding: 6px 10px;
  text-align: left;
  border-radius: 5px;
}

.direction-l .flag:after,
.direction-r .flag:after {
  content: "";
  position: absolute;
  left: 50%;
  top: -15px;
  height: 0;
  width: 0;
  margin-left: -8px;
  border: solid transparent;
  border-bottom-color: rgb(255,255,255);
  border-width: 8px;
  pointer-events: none;
}

.direction-l .flag {
  -webkit-box-shadow: -1px 1px 1px rgba(0,0,0,0.15), 0 0 1px rgba(0,0,0,0.15);
  -moz-box-shadow: -1px 1px 1px rgba(0,0,0,0.15), 0 0 1px rgba(0,0,0,0.15);
  box-shadow: -1px 1px 1px rgba(0,0,0,0.15), 0 0 1px rgba(0,0,0,0.15);
}

.direction-r .flag {
  -webkit-box-shadow: 1px 1px 1px rgba(0,0,0,0.15), 0 0 1px rgba(0,0,0,0.15);
  -moz-box-shadow: 1px 1px 1px rgba(0,0,0,0.15), 0 0 1px rgba(0,0,0,0.15);
  box-shadow: 1px 1px 1px rgba(0,0,0,0.15), 0 0 1px rgba(0,0,0,0.15);
}

.time-wrapper {
  display: block;
  position: relative;
  margin: 4px 0 0 0;
  z-index: 14;
  line-height: 1em;
  color: #fff;
}

.direction-l .time-wrapper {
  float: none;
}

.direction-r .time-wrapper {
  float: none;
}

.time {
  background: #00c4f3;
  display: inline-block;
  padding: 8px;
}

.desc {
  position: relative;
  margin: 1em 0 0 0;
  padding: 1em;
  background: rgb(254,254,254);
  -webkit-box-shadow: 0 0 1px rgba(0,0,0,0.20);
  -moz-box-shadow: 0 0 1px rgba(0,0,0,0.20);
  box-shadow: 0 0 1px rgba(0,0,0,0.20);
  z-index: 15;
}

.direction-l .desc,
.direction-r .desc {
  position: relative;
  margin: 1em 1em 0 1em;
  padding: 1em;
  border-radius: 10px;
  z-index: 15;
}

@media(min-width: 768px){
  .timeline {
    width: 660px;
    margin: 0 auto;
    margin-top: 20px;
  }

  .timeline li:after {
    content: "";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
  }
  
  .timeline .hexa {
    left: -28px;
    right: auto;
    top: 8px;
  }

  .timeline .direction-l .hexa {
    left: auto;
    right: -28px;
  }

  .direction-l {
    position: relative;
    width: 40%;
    float: left;
    text-align: right;
    transform: translate(19%);
  }

  .direction-r {
    position: relative;
    width: 40%;
    float: right;
    text-align: left;
    transform: translate(-19%);
  }

  .flag-wrapper {
    display: inline-block;
  }
  
  .flag {
    font-size: 18px;
  }

  .direction-l .flag:after {
    left: auto;
    right: -16px;
    top: 50%;
    margin-top: -8px;
    border: solid transparent;
    border-left-color: rgb(254,254,254);
    border-width: 8px;
  }

  .direction-r .flag:after {
    top: 50%;
    margin-top: -8px;
    border: solid transparent;
    border-right-color: rgb(254,254,254);
    border-width: 8px;
    left: -8px;
  }

  .time-wrapper {
    display: inline;
    vertical-align: middle;
    margin: 0;
  }

  .direction-l .time-wrapper {
    float: left;
  }

  .direction-r .time-wrapper {
    float: right;
  }

  .time {
    padding: 5px 10px;
  }

  .direction-r .desc {
    margin: 1em 0 0 0.75em;
  }
}

@media(min-width: 992px){
  .timeline {
    width: 800px;
    margin: 0 auto;
  }

  .direction-l {
    position: relative;
    width: 20%;
    transform: translate(142%);
    float: left;
    text-align: right;
  }

  .direction-r {
    position: relative;
    width: 20%;
    transform: translate(-142%);
    float: right;
    text-align: left;
  }
}
/* TIMELINE END */
#certificates {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.qrcode {
  position: absolute;
  background-image: url("../src/QR_Ventas.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 90px;
  height: 90px;
  z-index: 100;
  right: 5%;
  bottom: 5%;
  border-radius: 10px;
}

.qrcode-box i span {
font-size: small;
text-transform: none;
}

#address-qrcode {
  background-image: url("../src/QR_Ventas.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 110px;
  height: 110px;
  border-radius: 10px;
  margin-top: 20px;
  border: solid 1px #000000;
}

/* .scroll-to-top {
position: absolute;
right: 0;
bottom: 0;
width: 20px;
height: 20px;
font-size: medium;
z-index: 10000;
background-color: #00c4f3;
} */

/* SLIDESHOW 2 */
.slideshow__pagination {
  position: absolute !important;
  width: 100%;
  text-align: center;
  right: 0;
  padding: 0 !important;
  bottom: 30px;
  z-index: 999;
}

.pagination__item {
  cursor: pointer;
  display: inline-block;
  white-space: nowrap;
  font-size: 0;
  width: 10px;
  height: 10px;
  border: 1px solid #fff;
  margin: 0 5px;
  transition: 0.2s ease-in-out;
}
.pagination__item.is-current, .pagination__item:hover {
  background-color: #fff;
}

.slideshow__container {
  position: relative;
  margin: 0 auto;
}

@media (max-width: 699px) {
  .slideshow__container {
    padding-right: 40px;
    /*padding-left: 40px;*/
  }
}
@media (min-width: 700px) and (max-width: 1599px) {
  .slideshow__container {
    padding-right: 7.5rem;
    /*padding-left: 7.5rem;*/
    max-width: 140rem;
  }
}

@media (min-width: 1600px) {
  .slideshow__container {
    padding-right: 9.5625rem;
    /*padding-left: 9.5625rem;*/
    max-width: 144.125rem;
  }
}
.background-absolute {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size:cover;
}

.slideshow__ {
  position: relative;
  overflow: hidden;
  min-height: 600px;
  height: 100vh;
  margin-left: 5%;
  margin-right: 5%;
  margin-top: 20px;
}
.slideshow__ h3,
.slideshow__ h1,
.slideshow__ h2 {
  font-family: Roboto;
  text-transform: uppercase;
  letter-spacing: 0.5em;
  line-height: 2em;
}
.slideshow__ h1 {
  font-size: var(--slideshow2-text-title-size);
  font-weight: 800;
}

.slideshow__slide {
  visibility: hidden;
  transition: visibility 0s 1.7s;
}
.slideshow__slide.is-current {
  visibility: visible;
  transition-delay: 0s;
}

@media (max-width: 699px) {
  .slideshow__ .slideshow__slide {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
}
@media (min-width: 700px) {
  .slideshow__ .slideshow__slide {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
}
.slideshow__slide-background-load-wrap {
  transition: transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translate3d(0, 100%, 0);
  overflow: hidden;
}

.is-animated .slideshow__slide-background-load-wrap {
  transform: translate3d(0, 0, 0);
  transition-delay: 0s;
}

.slideshow__slide.is-prev .slideshow__slide-background-parallax, .slideshow__slide.is-next .slideshow__slide-background-parallax, .slideshow__slide.is-prev-section .slideshow__slide-background-parallax, .slideshow__slide.is-next-section .slideshow__slide-background-parallax {
  transform: none !important;
}

.slideshow__slide-background-load {
  transition: transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translate3d(0, -50%, 0);
}

.is-animated .slideshow__slide-background-load {
  transform: translate3d(0, 0, 0);
}

.slideshow__slide-background-wrap {
  transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.5s;
  transform: translate3d(0, 0, 0);
}

.slideshow__slide.is-prev .slideshow__slide-background-wrap {
  transform: translate3d(0, -100%, 0);
}
.slideshow__slide.is-next .slideshow__slide-background-wrap {
  transform: translate3d(0, 100%, 0);
}
.slideshow__slide.is-prev-section .slideshow__slide-background-wrap {
  transform: translate3d(0, -100%, 0);
  transition: none;
}
.slideshow__slide.is-next-section .slideshow__slide-background-wrap {
  transform: translate3d(0, 100%, 0);
  transition: none;
}

.slideshow__slide-background {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1) 1.5s;
  transform: scale(1);
  overflow: hidden;
}

.slideshow__slide.is-prev .slideshow__slide-background, .slideshow__slide.is-next .slideshow__slide-background {
  transform: scale(0.5);
  transition-delay: 0s;
}
.slideshow__slide.is-prev-section .slideshow__slide-background, .slideshow__slide.is-next-section .slideshow__slide-background {
  transform: scale(0.5);
  transition-delay: 0s;
  transition: none;
}

.slideshow__slide-image-wrap {
  transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.6s;
  transform: translate3d(0, 0, 0);
}

.slideshow__slide.is-prev .slideshow__slide-image-wrap {
  transform: translate3d(0, 50%, 0);
}

.slideshow__slide-image {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1) 1.5s;
  transform: scale(1);
  /* M */
  border-radius: 10px; 
}

.slideshow__slide.is-prev .slideshow__slide-image, .slideshow__slide.is-next .slideshow__slide-image {
  transform: scale(1.25);
  transition-delay: 0s;
}
.slideshow__slide.is-prev-section .slideshow__slide-image, .slideshow__slide.is-next-section .slideshow__slide-image {
  transform: scale(1.25);
  transition-delay: 0s;
  transition: none;
}

.slideshow__slide-image::before, .slideshow__slide-image::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0; 
  bottom: 0;
  left: 0;
  opacity: 0.35;
  border-radius: 5px;
}
.slideshow__slide-image::before {
  background-color: rgba(0, 0, 0, 0.800);
}
.slideshow__slide-image::after {
  background-color: rgba(0, 0, 0, 0.800);
}

.slideshow__slide.is-prev .slideshow_container, .slideshow__slide.is-next .slideshow_container, .slideshow__slide.is-prev-section .slideshow_container, .slideshow__slide.is-next-section .slideshow_container {
  transform: none !important;
}

.slideshow__slide-caption-text {
  position: relative;
  height: 100%;
  padding-top: 5%;
  transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  transform: translate3d(0, 0, 0);
}

.slideshow__slide.is-prev .slideshow__slide-caption-text {
  transform: translate3d(-100%, -50%, 0);
}
.slideshow__slide.is-next .slideshow__slide-caption-text {
  transform: translate3d(-100%, 10%, 0);
}
.slideshow__slide.is-prev-section .slideshow__slide-caption-text {
  transform: translate3d(-100%, -50%, 0);
  transition: none;
}
.slideshow__slide.is-next-section .slideshow__slide-caption-text {
  transform: translate3d(-100%, 10%, 0);
  transition: none;
}

.slideshow__slide-caption {
  position: relative;
  height: 100%;
  transform: translate3d(-100%, 10%, 0);
  transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.is-animated .slideshow__slide-caption {
  transform: translate3d(0, 0, 0);
}

.slideshow__slide-caption-title {
  line-height: 1;
}
.slideshow__slide-caption-title.-full {
  width: 100%;
}

@media (max-height: 500px) {
  .slideshow__slide-caption-title {
    margin-bottom: 0 !important;
  }
}
@media (max-width: 699px) {
  .slideshow__slide-caption-title {
    font-size: 30px;
    margin-bottom: 20px;
  }

  .slideshow.-full .slideshow__slide-caption-title {
    margin-bottom: 30px;
  }
}
@media (min-width: 700px) {
  .slideshow__slide-caption-title {
    font-size: 30px;
    margin-bottom: 20px;
  }
}
@media (min-width: 700px) and (max-width: 749px) {
  .slideshow__slide-caption-title {
    font-size: 30px;
  }
}
@media (min-width: 1600px) {
  .slideshow__slide-caption-title {
    font-size: 30px;
  }
}
.slideshow__slide-caption-subtitle {
  display: inline-block;
}
.slideshow__slide-caption-subtitle.-load {
  transition: transform 0.9s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  transform: translate3d(0, 4.75rem, 0);
}

.is-animated .slideshow__slide-caption-subtitle.-load {
  transform: translate3d(0, 0, 0);
}

body[data-route-option=prev-section] .slideshow__slide-caption-subtitle.-load, body[data-route-option=next-section] .slideshow__slide-caption-subtitle.-load {
  transform: translate3d(0, 0, 0);
}

.slideshow__slide-caption-subtitle-label {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateZ(0);
  display: inline-block;
}

.o-hsub.-link:hover .slideshow__slide-caption-subtitle-label,
.o-hsub-wrap:hover .slideshow__slide-caption-subtitle-label {
  transform: translateX(20px);
}

/* OLD */
.c-header-home_heading {
  line-height: 1;
}
.c-header-home_heading.-full {
  width: 100%;
}

@media (max-height: 500px) {
  .c-header-home_heading {
    margin-bottom: 0 !important;
  }
}
@media (max-width: 699px) {
  .c-header-home_heading {
    font-size: 40px;
    margin-bottom: 150px;
  }

  .c-header-home.-full .c-header-home_heading {
    margin-bottom: 30px;
  }
}
@media (min-width: 700px) {
  .c-header-home_heading {
    font-size: 5.625rem;
    margin-bottom: 1.25rem;
  }
}
@media (min-width: 700px) and (max-width: 749px) {
  .c-header-home_heading {
    font-size: 4.375rem;
  }
}
@media (min-width: 1600px) {
  .c-header-home_heading {
    font-size: 6.25rem;
  }
}
.c-header-home_subheading {
  display: inline-block;
  padding: 1.875rem 0;
}
.c-header-home_subheading.-load {
  transition: transform 0.9s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  transform: translate3d(0, 3.75rem, 0);
}

.is-loaded .c-header-home_subheading.-load {
  transform: translate3d(0, 0, 0);
}

body[data-route-option=prev-section] .c-header-home_subheading.-load, body[data-route-option=next-section] .c-header-home_subheading.-load {
  transform: translate3d(0, 0, 0);
}

.c-header-home_footer {
  z-index: 3;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
}

.c-header-home_controls,
.c-header-home_buttons {
  margin-left: 0;
  letter-spacing: normal;
  font-size: 0;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translate3d(0, 100%, 0);
}

@media (max-width: 699px) {
  .c-header-home_controls,
.c-header-home_buttons {
    padding-bottom: 40px;
  }
}
@media (min-width: 700px) {
  .c-header-home_controls,
.c-header-home_buttons {
    padding-bottom: 5.625rem;
  }
}
@media (min-width: 700px) and (max-width: 749px) {
  .c-header-home_controls,
.c-header-home_buttons {
    padding-bottom: 3.75rem;
  }
}
.is-loaded .c-header-home_controls,
.is-loaded .c-header-home_buttons {
  transform: translate3d(0, 0, 0);
}

body[data-route-option=prev-section] .c-header-home_controls,
body[data-route-option=prev-section] .c-header-home_buttons {
  transform: translate3d(0, 0, 0);
}
body[data-route-option=next-section] .c-header-home_controls,
body[data-route-option=next-section] .c-header-home_buttons {
  transform: translate3d(0, 0, 0);
}

.c-header-home_controls {
  transition-delay: 0.65s;
}

@media (min-width: 700px) {
  .c-header-home_controls {
    float: left;
  }
}
.c-header-home_buttons {
  transition-delay: 0.75s;
}

@media (max-width: 699px) {
  .c-header-home_buttons {
    margin-left: -20px;
    margin-right: -20px;
  }
}
@media (min-width: 1000px) {
  .c-header-home_buttons {
    float: right;
  }
}
@media (max-width: 699px) {
  .c-header-home_button {
    width: 50% !important;
  }
}
@media (min-width: 700px) {
  .c-header-home_button {
    width: 15.625rem;
  }
}
button,
.c-header-filters_button,
.o-button {
  display: inline-block;
  overflow: visible;
  margin: 0;
  padding: 0;
  outline: 0;
  border: 0;
  background: none;
  color: inherit;
  vertical-align: middle;
  text-align: center;
  text-decoration: none;
  text-transform: none;
  font: inherit;
  line-height: normal;
  cursor: pointer;
  user-select: none;
}

button:hover,
.c-header-filters_button:hover,
.o-button:hover {
  text-decoration: none;
}


@media (min-width: 1200px) {
  .o-scroll {
    height: 100%;
  }
}
::-moz-selection {
  background: #0084c0;
  color: #fff;
}

img,
svg {
  max-width: 100%;
}

a,
.o-link {
  color: #1a0dab;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

a:hover,
.o-link:hover {
  color: #13097c;
}

a.-normal,
.o-link.-normal {
  color: currentColor;
  text-decoration: none;
}

a.-normal:hover,
.o-link.-normal:hover {
  text-decoration: underline;
}

a.-blue:hover,
.o-link.-blue:hover {
  text-decoration: none;
  color: #0084c0;
}

a.-hover,
.o-link.-hover {
  position: relative;
  text-decoration: none;
  color: #fff;
}

a.-hover::after,
.o-link.-hover::after {
  content: "";
  position: absolute;
  bottom: -1px;
  right: 0;
  left: 0;
  border-bottom: 1px solid;
  transform: scaleX(0);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center left;
}

a.-hover:hover::after,
.o-link.-hover:hover::after {
  transform: scaleX(1);
}

/* p {
  margin: 0;
} */

.o-wrap {
  overflow: hidden;
}

.o-page.-anim {
  transform: translate3d(0, 9.375rem, 0);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.is-loaded .o-page.-anim {
  transform: translate3d(0, 0, 0);
}

.o-barba,
.o-barba_container {
  height: 100%;
}

strong {
  font-weight: 700;
}

.js-parallax {
  transform: translateZ(0);
  will-change: transform;
}

.scroll-content {
  overflow: hidden;
}

.o-blockquote.-nomargin {
  margin: 0;
}

.o-action-link {
  display: block;
  padding-top: 12.8125rem;
  padding-bottom: 7.5rem;
  text-align: center;
  text-decoration: none;
  font-weight: 700;
}
.o-action-link:hover {
  color: #fff;
}

@media (max-width: 699px) {
  .o-action-link {
    font-size: 40px;
    padding-top: 120px;
  }
}
@media (max-width: 1199px) {
  .o-action-link {
    color: #1e1e22;
  }
}
@media (min-width: 700px) {
  .o-action-link {
    font-size: 5.625rem;
  }
}
@media (min-width: 1200px) {
  .o-action-link {
    color: #fff;
  }
}
.o-action-link_label {
  display: inline-block;
  position: relative;
}
.o-action-link_label::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  border-bottom: 0.1875rem solid;
  transform: scaleX(0);
  transform-origin: center left;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.o-action-link:hover .o-action-link_label::after {
  transform: scaleX(1);
}

.o-h,
h1,
.o-h1,
h2,
.o-h2,
h3,
.o-h3,
h4,
.o-h4,
h5,
.o-h5,
h6,
.o-h6 {
  font-weight: 700;
  margin-top: 0;
  line-height: 1.1;
}

@media (max-width: 699px) {
  h1,
.o-h1 {
    font-size: 26px;
  }
}
@media (min-width: 700px) {
  h1,
.o-h1 {
    font-size: 60px;
  }
}
@media (min-width: 1600px) {
  h1,
.o-h1 {
    font-size: 4.375rem;
  }
}
@media (max-width: 1599px) {
  h2,
.o-h2 {
    font-size: 1.5625rem;
  }
}
@media (min-width: 1600px) {
  h2,
.o-h2 {
    font-size: 2.25rem;
  }
}
h3,
.o-h3 {
  font-size: 1.5625rem;
}

h4,
.o-h4 {
  font-size: 1rem;
}

h5,
.o-h5 {
  font-size: 0.8125rem;
}

h6,
.o-h6 {
  font-size: 0.6875rem;
}

.o-hsub {
  font-size: 0.75rem;
  padding: 1.25rem 0;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
}
.o-hsub::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  border-bottom: 1px solid;
  width: 1.5rem;
  background-color: #1e1e22;
  margin-right: 1.125rem;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center left;
}
.o-hsub.-link {
  color: #fff;
  text-decoration: none;
}
.o-hsub.-link:hover::before {
  transform: scaleX(1.5);
}

.o-hsub-wrap:hover .o-hsub.-link::before {
  transform: scaleX(1.5);
}

.o-hsub.-link.-dark {
  color: #1e1e22;
}
.o-hsub.-link.-dark:hover {
  color: #1e1e22;
}
.o-hsub.-h {
  vertical-align: middle;
}

@media (max-width: 699px) {
  .o-hsub.-h {
    display: block;
    margin-top: 20px;
  }
}
@media (min-width: 700px) {
  .o-hsub.-h {
    margin-left: 2.5rem;
  }
}
.o-hsub_label {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateZ(0);
  display: inline-block;
}

.o-hsub.-link:hover .o-hsub_label,
.o-hsub-wrap:hover .o-hsub_label {
  transform: translateX(20px);
}

.is-loaded .o-loader {
  visibility: hidden;
  transition-delay: 0.6s;
}

.o-container {
  position: relative;
  margin: 0 auto;
}

@media (max-width: 699px) {
  .o-container {
    padding-right: 40px;
    padding-left: 40px;
  }
  .o-container.-small {
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media (min-width: 700px) and (max-width: 1599px) {
  .o-container {
    padding-right: 7.5rem;
    padding-left: 7.5rem;
    max-width: 140rem;
  }
}
@media (min-width: 1600px) {
  .o-container {
    padding-right: 9.5625rem;
    padding-left: 9.5625rem;
    max-width: 144.125rem;
  }
}
.o-section {
  position: relative;
}
.o-section.-offset {
  margin-top: -9.375rem;
  background-color: #f6f6f6;
}
.o-section.-padding {
  padding-top: 7.5rem;
  padding-bottom: 7.5rem;
}
.o-section.-padding-top {
  padding-top: 7.5rem;
}
.o-section.-left {
  margin-right: 15rem;
}
.o-section.-right {
  margin-left: 15rem;
}
.o-section.-left-large {
  margin-right: 22.5rem;
}
.o-section.-right.-padding {
  padding-left: 9.5625rem;
}

@media (max-width: 699px) {
  .o-section.-bottom {
    padding-bottom: 60px;
  }
}
@media (min-width: 700px) {
  .o-section.-bottom {
    padding-bottom: 7.5rem;
  }
}
.o-section_image {
  position: relative;
  overflow: hidden;
}
.o-section_image.-small {
  padding-bottom: 57.144%;
}
.o-section_image.-large {
  padding-bottom: 55%;
}
.o-section_image.-padding-left {
  margin-left: 7.5rem;
}
.o-section_image.-left {
  margin-right: 15rem;
}
.o-section_image.-right {
  margin-left: 15rem;
}
.o-section_image img {
  width: 100%;
}

@media (max-width: 1599px) {
  .o-section_image.-left {
    margin-left: -7.5rem;
  }
}
@media (min-width: 1600px) {
  .o-section_image.-left {
    margin-left: -9.5625rem;
  }
}
@media (max-width: 1599px) {
  .o-section_image.-right {
    margin-right: -7.5rem;
  }
}
@media (min-width: 1600px) {
  .o-section_image.-right {
    margin-right: -9.5625rem;
  }
}
.o-grid {
  margin-left: 0;
  letter-spacing: normal;
  font-size: 0;
}
.o-grid.-margin {
  margin-left: -3.75rem;
}

.o-grid_item {
  display: inline-block;
  padding-left: 0;
  width: 100%;
  vertical-align: top;
  font-size: 1rem;
}

@media (max-width: 699px) {
  .o-grid_item.-button {
    width: 100%;
  }
}
@media (min-width: 700px) and (max-width: 999px) {
  .o-grid_item.-button {
    margin-bottom: 60px;
  }
}
@media (min-width: 1000px) {
  .o-grid_item.-button {
    width: 18.75rem;
  }
}
@media (max-width: 699px) {
  .o-grid_item.-button-content {
    margin-bottom: 30px;
  }
}
@media (min-width: 700px) and (max-width: 999px) {
  .o-grid_item.-button-content {
    margin-bottom: 60px;
  }
}
@media (min-width: 1000px) {
  .o-grid_item.-button-content {
    width: calc(100% - 18.75rem);
  }
}
.o-grid.-margin .o-grid_item {
  padding-left: 3.75rem;
}

@media (min-width: 700px) {
  .o-grid_item.-half {
    width: 50%;
  }
}
@media (min-width: 700px) and (max-width: 1199px) {
  .o-grid_item.-half.-large {
    width: 100%;
  }
}
@media (min-width: 700px) and (max-width: 999px) {
  .o-grid_item.-half.-medium {
    width: 100%;
  }
}
@media (min-width: 700px) and (max-width: 1199px) {
  .o-grid_item.-third {
    width: 50%;
  }
}
@media (min-width: 1200px) {
  .o-grid_item.-third {
    width: 33.3333333333%;
  }
}
.o-form {
  padding-bottom: 11.25rem;
}

@media (max-width: 699px) {
  .o-form_item {
    margin-bottom: 35px;
  }
}
@media (min-width: 700px) {
  .o-form_item {
    margin-bottom: 2.9375rem;
  }
}
.o-form_fieldset {
  padding: 0;
  margin: 0;
  border: 0;
}

@media (max-width: 699px) {
  .o-form_fieldset {
    margin-bottom: 20px;
  }
}
@media (min-width: 700px) {
  .o-form_fieldset {
    margin-bottom: 3.75rem;
  }
}
.o-form_button {
  text-align: right;
}

.o-label {
  display: block;
  height: 100%;
  color: #b3b3b3;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.875rem;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 699px) {
  .o-label {
    font-size: 9px;
  }
}
@media (min-width: 700px) {
  .o-label {
    font-size: 0.5625rem;
  }
}
.o-input-wrap .o-label {
  position: absolute;
  bottom: 0;
  left: 0;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.o-input:focus ~ .o-label,
.o-select:focus ~ .o-label,
.o-textarea:focus ~ .o-label,
.o-label.is-active {
  transform: translateY(-1.875rem);
}

.o-input.has-error ~ .o-label {
  color: #cc3d3d;
}

.has-error.o-select ~ .o-label, .has-error.o-textarea ~ .o-label {
  color: #cc3d3d;
}

.o-input-wrap {
  position: relative;
}

.o-input,
.o-select,
.o-textarea {
  padding: 0.875rem;
  background-color: transparent;
  border-bottom: 1px solid #b3b3b3;
  transition: border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 699px) {
  .o-input,
.o-select,
.o-textarea {
    font-size: 14px;
  }
}
@media (min-width: 700px) {
  .o-input,
.o-select,
.o-textarea {
    font-size: 0.875rem;
  }
}
.o-input::-webkit-input-placeholder,
.o-select::-webkit-input-placeholder,
.o-textarea::-webkit-input-placeholder,
.o-input:-ms-input-placeholder,
.o-select:-ms-input-placeholder,
.o-textarea:-ms-input-placeholder,
.o-input::-ms-input-placeholder,
.o-select::-ms-input-placeholder,
.o-textarea::-ms-input-placeholder,
.o-input::placeholder,
.o-select::placeholder,
.o-textarea::placeholder {
  color: #b3b3b3;
}

.o-input.-search {
  background-color: transparent;
  color: #fff;
  font-weight: 700;
  border-bottom: none;
}

.-search.o-select, .-search.o-textarea {
  background-color: transparent;
  color: #fff;
  font-weight: 700;
  border-bottom: none;
}

@media (max-width: 699px) {
  .o-input.-search {
    font-size: 26px;
  }

  .-search.o-select, .-search.o-textarea {
    font-size: 26px;
  }
}
@media (min-width: 700px) {
  .o-input.-search {
    font-size: 3.75rem;
  }

  .-search.o-select, .-search.o-textarea {
    font-size: 3.75rem;
  }
}
.o-input.-search::-webkit-input-placeholder {
  color: #000;
}

.-search.o-select::-webkit-input-placeholder, .-search.o-textarea::-webkit-input-placeholder {
  color: #000;
}

.o-input.-search:-ms-input-placeholder {
  color: #000;
}

.-search.o-select:-ms-input-placeholder, .-search.o-textarea:-ms-input-placeholder {
  color: #000;
}

.o-input.-search::-ms-input-placeholder {
  color: #000;
}

.-search.o-select::-ms-input-placeholder, .-search.o-textarea::-ms-input-placeholder {
  color: #000;
}

.o-input.-search::placeholder {
  color: #000;
}

.-search.o-select::placeholder, .-search.o-textarea::placeholder {
  color: #000;
}

.-mobile .o-input.-search {
  font-size: 26px;
  padding: 0;
}
.-mobile .-search.o-select, .-mobile .-search.o-textarea {
  font-size: 26px;
  padding: 0;
}

.o-input.-search.-light {
  color: #1e1e22;
}

.-search.-light.o-select, .-search.-light.o-textarea {
  color: #1e1e22;
}

.o-input.-search.-light::-webkit-input-placeholder {
  color: #b3b3b3;
}

.-search.-light.o-select::-webkit-input-placeholder, .-search.-light.o-textarea::-webkit-input-placeholder {
  color: #b3b3b3;
}

.o-input.-search.-light:-ms-input-placeholder {
  color: #b3b3b3;
}

.-search.-light.o-select:-ms-input-placeholder, .-search.-light.o-textarea:-ms-input-placeholder {
  color: #b3b3b3;
}

.o-input.-search.-light::-ms-input-placeholder {
  color: #b3b3b3;
}

.-search.-light.o-select::-ms-input-placeholder, .-search.-light.o-textarea::-ms-input-placeholder {
  color: #b3b3b3;
}

.o-input.-search.-light::placeholder {
  color: #b3b3b3;
}

.-search.-light.o-select::placeholder, .-search.-light.o-textarea::placeholder {
  color: #b3b3b3;
}

.o-input.has-error {
  border-color: #cc3d3d;
}

.has-error.o-select, .has-error.o-textarea {
  border-color: #cc3d3d;
}

.o-input:focus,
.o-select:focus,
.o-textarea:focus {
  outline: none;
}

.o-input-line {
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  border-bottom: 1px solid #1e1e22;
  transform: scaleX(0);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center left;
}

.o-input:focus ~ .o-input-line,
.o-select:focus ~ .o-input-line,
.o-textarea:focus ~ .o-input-line {
  transform: scaleX(1);
}

.o-input-lines::before, .o-input-lines::after {
  content: "";
  position: absolute;
  bottom: 0;
  border-right: 1px solid #b3b3b3;
  height: 0.375rem;
  transition: border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.o-input.has-error ~ .o-input-lines::before {
  border-color: #cc3d3d;
}

.has-error.o-select ~ .o-input-lines::before, .has-error.o-textarea ~ .o-input-lines::before {
  border-color: #cc3d3d;
}

.o-input.has-error ~ .o-input-lines::after {
  border-color: #cc3d3d;
}

.has-error.o-select ~ .o-input-lines::after, .has-error.o-textarea ~ .o-input-lines::after {
  border-color: #cc3d3d;
}

.o-input-lines::before {
  left: 0;
  transition-delay: 0.3s;
}
.o-input-lines::after {
  right: 0;
}

.o-input:focus ~ .o-input-lines::before,
.o-select:focus ~ .o-input-lines::before,
.o-textarea:focus ~ .o-input-lines::before,
.o-input:focus ~ .o-input-lines::after,
.o-select:focus ~ .o-input-lines::after,
.o-textarea:focus ~ .o-input-lines::after {
  border-color: #1e1e22;
}

.o-input:focus ~ .o-input-lines::before,
.o-select:focus ~ .o-input-lines::before,
.o-textarea:focus ~ .o-input-lines::before {
  transition-delay: 0s;
}

.o-input:focus ~ .o-input-lines::after,
.o-select:focus ~ .o-input-lines::after,
.o-textarea:focus ~ .o-input-lines::after {
  transition-delay: 0.3s;
}
/* 
.o-checkbox,
.o-radio {
  position: absolute;
  width: 0;
  opacity: 0;
}

.o-checkbox:checked + .o-checkbox-label::after,
.o-radio:checked + .o-checkbox-label::after,
.o-checkbox:checked + .o-radio-label::after,
.o-radio:checked + .o-radio-label::after {
  transform: scale(1);
}

.o-checkbox-label,
.o-radio-label {
  position: relative;
  display: inline-block;
  line-height: 1.4;
  margin-right: 4.0625rem;
  cursor: pointer;
  padding-top: 0.125rem;
}

@media (max-width: 699px) {
  .o-checkbox-label,
.o-radio-label {
    font-size: 12px;
    padding-left: 27px;
  }
}
@media (min-width: 700px) {
  .o-checkbox-label,
.o-radio-label {
    font-size: 0.875rem;
    padding-left: 1.1875rem;
  }
}
.o-checkbox-label.-uppsercase,
.-uppsercase.o-radio-label {
  text-transform: uppercase;
}

.o-checkbox-label::before,
.o-radio-label::before,
.o-checkbox-label::after,
.o-radio-label::after {
  position: absolute;
  top: 50%;
  left: 0;
  display: inline-block;
  padding: 0;
  content: "";
  border: 1px solid;
  transition: border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 699px) {
  .o-checkbox-label::before,
.o-radio-label::before,
.o-checkbox-label::after,
.o-radio-label::after {
    width: 12px;
    height: 12px;
    margin-top: -6px;
  }
}
@media (min-width: 700px) {
  .o-checkbox-label::before,
.o-radio-label::before,
.o-checkbox-label::after,
.o-radio-label::after {
    margin-top: -0.28125rem;
    width: 0.5625rem;
    height: 0.5625rem;
  }
}
.o-checkbox-label::after,
.o-radio-label::after {
  width: 0;
  height: 0;
  border-style: solid;
  border-color: #1e1e22 transparent transparent transparent;
  transform: scale(0);
  transform-origin: top left;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 699px) {
  .o-checkbox-label::after,
.o-radio-label::after {
    border-width: 12px 12px 0 0;
  }
}
@media (min-width: 700px) {
  .o-checkbox-label::after,
.o-radio-label::after {
    border-width: 0.5625rem 0.5625rem 0 0;
  }
}
.o-checkbox-label.has-error::before,
.has-error.o-radio-label::before {
  border-color: #cc3d3d;
}

.o-checkbox-label_text {
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateZ(0);
}

.o-checkbox-label:hover .o-checkbox-label_text {
  transform: translateX(0.3125rem);
}

.o-radio-label:hover .o-checkbox-label_text {
  transform: translateX(0.3125rem);
}
.o-radio-label::before {
  border-radius: 50%;
  width: 12px;
  height: 12px;
}
.o-radio-label::after {
  border-radius: 50%;
  width: 12px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20x%3D%220%22%20y%3D%220%22%20width%3D%2213%22%20height%3D%2213%22%20viewBox%3D%220%200%2013%2013%22%20enable-background%3D%22new%200%200%2013%2013%22%20xml%3Aspace%3D%22preserve%22%3E%3Ccircle%20fill%3D%22%23424242%22%20cx%3D%226.5%22%20cy%3D%226.5%22%20r%3D%226.5%22%2F%3E%3C%2Fsvg%3E");
  background-size: 6px;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(0);
  transform-origin: center;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
}

.o-radio:checked + .o-radio-label::after {
  transform: scale(1);
} */

.o-select {
  position: relative;
  z-index: 1;
  padding-right: 2.5rem;
}
.o-select:focus {
  border-bottom-color: #1e1e22;
}

.o-select-wrap {
  position: relative;
}
.o-select-wrap::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  width: 2.5rem;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20x%3D%220%22%20y%3D%220%22%20width%3D%2213%22%20height%3D%2211.3%22%20viewBox%3D%220%200%2013%2011.3%22%20enable-background%3D%22new%200%200%2013%2011.3%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpolygon%20fill%3D%22%23b3b3b3%22%20points%3D%226.5%2011.3%203.3%205.6%200%200%206.5%200%2013%200%209.8%205.6%20%22%2F%3E%3C%2Fsvg%3E");
  background-position: center;
  background-size: 10px;
  background-repeat: no-repeat;
  content: "";
  pointer-events: none;
}

.o-textarea-wrap {
  position: relative;
}

.o-textarea {
  min-height: 9.375rem;
}

.o-button {
  position: relative;
  display: inline-block;
  text-align: center;
  border: 1px solid #1e1e22;
  white-space: nowrap;
  font-size: 0;
  transition: background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.45s cubic-bezier(0.4, 0, 0.2, 1) 0.075s;
}
.o-button:before {
  display: inline-block;
  height: 100%;
  content: "";
  vertical-align: middle;
}
.o-button > * {
  display: inline-block;
  vertical-align: middle;
  white-space: normal;
  font-size: 1rem;
}
.o-button::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #1e1e22;
  transform: scaleX(0);
  transform-origin: center left;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1) 0.075s;
}
.o-button:hover {
  color: #fff;
  transition-delay: 0s;
}
.o-button:hover::after {
  transform: scaleX(1);
  transition-delay: 0s;
}
.o-button.-left::after {
  transform-origin: center right;
}
.o-button.-white {
  border-color: #fff;
}
.o-button.-white::after {
  background-color: #fff;
}
.o-button.-white:hover {
  color: #000;
}
.o-button.-form {
  width: 11.25rem;
}
.o-button.-form:focus {
  color: #fff;
  transition-delay: 0s;
}
.o-button.-form:focus::after {
  transform: scaleX(1);
  transition-delay: 0s;
}
.o-button.-square {
  padding: 0;
}

@media (max-width: 699px) {
  .o-button {
    height: 60px;
    padding: 0 20px;
  }
}
@media (min-width: 700px) {
  .o-button {
    height: 3.75rem;
    padding: 0 1.875rem;
  }
}
@media (min-width: 1200px) {
  .o-button.-anim {
    border-color: transparent;
  }
}
@media (max-width: 699px) {
  .o-button.-width {
    width: 100%;
  }
}
@media (min-width: 700px) {
  .o-button.-width {
    width: 15rem;
  }
}
@media (max-width: 699px) {
  .o-button.-square {
    width: 60px;
  }
}
@media (min-width: 700px) {
  .o-button.-square {
    width: 3.75rem;
  }
}
.o-button-group .o-button + .o-button {
  border-left: none;
}

@media (max-width: 699px) {
  .o-button.-padding {
    padding: 1.25rem;
  }
}
@media (min-width: 700px) {
  .o-button.-padding {
    padding: 1.25rem 2.5rem;
  }
}
.o-button_label {
  display: inline-block;
  position: relative;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(0);
  line-height: 1.4;
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
  font-size: 0.75rem;
}

.o-button:hover .o-button_label {
  transform: translateX(0.5rem);
  transition-delay: 0.075s;
}
.o-button.-left:hover .o-button_label {
  transform: translateX(-0.5rem);
}
.o-button.-square:hover .o-button_label {
  transform: translateX(0.375rem);
}
.o-button.-left.-square:hover .o-button_label {
  transform: translateX(-0.375rem);
}

.o-button-group {
  margin-left: 0;
  letter-spacing: normal;
  font-size: 0;
}

.o-button_icon {
  position: relative;
  width: 1rem;
  height: 1rem;
  fill: #000;
  transition: fill 0.45s cubic-bezier(0.4, 0, 0.2, 1) 0.075s;
}

.o-button.-white .o-button_icon {
  fill: #fff;
}
.o-button:hover .o-button_icon {
  fill: #f6f6f6;
  transition-delay: 0s;
}
.o-button.-white:hover .o-button_icon {
  fill: #1e1e22;
}

.o-button_line::before, .o-button_line::after {
  content: "";
  position: absolute;
  background-color: #1e1e22;
}

.is-mobile .o-button_line::before, .is-mobile .o-button_line::after {
  display: none;
}

.o-button_line::before {
  width: 1px;
  top: 0;
  bottom: 0;
  transform: scaleY(0);
  transition: transform 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}
.o-button_line::after {
  height: 1px;
  right: 0;
  left: 0;
  transform: scaleX(0);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.o-button_line:first-of-type::before {
  left: 0;
  transform-origin: center bottom;
}
.o-button_line:first-of-type::after {
  top: 0;
  transform-origin: center left;
}
.o-button_line:last-of-type::before {
  right: 0;
  transform-origin: center top;
}
.o-button_line:last-of-type::after {
  bottom: 0;
  transform-origin: center right;
}

.o-button.is-inview .o-button_line::before {
  transform: scaleY(1);
}
.o-button.is-inview .o-button_line::after {
  transform: scaleX(1);
}
.o-button.is-inview .o-button_line:first-of-type::before {
  transition-delay: 1.15s;
}
.o-button.is-inview .o-button_line:first-of-type::after {
  transition-delay: 0.1s;
}
.o-button.is-inview .o-button_line:last-of-type::before {
  transition-delay: 0.55s;
}
.o-button.is-inview .o-button_line:last-of-type::after {
  transition-delay: 0.7s;
}

.c-header-home_footer {
  z-index: 3;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
}

.c-header-home_controls,
.c-header-home_buttons {
  margin-left: 0;
  letter-spacing: normal;
  font-size: 0;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translate3d(0, 100%, 0);
}

@media (max-width: 699px) {
  .c-header-home_controls,
.c-header-home_buttons {
    padding-bottom: 40px;
  }
}
@media (min-width: 700px) {
  .c-header-home_controls,
.c-header-home_buttons {
    padding-bottom: 5.625rem;
  }
}
@media (min-width: 700px) and (max-width: 749px) {
  .c-header-home_controls,
.c-header-home_buttons {
    padding-bottom: 3.75rem;
  }
}
.is-loaded .c-header-home_controls,
.is-loaded .c-header-home_buttons {
  transform: translate3d(0, 0, 0);
}

body[data-route-option=prev-section] .c-header-home_controls,
body[data-route-option=prev-section] .c-header-home_buttons {
  transform: translate3d(0, 0, 0);
}
body[data-route-option=next-section] .c-header-home_controls,
body[data-route-option=next-section] .c-header-home_buttons {
  transform: translate3d(0, 0, 0);
}

.c-header-home_controls {
  transition-delay: 0.65s;
}

@media (min-width: 700px) {
  .c-header-home_controls {
    float: left;
  }
}
.c-header-home_buttons {
  transition-delay: 0.75s;
}

@media (max-width: 699px) {
  .c-header-home_buttons {
    margin-left: -20px;
    margin-right: -20px;
  }
}
@media (min-width: 1000px) {
  .c-header-home_buttons {
    float: right;
  }
}
@media (max-width: 699px) {
  .c-header-home_button {
    width: 50% !important;
  }
}
@media (min-width: 700px) {
  .c-header-home_button {
    width: 15.625rem;
  }
}
.slideshow__slide-image.background-absolute {
  width: 60%;
  left: 40%;
}
/* Modified 98px*/
h1.slideshow__slide-caption-title {
  font-size: 26px;
  padding-left: 0px;
  padding-right: 0px;
  color: var(--slideshow-text-title-color);
  word-spacing: normal;
  text-align: left;
  /* offset-x | offset-y | blur-radius | color */
  text-shadow: 1px 1px 1px var(--background-color);
}

.o-hsub.-link {
  padding-left: 98px;
  padding-right: 98px;
  color: #000;
  text-decoration: none;
}

button.slider-more-button {
  width: 16rem;
  height: 7rem;
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #fcc865;
  color: #000;
  text-transform: uppercase;
  transition: opacity 700ms cubic-bezier(0.8, 0, 0.55, 0.94) 470ms, transform 700ms cubic-bezier(0.8, 0, 0.55, 0.94) 470ms;
  transform: rotateZ(-20deg) translate3d(-20vh, 20vh, 0);
}

.is-animated .slider-more-button {
  transform: rotateZ(0deg) translate3d(0, 0, 0);
}

.list-item {
list-style-position:inside;
max-width: 40%;
width: 40%;
text-align: justify;
text-justify:kashida;
padding-left: 0px;
padding-right: 10px;
box-sizing: border-box;
font-family: Roboto;
font-size: 12px;
font-weight: 200;
letter-spacing: 0px;
}

.list-item > li {
display: list-item;
text-decoration: solid;
list-style-type:disc;
}

.list-item > li::marker {
content:normal;
}

p.slideshow__slide-caption-content {
  /* Modified 98px*/
  padding-left: 0px;
  padding-right: 10px;
  box-sizing: border-box;
  display: block;
  margin-top: 0px;
  opacity: 0;
  transition: opacity 700ms cubic-bezier(0.8, 0, 0.55, 0.94), transform 700ms cubic-bezier(0.8, 0, 0.55, 0.94);
  transform: translate3d(-100px, 0, 0);
  max-width: 40%;
  width: 40%;

  font-family: Roboto;
  font-size: 12px;
  font-weight: 200;
  letter-spacing: 0px;
  line-height: 28px;
  text-size-adjust: 100%;
  text-align: justify;
  text-justify:newspaper;
}

.slideshow__slide.is-current p.slideshow__slide-caption-content {
  color: var(--slideshow-text-caption-color);
  opacity: 1;
  transition: opacity 700ms cubic-bezier(0.8, 0, 0.55, 0.94) 1470ms, transform 700ms cubic-bezier(0.8, 0, 0.55, 0.94) 1470ms;
  transform: translate3d(0, 0, 0);
}

span.slideshow__slide-caption-subtitle-label {
  font-weight: 400;
}

.side-nav {
  display: none;
  opacity: 1;
  transition: opacity 700ms cubic-bezier(0.8, 0, 0.55, 0.94) 1470ms, transform 700ms cubic-bezier(0.8, 0, 0.55, 0.94) 1470ms;
}

@media (min-width: 1024px) {
  .side-nav {
    left: 0;
    z-index: 2;
    width: 100vh;
    height: 5vw;
    transform-origin: top;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate3d(-100%, 10%, 0);
    transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
  }

  .is-animated .side-nav {
    transition: opacity 700ms cubic-bezier(0.8, 0, 0.55, 0.94) 470ms, transform 700ms cubic-bezier(0.8, 0, 0.55, 0.94) 470ms;
    transform: rotateZ(-90deg) translate3d(-390px, -50vh, 0);
  }
  .side-nav ul {
    list-style: none;
    margin: 0 0;
    padding-top: 0.3vw;
  }
  .side-nav li {
    display: none;
    line-height: 0.9em;
    margin: 0 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid transparent;
    cursor: pointer;
    transition: opacity 400ms cubic-bezier(0.8, 0, 0.55, 0.94), border-color 400ms cubic-bezier(0.8, 0, 0.55, 0.94);
  }
  .side-nav .label {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0.3;
    margin: 0 0;
    color: #0a0c0d;
    font-weight: 800;
    font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  }
  .side-nav[data-view=cover] li[data-view=cover] {
    opacity: 1;
    border-bottom: 1px solid #000;
  }

  .slideshow__slide.is-prev .side-nav {
    transform: translate3d(-100%, -50%, 0);
  }
  .slideshow__slide.is-next .side-nav {
    transform: translate3d(-100%, 10%, 0);
  }
  .slideshow__slide.is-prev-section .side-nav {
    transform: translate3d(-100%, -50%, 0);
    transition: none;
  }
  .slideshow__slide.is-next-section .side-nav {
    transform: translate3d(-100%, 10%, 0);
    transition: none;
  }
}
/*end slider show*/
/*Floating button*/
.floating-btn {
  font-family: Roboto;
  border: none;
  border-width: 0px;
  overflow: hidden;
  outline: none;
  color: white;
  font-size: 20px;
  background: #F6EFE3;
  position: relative;
  padding: 14px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 12px 42px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.24);
  transition: 0.3s;
  margin: 0.5em;
}
.floating-btn:hover {
  background: #d2cbbf;
  cursor: pointer;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.js-parallax.is-inview {
  width: 100px;
}

button .floating-btn:focus {
  outline: 0px;
}

.c-header-home_controls.-nomobile.o-button-group {
  margin-left: 30%;
}

.divide {
  margin-top: 50px;
  margin-bottom: 50px;
}

.ripple {
  overflow: hidden;
}

.ripple-effect {
  position: absolute;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  background: white;
  animation: ripple-animation 2s;
}

.ripple > .o-button_icon {
  top: 1px;
}

@keyframes ripple-animation {
  from {
    transform: scale(1);
    opacity: 0.4;
  }
  to {
    transform: scale(100);
    opacity: 0;
  }
}
/* End Floating Button */

@media (max-width: 699px) {
  .slideshow__container {
    padding-right: 0px;
    padding-left: 0px;
  }
}
@media (min-width: 700px) and (max-width: 1599px) {
  .slideshow__container {
    padding-right: 0rem;
    padding-left: 0rem;
    max-width: 140rem;
  }
}

.slideshow__slide-caption .slideshow__slide-caption-text p {
  color: var(--text-body-color);
}

/* -SLIDESHOW 2 END- */

/* Testimonial */
.heading {
  position: relative;
  margin-bottom: 20px;
}

.heading:after {
  content: ' ';
  position: absolute;
  top: 100%;
  left: 50%;
  height: 40px;
  width: 180px;
  border-radius: 4px;
  transform: translateX(-50%);
  /* background: url(img/heading-line.png); */
  background-repeat: no-repeat;
  background-position: center;
  filter: invert(100%);
}
.white-heading:after {
  background: url(https://i.ibb.co/d7tSD1R/heading-line-white.png);
  background-repeat: no-repeat;
  background-position: center;
}

#sponsors .testimonial .testimonial-container .carousel .carousel-inner .carousel-item .testimonial4_slide p{
  color: var(--slideshow-text-caption-color);
  font-size: medium;
}


/*-----Testimonial-------*/
.testimonial:after {
  position: absolute;
  top: -0 !important;
  left: 0;
  content: " ";
  background: url(img/testimonial.bg-top.png);
  background-size: 100% 100px;
  width: 100%;
  height: 100px;
  float: left;
  z-index: 99;
}

.testimonial {
  min-height: 375px;
  position: relative;
}
#testimonial4 .carousel-inner:hover{
cursor: -moz-grab;
cursor: -webkit-grab;
}
#testimonial4 .carousel-inner:active{
cursor: -moz-grabbing;
cursor: -webkit-grabbing;
}
#testimonial4 .carousel-inner .item{
overflow: hidden;
}

.testimonial4_indicators .carousel-indicators{
left: 0;
margin: 0;
width: 100%;
font-size: 0;
height: 20px;
bottom: 15px;
padding: 0 5px;
cursor: e-resize;
overflow-x: auto;
overflow-y: hidden;
position: absolute;
text-align: center;
white-space: nowrap;
}
.testimonial4_indicators .carousel-indicators li{
padding: 0;
width: 14px;
height: 14px;
border: none;
text-indent: 0;
margin: 2px 3px;
cursor: pointer;
display: inline-block;
background: #ffffff;
-webkit-border-radius: 100%;
border-radius: 100%;
}
.testimonial4_indicators .carousel-indicators .active{
padding: 0;
width: 14px;
height: 14px;
border: none;
margin: 2px 3px;
background-color: #9dd3af;
-webkit-border-radius: 100%;
border-radius: 100%;
}
.testimonial4_indicators .carousel-indicators::-webkit-scrollbar{
height: 3px;
}
.testimonial4_indicators .carousel-indicators::-webkit-scrollbar-thumb{
background: #eeeeee;
-webkit-border-radius: 0;
border-radius: 0;
}

.testimonial4_control_button .carousel-control{
top: 175px;
opacity: 1;
width: 40px;
bottom: auto;
height: 40px;
font-size: 10px;
cursor: pointer;
font-weight: 700;
overflow: hidden;
line-height: 38px;
text-shadow: none;
text-align: center;
position: absolute;
background: transparent;
border: 2px solid #ffffff;
text-transform: uppercase;
-webkit-border-radius: 100%;
border-radius: 100%;
-webkit-box-shadow: none;
box-shadow: none;
-webkit-transition: all 0.6s cubic-bezier(0.3,1,0,1);
transition: all 0.6s cubic-bezier(0.3,1,0,1);
}
.testimonial4_control_button .carousel-control.left{
left: 7%;
top: 50%;
right: auto;
}
.testimonial4_control_button .carousel-control.right{
right: 7%;
top: 50%;
left: auto;
}
.testimonial4_control_button .carousel-control.left:hover,
.testimonial4_control_button .carousel-control.right:hover{
color: #000;
background: #fff;
border: 2px solid #fff;
}

.testimonial4_header{
top: 0;
left: 0;
bottom: 0;
width: 550px;
display: block;
margin: 30px auto;
text-align: center;
position: relative;
}
.testimonial4_header h4{
color: #ffffff;
font-size: 30px;
font-weight: 600;
position: relative;
letter-spacing: 1px;
text-transform: uppercase;
}

.testimonial4_slide{
top: 0;
left: 0;
right: 0;
bottom: 0;
width: 70%;
margin: auto;
padding: 20px;
position: relative;
text-align: center;
}
.testimonial4_slide img {
  top: 0;
  left: 0;
  right: 0;
  width: 136px;
  height: 136px;
  margin: auto;
  display: block;
  color: #f2f2f2;
  font-size: 18px;
  line-height: 46px;
  text-align: center;
  position: relative;
  border-radius: 50%;
  -moz-box-shadow: -6px 6px 6px rgba(0, 0, 0, 0.23);
  -o-box-shadow: -6px 6px 6px rgba(0, 0, 0, 0.23);
  -webkit-box-shadow: -6px 6px 6px rgba(0, 0, 0, 0.23);
  box-shadow: -6px 6px 6px rgba(0, 0, 0, 0.23);
}

.testimonial4_slide p {
  color: var(--slideshow-text-caption-color);
  font-size: 20px;
  line-height: 1.4;
  margin: 40px 0 20px 0;
}
.testimonial4_slide h4 {
color: var(--slideshow-text-title-color);
font-size: 22px;
}

.testimonial .carousel {
padding-bottom:50px;
}
.testimonial .carousel-control-next-icon, .testimonial .carousel-control-prev-icon {
  width: 35px;
  height: 35px;
  filter: invert(100%);
}
/* ------testimonial  close-------*/


/* Process steps */
.ps-image {
  display: flex;
  justify-content: center;
  align-items: center;
  background-size:cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  filter: contrast(120%);
  font-size: 18px;
  font-weight: 600;
  text-align: justify;
  text-justify: inter-word;
  color: var(--process-text-color);
  text-shadow: 1px 2px 4px #00000060;
  animation-name: movingfx;
  animation-duration: 5s;
  animation-delay: 1s;
  animation-iteration-count: 1;
  animation-timing-function: ease-in-out;
}

.ps-image::after {
  content: ""; 
  position: absolute; 
  top: 0;
  left: 0; 
  width: 100%; 
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  z-index: -1;
}
#process1 {
  background-image: url("../src/process/IMG_001.jpg");
}
#process2 {
  background-image: url("../src/process/IMG_002.jpg");
}
#process3 {
  background-image: url("../src/process/IMG_003.jpg");
}
#process4 {
  background-image: url("../src/process/IMG_004.jpg");
}
#process5 {
  background-image: url("../src/process/IMG_005.jpg");
}
@keyframes movingfx {
  from {
    background-size: 100%;
  }
  to {
    background-size: 130%;
  }
}
/*form styles*/
#msform {
	width: 60%;
	margin: 50px auto;
	text-align: center;
	position: relative;
}
#msform fieldset {
  display: flex;
  flex-direction: column;
  justify-content: center;
  justify-items: center;
  align-items: center;
  align-content: center;
	background: transparent;
	border: 0 none;
	border-radius: 5px;
	box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
	box-sizing: border-box;
	width: 100%;
  height: 220px;
	position: relative;
  border-radius: 10px;
}
/*Hide all except first fieldset*/
#msform fieldset:not(:first-of-type) {
	display: none;
}
/*headings*/
.fs-title {
	/* font-size: 24px; */
	text-transform: uppercase;
	/* color: #2C3E50; */
	margin-bottom: 10px;
}
.fs-subtitle {
	font-weight: normal;
	/* font-size: 24px; */
	/* color: #666; */
	margin-bottom: 20px;
}

@media screen and (max-min: 600px ) {
  .ps-image {
    font-size: 18px;
  }
}
/*progressbar*/
#progressbar {
	margin-bottom: 30px;
	overflow: hidden;
	/*CSS counters to number the steps*/
	counter-reset: step;
}
#progressbar li {
	list-style-type: none;
	color: rgb(255, 255, 255);
	text-transform: uppercase;
	font-size: 9px;
	width: 19.50%;
	float: left;
	position: relative;
}
@media (max-width: 640px) {
  #progressbar li {
	width: 19.50%;
  }
  #msform {
    width: 400px;
    margin: auto;
    padding: 0;
  }
  #msform fieldset {
    padding: 0;
    margin: 0;
    display: flex;
  }
}
#progressbar li:before {
	content: counter(step);
	counter-increment: step;
	width: 20px;
	line-height: 20px;
	display: block;
	font-size: 10px;
	color: #333;
	background: #ffffff;
	border-radius: 3px;
	margin: 0 auto 5px auto;
}
/*progressbar connectors*/
#progressbar li:after {
	content: '';
	width: 100%;
	height: 2px;
	background: #d3d3d3;
	position: absolute;
	left: -50%;
	top: 9px;
	z-index: -1; /*put it behind the numbers*/
}
#progressbar li:first-child:after {
	/*connector not needed before the first step*/
	content: none; 
}
/*marking active/completed steps green*/
/*The number of the step and the connector before it = green*/
#progressbar li.active:before,  #progressbar li.active:after{
	background: #27AE60;
	color: white;
}

/* Background animation */
@-webkit-keyframes 
hue { 0% {
 -webkit-filter: hue-rotate(0deg);
 filter: hue-rotate(0deg);
}
 100% {
 -webkit-filter: hue-rotate(360deg);
 filter: hue-rotate(360deg);
}
}
@keyframes 
hue { 0% {
 -webkit-filter: hue-rotate(0deg);
 filter: hue-rotate(0deg);
}
 100% {
 -webkit-filter: hue-rotate(360deg);
 filter: hue-rotate(360deg);
}
}
/* Move to Next Section */
.fa-chevron-down {
  color: var(--background-color) !important;
  bottom: 40px;
  margin-left: 0px;
  cursor: pointer;
  position: absolute;
  -webkit-transition: 1.2s ease;
  transition: 1.2s ease;
  z-index: 300;
}
.fa-chevron-down:hover {
  color: var(--background-color) !important;
}