/*
Theme Name: Charlie - Nova Septem
Author: het Nova Septem team
Author URI: https://novaseptem.nl/
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: charliens
*/

h1{
    font-size: 80px;
    line-height: 86px;
    font-weight: 100;
}

h2{
    font-size: 70px;
    line-height: 78px;
    font-weight: 100;
}

h3{
    font-size: 28px;
    line-height: 30px;
    font-weight: 100;
}

body a.button, body input.button, body .container a.button, body .container input.button{
    padding: 10px 15px;
    background: #FFDA34;
    color: #272727;
    display: inline-flex;
    align-items: center;
    font-weight: 400;
    font-size: 18px;
    line-height: 25px;
    border-radius: 100px;
    text-transform: uppercase;
    box-sizing: border-box;
}

a.button i{
    margin-left: 5px;
    font-size: 12px;
    margin-top: 2px;
}

a.button img{
    width: 10px;
    height: auto;
}

body{
    background: #F8F7F4;
    
}

textarea{
    font-weight: normal;
}

html{
    overflow-x: hidden;
}

@media only screen and (max-width: 1000px) {
    h1{
        font-size: 40px;
        line-height: 50px;
    }
    
    h2{
        font-size: 30px;
        line-height: 40px;
    }

}

@media only screen and (max-width: 600px) {
    .glowwrapper1{
        width: 300px;
    }
}


.select-parent,
.select-parent * {
  margin: 0;
  padding: 0;
  position: relative;
  box-sizing: border-box;
}
.select-parent {
  position: relative;
  border: 1px solid #C7C7C7;
  border-radius: 3px;
  width: 200px;
  cursor: pointer;
}
.select-parent select {
  font-size: 1rem;
  font-weight: normal;
  max-width: 100%;
  
  padding: 8px 24px 8px 10px;
  border: none;
  background-color: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
  appearance: none;
  width: 100%;
  cursor: pointer;
}
.select-parent select:active, .select-parent select:focus {
  outline: none;
  box-shadow: none;
}
.select-parent:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 8px;
  width: 0;
  height: 0;
  margin-top: -2px;
  border-top: 5px solid black;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
}