/* You can add global styles to this file, and also import other style files */

/* Importing Bootstrap SCSS file. */
html, body {
    height: 100%;
    font-size: 15px;
    /*font-family: 'Poppins', sans-serif;*/
    padding: 0;
  margin: 0;
  overflow: hidden;
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
a, a:hover {
  text-decoration: none !important;
  color: #FFF;
}


.main-container {
    width: 100%;
    height: 110vh;
    display: flex;
    justify-content: center;
    align-content: center;
    margin-top: -60px;
}
.main-container .row {
    height: 100%;
    display: flex;
    justify-content: center;
    align-content: center;
}
.main-container .logo {
    font-size: 60px;
    line-height: 50px;
    font-weight: 500;
}
.main-container .border-line {
    position: relative;
    overflow: hidden;
}
.main-container .border-line:before {
    position: absolute;
    width: 1px;
    height: 96%;
    top: 5px;
    left: 45%;
    content: ' ';
    background: #FFF;
}
.main-container .title p:last-child {
    margin-bottom: 0;
}