/**
  *     TYPOGRAPHY
  **/

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;1,600;1,700;1,800&display=swap');

* {
    font-family: 'Open Sans', sans-serif;
    color: #000000;
}

html {
    scroll-behavior: smooth;
}

html, body {
    padding: 0;
    margin: 0;
}

h1 {
    font-weight: 800;
    font-size: 40px;
    line-height: 45px;
    margin: 10px 0px;
}

h2 {
    font-weight: 800;
    font-size: 32px;
    line-height: 36px;
    margin: 10px 0px;
}

h3 {
    font-weight: 800;
    font-size: 14px;
    line-height: 17px;
    margin: 10px 0px;
}

p {
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    margin: 10px 0px;
}

p.bigger {
    font-weight: 400;
    font-size: 20px;
    line-height: 26px;
}

p.smaller {
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
}

span.label {
    font-weight: 800;
    font-size: 8px;
    line-height: 11px;
    text-transform: uppercase;
}
span.label.bigger {
    font-size: 12px;
    line-height: 22px;
    vertical-align: top;
}

div.bgblue {
    background-color: #0066CC;
}
div.bgblue * {
    color: #FFCC00;
}

div.bgyellow {
    background-color: #FFCC00;
}
div.bgyellow * {
    color: #0066CC
}

div.bggray {
    background: linear-gradient(180deg, #EFEFEF 0%, rgba(239, 239, 239, 0) 100%);
}
div.bgwhite {
    background-color: #FFFFFF;
}

a.btn {
    display: inline-block;
    width: auto;
    height: 40px;
    line-height: 40px;
    vertical-align: middle;
    text-align: center;
    text-transform: uppercase;
    padding-left: 25px;
    padding-right: 25px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 700;
    font-size: 14px;
}
a.btn.primary {
    background-color: #0066CC;
    color: #FFFFFF;
}
a.btn.secondary {
    background-color: #FFCC00;
    color: #0066CC;
}
a.btn.primary,
a.btn.secondary {
    box-shadow: 0px 0px 3px #333333;
}
a.btn.primary:hover,
a.btn.secondary:hover {
    box-shadow: 0px 0px 5px #333333;
}
a.btn.arrow {
    font-weight: 700;
    font-size: 14px;
    color: #666666;
    text-transform: none;
    background-image: url(../img/arrow-right.png);
    background-position: center right;
    background-repeat: no-repeat;
    padding-right: 50px;
}
a.btn.arrow:hover {
    padding-left: 35px;
}
.center {
    text-align: center;
}
img.full {
    width: 100%;
    max-width: 1200px;
    display: block;
    float: left;
    margin: 0;
    padding: 0;
}
div.card.bgblue * {
    color: #FFFFFF;
}

/**
  *     LAYOUT
  **/

div.hero {
    width: 40vw;
    padding-left: 10vw;
    padding-right: 50vw;
    height: 500px;
    padding-top: 300px;
    text-align: center;

    background: url(../img/img-hero.png) bottom right 10vw no-repeat, radial-gradient(58.38% 58.38% at 79.72% 59.29%, #EAE1D1 81.25%, #FFE3BA 100%) /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */;
}
div.section {
    width: 80vw;
    padding-left: 10vw;
    padding-right: 10vw;
    padding-top: 50px;
    padding-bottom: 50px;
    height: auto;
    text-align: center;
}

div.inner {
    text-align: left;
    max-width: 1200px;
    margin: 0 auto;
}
div.inner.half {
    max-width: 450px;
}

div.row {
    width: 100%;
    padding: 0;
    margin: 20px 0;
    float: left;
    display: block;
    height: auto;
    text-align: center;
}

div.card {
    width: 220px;
    display: inline-block;
    vertical-align: top;
    text-align: center;
    margin: 5px 10px;
    padding: 20px;
    border-radius: 6px;
    min-height: 200px;
    box-shadow: 0px 0px 3px #333333;
}
div.card:hover {
    box-shadow: 0px 0px 5px #333333;
}
div.card.course {
    text-align: left;
}
div.card.course .btn {
    font-size: 10px;
    line-height: 40px;
}

div.card.course.a2 .btn.secondary {
    background-color: #0066CC;
    color: #FFFFFF;
}
div.card.course.empty {
    padding-top: 0;
    padding-bottom: 0;
}
div.card.course.empty * {
    color: #666666;
}
div.card.course.empty,
div.card.course.empty:hover {
        box-shadow: none;
}

@media only screen and (max-width: 1350px) {
    div.hero {
        background: url(../img/img-hero.png) bottom center no-repeat, radial-gradient(58.38% 58.38% at 79.72% 59.29%, #EAE1D1 81.25%, #FFE3BA 100%) /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */;
        width: 80vw;
        padding-right: 10vw;
        padding-top: 100px;
        height: 850px;
    }
    div.card {
        width: 300px;
    }
}
@media only screen and (max-width: 600px) {
    div.hero {
        background: url(../img/img-hero.png) bottom center no-repeat, radial-gradient(58.38% 58.38% at 79.72% 59.29%, #EAE1D1 81.25%, #FFE3BA 100%) /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */;
    }
}

div.section.footer {
    text-align: center;
    background-color: #0066CC;
    border-bottom: 50px solid #FFCC00;
    padding-bottom: 0;
    padding-top: 0;
}
div.section.footer div {
    width: auto;
    min-width: 260px;
    display: inline-block;
    vertical-align: top;
    text-align: left;
    margin: 5px 10px;
    padding: 20px;
}
div.section.footer div * {
    color: #FFFFFF;
}




/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 34px;
    height: 20px;
  }
  
  /* Hide default HTML checkbox */
  .switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  /* The slider */
  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  .slider:before {
    position: absolute;
    content: "";
    height: 13px;
    width: 13px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  input:checked + .slider {
    background-color: #ccc;
  }
  
  input:focus + .slider {
    box-shadow: 0 0 1px #ccc;
  }
  
  input:checked + .slider:before {
    -webkit-transform: translateX(13px);
    -ms-transform: translateX(13px);
    transform: translateX(13px);
  }
  
  /* Rounded sliders */
  .slider.round {
    border-radius: 34px;
  }
  
  .slider.round:before {
    border-radius: 50%;
  }