html {
  
    max-width: 100%;
  }
  
  html, body {
    max-width: 100%;
    font-family: montserrat, sans-serif;
    overflow-x: hidden;
  }
  .center {
    position: relative;
    top: 15%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .normal{
    font-weight: 400;
    font-style: normal;
    font-size: 0.8em;
  }
  p{
    font-weight: 400;
    font-style: normal;
  }
  .d{
    color: #4B4B4B;
    text-decoration: none !important;
  }
  .d:hover {
    color: grey
  }
  nav {
    font-weight: 500;
    font-style: normal;
    margin-left: 110px;
  }
  h1 {
    font-weight: 700;
    font-style: normal;
    font-size: 4em;
  }
  h2,h5, .text, .card-body, #typewriter{
    font-weight: 500;
    font-style: normal;
  }
  .b {
    color: dodgerblue;
    text-decoration: none !important;
  }
 
  .cool-link::after{
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background: rgb(122, 146, 255);
    transition: width .3s;
   }
   .cool-link:hover::after{
    width: 100%;
    transition: width .3s;
   }
  
   
  
  /* LANDING PAGE */
  #landing-page{
    height: 100%;
  }
  .landing-background {
    background-image: linear-gradient(to right top, #7b61ff, #3286ff, #00a3ff, #00baff, #43cdff, #54d9fd, #6ae4fa, #82eef8, #83f4ed, #8ef9df, #a1fdce, #baffbc);
  }
  .landing {
    padding: 1em;
  }
  .welcome {
    text-align: left;
    padding: 50px;
  }
  
  
  /* NEWS */
  #news {
    padding-top: 100px;
    padding-bottom: 20px;
    height: 100%;
    
  }
  .content-news{
    padding: 20px;
  }
  .logo-wa{
    bottom: 0;
    margin-bottom: 50px;
left: calc(90% - 40px);
z-index: 10;
  position: fixed;
}
  .news-card{
    border:none;
    -webkit-box-shadow: 0px 3px 10px -2px rgba(0,0,0,0.3);
    -moz-box-shadow: 0px 3px 10px -2px rgba(0,0,0,0.3);
    box-shadow: 0px 3px 10px -2px rgba(0,0,0,0.3);
    border-radius: 50px;
  
  }
  .card-img-top {
    width: 100%;
    border-radius: 50px 50px 0 0;
    height: 400px;
    object-fit: cover;
  }
  .carousel-control-next,
.carousel-control-prev {
    filter: invert(100%);
}
.carousel-inner{
  overflow-y: scroll;
}
  
  .wrap {
    position: relative;
    width: 100%;
  }
  .grow { transition: all .2s ease-in-out; }
  .grow:hover { transform: scale(1.05); }
  .image {
    display: block;
    width: 100%;
    border-radius: 50px;
    height: 400px;
    object-fit: contain;
  }
  .list-group{
    border-radius: 20px;
    
  }
  .overlay {
    position: absolute;
    border-radius: 50px;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: .5s ease;
    background-color: rgb(255, 255, 255);
  }
  
  .wrap:hover .overlay {
    opacity: 1;
  }
  
  .text {
    color: black;
    font-size: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
  }
  #services, #part-projects, #qualifications{
    height: 100%;
  }
  /** Contact **/
  .contact-card{
    padding: 14px;
  }
  
  /** Footer */
  .partner-footer{
    display: flex;
    justify-content: center;
  }
  .navbar-toggler{
    border: none;
  }
  .navbar-toggler:focus{
    outline: 0 !important;
  }
  
  /*MEDIA */
  @media (max-width: 768px) {
    h2{
      font-size: 1.3em;
    }
    h1{
      font-size: 2.3em;
    }
    #image{
      width: 100%;
    }
    nav {
      margin-left: 0;
    }
  }
