:root {
    --red: #FF0000;
    --white: #ffffff;
    --btnprimary: #CB000F;
    --darkblue: #060F6D;
    --cardyellow: #F4CC2E;
    --cardred: #ED1C24;
    --primary:#E70011;
  }
  
body{
    font-family: 'Titillium Web', sans-serif;

}
.bg-black{
    background-color: black;
}

.text-primary{
    color: var(--primary)!important;
}
.navbar-dark .navbar-nav .active>.nav-link, .navbar-dark .navbar-nav .nav-link.active, .navbar-dark .navbar-nav .nav-link.show, .navbar-dark .navbar-nav .show>.nav-link{
    color: var(--red);
}
.btn{
    border-radius: 5px;
}
.btn-primary {
    color: #fff;
    background-color: var(--btnprimary);
    border-color: var(--btnprimary);
}
.btn-custom{
    width: 100px;
}
.nav-link{
    font-size: 16px;
}
.navbar .btn{
    font-size: 16px;
}
.input-custom{
    border-radius: 1px;
}
.bg-darkblue{
    background-color: var(--darkblue);
}
.bg-header{
    background: url('../asset/images/header.png');
    background-size: cover;
}
.cardyellow{
    background-color: var(--cardyellow);
    border: 0;
    border-radius: 0;
    height: 300px;
}

.cardwhite{
    background-color: var(--white);
    border: 0;
    border-radius: 0;
    height: 300px;

}
.cardred{
    background-color: var(--cardred);
    border: 0;
    border-radius: 0;
    height: 300px;

}

.card-content{
    position: absolute;
    bottom: -18rem;
}

.bg-label{
    background: url('../asset/images/bg-label.png');
    background-color: black;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

section.section{
    padding: 4rem 3rem;
}
.btn-label{
    width: 180px;
}
a{
    color: var(--red);
}

.border-right-primary{
    border-right: 1px solid var(--red);
}
.navbar{
    padding: 0 6rem;
}
.form-control{
    border-radius: 0;
}
.border-bottom-primary{
    border-bottom: 1px solid var(--red);
}

footer{
    padding: 10px;
}
.bg-footer{
    background-color: var(--darkblue);
}

.container{
    padding: 0 5rem;
}

.pendaftaran{
    background: url('../asset/images/bgdaftar.png') ;
    width: 100%;
    height: 600px;
min-height: 90vh;
}
.d-mobile{
    display: none;
}
.bg-gradient{
    background: transparent linear-gradient(270deg, #00000000 0%, #060F70 100%) 0% 0% no-repeat padding-box;
}
hr{
    border-top: 1px solid var(--red);
    margin-top: 1.5rem;
    margin-bottom: 0;
}
.redline{
    position: absolute;
    left: 0px;
    top: 5px;
    bottom: 0;
    right: 0;
}

.carousel{
    background: #d9dad8;
}

@media (min-width: 576px) and (max-width: 767.98px) { 
    .d-lg{
        display: none;
    }
    .d-mobile{
        display: block;
    }
 }

@media (min-width: 768px) and (max-width: 991.98px) { 
    .d-lg{
        display: block;
    }
    .d-mobile{
        display: none;
    }
 }

@media (min-width: 992px) and (max-width: 1199.98px) { 
    .d-lg{
        display: block;
    }
    .d-mobile{
        display: none;
    }
}

@media (min-width: 1200px) { 
    .d-lg{
        display: block;
    }
    .d-mobile{
        display: none;
    }
 }



@media (max-width: 575.98px) { 

    .navbar-brand{
        margin-right: 0;
        margin: auto;
    }
    .d-lg{
        display: none;
    }
    .d-mobile{
        display: block;
    }
    .nav-daftar{
        padding: 2rem;
    }

.container{
    padding: 0 0;
}
.pendaftaran {
    background: url('../asset/images/bgdaftar.png');
    width: 100%;
    min-height: 630px;
}
.pendaftaran h1{
    font-size: 5rem;
}

.pendaftaran h3{
    font-size: 3rem;
}
}

:root {
  /* larger checkbox */
}
:root label.checkbox-bootstrap input[type=checkbox] {
  /* hide original check box */
  opacity: 0;
  position: absolute;
  /* find the nearest span with checkbox-placeholder class and draw custom checkbox */
  /* draw checkmark before the span placeholder when original hidden input is checked */
  /* disabled checkbox style */
  /* disabled and checked checkbox style */
  /* when the checkbox is focused with tab key show dots arround */
}
:root label.checkbox-bootstrap input[type=checkbox] + span.checkbox-placeholder {
  width: 14px;
  height: 14px;
  border: 1px solid;
  border-radius: 3px;
  /*checkbox border color*/
  border-color: #737373;
  display: inline-block;
  cursor: pointer;
  margin: 0 7px 0 -20px;
  vertical-align: middle;
  text-align: center;
}
:root label.checkbox-bootstrap input[type=checkbox]:checked + span.checkbox-placeholder {
  background: #0ccce4;
}
:root label.checkbox-bootstrap input[type=checkbox]:checked + span.checkbox-placeholder:before {
  display: inline-block;
  position: relative;
  vertical-align: text-top;
  width: 5px;
  height: 9px;
  /*checkmark arrow color*/
  border: solid white;
  border-width: 0 2px 2px 0;
  /*can be done with post css autoprefixer*/
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  content: "";
}
:root label.checkbox-bootstrap input[type=checkbox]:disabled + span.checkbox-placeholder {
  background: #ececec;
  border-color: #c3c2c2;
}
:root label.checkbox-bootstrap input[type=checkbox]:checked:disabled + span.checkbox-placeholder {
  background: #d6d6d6;
  border-color: #bdbdbd;
}
:root label.checkbox-bootstrap input[type=checkbox]:focus:not(:hover) + span.checkbox-placeholder {
  outline: 1px dotted black;
}
:root label.checkbox-bootstrap.checkbox-lg input[type=checkbox] + span.checkbox-placeholder {
  width: 26px;
  height: 26px;
  border: 2px solid;
  border-radius: 5px;
  /*checkbox border color*/
  border-color: #737373;
}
:root label.checkbox-bootstrap.checkbox-lg input[type=checkbox]:checked + span.checkbox-placeholder:before {
  width: 9px;
  height: 15px;
  /*checkmark arrow color*/
  border: solid white;
  border-width: 0 3px 3px 0;
}

.btn-google {
    color: #545454;
    background-color: #ffffff;
    box-shadow: 0 1px 2px 1px #ddd
}