@font-face{
    font-family: 'buran';
    src: url('buran.eot');
    src: url('buran.eot?iefix') format('eot'),
    url('buran.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body{
    background:#fbfcfc;
    font-family: 'Roboto', sans-serif;
    line-height: 30px;
}
h1, h2, .h1, .h2{
    font-family: 'buran';
}

p{
    margin-bottom: 0px;
}

.table td{
    padding-left:0;
}

.navbar .nav-link{
    color:#fff;
    font-weight: bold;
}
.navbar-nav{
    transition: all .3s;
}
.sticky-top{
    background: rgba(255, 255, 255, 0.87);
    border-radius: 20px;
    padding: 0 20px;
}

.sticky-top .nav-link{
    color:#262626;
}

.sound-button{
    background: #1faaff;
    border-radius: 10px;
    padding: 0;
    height: 40px;
    width: 40px;
    cursor: pointer;
    text-align: center;
    line-height: 40px;
}

.logo{
    height:80px;
}

header{
    min-height: 1000px;
    position: relative;
    background-color: #86cffb;
    background: -moz-linear-gradient(top, #86cffb 0%, #5caef0 100%);
    background: -webkit-linear-gradient(top, #86cffb 0%,#5caef0 100%);
    background: linear-gradient(to bottom, #86cffb 0%,#5caef0 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#86cffb', endColorstr='#5caef0',GradientType=0 );
    color:#ffffff;
}

header:before{
    content: '';
    z-index: 2;
    background-image: url(../assets/before.svg);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: 23908px 510px;
    display: block;
    height: 510px;
    width: 100%;
    left: 0;
    bottom: -360px;
    position: absolute;
}

header:after{
    content: '';
    z-index: 1;
    background-image: url(../assets/after.svg);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: 1920px 1245px;
    display: block;
    height: 1642px;
    width: 100%;
    left: 0;
    bottom: -100px;
    position: absolute;
}

header > div{
    z-index: 4;
    position: relative;
    padding-top:80px;
}

@media(max-width:991px){
    header{
        background: #86cffb;
        background-size: cover;
        background-position: center bottom;
        min-height: auto;
        background-image: url(../assets/header-mob.svg);
        padding-bottom: 40px;
    }
    header:after{
        background-image: none;
        left:0;
        top:0;
        height: 100%;
        width:100%;
        background-color: rgba(0, 0, 0, 0.15);
        z-index: 2;
    }

    header:before{
        bottom: -66%;
        z-index: 3;
    }

    .sound-button {
        background: #a74e28;
    }

    /* menu */
    .navbar{
        background: #ff8a58;
        padding: 0;
    }
    .navbar-collapse.show,.navbar-collapse.collapsing{
        background: #e47546;
    }

    .sticky-top{
        background: none;
        padding: 0;
    }
    .sticky-top a, .sticky-top .nav-link{
        color:#fff;
    }
    /* Navbar toggler */
    .navbar-toggler{
        position: relative;
    }
    .navbar-toggler:focus,
    .navbar-toggler:active {
        outline: 0;
    }

    .navbar-toggler span {
    display: block;
    background-color: #fff;
    height: 2px;
    width: 25px;
    margin-top: 4px;
    margin-bottom: 4px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    position: relative;
    left: 0;
    opacity: 1;
    }

    .navbar-toggler span:nth-child(1),
    .navbar-toggler span:nth-child(3) {
    -webkit-transition: transform .35s ease-in-out;
    -moz-transition: transform .35s ease-in-out;
    -o-transition: transform .35s ease-in-out;
    transition: transform .35s ease-in-out;
    }

    .navbar-toggler:not(.collapsed) span:nth-child(1) {
        position: absolute;
        left: 12px;
        top: 10px;
        -webkit-transform: rotate(135deg);
        -moz-transform: rotate(135deg);
        -o-transform: rotate(135deg);
        transform: rotate(135deg);
        opacity: 0.9;
    }

    .navbar-toggler:not(.collapsed) span:nth-child(2) {
        height: 12px;
        visibility: hidden;
        background-color: transparent;
    }

    .navbar-toggler:not(.collapsed) span:nth-child(3) {
        position: absolute;
        left: 12px;
        top: 10px;
        -webkit-transform: rotate(-135deg);
        -moz-transform: rotate(-135deg);
        -o-transform: rotate(-135deg);
        transform: rotate(-135deg);
        opacity: 0.9;
    }
}

.footer-after{
    background-size:2693px 936px;
}

section#about{
    z-index: 3;
    position: relative;
    margin-top: 120px;
}

.btn-orange{
    background:#ff8a58;
    color:#ffffff;
    border-radius: 30px;
    position: relative;
}
.btn-orange:hover{
    background: #FD804A;
    color:#ffffff;
}
.btn-orange:after{
    content: '';
    position: absolute;
    border-radius: 30px;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}

.btn-blue{
    background:#5caff0;
    color:#ffffff;
    border-radius: 30px;
}
.btn-blue:hover{
    background:#4691CA;
    color:#ffffff;
}
.text-blue{
    color:#5aacef;
}
.list-green-check li{
    list-style-type: none;
    position: relative;
    margin-bottom:20px;
}
.list-green-check li:before{
    content:url('../assets/green-check.svg');
    position: absolute;
    left:-50px;
    top:10px;
}

.program-ico{
    height: 60px;
    width:auto;
    margin-bottom: 20px;
}


.border-radius-40{
    border-radius: 40px;
    -webkit-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.18);
    -moz-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.18);
    box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.18);
}

.social span{
    color:#5aacef;
    font-size: 18px;
    background:#ffffff;
    border-radius: 25px;
    width:50px;
    height:50px;
    cursor:pointer;
    transition: all .3s;
    line-height: 50px;
    text-align: center;
    display: inline-block;
}

.social span:hover{
    background:#1C5F92;
    color:#ffffff;
}

footer{
    padding:20px 0;
    position: relative;
    background: #5aacef;
}
footer:before{
    content: '';
    z-index: 2;
    background-image: url(../assets/registry-after.svg);
    background-repeat: no-repeat;
    background-position: top;
    background-size: 2693px 936px;
    display: block;
    height: 590px;
    width: 100%;
    left: 0;
    top: -60px;
    position: absolute;
}
footer a{
    color:#ffffff;
}

/* registration form */
#registration{
    z-index: 2;
}
