/*------------------ FONTS -----------------------*/

@font-face {
  font-family: 'QLS-font';
  font-style: normal;
  font-weight: 400;
  src: local('Cabin'), local('Cabin-Regular'), url(https://fonts.gstatic.com/s/cabin/v12/4VMQLG5UaE3m5rr_emmAqaCWcynf_cDxXwCLxiixG1c.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
}

/*@font-face {
  font-family: 'Cabin';
  font-style: normal;
  font-weight: 700;
  src: local('Cabin Bold'), local('Cabin-Bold'), url(https://fonts.gstatic.com/s/cabin/v12/82B-3YlzWJm8zbCrVEmc_nYhjbSpvc47ee6xR_80Hnw.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
}*/


/* acutally medium */
@font-face {
  font-family: 'QLS-font';
  font-style: normal;
  font-weight: 700;
  src: local('Cabin SemiBold'), local('Cabin-SemiBold'), url(https://fonts.gstatic.com/s/cabin/v12/pOvYyCQeTTtw6RxdlpulSnYhjbSpvc47ee6xR_80Hnw.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
}

/*
------------------------------------------
      
              COMMON STYLING

Please be extra careful while editing them

------------------------------------------
*/

*{
  padding: 0px;
  margin: 0px;
}


body{
  font-family: "QLS-font","Proxima Nova","Helvetica Neue","Ubuntu",Sans-Serif;
  font-size: 16px;
  font-weight: 400;
  color: #333;
}

a{
  text-decoration: none;
}

a:hover{
  text-decoration: underline;
}

p{
  font-size: 16px;
  color: #333;
  line-height: 24px;
  text-decoration: none;
}

h1{
  font-size: 28px;
  font-weight: 700;
  color: #333;
  line-height: 36px;
  padding-bottom: 8px;
}

h2{
  font-size: 24px;
  font-weight: 700;
  color: #333;
  line-height: 32px;
  padding-bottom: 8px;
}

h3{
  font-size: 20px;
  font-weight: 700;
  color: #333;
  line-height: 32px;
  padding-bottom: 8px;
}

h4{
  font-size: 18px;
  font-weight: 700;
  color: #333;
  line-height: 24px;
  padding-bottom: 8px;
}

h5{
  font-size: 16px;
  font-weight: 700;
  color: #333;
  line-height: 24px;
  padding-bottom: 8px;
}

h6{
  font-size: 14px;
  font-weight: 400;
  color: #666;
  letter-spacing: 1px;
  line-height: 20px;
  padding-bottom: 8px;
}

p{
  padding-bottom: 8px;
}

.tiny-p{
  font-size: 14px;
  color: #666;
}

.dark h1, .dark h2, .dark h3, .dark h4, .dark h5{
  color: rgba(255,255,255,0.95);
}

.dark h6, .dark p{
  color: rgba(255,255,255,0.8);
}

.dark .tiny-p{
  color: rgba(255,255,255,0.6); 
}

.dark a{
  color: rgba(255,255,255,0.8);
}

.separator{
  background: #670BB9;
  width: 32px;
  height: 4px;
  margin-top: 24px;
  margin-bottom:24px;
}

.white{
  color: #FFFFFF;
}

.semi-white{
  color: rgba(255,255,255,0.8);
}

.card{
  background: #FFFFFF;
  box-shadow: 0px 0px 2px 0px rgba(0,0,0,0.06), 0px 1px 1px 0px rgba(0,0,0,0.14);
  border-radius: 10px;
}

.subtext {
  font-size: 12px;
  color: #999;
  line-height: 16px;
}

.hidden{
  display: none !important;
}

.clearfix{
  clear: both;
}

.center{
  margin: 0 auto;
  text-align: center; 
}

.desktop-only{
  display: unset;
}

.mobile-only{
  display: none;
}

.decorativeline{
}

.section{
  width: 100%;
}

.container{
  margin: 0 auto;
  width: 1024px;
  padding: 72px 0px;
}

.container > p{
  padding: 0px 200px;
}

.primary-button-pink, .primary-button-blue, .secondary-button-blue, .secondary-button-pink{
  box-sizing: border-box;
  height: 48px;
  font-weight: 700;
  border-radius: 10px;
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 20px;
  padding: 12px 24px;
  text-transform: uppercase;
  display: inline-block;
  transition: all 0.2s;
  box-shadow: 0px 1px 2px rgba(0,0,0,0.15);
}

.primary-button-pink{
  background-image: linear-gradient(90deg, #E50757 0%, #CC05B9 100%);
  color: #fff;
  line-height: 24px;
}

.secondary-button-pink{
  border: 2px solid #E50757;
  color: #E50757;
  background-color: #fff;
  margin-top: 1px;
}

.primary-button-blue{
  background-image: linear-gradient(90deg, #3023AE 0%, #7243BF 100%);
  color: #fff;
  line-height: 24px;
}

.secondary-button-blue{
  border: 2px solid #670BB9;
  color: #670BB9;
  background-color: #fff;
}

.primary-button-pink:hover, .primary-button-blue:hover, .secondary-button-blue:hover, .secondary-button-pink:hover{
  transform: translateY(-2px);
  box-shadow: 0px 4px 8px rgba(0,0,0,0.15);
  transition: all 0.1s;
  cursor: pointer;
}

.primary-button-pink:active, .primary-button-blue:active, .secondary-button-blue:active, .secondary-button-pink:active{
  transform: translateY(0px);
  box-shadow: 0px 4px 8px rgba(0,0,0,0);
  transition: all 0.1s;
}

.two-buttons{
  margin-right: 8px;
  margin-bottom: 8px;
}

#nav-mobile{
  display: none;
}

#mobile-header{
  display: none;
}

/*
.primary-button-pink:hover{
  background-image: linear-gradient(90deg, #E50757 99%, #CC05B9 100%);
  color: #fff;
}

.secondary-button-pink:hover{
  color: #fff;
  background-color: #E50757;
}

.secondary-button-blue:hover{
  color: #fff;
  background-color: #670BB9;
}*/

/*------------------ HEADER -----------------------*/
#navbar{
  height: auto;
  position: fixed;
  top: 0px;
  z-index: 5;
  background-color: white;
  box-shadow: 0 2px 4px 0 rgba(0,0,0,0.08);
}

#navbar a{
  color: #333;
  transition: all 0.2s;
}

#navbar a:hover{
  /*text-decoration: none;*/
  color: #670BB9;
}

#navbar .register-button{
  height: 40px;
}

#navbarcontainer{
  padding: 16px 0px 0px;
}

.nav-right{
  display: inline-block;
  float: right;
  margin-top: 2px;
}

#navbar .logo{
  display: inline-block;
}

#navbar .logo img{
  height: 45px;
}

#navbar .nav-item-icon{
  margin-right: 32px;
}

#navbar img.nav-item-image{
  margin-bottom: -4px;
  margin-right: 8px;
}

#navbar .register-button{
  display: inline-block;
}

.nav-line1{
  height: 45px;
  margin-bottom: 16px;
}

.nav-line2{
  padding: 12px 12px;
  border-top: 1px solid #DFE5EA;
}

.nav-line2 table{
  width: 100%;
  table-layout: fixed;
  text-align: center;
  font-size: 14px;
}

#navbar .register-button{
  padding:8px 16px;
}



/*-------------- Footer -----------------*/
footer{
  background-color: #180E21;
}

.footer-left{
  display: inline-block;
  vertical-align: top;
  width: 360px;
  margin-right: 160px;
}

footer .tiny-p{
  margin-top: 16px;
}

.footer-label{
  margin-top: 16px;
}

.footer-right{
  display: inline-block;
  vertical-align: top;
}

.footer-links{
  border-bottom: 1px solid rgba(255,255,255,0.4);
  margin-bottom: 16px;
}

.footer-column{
  display: inline-block;
  vertical-align: top;
  width: 160px;
  padding-bottom: 16px;
}

.footer-column:last-child{
  width: 100px;
}

.footer-column a{
  display: block;
  margin-bottom: 12px;
}

.footer-social-links{
  margin-bottom: 16px;
}

.footer-social-links a{
  margin-right: 32px;
}

.dark input[type="text"]{
  background: #FFFFFF;
  border-radius: 10px 0px 0px 10px;
  height: 48px;
  width: 200px;
  border: none;
  font-size: 16px;
  font-family: "QLS-font","Proxima Nova","Helvetica Neue","Ubuntu",Sans-Serif;
  padding-left: 12px;
  margin-right: -4px;
  vertical-align: top;
}

.dark input[type="submit"]{
  background-image: linear-gradient(90deg, #3023AE 0%, #7243BF 100%);
  border-radius: 0px 10px 10px 0px;
  height: 48px;
  border: none;
  font-family: "QLS-font","Proxima Nova","Helvetica Neue","Ubuntu",Sans-Serif;
  vertical-align: top;
}


/*--------------- Media Queries -----------------*/

@media all and (max-width: 1023px){
  .desktop-only{
    display: none;
  }

  .mobile-only{
    display: unset;
  }

  .section{
    width: 100%;
  }

  .container{
    width: 90%;
    margin-right:auto;
    margin-left: auto;
    box-sizing: border-box;
  }

  #nav-mobile{
    display: none;
    position: fixed;
    z-index: 10;
    height: 100%;
    width: 100%;
    background-color: rgba(0,0,0,0.0);
    transition: all 0.3s;
    top: 0px;
  }

  #nav-mobile .nav-mobile-container{
    position: absolute;
    min-height: 100%;
    width: 240px;
    right:-260px;
    box-sizing: border-box;
    transition: all 0.3s;
    background: #FFF;
    box-shadow: 0 2px 24px 0 rgba(0,0,0,0.20);
  }

  #nav-mobile-header{
    background-color: #f6f7f8;
    border-bottom: solid 1px #eaebec;
  }

  #nav-mobile-header #close-icon{
    float: right;
    padding: 20px;
  }

  #nav-mobile-header div{
    display: inline-block;
    padding:20px 16px;
  }

  #nav-mobile #menu-title{
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
  }

  #nav-mobile #nav-mobile-list{
    height: calc(100vh - 60px);
    overflow-y: scroll;
    width: 100%;
  }
  #nav-mobile #nav-mobile-list a{
    color:#670BB9;
  }

  #nav-mobile #nav-mobile-list .nav-mobile-item{
    padding: 16px;
    border-bottom: solid 1px #eaebec;
  }

  #navbar{
    display: none;
  }

  #mobile-header{
    z-index: 5;
    display: block;
    padding: 3%;
    border-bottom: solid 1px #eee;
    position: fixed;
    background: white;
    width: 100%;
    box-sizing: border-box;
    top: 0px;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,0.08);
  }

  #mobile-header .mobile-launch-nav{
    float: right;
    padding: 8px 8px 4px 8px;
    border: solid 2px #670BB9;
    border-radius: 10px;
    margin: 4px;
  }

  #mobile-header .mobile-launch-nav:active{
    background-color: #ebd5ff;
  }

  .mobile-logo{
    display: inline-block;
  }


  
  footer .tiny-p{
    width: auto;
  }

  .footer-right{
    margin-top: 24px;
  }

  footer.dark input[type="text"]{
    width:160px;
  }
}

/*---PageBase Specific -------*/
.page-formtitle{
     color: blue;
     text-align: center;
     margin-bottom: 6px;

}

body input{
    font-family: "Proxima Nova","Helvetica Neue","Ubuntu",Sans-Serif;
}