@import "https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&display=swap";

:root {
  --font-family-primary: 'Montserrat', 'Arial', sans-serif;
  --font-family-secondary: 'Red Hat Display', 'Arial', sans-serif;
  --color-primary: #F5821F;
  --color-secondary: #007355;
  --color-tertiary: #E6145F;
  --color-primary-bg: #523EAA;
  --color-secondary-bg: #E5FBF6;
}

html, body {
  padding: 0;
  margin: 0;
  position: relative;
  font-size: 18px;
  color: #6D6E70;
  /*@media(min-width: 992px) and (max-width:1500px) {
        zoom: .85;
    }*/
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  background-color: #eee;
  font-family: var(--font-family-primary);
  font-size: 16px;
  font-weight: normal;
  line-height: 1.4;
  height: 100vh;
  /* Fallback for browsers that do not support Custom Properties */
  height: calc(var(--vh, 1vh) * 100);
}

body.modal-open {
  overflow: visible;
}

.page-content {
  display: flex;
  flex-direction: column;
  max-width: 1920px;
  min-height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100);
  background-color: #fff;
  margin: 0 auto;
}

p:last-of-type {
  margin-bottom: 0 !important;
}

.btn {
  font-size: 14px;
  font-weight: bold !important;
  line-height: .8;
  text-transform: uppercase;
  padding: 15px 24px 12px !important;
  border: none !important;
  border-radius: 20px;
}

.btn.btn-primary {
  background-color: var(--color-primary) !important;
  color: #fff !important;
}

.btn.btn-secondary {
  background-color: #4DB848 !important;
  color: #fff !important;
}

.btn:hover, .btn:active, .btn:focus {
  outline: none !important;
  box-shadow: none !important;
}

.form-control:focus {
  box-shadow: none;
}

.video-player {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  height: 0;
  width: 100%;
  margin: auto;
  /*overflow: hidden;*/
  /*@media(min-width:1024px) {
        width: 100%;
    }*/
}

.video-player iframe {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
}

main {
  overflow: hidden;
}

header {
  max-width: 1920px;
  top: 0;
  z-index: 1;
}

@media (min-width: 992px) {
  header .navbar .navbar-brand {
    margin-right: 40px;
  }
}

header .navbar .navbar-brand img {
  width: 72%;
  height: unset;
}

@media (min-width: 992px) {
  header .navbar .navbar-brand img {
    width: auto;
    margin-right: 40px;
  }
}

header .navbar .navbar-toggler {
  font-size: 30px;
  color: #fff;
  margin: 0;
  padding: 0;
}

header .navbar .navbar-toggler:focus {
  outline: none;
}

header .navbar .navbar-toggler .navbar-toggler-icon {
  height: auto;
  width: auto;
}

header .navbar .nav-item a {
  position: relative;
  display: flex;
  height: 100%;
  align-items: center;
  color: #fff;
  text-transform: uppercase;
}

@media (min-width: 992px) {
  header .navbar .nav-item a {
    font-size: 14px;
  }
}

header .navbar .nav-item a::before {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background-color: #fff;
  bottom: 2px;
  left: 0;
  -webkit-transition: 0.2s all ease-in-out;
  -moz-transition: 0.2s all ease-in-out;
  -ms-transition: 0.2s all ease-in-out;
  -o-transition: 0.2s all ease-in-out;
}

header .navbar .nav-item a:hover {
  font-weight: bold;
  text-decoration: none;
}

header .navbar .nav-item a:hover::before {
  width: 100%;
}

header .navbar .nav-item a.btn::before {
  content: none;
}

#banner {
  height: 100vh;
}

@media (min-width: 992px) {
  #banner {
    height: 768px;
  }
}

#banner .item {
  position: relative;
  height: 100vh;
}

@media (min-width: 992px) {
  #banner .item {
    height: 768px;
  }
}

#banner .item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200px;
  z-index: 1;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.15) 50%, rgba(0, 0, 0, 0.075) 65%, rgba(0, 0, 0, 0.0375) 75.5%, rgba(0, 0, 0, 0.0185) 82.85%, rgba(0, 0, 0, 0.0095) 88%, rgba(0, 0, 0, 0) 100%);
}

#banner .item .image {
  height: 100vh;
}

@media (min-width: 992px) {
  #banner .item .image {
    height: 768px;
  }
}

#banner .item .text {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  color: #fff !important;
}

@media (min-width: 992px) {
  #banner .item .text {
    height: 480px;
    bottom: 0;
    margin: auto;
  }
}

#banner .item .text .title {
  font-family: var(--font-family-secondary);
  font-size: 32px;
  font-style: italic;
  margin-bottom: 20px;
}

#banner .item .text .description {
  font-size: 14px;
  margin-bottom: 20px !important;
}

#banner .item .text .personal {
  font-size: 10px;
}

#banner .item .text .personal .name {
  color: var(--color-primary);
  margin-bottom: 5px;
}

#banner .item img {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  height: 100vh;
}

@media (min-width: 992px) {
  #banner .item img {
    height: auto;
  }
}

#banner .item .video {
  width: 100vw;
  height: 100vh;
}

@media (min-width: 992px) {
  #banner .item .video {
    height: 0;
    width: auto;
    position: relative;
    padding-bottom: 57.5%;
    overflow: hidden;
    pointer-events: none;
  }
}

#banner .item .video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

@media (min-width: 992px) {
  #banner .item .video iframe {
    top: -10px;
    left: 0;
    width: 100%;
    height: 100%;
    transform: none;
  }
}

@media (max-width: 991.98px) and (min-aspect-ratio: 16 / 9) {
  #banner .item .video iframe {
    height: 56.25vw;
  }
}

@media (max-width: 991.98px) and (max-aspect-ratio: 16 / 9) {
  #banner .item .video iframe {
    width: 177.78vh;
  }
}

#banner .slick-prev, #banner .slick-next {
  z-index: 1;
}

#banner .slick-prev::before, #banner .slick-next::before {
  font-family: "Font Awesome 5 Pro";
  font-size: 30px;
  font-weight: 400;
}

#banner .slick-prev {
  left: 0;
}

@media (min-width: 992px) {
  #banner .slick-prev {
    left: 120px;
  }
}

#banner .slick-prev::before {
  content: '\f053';
}

#banner .slick-next {
  right: 0;
}

@media (min-width: 992px) {
  #banner .slick-next {
    right: 120px;
  }
}

#banner .slick-next::before {
  content: '\f054';
}

#about {
  position: relative;
}

@media (min-width: 992px) {
  #about {
    padding-top: 100px;
  }
}

#about::before {
  content: '';
  width: 100%;
  height: 100px;
  background: url("/custom/site-ecoponte-50-anos/img/arc.png") no-repeat center top;
  position: absolute;
  top: -59px;
  background-size: 140%;
}

@media (min-width: 992px) {
  #about::before {
    height: 510px;
    top: -190px;
    background-size: unset;
  }
}

#about .title {
  font-family: var(--font-family-secondary);
  font-size: 24px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 20px;
}

@media (min-width: 992px) {
  #about .title {
    font-size: 50px;
  }
}

#about .title span {
  display: block;
  font-size: 20px;
  color: var(--color-secondary);
}

@media (min-width: 992px) {
  #about .title span {
    font-size: 40px;
  }
}

#about p {
  text-align: justify;
}

#about a {
  color: #007355;
  text-decoration: underline;
  font-weight: 700;
}

#about .carousel {
  width: 90%;
  margin-top: 90px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 992px) {
  #about .carousel {
    width: auto;
  }
}

#about .carousel .item {
  font-size: 15px;
  text-align: center;
}

#about .carousel .item span {
  display: block;
  font-family: var(--font-family-secondary);
  font-size: 50px;
  font-weight: 700;
  font-style: italic;
  line-height: .8;
  color: var(--color-secondary);
  margin-bottom: 10px;
}

#about .slick-prev, #about .slick-next {
  z-index: 1;
}

#about .slick-prev::before, #about .slick-next::before {
  font-family: "Font Awesome 5 Pro";
  font-size: 30px;
  font-weight: 400;
  color: #c3c3c3;
}

#about .slick-prev {
  left: 0;
}

@media (min-width: 992px) {
  #about .slick-prev {
    left: -50px;
  }
}

#about .slick-prev::before {
  content: '\f053';
}

#about .slick-next {
  right: 0;
}

@media (min-width: 992px) {
  #about .slick-next {
    right: -50px;
  }
}

#about .slick-next::before {
  content: '\f054';
}

#about .bridge {
  width: 200%;
  position: relative;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
}

@media (min-width: 992px) {
  #about .bridge {
    width: auto;
  }
}

#rarities .title {
  font-family: var(--font-family-secondary);
  font-size: 24px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 60px;
}

@media (min-width: 992px) {
  #rarities .title {
    font-size: 50px;
  }
}

#rarities .title span {
  display: block;
  font-size: 20px;
  color: var(--color-secondary);
}

@media (min-width: 992px) {
  #rarities .title span {
    font-size: 40px;
  }
}

#rarities .text {
  background-color: aqua;
  color: #fff;
  border-radius: 10px;
  padding: 20px 13px 14px;
  -webkit-transition: 0.2s all ease-in-out;
  -moz-transition: 0.2s all ease-in-out;
  -ms-transition: 0.2s all ease-in-out;
  -o-transition: 0.2s all ease-in-out;
}

@media (min-width: 992px) {
  #rarities .text {
    height: 440px;
  }
}

#rarities .text:hover {
  box-shadow: 0px 0px 5px 3px rgba(0, 0, 0, 0.5);
}

#rarities .text span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 40px;
  margin-bottom: 13px;
}

#rarities .text .box-title {
  font-size: 14px;
  font-weight: bold;
}

#rarities .text p {
  font-size: 14px;
}

#rarities .text.text-blue {
  background: transparent linear-gradient(180deg, #1F6B9C 0%, #152C40 100%) 0% 0% no-repeat padding-box;
}

#rarities .text.text-blue span img {
  filter: saturate(0%) brightness(0%) invert(36.66667%) opacity(1);
  filter: url('data:image/svg+xml;utf8,    <svg xmlns="http://www.w3.org/2000/svg">      <filter id="recolor" color-interpolation-filters="sRGB">        <feColorMatrix type="matrix" values="          0 0 0 0 0.12157          0 0 0 0 0.41961          0 0 0 0 0.61176          0 0 0 1 0        "/>      </filter>    </svg>    #recolor');
}

#rarities .text.text-green {
  background: transparent linear-gradient(180deg, #38A547 0%, #1E5E44 100%) 0% 0% no-repeat padding-box;
}

#rarities .text.text-green span img {
  filter: saturate(0%) brightness(0%) invert(43.33333%) opacity(1);
  filter: url('data:image/svg+xml;utf8,    <svg xmlns="http://www.w3.org/2000/svg">      <filter id="recolor" color-interpolation-filters="sRGB">        <feColorMatrix type="matrix" values="          0 0 0 0 0.21961          0 0 0 0 0.64706          0 0 0 0 0.27843          0 0 0 1 0        "/>      </filter>    </svg>    #recolor');
}

#rarities .text.text-purple {
  background: transparent linear-gradient(181deg, #9E83AC 0%, #64255F 100%) 0% 0% no-repeat padding-box;
}

#rarities .text.text-purple span img {
  filter: saturate(0%) brightness(0%) invert(59.41176%) opacity(1);
  filter: url('data:image/svg+xml;utf8,    <svg xmlns="http://www.w3.org/2000/svg">      <filter id="recolor" color-interpolation-filters="sRGB">        <feColorMatrix type="matrix" values="          0 0 0 0 0.61961          0 0 0 0 0.51373          0 0 0 0 0.67451          0 0 0 1 0        "/>      </filter>    </svg>    #recolor');
}

#rarities .text.text-orange {
  background: transparent linear-gradient(180deg, #EFB85D 0%, #EC6D34 100%) 0% 0% no-repeat padding-box;
}

#rarities .text.text-orange span img {
  filter: saturate(0%) brightness(0%) invert(65.09804%) opacity(1);
  filter: url('data:image/svg+xml;utf8,    <svg xmlns="http://www.w3.org/2000/svg">      <filter id="recolor" color-interpolation-filters="sRGB">        <feColorMatrix type="matrix" values="          0 0 0 0 0.93725          0 0 0 0 0.72157          0 0 0 0 0.36471          0 0 0 1 0        "/>      </filter>    </svg>    #recolor');
}

#rarities .image {
  position: relative;
  display: block;
  height: 216px;
  border-radius: 10px;
  cursor: pointer;
  overflow: hidden;
  -webkit-transition: 0.2s all ease-in-out;
  -moz-transition: 0.2s all ease-in-out;
  -ms-transition: 0.2s all ease-in-out;
  -o-transition: 0.2s all ease-in-out;
}

#rarities .image:hover {
  box-shadow: 0px 0px 5px 3px rgba(0, 0, 0, 0.5);
}

#rarities .image::before {
  content: '';
  width: 28px;
  height: 28px;
  background-color: #fff;
  position: absolute;
  right: 10px;
  bottom: 10px;
  border-radius: 28px;
  background: url("/custom/site-ecoponte-50-anos/img/ico-arrow.svg") no-repeat center center;
  background-size: contain;
  opacity: .8;
  z-index: 1;
}

#rarities .image img {
  height: 100%;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

#rarities .carousel {
  width: 80%;
  margin: auto;
}

@media (min-width: 992px) {
  #rarities .carousel {
    width: auto;
  }
}

#rarities .slick-prev, #rarities .slick-next {
  z-index: 1;
}

#rarities .slick-prev::before, #rarities .slick-next::before {
  font-family: "Font Awesome 5 Pro";
  font-size: 30px;
  font-weight: 400;
  color: #c3c3c3;
}

#rarities .slick-prev {
  left: -20px;
}

@media (min-width: 992px) {
  #rarities .slick-prev {
    left: -50px;
  }
}

#rarities .slick-prev::before {
  content: '\f053';
}

#rarities .slick-next {
  right: -20px;
}

@media (min-width: 992px) {
  #rarities .slick-next {
    right: -50px;
  }
}

#rarities .slick-next::before {
  content: '\f054';
}

#rarities .museum {
  width: 200%;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 40px;
  margin-bottom: 40px;
}

@media (min-width: 992px) {
  #rarities .museum {
    width: auto;
  }
}

#rarities .modal img {
  max-width: 100%;
}

#rarities .image-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background-color: #fff;
  position: absolute;
  right: 30px;
  bottom: 30px;
  border-radius: 28px;
  opacity: .8;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}

.fifty-years .title {
  font-family: var(--font-family-secondary);
  font-size: 24px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 60px;
}

@media (min-width: 992px) {
  .fifty-years .title {
    font-size: 50px;
  }
}

.fifty-years .title span {
  display: block;
  font-size: 20px;
  color: var(--color-secondary);
}

@media (min-width: 992px) {
  .fifty-years .title span {
    font-size: 40px;
  }
}

.fifty-years .carousel {
  width: 80%;
  margin: auto;
  padding-top: 40px;
  padding-bottom: 40px;
}

@media (min-width: 992px) {
  .fifty-years .carousel {
    width: auto;
  }
}

@media (min-width: 992px) {
  .fifty-years .carousel .slick-list {
    overflow: visible;
  }
}

.fifty-years .carousel .slick-prev, .fifty-years .carousel .slick-next {
  z-index: 1;
}

@media (min-width: 992px) {
  .fifty-years .carousel .slick-prev, .fifty-years .carousel .slick-next {
    top: -30px;
  }
}

.fifty-years .carousel .slick-prev::before, .fifty-years .carousel .slick-next::before {
  font-family: "Font Awesome 5 Pro";
  font-size: 30px;
  font-weight: 400;
  color: #c3c3c3;
}

.fifty-years .carousel .slick-prev {
  right: -20px;
}

@media (min-width: 992px) {
  .fifty-years .carousel .slick-prev {
    right: -10px;
    left: unset;
  }
}

.fifty-years .carousel .slick-prev::before {
  content: '\f053';
}

.fifty-years .carousel .slick-next {
  right: -20px;
}

@media (min-width: 992px) {
  .fifty-years .carousel .slick-next {
    right: -50px;
  }
}

.fifty-years .carousel .slick-next::before {
  content: '\f054';
}

.fifty-years .carousel .item {
  position: relative;
  display: flex;
  align-items: flex-start;
  width: 305px;
  overflow: hidden;
  margin: .5rem;
  border-radius: 10px;
  cursor: pointer;
  -webkit-transition: 0.2s all ease-in-out;
  -moz-transition: 0.2s all ease-in-out;
  -ms-transition: 0.2s all ease-in-out;
  -o-transition: 0.2s all ease-in-out;
}

@media (min-width: 992px) {
  .fifty-years .carousel .item {
    width: 444px;
    height: 250px;
  }
}

.fifty-years .carousel .item:hover {
  box-shadow: 0px 0px 5px 3px rgba(0, 0, 0, 0.5);
}

.fifty-years .carousel .item img {
  width: 100%;
  position: relative;
}

@media (min-width: 992px) {
  .fifty-years .carousel .item img {
    width: auto;
    height: 250px;
  }
}

.fifty-years .carousel .item .text {
  position: absolute;
  color: #fff;
  bottom: 20px;
  left: 24px;
  z-index: 2;
}

@media (min-width: 992px) {
  .fifty-years .carousel .item .text {
    width: 55%;
  }
}

.fifty-years .carousel .item .text h2 {
  font-size: 10px;
  font-weight: bold;
  text-transform: uppercase;
}

.fifty-years .carousel .item .text p {
  font-family: var(--font-family-secondary);
  font-size: 24px;
  font-weight: 500;
  font-style: italic;
}

.fifty-years .carousel .item i {
  position: absolute;
  display: table;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  color: #fff;
  font-size: 60px;
  opacity: .5;
  z-index: 2;
}

#your-story {
  padding-bottom: 40px;
}

#your-story .title {
  font-family: var(--font-family-secondary);
  font-size: 24px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 60px;
}

@media (min-width: 992px) {
  #your-story .title {
    font-size: 50px;
    margin-top: 40px;
    margin-bottom: 0;
  }
}

#your-story .title span {
  display: block;
  font-size: 20px;
  color: var(--color-secondary);
}

@media (min-width: 992px) {
  #your-story .title span {
    font-size: 40px;
  }
}

#your-story .carousel .item {
  width: 325px;
  /*&:nth-of-type(2) {
                @media(min-width: 992px) {
                    padding-bottom: 150px;
                }
            }*/
}

@media (min-width: 992px) {
  #your-story .carousel .item {
    width: 306px;
  }
}

#your-story .carousel .item .details {
  color: #fff;
  border-radius: 10px;
}

#your-story .carousel .item .details h2 {
  font-size: 12px;
  font-weight: bold;
}

#your-story .carousel .item .details h2 span {
  display: block;
  font-weight: normal;
}

#your-story .carousel .item .details p {
  font-size: 14px;
  margin-bottom: 0;
}

#your-story .carousel .item .text {
  position: relative;
  width: 250px;
  margin-top: 36px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 992px) {
  #your-story .carousel .item .text {
    margin-top: 66px;
    margin-right: unset;
    margin-bottom: 30px;
    margin-left: unset;
  }
}

#your-story .carousel .item .text img {
  position: absolute;
  top: -38px;
  right: 0;
  left: 0;
  margin: auto;
  border-radius: 76px;
  border: 7px solid #fff;
  width: 76px;
  height: 76px;
}

#your-story .carousel .item .text .details {
  background: aqua;
  text-align: center;
  padding: 70px 20px 20px;
  -webkit-transition: 0.2s all ease-in-out;
  -moz-transition: 0.2s all ease-in-out;
  -ms-transition: 0.2s all ease-in-out;
  -o-transition: 0.2s all ease-in-out;
}

#your-story .carousel .item .text .details:hover {
  box-shadow: 0px 0px 5px 3px rgba(0, 0, 0, 0.5);
}

#your-story .carousel .item .video {
  position: relative;
  width: 200px;
  margin-right: auto;
  margin-left: auto;
  cursor: pointer;
}

@media (min-width: 992px) {
  #your-story .carousel .item .video {
    margin-top: 30px;
    margin-right: unset;
    margin-bottom: 30px;
    margin-left: unset;
  }
}

#your-story .carousel .item .video i {
  position: absolute;
  display: table;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  color: #fff;
  font-size: 40px;
  opacity: .5;
}

#your-story .carousel .item .video img {
  max-width: 100%;
  border-radius: 10px;
}

#your-story .carousel .item .video .details {
  position: absolute;
  bottom: .5rem;
  left: 1rem;
}

#your-story .carousel .item .video video {
  max-width: 100%;
  border-radius: 10px;
  -webkit-transition: 0.2s all ease-in-out;
  -moz-transition: 0.2s all ease-in-out;
  -ms-transition: 0.2s all ease-in-out;
  -o-transition: 0.2s all ease-in-out;
}

#your-story .carousel .item .video video:hover {
  box-shadow: 0px 0px 5px 3px rgba(0, 0, 0, 0.5);
}

#your-story .carousel .item .video.playing i {
  display: none;
}

@media (min-width: 992px) {
  #your-story .carousel .item:nth-of-type(9n+1) > div {
    left: 1rem;
  }
}

@media (min-width: 992px) {
  #your-story .carousel .item:nth-of-type(9n+2) > div {
    margin-right: auto;
    margin-left: auto;
  }
}

@media (min-width: 992px) {
  #your-story .carousel .item:nth-of-type(3n + 3) > div {
    margin-right: auto;
    margin-left: auto;
  }
}

@media (min-width: 992px) {
  #your-story .carousel .item:nth-of-type(9n+4) > div {
    left: 3rem;
  }
}

@media (min-width: 992px) {
  #your-story .carousel .item:nth-of-type(9n+5) > div {
    left: 2rem;
  }
}

@media (min-width: 992px) {
  #your-story .carousel .item:nth-of-type(9n+8) > div {
    left: -1rem;
  }
}

#your-story .carousel .item:nth-child(5n+1 of .item-text) .details, #your-story .carousel .item:nth-child(5n+4 of .item-text) .details {
  background-color: #F5821F;
}

#your-story .carousel .item:nth-child(5n+2 of .item-text) .details {
  background-color: #1781BE;
}

#your-story .carousel .item:nth-child(5n+3 of .item-text) .details {
  background-color: #782881;
}

#your-story .carousel .item:nth-child(5n+5 of .item-text) .details {
  background-color: #4DB848;
}

#your-story .carousel .slick-prev, #your-story .carousel .slick-next {
  z-index: 1;
}

#your-story .carousel .slick-prev::before, #your-story .carousel .slick-next::before {
  font-family: "Font Awesome 5 Pro";
  font-size: 30px;
  font-weight: 400;
  color: #c3c3c3;
}

#your-story .carousel .slick-prev {
  left: -20px;
}

@media (min-width: 992px) {
  #your-story .carousel .slick-prev {
    left: -50px;
  }
}

#your-story .carousel .slick-prev::before {
  content: '\f053';
}

#your-story .carousel .slick-next {
  right: -20px;
}

@media (min-width: 992px) {
  #your-story .carousel .slick-next {
    right: -50px;
  }
}

#your-story .carousel .slick-next::before {
  content: '\f054';
}

#your-story .cristo {
  width: 200%;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 40px;
  margin-bottom: -730px;
  opacity: .8;
}

@media (min-width: 992px) {
  #your-story .cristo {
    width: auto;
    transform: none;
  }
}

#tell-your-story {
  background-color: var(--color-secondary);
  color: #fff;
  padding-top: 60px;
  padding-bottom: 60px;
}

#tell-your-story .title {
  font-family: var(--font-family-secondary);
  font-size: 24px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 60px;
}

@media (min-width: 992px) {
  #tell-your-story .title {
    font-size: 50px;
  }
}

#tell-your-story .title span {
  display: block;
  font-size: 20px;
  color: #fff;
}

@media (min-width: 992px) {
  #tell-your-story .title span {
    font-size: 40px;
  }
}

#tell-your-story input,
#tell-your-story textarea {
  background-color: #0E8A69;
  color: #fff;
  border-radius: 23px;
  border: none;
  padding: 10px 20px;
}

#tell-your-story input::-webkit-input-placeholder,
#tell-your-story textarea::-webkit-input-placeholder {
  color: #9ACCBF;
  font-size: 12px;
  font-weight: normal;
  font-style: normal;
}

#tell-your-story input:-moz-placeholder,
#tell-your-story textarea:-moz-placeholder {
  /* Firefox 18- */
  color: #9ACCBF;
  font-size: 12px;
  font-weight: normal;
  font-style: normal;
}

#tell-your-story input::-moz-placeholder,
#tell-your-story textarea::-moz-placeholder {
  /* Firefox 19+ */
  color: #9ACCBF;
  font-size: 12px;
  font-weight: normal;
  font-style: normal;
}

#tell-your-story input:-ms-input-placeholder,
#tell-your-story textarea:-ms-input-placeholder {
  color: #9ACCBF;
  font-size: 12px;
  font-weight: normal;
  font-style: normal;
}

#tell-your-story .custom-control-label::before {
  background-color: #0E8A69;
  top: 2px;
}

#tell-your-story .custom-control-label::after {
  top: 1px;
  left: -28px;
  width: 20px;
  height: 20px;
}

#tell-your-story .custom-control-input:checked ~ .custom-control-label::before {
  background-color: #0E8A69;
  border-color: #fff;
}

#tell-your-story textarea {
  height: 100px;
  border-radius: 10px;
}

#tell-your-story #span-send-history-file-name {
  display: inline;
  position: relative;
  top: 5px;
  left: 10px;
}

#tell-your-story #remove-send-history-file {
  display: inline-block;
  position: relative;
  top: 5px;
  left: 15px;
  font-weight: bold;
  color: var(--color-primary);
}

#tell-your-story .terms {
  font-size: 14px;
}

#tell-your-story a {
  color: #fff !important;
  text-decoration: underline !important;
}

#tell-your-story .modal {
  color: #6D6E70;
}

#tell-your-story .modal a {
  color: #6D6E70 !important;
}

#timeline {
  background: url("/custom/site-ecoponte-50-anos/img/bahia.jpg") center top #fff;
  padding-top: 85px;
  padding-bottom: 85px;
}

#timeline .title {
  font-family: var(--font-family-secondary);
  font-size: 24px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 60px;
}

@media (min-width: 992px) {
  #timeline .title {
    font-size: 50px;
  }
}

#timeline .title span {
  display: block;
  font-size: 20px;
  color: var(--color-secondary);
}

@media (min-width: 992px) {
  #timeline .title span {
    font-size: 40px;
  }
}

#timeline .timeline {
  position: relative;
  overflow-x: scroll;
  overflow-y: hidden;
}

@media (min-width: 992px) {
  #timeline .timeline {
    overflow: hidden;
  }
}

#timeline .timeline img {
  margin-top: 150px;
  margin-bottom: 150px;
}

@media (min-width: 992px) {
  #timeline .timeline img {
    margin: auto;
  }
}

#timeline .timeline .text {
  position: absolute;
  top: 0;
  bottom: 0;
  display: table;
  margin: auto;
}

@media (min-width: 992px) {
  #timeline .timeline .text {
    top: unset;
    bottom: unset;
    padding-top: 167px;
  }
}

#timeline .timeline .text ul {
  display: flex;
  list-style-type: none;
  padding: 0;
  margin: 0;
}

@media (min-width: 992px) {
  #timeline .timeline .text ul {
    display: block;
  }
}

#timeline .timeline .text ul li {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 210px;
}

@media (min-width: 992px) {
  #timeline .timeline .text ul li {
    width: calc(50% - 30px);
    clear: both;
    margin-bottom: 65px;
  }
}

#timeline .timeline .text ul li::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 22px;
  background: url("/custom/site-ecoponte-50-anos/img/ico-mark.png") no-repeat center;
  background-size: contain;
}

@media (min-width: 992px) {
  #timeline .timeline .text ul li::before {
    width: 35px;
    height: 42px;
  }
}

#timeline .timeline .text ul li:nth-of-type(odd) {
  margin-top: 253px;
  margin-left: 110px;
}

@media (min-width: 992px) {
  #timeline .timeline .text ul li:nth-of-type(odd) {
    text-align: right;
    margin-top: unset;
    margin-left: unset;
  }
}

#timeline .timeline .text ul li:nth-of-type(odd)::before {
  top: -26px;
}

@media (min-width: 992px) {
  #timeline .timeline .text ul li:nth-of-type(odd)::before {
    top: unset;
    right: -52px;
  }
}

#timeline .timeline .text ul li:nth-of-type(even) {
  justify-content: flex-end;
  height: 140px;
  text-align: right;
  margin-top: 95px;
  margin-left: -130px;
}

@media (min-width: 992px) {
  #timeline .timeline .text ul li:nth-of-type(even) {
    justify-content: unset;
    height: unset;
    float: right;
    text-align: left;
    margin-top: unset;
    margin-left: unset;
  }
}

#timeline .timeline .text ul li:nth-of-type(even)::before {
  right: 0;
  bottom: -14px;
}

@media (min-width: 992px) {
  #timeline .timeline .text ul li:nth-of-type(even)::before {
    right: unset;
    bottom: unset;
    left: -43px;
  }
}

#timeline .timeline .text ul li:nth-of-type(even) h2 {
  order: 2;
}

@media (min-width: 992px) {
  #timeline .timeline .text ul li:nth-of-type(even) h2 {
    order: unset;
  }
}

#timeline .timeline .text h2 {
  font-family: var(--font-family-secondary);
  font-size: 17px;
  font-weight: 700;
  font-style: italic;
  color: var(--color-primary);
}

@media (min-width: 992px) {
  #timeline .timeline .text h2 {
    font-size: 36px;
  }
}

#timeline .timeline .text p {
  font-size: 12px;
}

@media (min-width: 992px) {
  #timeline .timeline .text p {
    font-size: 14px;
  }
}

footer {
  background-color: var(--color-secondary);
  color: #fff;
  padding-top: 40px;
}

footer .menu-footer div:nth-of-type(1) {
  border-right: 1px solid #22866c;
}

footer .menu-footer div a + a {
  margin-top: 20px;
}

footer .menu-footer a {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  color: #fff;
}

footer .menu-footer a:hover {
  text-decoration: none;
}

footer .footer-bottom {
  background-color: var(--color-primary);
  font-size: 14px;
  padding: 20px;
  margin-top: 40px;
}

@media (min-width: 992px) {
  footer .footer-bottom {
    padding: 8px;
  }
}

footer .footer-bottom .bottom-links .area {
  display: flex;
  width: 100%;
  justify-content: center;
  margin-bottom: 20px;
}

@media (min-width: 992px) {
  footer .footer-bottom .bottom-links .area {
    width: auto;
    justify-content: flex-start;
    margin-bottom: unset;
  }
}

@media (min-width: 992px) {
  footer .footer-bottom .bottom-links .area + .area::before {
    content: '';
    display: inline-block;
    width: 1px;
    height: 17px;
    background-color: #fff;
    margin-right: 15px;
  }
}

footer .footer-bottom .bottom-links .area div {
  display: flex;
  margin-right: 15px;
}

footer .footer-bottom .bottom-links .area div + div::before {
  content: '';
  display: inline-block;
  width: 1px;
  height: 17px;
  background-color: #fff;
  margin-right: 15px;
}

footer .footer-bottom .bottom-links a {
  color: #fff;
}

footer .footer-bottom .bottom-links a:hover {
  text-decoration: none;
}

footer .footer-bottom .tesla {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

@media (min-width: 992px) {
  footer .footer-bottom .tesla {
    justify-content: flex-start;
    right: -140px;
  }
}

footer .footer-bottom .tesla::before {
  content: none !important;
}

footer .footer-bottom .tesla a {
  display: flex;
  align-items: center;
  color: #fff;
}

footer .footer-bottom .tesla a:hover {
  text-decoration: none;
}

footer .footer-bottom .tesla img {
  height: 10px;
  margin-left: 5px;
}

footer .footer-img {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
