
html{
    overflow-x: hidden;
}

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  src: url('/fonts/montserrat-v26-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

body {
  font-family: 'Montserrat', sans-serif;
    background-image: url("/images/client_pongs/bg-img.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position-y: -130px;
  }

  .portal-navbar {
      width: 100%;
    display: flex;
    justify-content: space-between;
    background: white;
    border: 0;
    box-shadow: 0px 2px 16px rgb(0 0 0 / 6%);
    position: sticky;
    top: 0;
    z-index: 9;
    margin-bottom: 0;
    /* margin: 0 -28px; */
  }
  h1 {
    font-size: 24px;
    font-weight: 600;
    color: #337ab7;
  }
  .portal-navbar .navbar-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  .custom-container{
      height: calc(100vh - 147px);
  }
  div.brand {
 
  }
  .row.blue{
      display: none;
  }
  .navbar-nav > li > a {
    margin-right: 15px;
    padding-top: 5px;
    padding-bottom: 5px;
  }
  .portal-navbar .brand img{
    width: 100%;
  }
  .footer {
    background: #125fa4;
    padding: 20px 0;
    color: white;
    font-size: 16px;
    margin-top: 9px;
    /* position: fixed;
    bottom: 0;
    width: 100%; */
  }

  .footer a {
    color: white;
  }
  .card {
    width: 30%;
    display: inline-block;
    padding: 35px 25px;
    box-shadow: 0px 2px 16px rgb(0 0 0 / 6%);
    border-radius: 10px;
    margin-left: 120px;
    margin-top: 50px;
    background: #fff;
}
.custom-container .form-horizontal .form-group{
    margin: 0 0 15px;
}
#cookie-popup{
    top: unset !important;
    bottom: 0px !important;
}

@media screen and (max-width: 768px) {
    body{
        background-position-y: 0;
    }
    .navbar-right-inner {
      display: none;
    }
    .navbar-toggle {
      background: transparent;
      border: 0;
    }
    .navbar-toggle .icon-bar {
      /* color: white; */
      height: 4px;
      border-radius: 17px;
    }
    .custom-container{
        text-align: center;
    }
    .card{
        width: 90%;
        margin: 90px auto 0;
    }
  }
