.bg-primary{
background: #ffd700;;
}
ul.menu__nav{
    color: white;
}
.is-sticky .mobile-header, .is-sticky ul.menu__nav{
    color: black;
}
.btn{
    padding: 10px 25px;
    border-radius: 5px;
}
.text-danger{
    color: red;
}
.text-success{
    color: green;
}
.border{
    border: 1px solid #bbb;
}
.b-radius-15{
    border-radius: 15px;
}
.h-100{
    height: 100%;
}
.w-100{
    width: 100%;
}
.d-block{
    display: block;
}
.form-group{
    margin-bottom: 15px;
}
optgroup, option{
    padding: 10px;
}
.icon-phone:before {
    content: "\e03c";
}
.icon-youtube:before{
    content: "\e015";
}
.text-justify{
    text-align: justify;
}
.list{
    list-style: disc;
    padding-left: 2rem;
}
.list li{
    position: relative;
}
.list li:before{
    content: '•';
    font-size: 4rem;
    line-height: 0;
    position: absolute;
    left: -25px;
    top: 20px;
}
.form-control{
    border: 2px solid #b8b8b8 !important;
    border-radius: 10px;
}
.popup{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0006;
    z-index: 9999;
    padding: 15vh 0 0;
    display: none;
}
.popup.show{
    display: block;
}
.popup .popup-body{
    padding: 2rem;
    background: #fff;
    width: 40vw;
    margin: auto;
    border-radius: 10px;
}
.text-shadow-light{
    text-shadow: 0px 0px 5px #fff;
}
.g-recaptcha > div{
    width: 100% !important;
}
    .g-recaptcha iframe{
        width: 100% !important;
    }

.other-service{
    text-decoration: underline;
    cursor: pointer;
}


@media screen  and (min-width:1025px){
    .pl-md-50{
        padding-left: 5rem;
    }
    .pr-md-50{
        padding-right: 5rem;
    }
}
@media screen and (max-width:990px){
    .popup{
        padding: 3vh 0 0;
        overflow-y: auto;
    }
    .popup .popup-body{
        width: 90vw;
    }
}