.withbg {
 /*   background: url("../assets/images/bg-web.jpg") no-repeat; */
    position: absolute; 
    height: 100%; 
    width: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index:100;
    background-position: 50% 50%; 
    -webkit-background-size: cover; 
    -moz-background-size: cover; 
    -o-background-size: cover; 
    background-size: cover;
}

.mask {
    background-color: rgba(255, 255, 255, 0.7);
}

.withbga {
/*    background-image:  url("../assets/images/bg-web.jpg");*/
    height: 100vh;
    position: relative;
    overflow: auto;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50%;
}

.mask {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-attachment: fixed;
  }


  html, body { height: 100%;}


 footer {
    position: sticky;
    top: 100vh;
    margin-bottom: 30px;
  }



@font-face {
  font-family: 'Proxima Nova Rg';
  src: url('../assets/Fonts/ProximaNova-Regular.woff2') format('woff2'),
    url('../assets/Fonts/ProximaNova-Regular.woff') format('woff'),
    url('../assets/Fonts/ProximaNova-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

body {
  background-color: #ffffff;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1000px;
}

.logo{
  width:40%;
}

.text {
  font-family: 'Proxima Nova Rg';
  text-align: justify;
  color: #202020;
}

.text p {
  font-size: 1.08em ;
  line-height: 1.3;
  margin-bottom: 1.5rem;
/*  hyphens: auto;*/
  text-justify: inter-character;
}

.link-style{
  /*color: #000000;*/
  text-decoration: none;
}

.link-text {
  font-family: 'Proxima Nova Rg';
  text-align: center;
  color: #656768;
}


a:link {
    color: black;
  }
  
  /* visited link */
  a:visited {
    color: black;
  }


@media only screen and (max-width: 765px) {
  #logo-mobile {
    width: 60%;
  }
  .text p {
    font-size: 1.0em ;
    margin-bottom: 2rem;
    word-spacing: -1px;
  }

}


/* preloading-page */

.loader{
  position: fixed;
  top: 0;
  left: 0;
  background-color: white;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-right: 10px;
  padding-left: 10px;
  z-index: 1;
}

.disppear{
    animation: vanish 2s forwards;
}

.disppearimg{
  animation: vanish 1s forwards;
}

@keyframes vanish {
  100%{
    opacity: 0;
    visibility: hidden;
  }
}
/* preloading-page */
