:root {    
    --primary: #041230;
    --secondary: #2da638;
}

body{
    padding: 0;
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    background: url(./logo-shape.svg);
    background-repeat: no-repeat;
    background-size: auto;
    background-position: center center;
    position: relative;
    &:after{
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        content:'';
        background: rgba(255,255,255,0.92);
    }
}
.wrapper{
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 30px;
    position: relative;
    z-index: 1;
}
h1,h2,h3,h4,h5,h6{
    font-family: "Libre Baskerville", serif;
    font-weight: 700;
    font-style: normal;
    color: var(--primary);
}
.heading{
    font-family: "Libre Baskerville", serif;
    font-weight: 700;
    font-style: normal;
}
.bigTxt{
    font-size: 20px;
}
.btn{
    border-radius: 50px;
    padding: 8px 30px;
}
.btn-primary{
    background-color: var(--primary);
    border-color: var(--primary);
}
.logo-sm{
    position: absolute;
    left: 20px;
    top: 20px;
    width: 100px;
}
.logo-sm img,.logo-sm svg{
    width: 100px;
    height: auto;
}
.form-group label{
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}
.question{
    color:var(--secondary);
    font-size: 24px;
}
.qH span{
    display: none;
}
.form-group{
    margin-bottom: 25px;
}
.form-group:last-child(){
    margin-bottom: 0px;
}
.form-control{
    border:0px;
    border-bottom: 2px solid var(--secondary);
    color: var(--secondary);
    border-radius: 0px;
    padding: 5px 0 15px;
    background-color: transparent;
}
.form-control:focus{
    outline: none;
    box-shadow: none;
}
.arrowBox{
    position: absolute;
    right: 20px;
    bottom:20px;
}
.arrowBox ul{
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
}
.arrowBox ul li{
    margin-left: 2px;
}
.arrowBox ul li:nth-child(odd) a{
    width: 50px;
    display: inline-block;
    text-align: center;
    padding: 10px;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    color: #ffffff;
    background-color: var(--primary);
}
.arrowBox ul li:nth-child(even) a{
    width: 50px;
    display: inline-block;
    text-align: center;
    padding: 10px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    color: #ffffff;
    background-color: var(--primary);
}
.arrowBox ul li a.disabled{
    opacity: 0.5;
    pointer-events: none;
}
ul.radio{
    margin: 0;
    padding: 0;
}
ul.radio li{
    color: var(--primary);
    display: block;
    position: relative;
    float: left;
    width: 100%;
    border-bottom: 1px solid #333;
  }
  
  ul.radio li input[type=radio]{
    position: absolute;
    visibility: hidden;
  }
  
  ul.radio li label{
    display: block;
    position: relative;
    font-weight: 600;
    font-size: 1.35em;
    padding: 0px 0px 0px 60px;
    margin: 20px auto;
    z-index: 9;
    cursor: pointer;
    -webkit-transition: all 0.25s linear;
  }
  
  ul.radio li:hover label{
      color: var(--primary);
  }
  
  ul.radio li .check{
    display: block;
    position: absolute;
    border: 5px solid var(--primary);
    border-radius: 100%;
    height: 36px;
    width: 36px;
    top: 18px;
    left: 5px;
      z-index: 5;
      transition: border .25s linear;
      -webkit-transition: border .25s linear;
  }
  
  ul.radio li:hover .check {
    border: 5px solid var(--secondary);
  }
  
  ul.radio li .check::before {
    display: block;
    position: absolute;
    content: '';
    border-radius: 100%;
    height: 15px;
    width: 15px;
    top: 5px;
      left: 5px;
    margin: auto;
      transition: background 0.25s linear;
      -webkit-transition: background 0.25s linear;
  }
  
  input[type=radio]:checked ~ .check {
    border: 5px solid var(--secondary);
  }
  
  input[type=radio]:checked ~ .check::before{
    background: var(--secondary);
  }
  
  input[type=radio]:checked ~ label{
    color: var(--secondary);
  }

  .custom-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    height: 57px;
    padding: 10px 38px 10px 16px;
    background: #fff url("select-arrows.svg") no-repeat right 16px center;
    background-size: 10px;
    transition: border-color .1s ease-in-out,box-shadow .1s ease-in-out;
    border: 1px solid #ddd;
    border-radius: 3px;
}
.custom-select:hover {
    border: 1px solid #999;
}
.custom-select:focus {
    border: 1px solid #999;
    box-shadow: 0 3px 5px 0 rgba(0,0,0,.2);
    outline: none;
}
/* remove default arrow in IE */
select::-ms-expand {
    display:none;
}