/* Google Fonts Import Link */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nanum+Myeongjo&display=swap');
@import url('//db.onlinewebfonts.com/c/15a478cc0eb1d84f4077a2a9d28df0b2?family=DIN+Pro+Regular');
@import url("https://fonts.google.com/specimen/GFS+Didot");
@import url("https://fonts.google.com/specimen/Overpass?query=over");


 * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

.sidebar{
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 420px;
  background:#ae9962;
  z-index: 100;
  transition: all 0.5s ease;
  transition-delay: all 0.1s;
}
.sidebar.close{
  width: 90px;
}
.sidebar .logo-details{
  margin-top: 20px;
  height: 90px;
  width: 100%;
  display: flex;
  align-items: center;
}
.sidebar .logo-details  img{
  margin-top: 10px;
  margin-left: 145px;
  font-size: 50px;
  color: #fff;
  height: 130px;
  min-width: 130px;
  transition: all 0.5s ease;
  transition-delay: all 0.1s;
  position:relative;
}


.home-conteiner.img{
  background-image: url(/images/login.png)
}

.sidebar.close img{
  margin-top: 10px;
  margin-left: 0;
  font-size: 40px;
  color: #fff;
  height: 90px;
  min-width: 90px;
  text-align: center;
  line-height: 100px;
  transition: all 0.5s ease;
}
/*.sidebar .logo-details .logo_name{
  font-size: 22px;
  color: #fff;
  font-weight: 600;
  transition: 0.3s ease;
  transition-delay: 0.1s;
}
.sidebar.close .logo-details .logo_name{
  transition-delay: 0s;
  opacity: 0;
  pointer-events: none;
}*/
.sidebar .nav-links{
  height: 100%;
  padding: 30px 0 150px 0;
  overflow: auto;
}
.sidebar.close .nav-links{
  overflow: visible;
}
.sidebar .nav-links::-webkit-scrollbar{
  display: none;
}
.sidebar .nav-links li{
  position: relative;
  list-style: none;
  transition: all 0.4s ease;
}
.sidebar .nav-links li:hover{
  background: #bdab76;
}
.sidebar .nav-links li .iocn-link{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sidebar.close .nav-links li .iocn-link{
  display: block
}
.sidebar .nav-links li i{
  height: 50px;
  min-width: 78px;
  text-align: center;
  line-height: 50px;
  color: #fff;
  font-size: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.sidebar .nav-links li.showMenu i.arrow{
  transform: rotate(-180deg);
}
.sidebar.close .nav-links i.arrow{
  display: none;
}
.sidebar .nav-links li a{
  display: flex;
  align-items: center;
  text-decoration: none;
}
.sidebar .nav-links li a .link_name{
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  transition: all 0.4s ease;
}


.sidebar.close .nav-links li a .link_name{
  opacity: 0;
  pointer-events: none;
}


.sidebar .nav-links li .sub-menu{
  padding: 6px 6px 12px 80px;
  margin-top: -10px;
  background: #ae9962;
  display: none;
}
.sidebar .nav-links li.showMenu .sub-menu{
  display: block;
}
.sidebar .nav-links li .sub-menu a{
  color: #fff;
  font-size: 12px;
  padding: 5px 0;
  white-space: nowrap;
  opacity: 0.6;
  transition: all 0.3s ease;
}

.sidebar .nav-links li .sub-menu a:hover{
  opacity: 1;
}
.sidebar.close .nav-links li .sub-menu{
  position: absolute;
  left: 100%;
  top: -10px;
  margin-top: 0;
  padding: 12px 25px;
  border-radius: 0 6px 6px 0;
  opacity: 0;
  display: block;
  pointer-events: none;
  transition: 0s;
}
.sidebar.close .nav-links li:hover .sub-menu{
  top: 0;
  opacity: 1;
  pointer-events: auto;
  transition: all 0.4s ease;
}
.sidebar .nav-links li .sub-menu .link_name{
  display: none;
}
.sidebar.close .nav-links li .sub-menu .link_name{
  font-size: 15px;
  opacity: 1;
  display: block;
}
.sidebar .nav-links li .sub-menu.blank{
  opacity: 1;
  pointer-events: auto;
  padding: 3px 20px 6px 16px;
  opacity: 0;
  pointer-events: none;
}
.sidebar .nav-links li:hover .sub-menu.blank{
  top: 50%;
  transform: translateY(-50%);
}


.sidebar .nav-links li .sub-menu-2{
  padding: 6px 6px 12px 80px;
  margin-top: -10px;
  background: #ae9962;
  display: none;
}
.sidebar .nav-links li.showMenu .sub-menu-2{
  display: block;
}
.sidebar .nav-links li .sub-menu-2 a{
  color: #fff;
  font-size: 12px;
  padding: 5px 0;
  white-space: nowrap;
  opacity: 0.6;
  transition: all 0.3s ease;
}
.sidebar .nav-links li .sub-menu-2 a:hover{
  opacity: 1;
}
.sidebar.close .nav-links li .sub-menu-2{
  position: absolute;
  left: 100%;
  top: -10px;
  margin-top: 0;
  padding: 12px 25px;
  border-radius: 0 6px 6px 0;
  opacity: 0;
  display: block;
  pointer-events: none;
  transition: 0s;
}
.sidebar.close .nav-links li:hover .sub-menu-2{
  top: 0;
  opacity: 1;
  pointer-events: auto;
  transition: all 0.4s ease;
}
.sidebar .nav-links li .sub-menu-2 .link_name{
  display: none;
}
.sidebar.close .nav-links li .sub-menu-2 .link_name{
  font-size: 15px;
  opacity: 1;
  display: block;
}
.sidebar .nav-links li .sub-menu-2.blank{
  opacity: 1;
  pointer-events: auto;
  padding: 3px 20px 6px 16px;
  opacity: 0;
  pointer-events: none;
}
.sidebar .nav-links li:hover .sub-menu-2.blank{
  top: 50%;
  transform: translateY(-50%);
}

.sidebar .profile-details{
  position: fixed;
  bottom: 0;
  width: 420px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #bdab76;
  padding: 12px 0;
  transition: all 0.5s ease;
}
.sidebar.close .profile-details{
  background: none;
}
.sidebar.close .profile-details{
  width: 90px;
}
.sidebar .profile-details .profile-content{
  display: flex;
  align-items: center;
}
.sidebar .profile-details img{
  height: 52px;
  width: 52px;
  object-fit: cover;
  border-radius: 16px;
  margin: 0 12px 0 12px;
  background: #1d1b31;
  transition: all 0.5s ease;
}
.sidebar.close .profile-details img{
  padding: 10px;
}
.sidebar .profile-details .profile_name,
.sidebar .profile-details .job{
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
  width: 52px;
}
.sidebar.close .profile-details i,
.sidebar.close .profile-details .profile_name,
.sidebar.close .profile-details .job{
  display: none;
}
.sidebar .profile-details .job{
  font-size: 12px;
}
.home-section{
  position: relative;
  background: #ffffff;
  height: 100vh;
  left: 410px;
  width: calc(100% - 410px);
  transition: all 0.5s ease;
}

.home-conteiner{
  margin: 0px;
  display:table;
  position: relative;
  background: #ffffff;
  height: 100vh;
  left: 80px;
  width: calc(100% - 80px);
  transition: all 0.5s ease;
}

.home-conteiner ul{
  background: #11101d;
  color: #fff;
}
.home-conteiner .banner img{
  -webkit-animation: slide-in-fwd-center 2.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
  animation: slide-in-fwd-center 2.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
  width: 97%;
  display:flex;
  margin-left: 2%;
  position: center;
  height: 420px;
  padding: 20px 0px 30px ;

}

.section{
  margin: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50vh;
  padding: 10px;
}

.home-conteiner h1{
  margin-top: 100px;
  margin-left:850px;
  margin-right: 300px;
  color: #BE9633;
  font-size: max(40px, 1vw);
  font-family: 'didot';
}
.home-conteiner h2{
  margin-top: 100px;
  margin-left:950px;
  margin-right: 300px;
  color: #BE9633;
  font-size: max(40px, 1vw);
}

.home-conteiner p{
  margin-top: 50px;
  margin-left:350px;
  margin-right: 300px;
  color:#11101d;
  font-size: max(25px, 1vw);
  font-family:'overpass';
  src: url("/font/Overpass/Overpass-Bold.ttf");
  text-align:center;
}

.home-conteiner hr{
  width: 100%;
  margin-top: 100px;
  border: 0;
  height: 2.5px;
  background-image: linear-gradient(to right, transparent, #BE9633, transparent);  
}

.home-conteiner .timeline img{
  margin-top: 50px;
  margin-left: 15%;
  height: 719px;
  width: 1400px;


}

.home-conteiner .fund img{
  float: right;
  text-align: right;
  margin: auto;
  width: 500px;
  height: 600px;
}

.home-conteiner .fund h1{

  margin-left: 20%;
  text-orientation: sideways;

}


.home-conteiner .fund p{
  margin-top: 30px;
  margin-left:50px;
  margin-right: 550px;
  font-family:'Inter';
  src: url("/font/Inter-Regular.ttf");
  font-size: 20px;
  line-height: 1.5;
  text-align:justify;
  text-indent: 4em;
}

.cont img{
  width: 30px;
  margin-left: 97%;
}

.home-conteiner .recuo {
  text-indent: 4em;
}


.home-conteiner .vd-inst{
  display: flex;;
  margin-top: 20px;
  border: #11101d;
  border-style: groove;
  height:400px;
  width: 700px;
}

.home-conteiner .box {
  margin-top: 50px;
  margin-left:34%;
}

.box img {
  top: 4%;
  position: relative;
  margin-left:100px;
}


.home-conteiner .mvv img{
  display:block;
  text-align: center;
  margin: auto;
  width: 80%;
  height: 100%;
}

.home-conteiner .qs img{
  margin-top: 20px;
  display:block;
  text-align: center;
  margin: auto;
  width: 80%;
  height: 100%;
}



.home-conteiner .loja img{
  float: left;
  border: transparent thin solid;
  padding: 30px;
  margin: 0px 20px 10px 0;
  max-width: 400px;
  max-height: 400px;
}

.home-conteiner .loja1 img{
  float: left;
  border: transparent thin solid;
  padding: 30px;
  margin: 0px 20px 10px 0;
  max-width: 400px;
  max-height: 400px;
}

.home-conteiner .texto h1{
  margin-left: 30%;
  margin-top: 50px;
  color:#11101d;
  font-size: max(25px, 1vw);
  font-weight:200PX;
  font-family: din pro;

}

.home-conteiner .texto p{
  margin-left: 45%;
  color:#11101d;
  font-size: max(25px, 1vw);
  font-weight: 200px;
  text-align: left;
  font-family:din pro;
}

.home-conteiner .texto1 h1{
  margin-top: 50px;
  margin-left: 30%;
  color:#11101d;
  font-size: max(25px, 1vw);
  font-weight:200PX;
  font-family: din pro;

}

.home-conteiner .texto1 p{
  margin-top: 50px;
  margin-left: 40%;
  float:unset;
  color:#11101d;
  font-size: max(25px, 1vw);
  text-align: left;
  font-family:din pro;
}


.home-conteiner .duv p{
  text-align:justify;
  color:#11101d;
  font-size: max(20px, 1vw);
  text-align: center;
  font-family:din pro;
}

.home-conteiner .pg_const img{
  margin-left: 30%;


}



.home-conteiner .duv a{
  display: inline-block;
  margin-top: 50px;
  font-size: max(20px, 1vw);
  font-family:din pro;
}

.home-conteiner .duv img{
margin-top: 100px;
height: 100px;
width: 50px;
}

.home-conteiner .title h1{
  margin-left: 27%;
  text-orientation: sideways;
  font-family:'Astralaga';
  src: url("/font/Astralaga-Light.otf");

}

.home-conteiner .title p{
  margin-left: 20%;
  font-family:'Inter';
  src: url("/font/Inter-Regular.ttf");
  font-size: 24px;
  line-height: 1.0;
  text-align:justify;
}


.home-conteiner .title_tl h1{
  margin-left: 44%;
  text-orientation: sideways;

}

.home-conteiner .title_fn h1{
  margin-left: 43%;
  text-orientation: sideways;
  font-family:'Astralaga';
  src: url("/font/Astralaga-Light.otf");

}

.home-conteiner .title_fn h2{
  margin-left: 2.5%;
  font-family:'didot';
  src: url("/font/Didot/DidotLTStd-Italic.otf");
  font-size: 40px;

}

.home-conteiner .title_vs h1{
  margin-left: 40%;
  text-orientation: sideways;

}



.sidebar.close ~ .home-section{
  left: 20px;
  width: calc(100% -50px);
}
.sidebar ~ .home-section{
  left: 20px;
  width: calc(100% -50px);
}


.home-section .home-content{
  height: 60px;
  display: flex;
  align-items: center;
}
.home-section .home-content .bx-menu,
.home-section .home-content .text{
  color: #11101d;
  font-size: 45px;
}
.home-section .home-content .bx-menu{
  margin: 0 12px;
  cursor: pointer;
}
.home-section .home-content .text{
  font-size: 26px;
  font-weight: 600;
}


@media (max-width: 400px) {
  .sidebar.close .nav-links li .sub-menu{
    display: none;
  }
  .sidebar{
    width: 78px;
  }
  .sidebar.close{
    width: 0;
  }
  .home-section{
    left: 78px;
    width: calc(100% - 78px);
    z-index: 100;
  }
  .sidebar.close ~ .home-section{
    width: 100%;
    left: 0;
  }
}



/* ----------------------------------------------
 * Generated by Animista on 2023-4-10 11:30:50
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation slide-in-fwd-center
 * ----------------------------------------
 */
 @-webkit-keyframes slide-in-fwd-center {
  0% {
    -webkit-transform: translateZ(-1400px);
            transform: translateZ(-1400px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes slide-in-fwd-center {
  0% {
    -webkit-transform: translateZ(-1400px);
            transform: translateZ(-1400px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
    opacity: 1;
  }
}

