:root {
    --c-primary: #ff5b50;
}
body{
    background-color: #141420;
}
.form-control[required]{
    background-image: url("../img/icon-required.svg");
    background-size: 9px 9px;
    background-repeat: no-repeat;
    background-position: calc(100% - 10px) center;
    padding-right: 24px;
}
.btn-register-modal{
    font-family: var(--font-oswald);
    font-size: 20px;
    font-weight: 500;
    color: #0d2828;
    border-radius: 50px;
    background: #76EFCB url("../img/bg_btn.png");
    background-repeat: no-repeat;
    background-position: calc(66%) calc(39%);
    background-size: auto;
    padding: 20px 30px;
    border: 0;
    position: relative;
    min-height: 70px;
}
.btn-register-modal:hover, .btn-register-modal:focus{
    background-position: left center;
    color: #0d2828;
    background-size: 800px 300px;
}
.btn-join-webinar{
    font-family: var(--font-oswald);
    font-size: 20px;
    font-weight: 500;
    color: #225709;
    border-radius: 50px;
    background-image: -moz-linear-gradient( -2deg, rgb(242,240,71) 0%, rgb(30,217,79) 100%);
    background-image: -webkit-linear-gradient( -2deg, rgb(242,240,71) 0%, rgb(30,217,79) 100%);
    background-image: -ms-linear-gradient( -2deg, rgb(242,240,71) 0%, rgb(30,217,79) 100%);
    background-size: 1000px 1000px;
    background-position: center center;
    padding: 20px 30px;
    border: 0;
}
.btn-join-webinar:hover, .btn-join-webinar:focus{
    color: #225709;
    background-size: 600px 600px;
    background-image: -moz-linear-gradient( -2deg, rgb(242,240,71) 0%, rgb(145 217 30) 100%);
    background-image: -webkit-linear-gradient( -2deg, rgb(242,240,71) 0%, rgb(145 217 30) 100%);
    background-image: -ms-linear-gradient( -2deg, rgb(242,240,71) 0%, rgb(145 217 30) 100%);
}
.about-section {
    background-image: url("../img/index/bg-about.jpg");
    background-repeat: no-repeat;
    background-position-y: 0px;
    background-position-x: 89%;
    background-size: cover;
    background-color: #121421;
}
@media (min-width: 768px){
    .about-section.lazyloaded {
        background-position-x: 40%;
    }
}
.about-section .container {
    padding-top: 120px;
    padding-bottom: 100px;
}
.about-section h1 {
    font-family: var(--font-oswald);
    font-size: 40px;
    color: #ffcb50;
    word-spacing: 5px;
    line-height: 1.5;
    margin-bottom: 30px;
}
.about-section p {
    font-family: var(--font-raleway);
    font-size: 20px;
    font-weight: 300;
    line-height: 1.6;
    color: #bbbbd5;
}