/*
font-family: 'Bebas Neue', cursive;
font-family: 'Poppins', sans-serif;
*/

:root {
    --blue: #35A1DB;
    --darkblue: #00517C;
    --lightblue: #EFF5F8; 
}

.master,
header,
section,
footer,
figure,
h1,h2,h3,h4,h5,h6{
    width: 100%;
    float: left;
    position: relative;
}

h1,h2,h3,h4,h5,h6{
    font-family: 'Bebas Neue', cursive;
}
p, li, div{
    font-family: 'Poppins', sans-serif;
}

p{
    width: 100%;
    float: left;
    line-height: 200%;
    font-size: 14px;
}
a:hover{
    text-decoration: none;
}
section{
    padding: 80px 0;
}

figure img{
    width: 100%;
}
.ratio{
    width: 100%;
    height: 0;
    position: relative;
}
.ratio-16{
    padding-top: 56.25%;
}
.ratio-1{
    padding-top: 100%;
}
.ratio-75{
    padding-top: 75%;
}
.ratio-135{
    padding-top: 135%;
}
.ratio img,
.ratio iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.section-title{
    width: 100%;
    float: left;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}
.section-title::before{
    content: "";
    width: 200px;
    height: 188px;
    position: absolute;
    left: -100px;
    top: 50%;
    transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    z-index: 0;
    background: url(../images/title-bg.png) no-repeat center;
    background-size: contain;
}
.section-title.text-center::before{
    left: 50%;
    transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
}
.section-title h3{
    color: var(--darkblue);
    font-size: 48px;
}

.btn{
    min-width: 120px;
    padding: 15px 30px;
    font-size: 14px;
    height: 50px;
    border-radius: 8px;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
}
.btn-primary{
    background: var(--blue);
    color: #fff;
    border: none;
}
.btn-secondary{
    background: none;
    border: 2px solid var(--blue);
    color: var(--blue);
}

ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

#bootcamp,
#tnc{
    background: var(--lightblue);
}

header{
    height: 80px;
    padding: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9;
}
header.scrolled{
    background: #003B5B;
}
header .logo{
    width: 240px;
    height: 40px;
    float: left;
    margin-top: 10px;
}
header .logo img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.menu{
    width: calc(100% - 480px);
    float: left;
}
.menu a{
    display: inline-block;
    padding: 18px 15px;
    font-size: 14px;
    color: #fff;
    border-bottom: 2px solid rgba(255,255,255,0);
    transition: all ease-out 0.3s;
    -moz-transition: all ease-out 0.3s;
    -webkit-transition: all ease-out 0.3s;
}
.menu a.active{
    color: var(--blue);
    border-bottom: 2px solid var(--blue);
}
.menu a:hover{
    color: var(--blue);
}
header #cta{
    width: 240px;
    float: left;
    margin-top: 5px;
}

#home{
    padding: 0;
    height: 580px;
    margin-bottom: 100px;
}
.hero figure{
    height: 580px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.hero figure img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero .text{
    margin-top: 200px;
}
.hero .text h1{
    color: #fff;
    font-size: 72px;
}
.hero .text p{
    color: rgba(255,255,255,0.8);
}
.reg-form{
    background: #fff;
    width: 100%;
    float: left;
    border-radius: 8px;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    padding: 20px 30px;
    margin-top: 150px;
    box-shadow: 0 4px 64px rgba(0,0,0,0.15);
    height: 500px;
    overflow-y: auto;
}
form .form-title{
    width: 100%;
    float: left;
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}
form .inp-group{
    width: 100%;
    float: left;
    margin-bottom: 10px;
}
form .inp-group label{
    width: 100%;
    float: left;
    color: #777;
    font-size: 14px;
    margin-bottom: 5px;
}
form .inp-group input,
form .inp-group textarea,
form .inp-group select{
    border: 1px solid #dedede;
    background: #fff;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    width: 100%;
    float: left;
    font-size: 14px;
    color: #333;
    padding: 20px;
    transition: all ease-out 0.3s;
    -moz-transition: all ease-out 0.3s;
    -webkit-transition: all ease-out 0.3s;
}
form .inp-group input:focus,
form .inp-group textarea:focus{
    outline: none;
    border-color: var(--blue);
}
form .inp-group input{
    height: 50px;
}
form .inp-group textarea{
    height: 140px;
}
form .inp-group btn{
    margin-top: 10px;
}

form .inp-group input[type="checkbox"]{
    width: 16px;
    height: 16px;
    margin-right: 10px;
}
form .inp-group input[type="checkbox"] ~ label{
    width: calc(100% - 26px);
    margin-top: -3px;
}
form .inp-group input[type="file"]{
    padding: 13px 20px;
}
form .inp-group select{
    padding: 13px 20px;
}

form .form-group{
    width: 100%;
    float: left;
    padding: 20px;
    border: 1px solid #dedede;
}

.boot-card{
    width: 100%;
    float: left;
    background: #fff;
    padding: 10px;
    border-radius: 16px;
    -moz-border-radius: 16px;
    -webkit-border-radius: 16px;
}
.boot-card .title{
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    background: var(--blue);
    border-radius: 14px;
    -moz-border-radius: 14px;
    -webkit-border-radius: 14px;
    padding: 20px;
    margin-bottom: 30px;
}
.boot-card .article{
    padding-left: 20px;
    padding-right: 20px;
}

.article{
    width: 100%;
    float: left;
}
.article li{
    margin-bottom: 20px;
    font-size: 14px;
    color: #333;
}
.article p{
    font-size: 14px;
    color: #333;
}

.ht-card{
    width: 100%;
    float: left;
    text-align: center;
    position: relative;
}
.ht-card .num{
    width: 183px;
    height: 183px;
    position: relative;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    background: #fff;
    z-index: 2;
    margin: 0 auto 20px;
    border: 2px dashed var(--blue);
    text-align: center;
    font-size: 64px;
    font-weight: 700;
    color: #fff;
    padding-top: 40px;
}
.ht-card .num::before{
    content: "";
    width: 166px;
    height: 166px;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    z-index: -1;
    background: var(--blue);
}

#howto .row-1{
    margin-bottom: 120px;
}
#howto .row-1 .col-md-4:first-child .ht-card,
#howto .row-1 .col-md-4:last-child .ht-card{
    margin-top: 80px;
}
#howto .row-2 .col-md-4:first-child .ht-card,
#howto .row-2 .col-md-4:last-child .ht-card{
    margin-top: -80px;
}
#howto .ht-card::after{
    content: "";
    position: absolute;
}

.col-reverse{
    flex-direction: row-reverse;
}

#howto .row-1 .col-md-4:first-child .ht-card::after{
    width: 140px;
    height: 60px;
    background: url(../images/arrow-1.png) no-repeat center;
    background-size: contain;
    top: 0;
    left: 85%;
}
#howto .row-1 .col-md-4:nth-child(2) .ht-card::after{
    width: 140px;
    height: 60px;
    background: url(../images/arrow-2.png) no-repeat center;
    background-size: contain;
    top: 30%;
    left: 85%;
}
#howto .row-1 .col-md-4:last-child .ht-card::after{
    width: 25px;
    height: 60px;
    background: url(../images/arrow-3.png) no-repeat center;
    background-size: contain;
    top: 100%;
    left: 50%;
}
#howto .row-2 .col-md-4:first-child .ht-card::after{
    width: 140px;
    height: 60px;
    background: url(../images/arrow-4.png) no-repeat center;
    background-size: contain;
    top: 50%;
    right: 85%;
}
#howto .row-2 .col-md-4:nth-child(2) .ht-card::after{
    width: 140px;
    height: 60px;
    background: url(../images/arrow-5.png) no-repeat center;
    background-size: contain;
    top: 20%;
    right: 85%;
}

.tab-wrap{
    width: 100%;
    float: left;
}
.tab-header{
    width: 100%;
    float: left;
    background: rgba(0,0,0,0.03);
    border-radius: 8px 8px 0 0;
    -moz-border-radius: 8px 8px 0 0;
    -webkit-border-radius: 8px 8px 0 0;
}
.tab-header a{
    font-size: 16px;
    font-weight: 700;
    color: #777;
    position: relative;
    float: left;
    width: 33.33%;
    text-align: center;
    padding: 20px 30px;
    border-radius: 8px 8px 0 0;
    -moz-border-radius: 8px 8px 0 0;
    -webkit-border-radius: 8px 8px 0 0;
}
.tab-header a.active{
    background: var(--blue);
    color: #fff;
}
.tab-header a::after{
    content: "";
    width: 1px;
    height: 30px;
    background: #ddd;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}
.tab-header a.active::after,
.tab-header a:last-child::after{
    opacity: 0;
}
.tab-ct{
    width: 100%;
    float: left;
    padding: 30px;
    background: #fff;
    border-radius: 0 0 8px 8px;
    -moz-border-radius: 0 0 8px 8px;
    -webkit-border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 64px rgba(0,0,0,0.15);
    -moz-box-shadow: 0 4px 64px rgba(0,0,0,0.15);
    -webkit-box-shadow: 0 4px 64px rgba(0,0,0,0.1);
}
.tab-ct .article{
    display: none;
}
.tab-ct .article.show{
    display: block;
}

#about li,
.tab-ct .article li{
    width: 100%;
    float: left;
    position: relative;
    padding-left: 30px;
}
#about li::before,
.tab-ct .article li::before{
    content: "";
    width: 20px;
    height: 20px;
    position: absolute;
    left: 0;
    top: 0;
    background: url(../images/bullet.svg) no-repeat center;
    background-size: contain;
}

.timeline{
    border-top: 2px solid #dedede;
}
.time-card{
    width: 100%;
    float: left;
    position: relative;
    margin-top: 30px;
    border: 2px dashed var(--blue);
    padding: 20px 30px;
    border-radius: 16px;
    -moz-border-radius: 16px;
    -webkit-border-radius: 16px;
    color: #fff;
}
.time-card::before{
    content: "";
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    background: var(--blue);
    border-radius: 14px;
    -moz-border-radius: 14px;
    -webkit-border-radius: 14px;
    z-index: -1;
    position: absolute;
    top: 5px;
    left: 5px;
}
.time-card::after{
    content: "";
    width: 20px;
    height: 20px;
    background: var(--blue);
    position: absolute;
    left: calc(50% - 10px);
    top: -43px;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
}
.time-card .date{
    font-size: 14px;
    width: 100%;
    float: left;
    margin-bottom: 10px;
}
.time-card .title{
    font-size: 20px;
    font-weight: 700;
    width: 100%;
    float: left;
}
.time-card span{
    font-size: 14px;
    font-weight: 700;
}

footer{
    padding: 20px 0;
    background: var(--blue);
}
footer p{
    margin-bottom: 0;
    color: #fff;
    font-size: 14px;
}

.fs-14{
    font-size: 14px;
}

.burger{
    width: 50px;
    height: 50px;
    color: #fff;
    font-size: 20px;
    float: right;
    text-align: center;
    padding-top: 10px;
    margin-top: 5px;
}

.for-mobile{
    display: none;
}

@media only screen and (max-width: 1024px){
    .for-mobile{
        display: block;
    }
    .for-desktop{
        display: none;
    }

    header .menu{
        width: 70vw;
        position: fixed;
        top: 80px;
        left: 100%;
        height: calc(100vh - 160px);
        background: var(--darkblue);
        transition: all ease-out 0.3s;
        -moz-transition: all ease-out 0.3s;
        -webkit-transition: all ease-out 0.3s;
        padding: 15px 20px;
    }
    header .menu.show{
        left: 30%;
    }
    header .menu a{
        width: 100%;
    }
    header #cta{
        position: fixed;
        bottom: 15px;
        left: 20px;
        width: calc(100% - 40px);
    }
    header #cta::before{
        content: "";
        width: 100vw;
        height: 80px;
        background: #003B5B;
        position: absolute;
        bottom: -15px;
        left: -20px;
        z-index: -1;
    }
    header #cta::after{
        content: "";
        width: 100%;
        height: 100%;
        background: var(--blue);
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
        border-radius: 8px;
        -moz-border-radius: 8px;
        -webkit-border-radius: 8px;
    }

    .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col, .col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm, .col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md, .col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg, .col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl, .col-xl-auto{
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media only screen and (max-width: 480px){
    .hero .text{
        margin-top: 120px;
    }
    .hero .text h1{
        font-size: 48px;
    }

    .reg-form{
        margin-top: 30px;
    }

    #home{
        height: 760px;
    }

    .section-title{
        margin-bottom: 20px;
    }
    .section-title h3{
        font-size: 36px;
        margin-bottom: 0;
    }
    #about figure{
        margin-bottom: 40px;
    }

    #bootcamp .section-title{
        margin-bottom: 0;
    }
    #bootcamp .section-title h3{
        text-align: center;
    }
    #bootcamp .col-md-3{
        margin-bottom: 30px;
    }
    .boot-card{
        margin-bottom: 20px;
    }
    #howto .row-1{
        margin-bottom: 0;
    }
    #howto .row-1 .col-md-4:first-child .ht-card,
    #howto .row-1 .col-md-4:last-child .ht-card{
        margin-top: 0;
    }
    #howto .row-2 .col-md-4:first-child .ht-card,
    #howto .row-2 .col-md-4:last-child .ht-card{
        margin-top: 0;
    }

    #howto .ht-card{
        margin-bottom: 20px;
    }
    #howto .ht-card::after{
        display: none;
    }

    .ht-card .num{
        width: 80px;
        height: 80px;
        font-size: 32px;
        padding-top: 15px;
        margin-bottom: 10px;
    }
    .ht-card .num::before{
        width: 74px;
        height: 74px;
    }
    #about li, .tab-ct .article li{
        padding-left: 30px;
    }
    #about li::before, .tab-ct .article li::before{
        width: 20px;
        height: 20px;
        background-size: contain;
    }
    .tab-ct{
        padding: 20px;
    }

    .tab-header a{
        width: 100%;
    }

    .timeline{
        border-top: none;
        padding-left: 20px;
        position: relative;
    }
    .timeline::before{
        content: "";
        width: 2px;
        height: 100%;
        background: #ddd;
        position: absolute;
        left: 20px;
        top: 0;
    }
    .time-card::after{
        left: -31px;
        top: calc(50% - 10px);
    }

    footer{
        margin-bottom: 80px;
    }
}

.select2-selection__rendered {
    display: none;
}