html {
    scroll-behavior: smooth;
  }

.align-items-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
}

.d-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
}

h2.header-title.font-weight-bold {
    font-size: 60px;
}

h1.header-text {
    font-size: 22px;
    line-height: 32px;
}

.icon-bg {
    background-image: url(../images/icon-bg.svg);
    background-repeat: no-repeat;
    background-position: inherit;
    background-size: 500px;
    
}

.btn-ownerrisk {
    background-color: #fcb042;
    border: 1px solid #da922b;
    color: #fff;
}

.btn-outline-ownerrisk {
    background-color: transparent;
    border: 1px solid #da922b;
    color: #fff;
}








.jumbotron-content {
    position: relative; 
    top: 35%;
}


a.nav-link.border.border-yellow.rounded.waves-effect.mr-2 {
    border: 1px solid #fcb042 !important;
    background: #fcb042;
    color: white;
    margin-left: 5px;
}

ul.dropdown-menu.show {
    min-width: 200px;
}

/* 
  ##Device = Desktops
  ##Screen = 1281px to higher resolution desktops
*/

@media (min-width: 1281px) {
  
    
    
  }
  
  /* 
    ##Device = Laptops, Desktops
    ##Screen = B/w 1025px to 1280px
  */
  
  @media (min-width: 1025px) and (max-width: 1280px) {
    
    
    
  }
  
  /* 
    ##Device = Tablets, Ipads (portrait)
    ##Screen = B/w 768px to 1024px
  */
  
  @media (min-width: 768px) and (max-width: 1024px) {
    
    .jumbotron-content {
        position: relative; 
        top: 20%;
    }
    
  }
  
  /* 
    ##Device = Tablets, Ipads (landscape)
    ##Screen = B/w 768px to 1024px
  */
  
  @media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    
    
    
  }
  
  /* 
    ##Device = Low Resolution Tablets, Mobiles (Landscape)
    ##Screen = B/w 481px to 767px
  */
  
  @media (min-width: 481px) and (max-width: 767px) {
    
    h2.header-title.font-weight-bold {
        font-size: 2.5rem;
    }
    .jumbotron-content {
        position: relative; 
        top: 12%;
    }
    
  }
  
  /* 
    ##Device = Most of the Smartphones Mobiles (Portrait)
    ##Screen = B/w 320px to 479px
  */
  
  @media (min-width: 320px) and (max-width: 480px) {
    
    h2.header-title.font-weight-bold {
        font-size: 2.5rem;
    }

    .jumbotron-content {
        position: relative; 
        top: 12%;
    }
    
  }
  