.containerHome {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #333333;
  text-align: center;
  width: 100vw;
  -webkit-animation: animation-up-home 0.6s 0s forwards;
  animation: animation-up-home 0.6s 0s forwards;
  opacity: 0;
  z-index: 0;
  margin-top: var(--navbar-height);
  overflow-y: auto;
  height: 100%;
}

.containerHome__title {
  margin-bottom: 40px;
  font-size: 1.4em;
  padding: 0 20px;
  text-align: center;
  height: 60px;
}

.containerHome__title h3 {
  font-weight: normal;
  font-size: 22px;
}

.containerHome__subtitle {
  font-size: 18px;
  margin-bottom: 30px;
}

.containerHome__circles {
  width: 50px;
  height: 20px;
  margin: 20px auto 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.containerHome__circles__circle {
  height: 20px;
  width: 20px;
  background: #ed3833;
  border-radius: 50%;
  -webkit-box-shadow: 0 5px 10px rgba(237, 56, 71, 0.5);
  box-shadow: 0 5px 10px rgba(237, 56, 71, 0.5);
  margin-right: 10px;
  -webkit-animation: animation-up-home 0.5s 0.4s forwards;
  animation: animation-up-home 0.5s 0.4s forwards;
  opacity: 0;
}

.containerHome__circles__circle:before {
  content: "";
  width: 2px;
  height: 15px;
  background: #8e8e8e;
  position: absolute;
  margin-top: 24px;
  -webkit-animation: animation-up-home 0.5s 0.4s forwards;
  animation: animation-up-home 0.5s 0.4s forwards;
}

.containerHome__circles svg {
  width: 20px;
}

.containerHome__circles svg circle {
  height: 20px;
  width: 20px;
  stroke: #878787;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 6px;
  stroke-dashoffset: 1000;
  stroke-dasharray: 1000;
  -webkit-animation: animation-svg-circle 1.5s 0.5s ease-in-out forwards;
  animation: animation-svg-circle 1.5s 0.5s ease-in-out forwards;
}

.containerHome__span {
  color: #666666;
  font-size: 0.8em;
  margin-top: 10px;
  padding-bottom: 80px;
}

.containerHome__span a {
  text-decoration: underline !important;
  font-weight: bolder;
  margin-top: 20px;
}

@-webkit-keyframes animation-up-footer {
  0% {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes animation-up-footer {
  0% {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

.ContainerMenuFooter {
  height: 55px;
  padding: 10px 0 10px;
  background: #fff;
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #666666;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-box-shadow: 0 0px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0px 10px rgba(0, 0, 0, 0.1);
  font-size: 10px;
  -webkit-animation: animation-up-home 0.6s 0s forwards;
  animation: animation-up-home 0.6s 0s forwards;
  opacity: 0;
  z-index: 1000;
}

.ContainerMenuFooter a {
  color: #666666;
}

.ContainerMenuFooter svg {
  height: 20px;
  width: 20px;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 14px;
  stroke-dashoffset: 1000;
  stroke-dasharray: 1000;
  -webkit-animation: animation-svg-circle 1.5s 0.5s ease-in-out forwards;
  animation: animation-svg-circle 1.5s 0.5s ease-in-out forwards;
}

.ContainerMenuFooter__item {
  text-align: center;
  padding: 0 20px;
}

.ContainerMenuFooter__item div {
  color: #999999;
  margin-top: 3px
}

.ContainerMenuFooter__item--active div {
  color: #1F3DEB;
}

.ContainerMenuFooter__sinistro {
  padding: 0 33px;
  text-align: center;
}

.ContainerMenuFooter__sinistro img {
  width: 23px;
}

.ContainerMenuFooter__user {
  padding: 0 33px;
  text-align: center;
}

.ContainerMenuFooter__user svg {
  height: 25px;
  width: 25px;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 14px;
  fill: #ffc648;
  stroke-dashoffset: 1000;
  stroke-dasharray: 1000;
  -webkit-animation: animation-svg-circle 1.5s 0.5s ease-in-out forwards;
  animation: animation-svg-circle 1.5s 0.5s ease-in-out forwards;
}

@keyframes animation-up-home {
  0% {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

@-webkit-keyframes animation-svg-circle {
  0% {
    stroke-dashoffset: 1000;
  }
  70% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes animation-svg-circle {
  0% {
    stroke-dashoffset: 1000;
  }
  70% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

.homeButton {
  background: #1f3deb;
  box-shadow: 0 0 20px rgba(31, 61, 235, 0.5);
  padding: 20px 55px;
  border-radius: 5px;
  border: 0;
  cursor: pointer;
  font-size: 15px;
}

.homeButton:disabled {
  background: #7c7e8a;
  box-shadow: 0 0 20px rgba(100, 103, 122, 0.5);
  padding: 20px 55px;
  border-radius: 5px;
  border: 0;
  cursor: pointer;
  font-size: 15px;
}

.homeButton span {
  color: #fff;
  position: relative;
  z-index: 1;
  transition: all 1s ease;
}

.homeHeader {}

.homeHeader:after {
  content: "|";
  margin-left: 0px;
  opacity: 1;
  animation: homeHeader-animation 0.5s infinite;
  animation: homeHeader-animation-exit 1s 3s forwards;
}

@keyframes homeHeader-animation {
  0%, 100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}

@keyframes homeHeader-animation-exit {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.containerHomeCookie {
  background: #1f3deb;
  position: absolute;
  z-index: 110000;
  bottom: 0;
  left: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 20px 0;
  -webkit-animation: containerHomeCookie-in .7s .8s forwards;
  animation: containerHomeCookie-in .7s .8s forwards;
  -webkit-transform: translateY(300px);
  transform: translateY(300px);
  opacity: 0.9;
  justify-content: center;
}

.containerHomeCookie--out {
  -webkit-animation: containerHomeCookie-out 1.5s forwards;
  animation: containerHomeCookie-out 1.5s forwards;
  -webkit-transform: translateY(300px);
  transform: translateY(300px);
}

.containerHomeCookie__icon {
  padding: 0 15px;
}

.containerHomeCookie__text {
  font-size: 14px;
  color: white;
  opacity: 1;
}

.containerHomeCookie__text span span {
  color: #ffc107;
}

.containerHomeCookie__close {
  padding: 0 15px;
  cursor: pointer;
}

.containerHomeCookie__close svg path {
  color: white;
}

@-webkit-keyframes containerHomeCookie-in {
  0% {
    -webkit-transform: translateY(300px);
    transform: translateY(300px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes containerHomeCookie-in {
  0% {
    -webkit-transform: translateY(300px);
    transform: translateY(300px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes containerHomeCookie-out {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(300px);
    transform: translateY(300px);
  }
}

@keyframes containerHomeCookie-out {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(300px);
    transform: translateY(300px);
  }
}

.ContainerHome {
  display: flex;
  display: -ms-flexbox;
  /* -webkit-box-orient: vertical; */
  /* -webkit-box-direction: normal; */
  -ms-flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
  /* -webkit-box-pack: center; */
  -ms-flex-pack: center;
  /* justify-content: center; */
  /* color: #333333; */
  text-align: center;
  /* min-height: 70vh; */
  /* -webkit-animation: animation-up-home 0.6s 0s forwards; */
  /* animation: animation-up-home 0.6s 0s forwards; */
  /* opacity: 0; */
  /* z-index: 0; */
  margin-top: var(--navbar-height);
  flex-direction: column;
  /* padding-bottom: 70px; */
  overflow-y: scroll;
  height: 479px;
}
.ContainerHomeSliders{
 width: 100%;
 padding: 22px;
}
.ContainerHomeSlider{
  width: 95% !important;
  background: white;
  display:flex;
  flex-direction:column;
  margin-right: 20px;
}
.ContainerHomeDesktopSlider{
  width: 600px !important;
  background: white;
  display:flex;
  flex-direction:column;
  margin-left: 30px;
  height: 600px;
  /* padding: 40px; */
}
 .ContainerHomeSlider svg{
   position:absolute;
   width: 100%;
 }
  .ContainerHomeSlider .homeButton {
    margin-top:10px;
    border-radius:0;
    width: 100%;
    text-align: center;
    font-size: .8rem;
    border-right: 1px solid #e9ecef;
    padding-right: 0px;
    padding-left: 0;
    padding-bottom: 15px;
    padding-top: 15px;
  }
    .ContainerHomeSlider .homeButtonProposal{
       padding: 10px 12px;
       padding-top: 10px;
       padding-bottom: 10px;
       height: 60px;
       /* width: 100%; */
  }
  .ContainerHomeSlider img{width: 100%;}
  .ContainerHomeDesktopSlider .homeButton {
    margin-top:10px;
    border-radius:0;
    width: 100%;
    text-align: center;
    font-size: .8rem;
    border-right: 1px solid #e9ecef;
    padding-right: 0px;
    padding-left: 0;
    padding-bottom: 15px;
    padding-top: 15px;
  }
    .ContainerHomeDesktopSlider .homeButtonProposal{
       padding: 10px 12px;
       padding-top: 10px;
       padding-bottom: 10px;
       height: 60px;
       /* width: 100%; */
  }
  .ContainerHomeSpan{
    font-size: 0.8rem;
    color: #999;
    margin-top: -5px;
  }
  .ContainerHomeTitle{
    font-size:20px;
    padding: 20px 20px 10px;
    font-family: 'Poppins-Medium';
    text-align: center;
  }
  .ContainerPartners{
    width:100%;
    padding-top:50px;
    padding-bottom: 30px;
    margin-bottom:15px
  }
  .ContainerPartners h2{
    font-size: .9rem;
    font-family: 'Poppins-Medium';
  }
  .ContainerPartners img{
    width: 92%;
    margin-top: 15px;
  }
  .ContainerItem{
    width:90%;
    display:grid;
    margin-bottom: 20px;
  }
  .ContainerItemLeft{
    grid-template:
		"ContainerItemContentLeft"
		"ContainerItemImgLeft";
	margin-bottom:40px
  }
  .ContainerItemContentLeft{
    grid-area: ContainerItemContentLeft;
  }
  .ContainerItemImgLeft{
    grid-area: ContainerItemImgLeft;
    margin:0 auto;
  }
  .ContainerItemRight{
    grid-template:
		"ContainerItemContentRight" 
		"ContainerItemImgRight"
  }
  .ContainerItemContentRight{
    grid-area: ContainerItemContentRight;
    margin-bottom: 20;
  }
  .ContainerItemImgRight{
    grid-area: ContainerItemImgRight;
    margin: 0 auto;
    /* margin-bottom: 40px; */
  }
   .ContainerItem h2{
    font-size: 2rem;
    font-family: 'Poppins-Medium';
  }
   .ContainerItem p{
     font-size: .9rem;
    font-family: 'Poppins-Regular';
  }
    .ContainerItem img{
    width: 100%;
  }
   .ContainerItemRight {
     /* justify-content:revert; */
     /* margin-top: 20px; */
  }
  .ContainerItemContentLink{
  color: #1e3deb !important;
  font-size: .9rem;
}

.hidden-xs {
  display: none;
}

.hidden-lg {
  display: none;
}

.show-xs {
  display: block;
}

.containerItemContentLinkFade-out {
  opacity: 1;
  animation: ContainerItemContentLink-animation-exit 0.5s 0s forwards;
}

@keyframes ContainerItemContentLink-animation-exit {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.ContainerFooterMenu {
  width: 100%;
  background: #E5E5E5;
  margin-top: -1px;
}

.hidden-xs {
  display: none;
}

.hidden-lg {
  display: none;
}

.show-xs {
  display: block;
}

.ContainerFooterMenu {
  width: 100%;
  background: #E5E5E5;
  margin-top: -1px;
}

.ContainerFooterMenu ul {
  width: 100%;
  list-style: none;
  text-align: left;
  padding: 20px;
  padding-left: 40px;
  padding-bottom: 0;
}

.ContainerFooterMenu ul li {
  width: 100%;
  color: #727272;
  padding: 3px;
}

.ContainerFooterMenu ul li a {
  color: #727272;
  font-size: 0.9rem;
}

.ContainerBox {
  width: 80%;
  margin: 0 auto;
  border-bottom: 1px solid #989898;
  padding-top: 35px;
  padding-bottom: 35px;
}

.ContainerBoxs:nth-last-child {
  border-bottom: 0px solid #989898;
}

.ContainerBoxIcon img {
  width: 30px;
}

.ContainerBoxTitle {
  font-size: 1.1rem;
  font-family: 'Poppins-Medium';
  padding-top: 15px;
  margin: 0;
}

.ContainerBoxContent {
  font-size: .85rem;
  font-family: 'Poppins-Regular';
  padding-top: 1px;
}

.ContainerOtherSliders {
  width: 100%;
  margin-top: 30px;
}

.ContainerOtherSlidersContent {
  width: 100%;
  position: relative;
}

.ContainerOtherSliderItem-2 {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 40px 30px;
  justify-content: center;
}

.ContainerOtherSliderItemTitle {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: center;
  text-align: center;
  padding-bottom: 30px;
}

.ContainerOtherSliderItemTitle h2 {
  font-size: 1.4rem;
  font-family: 'Poppins-Medium';
}

.ContainerOtherSliderItemTitle svg {
  margin: 0 auto;
  width: 100px;
}

.ContainerOtherSliderItem-2 span {
  font-size: .9rem;
  text-align: center;
  font-family: 'Poppins-Regular';
}

.ContainerOtherSliderItem-2 p {
  font-size: 1rem;
  text-align: center;
  font-family: 'Poppins-Regular';
}

.ContainerOtherSliderItem-2 p b {
  font-size: 1.2rem;
  font-family: 'Poppins-Medium';
}

.ContainerOtherSliderItem-2 p span {
  font-size: 1.1rem;
  text-align: center;
  font-family: 'Poppins-Regular';
}

.ContainerOtherSliders .homeButton {
  border-radius: 0;
  padding-top: 15px;
  padding-bottom: 15px;
  margin-top: 10px;
  margin-bottom: 30px;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}

.swiperIndicate {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 20px;
  z-index: 999;
}

.swiperIndicate .swiperIndicateItem {
  width: 10px;
  height: 10px;
  border: 1px solid #1e3deb;
  border-radius: 50%;
  margin-right: 5px;
  margin-left: 5px;
}

.swiperIndicateItemAactive {
  background: #1e3deb;
}

.ContainerOtherSliderItem-1 {}

.ContainerOtherSliderItem-1 h2 {
  font-size: 1.2rem;
  font-family: 'Poppins-Medium';
  text-align: center;
}

.ContainerOtherSliderItem-1 h3 {
  font-size: 1rem;
  text-align: center;
  font-family: 'Poppins-Regular';
  text-align: center;
}

.ContainerOtherSliderItem-1 p {
  font-size: 1rem;
  text-align: center;
  font-family: 'Poppins-Regular';
  margin-top: 30px;
  margin-bottom: 40px;
}

.ContainerOtherSliderItem-1 p span {
  position: relative;
  z-index: 2;
  width: 60px;
  padding-left: 5px;
  padding-right: 5px;
}

.ContainerOtherSliderItem-1 p span:after {
  content: "";
  background-image: url(/images/home/price.png);
  background-size: 70%;
  position: absolute;
  height: 30px;
  width: 50px;
  left: 0;
  background-repeat: no-repeat;
  z-index: -1;
}

.ContainerOtherSliderItem-1 img {
  width: 90%;
  float: right
}

.ContainerOtherSliderItem-1Content {}

.ContainerSession {
  width: 100%;
  padding-bottom: 20px;
}

.ContainerSession .ContainerSessionTitle {
  font-size: 1.2rem;
  font-family: 'Poppins-Medium';
  text-align: center;
}

.ContainerSession {
  padding-bottom: 10px;
  padding-top: 10px;
}

.ContainerSession ul {
  padding: 0;
  list-style: none;
  padding-left: 15px;
}

.ContainerSession ul li a {
  color: #000 !important;
  font-size: 0.9rem;
}
.ContainerItemImgSlider{
  position:absolute;
  width:100%;

}
.ContainerItemImgSliderContent{
  padding: 14px;
  overflow:hidden;
}
.ContainerSession{
  display: grid; grid-template-columns: 50% 50%;
}
.ContainerSessionContent{
  position: relative; width: 100%; height: 100%;
}
.ContainerSessionContentText{
  padding-right: 230px;
       flex-direction: column;
        height: 600px;
        display: flex;
         align-items: flex-end; 
         justify-content: center; 
         position: absolute;width: 110%;
z-index: 9;
background: url(../../images/desktop/home/mask-home.png);
    background-size: auto;
background-size: 150%;
}
.ContainerSessionContentSwiper{
  height: 600px; padding-right: 84px
}
.ContainerSessionContentSwiper .ContainerItemImgSlider {
   height: 530px;

}