/* page loading */
@keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.loading {
  position: relative;
  opacity: 1 !important;
  transition: all 0s ease-in-out !important;
  -moz-transition: all 0s ease-in-out !important;
  -webkit-transition: all 0s ease-in-out !important;
  -ms-transition: all 0s ease-in-out !important;
  -o-transition: all 0s ease-in-out !important;
  z-index: 99;
}

.loading::after {
  background: none;
  content: "" !important;
  position: absolute;
  left: calc(50% - 10px) !important;
  top: calc(50% - 10px) !important;
  width: 20px !important;
  height: 20px !important;
  opacity: 1 !important;
  right: inherit !important;
  z-index: 9;
  text-align: center;
  border: 2px solid rgba(201, 243, 29, 0.2);
  border-top-color: rgba(201, 243, 29, 0.7);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  -webkit-animation: spin 1s linear infinite;
}

.loading:before {
  content: "";
  background-color: rgba(0, 0, 0, 0.8) !important;
  position: absolute;
  right: 2px;
  top: 1px;
  width: calc(100% - 4px);
  height: calc(100% - 2px);
  border-radius: inherit;
  z-index: 1;
}

.loading.dark:before {
  background-color: rgba(0, 0, 0, 0.8) !important;
}

.loading.dark::after {
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-top-color: rgba(255, 255, 255, 0.7);
}

span.loading-content {
    position: relative;
    left: -20px;
}

.loading-screen {
  position: fixed;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 10000;
  background-color: rgb(0, 0, 0);
  display: flex;
  justify-content: center;
  align-items: center;
}

i.loading {
  width: 60px !important;
  height: 60px !important;
  display: block !important;
}

i.loading::after {
  width: 60px !important;
  height: 60px !important;
  display: block !important;
}

@media screen and (min-width: 1024px) {
  .efect {
    transition: all 0.6s;
    filter: blur(30px);
    opacity: 0;
  }

  .efectimgno {
    transition: all 0.6s;
    filter: blur(0px) !important;
    opacity: 10 !important;
  }
}

span.destak {
  background-color: #c9f31d;
  color: #000;
  font-weight: bold;
}

.efect {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}
.efectimgno {
  opacity: 1;
  transform: translateY(0);
}

.sub-nav {
  position: absolute;
  left: 0;
  padding: 15px 3%;
  background: #fff;
  z-index: 1;
  top: -100%;
  width: 100%;
  transition: all 0.5s;
}
.nav-sub {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}

.nav-stage-li-active {
  top: 100%;
  transition: all 0.5s;
}

.nav-sub li {
  padding: 0 25px;
  display: inline-flex;
  align-items: center;
}
.nav-sub li a {
  color: #000;
  font-size: 13px;
  text-decoration: none;
}
.nav-sub li a {
  color: #000;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.nav-sub li a img {
  width: auto;
  height: 20px;
  margin: 0 10px 0 0;
  display: inline-block;
}

.header {
  position: fixed;
  padding: 15px 3%;
  color: #fff;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: #000;
  top: -100px;
  transition: all 1s;
}
.btn-head {
  position: relative;
  display: inline-flex;
  transition: all 0.5s;
}
.btn-head:hover {
  background: #e8ff8a !important;
  transition: all 0.5s;
}
.btn-head:after {
  position: absolute;
  width: 32px;
  height: 32px;
  border-radius: 100%;
  background: #c9f31d;
  content: "";
  right: -35px;
  transition: all 0.5s;
}
.btn-head:hover:after {
  border-radius: 100%;
  background: #e8ff8a;
  transition: all 0.5s;
}
.btn-head:before {
  position: absolute;
  width: 32px;
  height: 32px;
  border-radius: 100%;
  background: url(../../images/ic-seta-btn.svg) center center no-repeat;
  content: "";
  right: -35px;
  z-index: 1;
  transform: rotate(-25deg);
  transition: all 0.5s;
}
.btn-head:hover:before {
  transform: rotate(0deg);
  transition: all 0.5s;
}
/*menu*/
.nav-stage {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
  align-items: center;
}

.destokstok {
  color: #c9f31d !important;
}

.nav-stage li {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.nav-stage a {
  font-size: 13px;
  padding: 0 35px;
  cursor: pointer;
  color: #fff;
  font-weight: 300;
  text-decoration: none;
  transition: all 0.5s;
  display: inline-flex;
  align-items: center;
}
.nav-stage a:before {
  width: 12px;
  height: 18px;
  content: "";
  background: url(../../images/ic-seven-green.svg) center center no-repeat;
  background-size: contain;
  margin: 0 5px 0 0;
  display: inline-block;
  transition: all 0.5s;
  opacity: 0;
}
.nav-stage a:hover:before {
  transition: all 0.5s;
  opacity: 1;
}

/* session open*/
.session-open {
  min-height: 100vh;
  color: #fff;
  position: relative;
}
.session-open .container {
  z-index: 1;
  position: relative;
}
.session-open:before {
  height: 100%;
  width: 100%;
  left: 0;
  position: absolute;
  top: 0;
  background: #000;
  opacity: 0.7;
  content: "";
}
.session-open h2 {
  font-size: 60px;
  line-height: 70px;
  color: #c9f31d;
  font-weight: 600;
}
.session-open p {
  margin: 0;
  font-size: 38px;
  line-height: 50px;
}
.session-open span {
  margin: 0;
  font-size: 16px;
  line-height: 26px;
}

/*session-2*/
.session-2 {
  padding: 100px 0;
  background: #c9f31d;
  min-height: 100vh;
}
.session-2 h2 {
  font-size: 60px;
  line-height: 70px;
  font-weight: 300;
}
.session-2 h2 b {
  font-weight: 600;
}

/*slider one*/
.session-slider-one {
  background: #e3ff72;
  padding: 15px 0;
}

.session-slider-one p {
  margin: 0;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  position: relative;
}

.session-slider-one p:after {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  background: url(../../images/ic-seven.svg) center center no-repeat;
  right: 0;
}

/*session 3*/
.session-3 {
  background: #000;
  color: #fff;
  min-height: 100vh;
}
.session-3 p {
  font-size: 16px;
  line-height: 26px;
}
.imagem-session-3 {
  min-height: 100vh;
  display: flex;
  width: 100%;
}

#video-session-5 {
  pointer-events: none;
}

/*session 4*/
.session-4 {
  background: #f5f5f7;
  padding: 120px 0 200px 0;
}
.session-4 h2 {
  font-size: 50px;
  line-height: 64px;
  margin: 0 0 74px 0;
  padding: 0 0 0 40px;
  position: relative;
}
.session-4 h2:before {
  width: 32px;
  height: 42px;
  background: url(../../images/ic-seven-green.svg) center center no-repeat;
  background-size: 80%;
  content: "";
  margin-right: 20px;
  display: inline-block;
  position: absolute;
  left: 0px;
  top: 10px;
}

.item-session-4 {
  padding: 30px;
  background: #fff;
  border: 1px solid #9abe09;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;

  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.item-session-4:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.item-session-4 img {
  width: auto;
  height: 40px;
  margin: 0 0 20px 0;
}
.item-session-4 h5 {
  font-size: 24px;
  line-height: 28px;
  font-weight: 300;
  margin: 0 0 20px 0;
}
.item-session-4 p {
  font-size: 14px;
  line-height: 24px;
  font-weight: 300;
  margin: 0;
  color: #646a6d;
}

/* session-5 */
.session-5 {
  padding: 150px 0 100px 0;
  background-size: cover;
  position: relative;
  overflow: hidden;
  color: #000;
}
.session-5:before {
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: #c9f31d;
  position: absolute;
  content: "";
  z-index: -1;
  opacity: 0.6;
}
.session-5 .session-5-video video {
  position: absolute;
  top: 0;
  left: 0;
  height: auto;
  width: 100%;
  z-index: -2;
}
.session-5 h2 {
  font-size: 80px;
  line-height: 90px;
  font-weight: 300;
  color: #000;
}
.session-5 h2 b {
  font-weight: 600;
}

/* session-6 */
.session-6 {
  padding: 120px 0 100px 0;
}
.session-6 h2 {
  display: inline-flex;
  font-size: 50px;
  line-height: 64px;
  margin: 0;
  padding: 0 0 0 40px;
  position: relative;
  flex-wrap: wrap;
}
.session-6 h2:before {
  width: 32px;
  height: 42px;
  background: url(../../images/ic-seven-green.svg) center center no-repeat;
  background-size: 80%;
  content: "";
  margin-right: 20px;
  display: inline-block;
  position: absolute;
  left: 0px;
  top: 10px;
}

.grid-sessions-6 {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.grid-sessions-6 li {
  margin: 5px;
  width: 24%;
  display: inline-block;
  transition: all 0.5s;
  position: relative;
}

.grid-sessions-6 li img {
  width: 100%;
  height: auto;
  transition: all 0.5s;
  opacity: 1;
  border-radius: 6px;
}

.grid-sessions-6 li:nth-child(7),
.grid-sessions-6 li:nth-child(14),
.grid-sessions-6 li:nth-child(21) {
  width: 49%;
}

.item-marca img {
  max-width: 100%;
  width: auto;
  height: 60px;
  filter: grayscale(1);
}

.item-marca img:hover {
  filter: grayscale(0) !important;
}

.grid-sessions-6 li .item-galeria {
  width: 100%;
  height: auto;
  padding: 40px;
  color: #fff;
  font-size: 13px;
  left: 0;
  bottom: -100%;
  z-index: 1;
  position: absolute;
  background: #000000;
  border-radius: 0 0 6px 6px;
  transition: all 0.5s;
}

.grid-sessions-6 li:nth-child(7) .item-galeria p {
  width: 49%;
}

.grid-sessions-6 li:hover .item-galeria {
  bottom: 0%;
  transition: all 0.5s;
}

.grid-sessions-6 li .item-galeria-out {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  position: absolute;
}
.grid-sessions-6 li .item-galeria span {
  position: relative;
  font-size: 12px;
  display: flex;
  align-items: center;
}

/* session-7 */
.session-7 {
  padding: 150px 0 150px 4%;
  color: #fff;
  background: #000;
}
.session-7 h2 {
  font-size: 50px;
  line-height: 60px;
  margin: 0;
  font-weight: 700;
}
.session-7 p {
  font-size: 15px;
  line-height: 25px;
  font-weight: 300;
}
.item-session-7 {
  border-radius: 20px;
  border: solid 1px #2d2d2d;
  padding: 30px;
  height: 455px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  transition: all 0.5s;
}
.item-session-7:hover {
  border: solid 1px #c9f31d;
  transition: all 0.5s;
}
.item-session-7 h6 {
  color: #fff;
  font-size: 20px;
  margin: 0 0 20px 0;
}
.item-session-7 span {
  color: #aaaaaa;
  font-size: 13px;
  line-height: 19px;
}
.item-session-7 b {
  font-size: 50px;
  line-height: 60px;
  display: inline-flex;
  align-items: center;
}
.item-session-7 b:before {
  width: 24px;
  height: 32px;
  background: url(../../images/ic-seven-green.svg) center center no-repeat;
  background-size: 80%;
  content: "";
  margin-right: 10px;
  display: inline-block;
}

/*session-8*/
.session-8 {
  padding: 100px 0;
  background: #c9f31d;
}
.session-8 h2 {
  font-size: 50px;
  line-height: 60px;
  font-weight: 700;
  margin: 0 0 50px 0;
}
.container-depoimentos {
  overflow-x: hidden;
  width: 100%;
}
.lista-depoimentos {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 150%;
  overflow: auto;
  left: -15%;
  position: relative;
}

.item-depoimento {
  list-style: none;
  display: inline-flex;
  border-radius: 100px;
  padding: 25px 50px 25px 25px;
  width: 100%;
  margin: 1%;
  background: #e8ff8a;
}

#slider-depoimentos-1 .swiper-slide:nth-child(even) .item-depoimento {
  background: #fff;
}
#slider-depoimentos-2 .swiper-slide:nth-child(even) .item-depoimento {
  background: #e8ff8a;
}
#slider-depoimentos-2 .swiper-slide:nth-child(odd) .item-depoimento {
  background: #fff;
}

.lista-depoimentos li .lista-depoimentos li:nth-child(odd) {
  background: #e8ff8a;
}

.lista-depoimentos li:nth-child(1) {
  margin-left: 9.5%;
}
.img-depoimentos {
  display: block;
  margin: 0 10px 0 0;
  width: 106px;
  height: 106px;
  border-radius: 100%;
}
.text-depoimentos {
  display: inline-block;
  width: 90%;
}
.text-depoimentos p {
  font-size: 14px;
  line-height: 24px;
  margin: 0 0 5px 0;
}
.text-depoimentos h6 {
  font-size: 14px;
  line-height: 24px;
  margin: 0;
}

/*session-9 */
.session-9 {
  padding: 140px 0;
  background: #f3f4f5;
}

.session-9 h2 {
  font-size: 80px;
  line-height: 90px;
}

.list-numbers {
  list-style: none;
  padding: 0;
  margin: 50px 0 0 0;
  display: flex;
  justify-content: center;
}
.list-numbers li {
  width: 330px;
  height: 330px;
  display: flex;
  justify-content: center;
  position: relative;
  align-items: center;
}
.list-numbers li:after {
  width: 373px;
  height: 373px;
  border: solid 1px #707070;
  border-radius: 100%;
  position: absolute;
  content: "";
}
.list-numbers li h4 {
  font-size: 70px;
  line-height: 70px;
  font-weight: 700;
  margin-bottom: 30px;
}
.list-numbers li p {
  font-size: 16px;
  line-height: 26px;
  margin: 0;
}

/*footer*/

.session-footer {
  background: #000;
}
.foot-1 {
  padding: 100px 3%;
  background: url(../../images/bg-footer-1.png) top right no-repeat;
  background-size: contain;
  background-color: #000;
  color: #fff;
  border-bottom: solid 1px #707070;
}
.foot-1 h2 {
  font-size: 80px;
  line-height: 90px;
  font-weight: 300;
  margin: 0 0 38px 0;
}
.foot-1 h2 b {
  font-weight: 700;
}
.foot-1 p {
  font-size: 28px;
  line-height: 38px;
  font-weight: 300;
  color: #aaaaaa;
}

.foot-2 {
  padding: 100px 3%;
  background-color: #000;
  color: #fff;
  border-bottom: solid 1px #707070;
}
.foot-2 p {
  font-size: 14px;
  line-height: 26px;
  color: #aaaaaa;
}
.foot-2 .logo-fot img {
  width: 140px;
  height: auto;
}

.container-nav-footer {
  padding: 0 30px;
}
.container-nav-footer h5 {
  font-size: 18px;
  line-height: 90px;
}
.nav-footer {
  padding: 0;
  margin: 0;
  list-style: none;
}
.nav-footer li {
  display: block;
}
.nav-footer li a {
  display: block;
  color: #aaaaaa;
  font-size: 14px;
  padding: 10px 0;
  text-decoration: none;
  transition: all 0.5s;
}
.nav-footer li a:hover {
  color: #c9f31d;
  transition: all 0.5s;
}
.nav-footer li p {
  color: #aaaaaa;
  font-size: 14px;
  padding: 10px 0;
  margin: 0;
}

.foot-3 {
  padding: 24px 3%;
  background-color: #000;
  color: #fff;
  border-bottom: solid 1px #707070;
}
.foot-3 .btn-stage-big {
  text-align: left !important;
  background: none !important;
  color: #aaaaaa;
  font-size: 18px;
  font-weight: 700;
}
.btn-x {
  background-color: transparent;
  border: 1px solid white;
  color: white;
}
.foot-3 .btn-stage-big:hover {
  color: #e8ff8a;
}
.redes {
  padding: 0;
  margin: 0;
  list-style: none;
}
.redes li {
  display: inline-block;
}
.redes li a {
  display: inline-block;
  color: #aaaaaa;
  text-decoration: none;
  transition: all 0.5s;
  font-size: 18px;
  font-weight: 700;
}
.redes li a:hover {
  color: #c9f31d;
  transition: all 0.5s;
}
.redes li:nth-child(2) a {
  margin: 0 40px;
}

.copy {
  background: #000;
  padding: 30px 3% 180px 3%;
  color: #707070;
  font-size: 14px;
  line-height: 26px;
  position: relative;
  overflow: hidden;
}
.copy:after {
  content: "STAGE 4 DIGITAL";
  color: #fff;
  font-size: 137px;
  line-height: 137px;
  position: absolute;
  width: 100%;
  text-align: center;
  bottom: -30px;
  left: 0;
}

.seta-up {
  cursor: pointer;
  position: fixed;
  right: 3%;
  bottom: 5%;
  border-radius: 100%;
  background: url(../../images/ic-seta-btn.svg) center center no-repeat;
  background-size: 40%;
  background-color: #fff;
  width: 56px;
  height: 56px;
  z-index: 99;
  display: none;
  transform: rotate(-90deg);
}

/* pÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡gina sobre*/
.session-1-sobre {
  background: url(../../images/bg-open-sobre.svg) 40% 0 no-repeat;
  background-size: contain;
}
.session-1-sobre h2 {
  font-size: 53px;
  line-height: 57px;
  position: relative;
}
.session-1-sobre h2:before {
  width: 22px;
  height: 33px;
  background: url(../../images/ic-seven-green.svg) center center no-repeat;
  background-size: 80%;
  content: "";
  margin-right: 20px;
  display: inline-block;
  position: absolute;
  left: -30px;
  top: 10px;
}
.session-1-sobre .btn-stage-big {
  text-align: left !important;
  background: none !important;
  color: #aaaaaa;
  font-size: 18px;
  font-weight: 700;
  padding: 0 !important;
  position: absolute;
  right: 30%;
  transform: rotate(115deg);
}
.session-1-sobre .btn-stage-big:hover:after,
.session-1-sobre .btn-stage-big:hover:before {
  transform: rotate(0deg) !important;
}

/*sobre 2*/
.session-2-sobre {
  padding: 100px 0;
  background: #000;
  color: #fff;
}
.session-2-sobre h2 {
  display: inline-flex;
  font-size: 50px;
  line-height: 60px;
  padding: 0 0 0 40px;
  position: relative;
  font-weight: 300;
}
.session-2-sobre h2:before {
  width: 32px;
  height: 42px;
  background: url(../../images/ic-seven-green.svg) center center no-repeat;
  background-size: 80%;
  content: "";
  margin-right: 20px;
  display: inline-block;
  position: absolute;
  left: 0px;
  top: 10px;
}

/*sobre 3*/

.tarja-destaque-3 {
  overflow-x: hidden;
  width: 100%;
  position: relative;
}
.tarja-destaque-3-int {
  position: relative;
  left: -6%;
  width: 110%;
  display: flex;
  justify-content: space-between;
}
.tarja-destaque-3-int span {
  font-size: 78px;
  line-height: 168px;
  text-decoration: uppcase;
  position: relative;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
}
.tarja-destaque-3-int span:before {
  width: 32px;
  height: 42px;
  background: url(../../images/ic-seven-green.svg) center center no-repeat;
  background-size: 80%;
  content: "";
  margin-right: 20px;
  display: inline-block;
  left: 0px;
  top: 10px;
}

.tarja-destaque-3-int span {
  font-size: 78px;
  line-height: 168px;
  text-decoration: uppcase;
  position: relative;
}

.session-3-sobre {
  padding: 120px 0;
}
.session-3-sobre h2 {
  font-size: 32px;
  line-height: 44px;
  font-weight: 700;
}

/*sobre 4*/
.session-4-sobre {
  padding: 150px 0 100px 0;
  background-size: cover;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  color: #000;
}
.session-4-sobre:before {
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: #c9f31d;
  position: absolute;
  content: "";
  z-index: -1;
  opacity: 0.6;
}
.session-4-sobre h2 {
  font-size: 70px;
  line-height: 80px;
  font-weight: 700;
  color: #000;
}

.session-4-sobre .session-4-video video {
  position: absolute;
  top: 0;
  left: 0;
  height: auto;
  width: 100%;
  z-index: -2;
}

/*session-5-sobre*/
.session-5-sobre {
  padding: 200px 0 120px 0;
}
.session-5-sobre h2 {
  font-size: 80px;
  line-height: 90px;
  position: relative;
  font-weight: 300;
  z-index: 1;
}
.session-5-sobre h2 b {
  font-weight: 700;
}
.session-5-sobre h2:before {
  width: 32px;
  height: 42px;
  background: url(../../images/ic-seven-green.svg) center center no-repeat;
  background-size: 80%;
  content: "";
  margin-right: 20px;
  display: inline-block;
  left: 0px;
  top: 10px;
}
.session-5-sobre p {
  /* width: 70%; */
}
.name-1 {
  position: absolute;
  z-index: 1;
  font-size: 16px;
  top: 93px;
  left: 81px;
}

.name-2 {
  position: absolute;
  z-index: 1;
  font-size: 16px;
  top: 264px;
  right: 92px;
}

.name-1 b,
.name-2 b {
  display: block;
}

.session-1-server {
  padding: 140px 0 0 0;
  background-color: #a5a5a5;
  background-size: cover !important;
  background-repeat: no-repeat;
}
.session-1-server h2 {
  font-size: 56px;
  line-height: 66px;
  position: relative;
  font-weight: 300;
  color: #000;
  z-index: 1;
}

.session-1-server h2:before {
  width: 32px;
  height: 42px;
  background: url(../../images/ic-seven-green.svg) center center no-repeat;
  background-size: 80%;
  content: "";
  margin-right: 20px;
  display: inline-block;
  left: 0px;
  top: 10px;
  position: absolute;
  left: -35px;
}

.session-1-server p {
  margin: 40px 0;
  color: #fff;
  font-size: 18px;
  line-height: 28px;
  width: 70%;
}

/*sac*/
.session-1-sac {
  padding: 120px 0;
  min-height: 100vh;
  background: url(../../images/bg-sac.png) top left no-repeat;
  background-size: 50%;
  background-color: #aaaaaa;
}
.session-1-sac h2 {
  font-size: 60px;
  line-height: 68px;
  font-weight: 700;
  color: #fff;
}
.session-1-sac p {
  font-size: 16px;
  line-height: 26px;
  color: #fff;
  margin-top: 40px;
}
.form-stage label {
  display: block;
  margin: 0 0 10px 0;
}
.form-stage label input,
.form-stage label select,
.form-stage label textarea {
  padding: 15px;
  border-radius: 50px;
  display: block;
  width: 100%;
  outline: none;
  border: none;
}
.form-stage label textarea {
  height: 120px;
  border-radius: 32px;
}
/*sac 2*/
.session-2-sac {
  padding: 120px 0;
}
.session-2-sac h2 {
  font-size: 50px;
  line-height: 60px;
  font-weight: 700;
}
.session-2-sac p {
  color: #676767;
  font-size: 16px;
  line-height: 26px;
  margin: 25px 0 40px 0;
}
.session-2-sac .dados-sac {
  list-style: none;
  padding: 34px;
  background: #f4f4f5;
  border-radius: 24px;
  margin: 0;
  font-weight: 700;
}
.session-2-sac .dados-sac li {
  display: flex;
  padding: 5px 0;
  font-size: 16px;
  align-items: center;
}
.session-2-sac .dados-sac li span {
  font-size: 16px;
}
.session-2-sac .dados-sac li:before {
  display: inline-block;
  width: 38px;
  height: 38px;
  content: "";
  margin: 0 8px 0 0;
}
.fone-sac:before {
  background: url(../../images/ic-sac-1.svg) center center no-repeat;
  background-size: cover;
}
.whats-sac:before {
  background: url(../../images/ic-sac-2.svg) center center no-repeat;
  background-size: cover;
}
.mail-sac:before {
  background: url(../../images/ic-sac-3.svg) center center no-repeat;
  background-size: cover;
}

/*duvidas*/
.item-duvida {
  padding: 26px;
  border-radius: 20px;
  background: #dbd9d5;
  margin: 0 0 20px 0;
}
.item-duvida h6 {
  cursor: pointer;
  font-size: 20px;
  line-height: 30px;
  position: relative;
}
.item-duvida h6:after {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  position: absolute;
  background: url(../../images/ic-down.svg) center center no-repeat;
  background-size: 30%;
  background-color: #e5e5e7;
  right: -4px;
  content: "";
  top: -8px;
}

.active-item-duvida h6:after {
  background: url(../../images/ic-down-2.svg) center center no-repeat;
  background-size: 30%;
  transform: rotate(180deg);
  background-color: #9abe09;
}
.active-item-duvida {
  background: #e8ff8a;
}

.item-duvida .content-duvida {
  display: none;
}

.ic-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  background-color: #fff;
  border-radius: 100%;
  font-size: 20px;
  color: #000;
  cursor: pointer;
  transform: none;
}

.close-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  background-color: #fff;
  border-radius: 100%;
  font-size: 20px;
  color: #000;
  cursor: pointer;
  transform: none;
}

.menu-mobile {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: #000;
  padding: 50px 50px 150px 50px;
  transition: all 0.5s;
  overflow-y: auto;
}

.menu-mobile::-webkit-scrollbar {
  width: 0;
  background: #ddd;
}
.menu-mobile::-webkit-scrollbar-track {
  background: #fff;
}
.menu-mobile::-webkit-scrollbar-thumb {
  background: #ccc;
}

.nav-mobile {
  padding: 40px 0;
  margin: 0;
  list-style: none;
}
.nav-mobile li {
  display: block;
}
.nav-mobile li a {
  display: block;
  color: #fff !important;
  text-decoration: none !important;
  padding: 15px 0;
  font-size: 15px;
  font-weight: 300;
  border-top: solid 1px #707070;
}
.nav-mobile li:nth-child(1) a {
  border-top: none;
}

.nav-mobile li .nav-sub-mobile li a {
  justify-content: flex-start;
  display: flex;
  color: #888 !important;
  align-items: center;
}
.nav-mobile li .nav-sub-mobile li a img {
  width: auto;
  height: 25px;
  margin: 0 10px 0 0;
}

@media screen and (max-width: 768px) {
  .btn-head:after,
  .btn-head:before {
    display: none;
  }

  .session-open {
    text-align: center;
  }
  .session-open h2 {
    font-size: 38px;
    line-height: 50px;
  }

  .session-2 {
    padding: 80px 30px;
  }
  .session-2 .btn-b {
    left: -35px;
  }
  .session-4 {
    background: #f5f5f7;
    padding: 80px 30px;
  }
  .session-4 h2 {
    font-size: 30px;
    line-height: 44px;
  }

  .session-5 {
    padding: 80px 30px;
  }
  .session-5 h2 {
    font-size: 50px;
    line-height: 60px;
  }

  .session-5 .btn-b:after,
  .session-5 .btn-b:before {
    display: none;
  }
  .session-5 .btn-b {
    left: auto;
  }
  .session-5 .session-5-video video {
    height: 100%;
    width: auto;
  }

  .session-6 {
    padding: 100px 30px;
  }
  .session-6 h2 {
    font-size: 40px;
    line-height: 45px;
  }
  .grid-sessions-6 li {
    margin: 8px 0;
    width: 100% !important;
    display: inline-block;
    transition: all 0.5s;
    position: relative;
  }
  .grid-sessions-6 li .item-galeria {
    bottom: -120%;
  }

  .session-7 {
    padding: 50px 30px;
  }

  .session-9 {
    padding: 50px 30px;
    background: #f3f4f5;
  }
  .session-9 h2 {
    font-size: 50px;
    line-height: 60px;
  }

  .list-numbers {
    flex-wrap: wrap;
  }

  .session-1-sobre {
    background: url(../../images/bg-open-sobre.svg) center bottom no-repeat;
    background-size: 100%;
    padding: 50px 0 0;
  }

  .session-1-sobre h2 {
    font-size: 38px;
    line-height: 47px;
    position: relative;
  }
  .session-2-sobre {
    padding: 50px 30px;
  }

  .session-2-sobre h2 {
    font-size: 40px;
    line-height: 45px;
  }

  .tarja-destaque-3-int {
    left: -39%;
  }
  .tarja-destaque-3-int span {
    font-size: 27px;
    line-height: 28px;
  }

  .session-3-sobre {
    padding: 50px 30px;
  }
  .session-3-sobre img {
    width: 100% !important;
    height: auto !important;
    margin: 0 0 20px 0;
  }

  .session-4-sobre {
    padding: 80px 30px;
    text-align: center;
  }
  .session-4-sobre .session-4-video video {
    height: 100%;
    width: auto;
  }
  .session-4-sobre h2 {
    font-size: 60px;
    line-height: 60px;
    margin: 0 0 30px 0;
  }

  .session-5-sobre {
    padding: 80px 30px 0px 30px;
  }

  .session-5-sobre h2 {
    font-size: 50px;
    line-height: 60px;
    left: auto;
    top: auto;
  }
  .session-5-sobre .p-5 {
    padding: 0 !important;
  }
  .session-5-sobre p {
    width: 100%;
    font-size: 17px;
    line-height: 26px;
    margin: 30px 0 0 0;
  }
  .name-1 {
    font-size: 14px;
    top: 41px;
    left: -7px;
  }
  .name-2 {
    font-size: 14px;
    top: 80px;
    right: -7px;
  }

  .session-1-server {
    padding: 120px 30px 0 62px;
    background: url(../../images/bg-open-sobre.svg) center bottom no-repeat;
    background-size: 100%;
  }
  .session-1-server h2 {
    font-size: 46px;
    line-height: 48px;
  }
  .session-1-server p {
    color: #000;
    width: 100%;
  }

  .session-1-sac {
    padding: 80px 30px;
    background: url(../../images/bg-sac.png) top center no-repeat;
    background-size: cover;
  }
  .session-1-sac h2 {
    font-size: 40px;
    line-height: 51px;
  }

  .session-1-sac h3 {
    color: #c9f31d;
  }
  .session-1-sac button.btn-stage {
    left: auto;
    width: 100%;
    justify-content: center;
  }

  .session-2-sac {
    padding: 80px 30px;
  }
  .session-2-sac h2 {
    font-size: 40px;
    line-height: 48px;
  }

  .session-2-sac .dados-sac {
    margin: 0 0 30px 0;
  }

  .foot-1 {
    padding: 50px 30px;
    background: url(../../images/bg-footer-1.png) top right no-repeat;
    background-size: cover;
  }
  .foot-1 h2 {
    font-size: 50px;
    line-height: 60px;
  }

  .foot-2 {
    text-align: center;
  }

  .copy:after {
    font-size: 67px;
    line-height: 67px;
  }

  .container-nav-footer h5 {
    border-top: solid 0.3px #353535;
    margin-top: 40px;
  }

  .revese-row {
    flex-direction: column-reverse;
  }

  .item-depoimento {
    padding: 10px 35px 35px 35px;
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
    margin: 35px 15% 20px 15%;
    width: 70%;
  }
  .img-depoimentos {
    border: solid 2px #fff;
    position: relative;
    margin-top: -40px;
  }
  .text-depoimentos p {
    margin: 15px 0;
  }

  html {
    overflow-x: hidden;
  }
}

@media screen and (min-width: 1024px) {
}
.swiper-pagination {
  text-align: center !important;
  display: block !important;
  width: 100% !important;
}
.swiper-pagination-bullet {
  width: 12px !important;
  height: 12px !important;
  border-radius: 100px !important;
  margin: 0 5px !important;
  border: 1px solid #707070 !important;
}
.swiper-pagination-bullet-active {
  background: #c9f31d !important;
  border: 1px solid #fff !important;
}

.portfolio-modal-content {
  position: relative;
  background: #fff;
  padding: 25px;
  width: auto;
  max-width: 900px;
  margin: 20px auto;
}

.iframe-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 56.25%;
}

.iframe-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.autoplay-progress {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 10;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #9abe09;
}

.autoplay-progress svg {
  --progress: 0;
  position: absolute;
  left: 0;
  top: 0px;
  z-index: 10;
  width: 100%;
  height: 100%;
  stroke-width: 4px;
  stroke: #9abe09;
  fill: none;
  stroke-dashoffset: calc(125.6px * (1 - var(--progress)));
  stroke-dasharray: 125.6;
  transform: rotate(-90deg);
}

#banner-slider {
  width: 100%;
  height: 100vh;
}

.banner-slide-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
}

.banner-slide-background::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.banner-slide-content {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding-bottom: 80px;
}

.swiper-container {
  overflow: hidden;
}

.h-600px {
  height: 600px;
}

#slider-two {
  padding: 20px 0 20px;
}
