.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1;
}
body {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}
footer {
    margin-top: auto;
}
.navbar-dark .navbar-nav .nav-link {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: normal;
    color: #fff;
}
.navbar-dark .navbar-nav .nav-item {
    padding: 0 30px;
}
.btn-blue {
    background-color: #0a417a;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 26px;
    font-weight: bold;
    padding: 10px 60px;
    border-radius: 15px;
    border: 2px solid #0a417a;
}
.btn-blue:hover {
    background-color: transparent;
    color: #0a417a;
}
/* homepage */
.home-dl {
    background-image: url('/assets/img/home-dl-bg.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.home-dl-text {
    padding: 125px 0 350px 0;
}
.home-dl-text h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 118px;
    font-weight: normal;
    color: #fff;
}
.home-dl-text h1 span {
    color: #fdd14b;
}
.home-dl-text h6 {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: normal;
    color: #fff;
    line-height: 1.3;
}
.home-dl-imgs {
    margin-top: -150px;
}
.home-dl-imgs img {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.16), 0 10px 20px rgba(0, 0, 0, 0.23);
}
.home-dl-imgs h6 {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: normal;
    color: #353535;
}
.home-dl-imgs hr {
    border-top: #adadad 4px solid;
}
.home-dl-imgs h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: bold;
    color: #353535;
}
.home-dl-imgs p {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: normal;
    color: #353535;
    padding: 0 10%;
}
/* inner */
.inner-dl {
    background-image: url('/assets/img/inner-dl-bg.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.inner-dl-text {
    padding: 75px 0 125px 0;
}
.inner-dl-text h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 70px;
    font-weight: normal;
    color: #fff;
}
.inner-dl-text h1 span {
    color: #fdd14b;
}
.practice h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    font-weight: bold;
    color: #353535;
    line-height: 1.2;
}
.practice p {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: normal;
    color: #353535;
}
.practice ul li {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: normal;
    color: #353535;
}
/* FOOTER  */
footer {
    background-color: #585858;
}
footer p {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: normal;
    color: #fff;
}
/*********************************************************
FORM INPUT
**********************************************************/
.form-control {
    background: #f4f4f4;
    border: 1px solid #b4b4b4;
    border-radius: 0;
    padding: 1.5rem 0.75rem;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: normal;
}
label {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: normal;
    color: #353535;
}
.form-group.input-underline .form-control {
    width: 100%;
    border-radius: 0;
    border: none;
    border-bottom: 2px solid darkgrey;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    font-size: 1.5rem;
    margin: 4px 0 0 0;
    padding: 0;
}
.form-group.input-underline textarea.form-control {
    border: 1px solid #dee2e6 !important;
    margin-top: 1rem !important;
    padding: 8px 12px;
}
.form-group.input-underline .underline {
    height: 4px;
    width: 0px;
    position: relative;
    margin-top: -4px;
    background: var(--fieldColor);
    transition: .3s width ease-in-out;
}
.form-group.input-underline .form-control:focus+.underline {
    width: 100%;
    background: var(--fieldColor);
}
.form-group.input-underline label {
    margin: 0 0 -10px 0;
    padding: 0;
    display: block;
}
/*********************************************************
FORM RADIO/CHECKBOX
**********************************************************/
input.form-control[type=radio],
input.form-control[type=checkbox] {
    display: none;
    margin: 0;
}
input.form-control[type=radio]+label:before {
    border-radius: 100%;
}
input.form-control[type=radio]+label:before,
input.form-control[type=checkbox]+label:before {
    content: "";
    background: #f4f4f4;
    border: 1px solid #b4b4b4;
    display: inline-block;
    width: 1.4rem;
    height: 1.4rem;
    position: relative;
    margin: -2px .8rem 0 0;
    vertical-align: middle;
    cursor: pointer;
    text-align: center;
    transition: all 250ms ease;
    margin-top: -2px;
}
input.form-control[type=radio]:checked+label:before,
input.form-control[type=checkbox]:checked+label:before {
    background-color: #0a417a;
    box-shadow: inset 0 0 0 4px #f4f4f4;
}
input.form-control[type=radio]:focus+label:before,
input.form-control[type=checkbox]:focus+label:before {
    outline: none;
    border-color: #0a417a;
}
input.form-control[type=radio]:selected:disabled+label:before,
input.form-control[type=checkbox]:selected:disabled+label:before {
    box-shadow: inset 0 0 0 4px #f4f4f4;
    border-color: #b4b4b4;
    background: #b4b4b4;
}
input.form-control[type=radio]+label:empty:before,
input.form-control[type=checkbox]+label:empty:before {
    margin-right: 0;
}
/*********************************************************
FORM SEARCH INPUT
**********************************************************/
.search__input {
    width: 100%;
    padding: 14px 24px 12px 24px;
    background-color: var(--fieldColor);
    transition: transform 250ms ease-in-out;
    font-size: 20px;
    line-height: 18px;
    color: #fff;
    background-color: var(--fieldColor);
    background-image: url("data:image/svg+xml;charset=utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='white' viewBox='0 0 24 24'><path d='M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z'/></svg>");
    background-repeat: no-repeat;
    background-size: 24px 24px;
    background-position: 95% center;
    border-radius: 5px;
    border: 1px solid #575756;
    transition: all 250ms ease-in-out;
    backface-visibility: hidden;
    transform-style: preserve-3d;
}
.search__input::placeholder {
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
.search__input:focus::placeholder {
    color: grey;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
.search__input:focus {
    padding: 14px 0 12px 0;
    outline: 0;
    color: grey;
    border: 1px solid transparent;
    border-bottom: 1px solid #575756;
    border-radius: 0;
    background-color: transparent;
    background-image: url("data:image/svg+xml;charset=utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='grey' viewBox='0 0 24 24'><path d='M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z'/></svg>");
    background-position: 100% center;
}
@media (max-width: 1350px) {}
@media (max-width: 1350px) {}
@media (max-width: 1200px) {
    .home-dl-text {
        padding: 100px 0 275px 0;
    }
    .home-dl-imgs {
        margin-top: -125px;
    }
}
@media (max-width: 992px) {
    .home-dl-imgs h6 {
        font-size: 20px;
    }
    .home-dl-text {
        padding: 100px 0 225px 0;
    }
    .home-dl-imgs {
        margin-top: -90px;
    }
    .btn-hero img {
        width: 50%;
    }
    .practice h3 {
        font-size: 30px;
    }
    .practice p,
    .practice ul li {
        font-size: 16px;
    }
    .practice .btn-blue {
        font-size: 16px;
    }
}
@media (max-width: 768px) {
    .home-dl-text h1 {
        font-size: 75px;
    }
    .home-dl-text h6 {
        font-size: 20px;
    }
    .home-dl-imgs h6 {
        font-size: 16px;
    }
    .home-dl-text {
        padding: 50px 0 150px 0;
    }
    .home-dl-imgs {
        margin-top: -65px;
    }
    .inner-dl-text h1 {
        font-size: 50px;
    }
    .practice img {
        padding: 0 100px;
    }
}
@media (max-width: 576px) {
    .home-dl-text h1 {
        font-size: 55px;
    }
    .home-dl-text {
        padding: 50px 20px 100px 20px;
    }
    .btn-hero img {
        width: 75%;
    }
    .home-dl-imgs {
        margin-top: -40px;
    }
    .home-dl-imgs h6 {
        font-size: 12px;
    }
    .home-dl-imgs h3 {
        font-size: 20px;
    }
    .home-dl-imgs p {
        font-size: 16px;
    }
    .home-dl-imgs .btn-blue {
        font-size: 16px;
    }
    footer p {
        font-size: 12px;
    }
    .navbar-brand img {
        width: 175px;
    }
    .practice h3 {
        font-size: 25px;
    }
    .practice p,
    .practice ul li {
        font-size: 16px;
    }
    .practice .btn-blue {
        font-size: 16px;
    }
    .inner-dl-text {
        padding: 50px 20px 100px 20px;
    }
    .inner-dl-text h1 {
        font-size: 40px;
    }
}
@media (max-width: 450px) {}