@font-face {
    font-family: "FillGothicRegular";
    src: url('../fonts/Pill_Gothic_600mg_Regular.ttf') format("TrueType");
  }

  @font-face {
    font-family: "FillGothicBold";
    src: url('../fonts/Pill\ Gothic\ 600mg\ Bold.ttf') format("TrueType");
  }

  @font-face {
    font-family: "FillGothicLight";
    src: url('../fonts/Pill\ Gothic\ 600mg\ Thin.ttf') format("TrueType");
  }

  @font-face {
    font-family: "FillGothicBoldObq";
    src: url('../fonts/Pill_Gothic_600mg_Bold_Obq.ttf') format("TrueType");
  }


  *{
    box-sizing: border-box;
    outline: none;
  }
body{
    margin: 0;
    position: relative;
    font-family: 'Open Sans', sans-serif;
}

h4{
    margin: 16px 0;
    font-size: 18px;
}

a{
    text-decoration: none;
}

img {
	max-width: 100%
}

.button{
    display: inline-block;
    background: linear-gradient(to right, #5A09FA, #9829EA);
    margin-top: 12px;
    padding: 26px 25px 26px;
    border-radius: 5px;
    border: 0;
    transition: all .2s ease;
    color: white;
    font-family: 'Open Sans', sans-serif;
    line-height: 1;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    font-size: 28px;
}

.h2{
    margin: 0;
    margin-bottom: 50px;
    text-align: center;
    font-size: 64px;
    font-weight: 600;
    line-height: 1;
}

.text{
    font-size: 32px;
    line-height: 64px;
}

.text-bold {
    font-weight: 700;
}

.yellow-text{
    font-size: 54px;
    color: #ffd100;
    font-weight: 600;
    line-height: 1.1;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 3;
}

.white-text{
    font-size: 64px;
    color: white;
    font-weight: 300;
}

.page{
    background: white;
}

.overlay{
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255, .9);
    top: 0;
    z-index: 1000000;
    opacity: 1;
    transition: all 0.5s ease-out;
}

.loading-wrap{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 100vh;
}

.loading {
    position: absolute;
    top: 35%;
}

.modal-wrapper {
    position: fixed;
    width: 100%;
    height: 80px;
    background: black;
    padding: 20px;
    color: white;
    text-align: center;
    font-size: 14px;
    font-weight: 300;
    bottom: -80px;
    transition: all .3s ease-in-out;
}

.modal-text{
    margin-bottom: 15px;
}

.modal-button{
    margin: 0 5px;
    text-decoration: underline;
    cursor: pointer;
}