html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
/* ol, ul {
	list-style: none;
} */
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}


:root {
    /* accent colors */
    --primary-blue : #21418C;
    --primary-gold : #996F0E;
    --primary-white : #FEFEFE;
    --primary-blue-hover : #2b57be;
    --primary-gold-hover : #c08c13;

    /* background colors */
    --body-background : #fafafa;
    --white-background : #ffffff;
    --off-white-background : #f8f8f8;
    --sidebar-background : #f0f0f0;
    --black-o-5 : rgba(0,0,0,0.5);
    --black-o-3 : rgba(0,0,0,0.3);

    /* text colors */
    --body-text-color : #677788;
    --text-white : #ffffff;
    --text-black : #222222;

    /* input backgrounds */
    --bg-light : #f5f7f9;

    /* border radius */
    --border-sm : 4px;
    --border-md : 8px;
    --border-lg : 12px;
    --rounded-full : 50px;

    /* shadows */
    --box-shadow : 0 10px 40px 10px rgba(140, 152, 164, 0.095);

    /* border */
    --border : #e7eaf3;
}



/* FONTS */
@font-face {
    font-family: "CoolveticaRg";
    src: url("../fonts/coolvetica/coolvetica\ rg.ttf");
}

@font-face {
    font-family: "Century School Bokok";
    src: url("../fonts/Century_School_Bokok/CENSCBK.TTF");
}



/* GENERAL STYLES */

*,*::before,*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Century School Bokok';
    /* temporary check */
    font-size: calc(0.625rem + (16 - 10) * ((100vw - 320px) / (1600 - 320)));
    font-weight: 400;
    line-height: 1.275;
    color: var(--body-text-color);
    text-align: left;
    background: var(--primary-white);
    /* position: relative; */
}

h1,h2,h3,h4,h5,h6 {
    font-family: "CoolveticaRg";
}

.text-blue {
    color: var(--primary-blue);
}

.text-gold {
    color: var(--primary-gold);
}



/* BUTTON STYLES */
.btn-gold-button {
    color: var(--text-white);
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    border-radius: var(--rounded-full);
    text-transform: uppercase;
    padding: 0.725rem 1.2rem;
}

.btn-gold-button:hover {
    background: var(--primary-gold-hover);
    border-color: var(--primary-gold-hover);
    color: var(--text-white);
}

.btn-white-button {
    color: var(--primary-gold);
    background: var(--white-background);
    border-color: var(--white-background);
    border-radius: var(--rounded-full);
    text-transform: uppercase;
    padding: 0.725rem 1.2rem;
}

.btn-white-button:hover {
    background: var(--primary-white);
    border-color: var(--primary-white);
    color: var(--primary-gold);
}




/* NAVIGATION */
header .logo_text img {
    width: auto;
    height: 60px;
}
header .phone_number {
    width: 200px;
    height: 35px;
    background: var(--primary-blue);
    color: var(--text-white);
    border-radius: var(--rounded-full);
}

header.title .image-banner {
    width: 100%;
    height: 400px;
}

header .image-banner {
    width: 100%;
    height: 600px;
}

header .image-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

header .image-banner nav {
    padding: 1rem 3rem 1rem 0;
    background: transparent;
    margin-bottom: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

header nav ul .list-inline-item {
    margin-right: 1rem !important;
}

header nav ul .list-inline-item:last-child {
    margin-right: 0 !important;
}

header nav ul a {
    text-transform: uppercase;
    text-decoration: none;
    color: var(--text-white);
    padding: 1rem;
    font-weight: bold;
}

header nav ul a:hover, header nav ul a.active {
    background: var(--primary-blue);
    color: var(--text-white);
    border-radius: var(--border-md);
    padding: 1rem;
}

header .image-banner .headliner {
    font-size: 2.2rem;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: var(--black-o-3);
    color: var(--text-white);
}

header .image-banner .headliner-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding-inline: 4.2rem 1rem;
    padding-block: 1rem;
}

header .image-banner .headliner-title h2 {
    font-size: 4.4rem;
    font-weight: bolder;
    letter-spacing: 1.6px;
    color: var(--text-white);
}

header .image-banner .headliner-title p {
    font-size: 1.4rem;
    font-weight: normal;
    letter-spacing: 1.6px;
    color: var(--text-white);
    width: 60%;
    margin-bottom: 1.5rem;
}


/* CORE VALUES */
.core_values {
    width: 100%;
    height: auto;
    padding: 5rem 2rem;
}

.core_values h2 {
    font-size: 2rem;
    color: var(--primary-gold);
    font-family: "Century School Bokok";
}

.core_values h5 {
    font-size: 1.6rem;
    color: var(--primary-blue);
    margin-bottom: 0.8725rem;
}

.core_values div[class="col-lg-4 col-md-4 col-sm-12 col-12"] {
    margin-bottom: 0;
}


/* WHO WE ARE SECTION STYLES */
.who_we_are {
    width: 100%;
    height: auto;
    padding: 5rem 2rem;
    background: var(--primary-blue);
    color: var(--text-white);
}

.who_we_are img {
    width: 85%;
    height: 85%;
    object-fit: cover;
    object-position: top center;
    border-radius: var(--border-lg);
}

.who_we_are h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.who_we_are p {
    font-size: 1rem;
    width: 80%;
}


/* PRACTICE AREAS STYLES */
.practice_areas {
    width: 100%;
    height: auto;
    padding: 5rem 2rem;
    background: var(--primary-gold);
    color: var(--text-white);
}

.practice_areas h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.practice_areas p {
    font-size: 1rem;
    width: 80%;
}

.practice_areas ul li {
    margin-bottom: 1.6rem !important;
}

.practice_areas img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: var(--border-lg);
}



/* TESTIMONIALS */
.testimonials {
    width: 100%;
    height: auto;
    padding: 5rem 2rem;
}

.testimonials h3 {
    font-size: 1.8rem;
    margin-bottom: 1.4rem;
    color: var(--primary-blue);
}

.testimonials .card {
    border-color: transparent;
    box-shadow: var(--box-shadow);
    border-radius: var(--border-md);
    padding: 1rem 1.5rem;
}

.testimonials .carousel p {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.testimonials .carousel .carousel-indicators [data-bs-target] {
    border-radius: var(--rounded-full);
    background: var(--primary-blue);
    width: 14px;
    height: 14px;
    box-sizing: var(--primary-blue);
    border-top: none;
    border-bottom: none;
}

.testimonials .carousel .carousel-control-next, .testimonials .carousel .carousel-control-prev {
    color: var(--body-text-color);
}

.testimonials hr {
    background-color: var(--primary-blue);
    width: 80%;
    margin: 3rem auto;
}

.testimonials .contact_para {
    font-size: 1.2rem;
    color: var(--primary-blue);
    line-height: 1.7;
    margin-bottom: 3rem ;
}

.testimonials form {
    text-align: left;
}


/* ABOUT US */
.about_us {
    width: 100%;
    height: auto;
    padding: 1rem 2rem 5rem;
}

.about_us h2 {
    font-size: 4.4rem;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    z-index: 1000;
}

.about_us .about h3 {
    font-size: 2rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    text-decoration: underline;
    text-underline-offset: 1rem;
}

.about_us .about p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    width: 85%;
}

.about_us .about img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: var(--border-lg);
}


/* MISSION STYLES */
.mission {
    width: 100%;
    height: auto;
    padding: 5rem 2rem;
    background: var(--primary-blue);
    color: var(--text-white);
}

.mission h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: bolder;
    letter-spacing: 3px;
}

.mission p {
    font-size: 1.2rem;
    margin-bottom: 0.425rem;
}

.mission hr {
    background-color: var(--white-background);
    width: 100%;
    margin: 3rem auto;
}

/* TEAM STYLES */
.team {
    width: 100%;
    height: auto;
    padding: 5rem 2rem;
}

.team h3 {
    color: var(--primary-blue);
    margin-bottom: 0.4rem;
    font-size: 3.2rem;
}

.team h5 {
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    text-decoration: underline;
    text-underline-offset: 0.5rem;
}

.team p {
    color: var(--primary-blue);
    font-size: 1.2rem;
    width: 90%;
}

.team .team_achievement {
    font-weight: "bolder";
    font-size: 1.2rem;
    color: var(--primary-blue);
    letter-spacing: 1.2px;
}

.team ul li {
    margin-top: 1rem;
    color: var(--primary-blue);
}

.team img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: var(--border-lg);
}



/* PRACTICE STYLES */
.practice {
    width: 100%;
    height: auto;
    padding: 5rem 2rem;
}

.practice h3 {
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    text-decoration: underline;
    text-underline-offset: 0.5rem;
}

.pricing {
    width: 100%;
    height: auto;
    padding: 5rem 2rem;
    background: var(--primary-gold);
}

.pricing h2 {
    font-size: 3.2rem;
    color: var(--text-white);
}

.pricing p {
    font-size: 1.2rem;
    color: var(--text-white);
    margin-bottom: 1.5rem;
}

.pricing ol li {
    color: var(--text-white);
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.pricing_banner {
    width: 100%;
    height: auto;
    padding: 3rem 1rem;
}

.pricing_banner p {
    font-size: 1.2rem;
    color: var(--primary-blue);
}


/* CONTACT STYLES */
.contact {
    width: 100%;
    height: auto;
    padding: 5rem 2rem;
}

.contact h3 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    color: var(--primary-gold);
}

.contact p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-blue);
    width: 70%;
    margin-inline: auto;
}

.contact .contact_info {
    color: var(--primary-blue);
}

.contact .contact_info h4 {
    font-size: 1.4rem;
    letter-spacing: 1.2px;
}

.map_location {
    width: 100%;
    height: auto;
    padding: 3rem 1rem;
}


/* FOOTER STYLES */
footer {
    width: 100%;
    height: auto;
    padding: 5rem 2rem 2rem;
    background: var(--primary-blue);
    color: var(--text-white);
}

footer h4 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}


/* ALL MEDIA QUERIES */

@media only screen and (max-width: 576px) {
    header .phone_number {
        padding: 0.5rem 0.825rem; 
        background: var(--primary-blue);
        color: var(--text-white);
        border-radius: var(--rounded-full);
    }
    
    header .image-banner {
        width: 100%;
        height: 300px;
    }
    
    header .image-banner img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top center;
    }
    
    header .image-banner nav {
        padding: 1rem 0;
        background: transparent;
        position: absolute;
        top: 0;
        width: 100%;
    }

    header nav ul {
        margin-inline: auto;
    }
    
    header nav ul .list-inline-item {
        margin-right: 0.5rem !important;
    }
    
    header nav ul .list-inline-item:last-child {
        margin-right: 0.5rem !important;
    }

    header nav ul a {
        text-transform: uppercase;
        text-decoration: none;
        color: var(--text-white);
        padding: 0;
        font-weight: bold;
    }
    
    header nav ul a:hover, header nav ul a.active {
        text-underline-offset: 3px;
        text-decoration: underline;
        background: transparent;
        color: var(--text-white);
        border-radius: 0;
        padding: 0;
    }
    
    header .image-banner .headliner {
        font-size: 0.9725rem;
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 1rem;
        background: var(--black-o-3);
        color: var(--text-white);
        text-align: center;
    }

    .core_values {
        width: 100%;
        height: auto;
        padding: 3rem 1rem;
    }
    
    .core_values h2 {
        font-size: 2rem;
        color: var(--primary-gold);
        font-family: "Century School Bokok";
    }
    
    .core_values h5 {
        font-size: 1.4rem;
        color: var(--primary-blue);
        margin-bottom: 0.8725rem;
    }

    .core_values div[class="col-lg-4 col-md-4 col-sm-12 col-12"] {
        margin-bottom: 1rem;
    }

    .who_we_are {
        width: 100%;
        height: auto;
        padding: 3rem 1rem;
        background: var(--primary-blue);
        color: var(--text-white);
    }
    
    .who_we_are img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top center;
        border-radius: var(--border-lg);
        margin-bottom: 1rem;
    }
    
    .who_we_are h3 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .who_we_are p {
        font-size: 1rem;
        width: 100%;
    }

    .who_we_are .who_we_are_mobile {
        margin-bottom: 1.5rem;
    }

    .practice_areas {
        width: 100%;
        height: auto;
        padding: 3rem 1rem;
        background: var(--primary-gold);
        color: var(--text-white);
    }
    
    .practice_areas h3 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .practice_areas p {
        font-size: 1rem;
        width: 100%;
    }
    
    .practice_areas ul li {
        margin-bottom: 1.6rem !important;
    }

    .practice_areas .practice_areas_mobile {
        margin-top: 1.5rem;
    }
    
    .practice_areas img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        border-radius: var(--border-lg);
    }

    .testimonials .contact_para {
        font-size: 0.825rem;
        color: var(--primary-blue);
        line-height: 1.7;
        margin-bottom: 3rem;
    }

    .testimonials form input[type="email"] {
        margin-bottom: 1rem;
    }

    footer {
        width: 100%;
        height: auto;
        padding: 3rem 1rem 1rem;
        background: var(--primary-blue);
        color: var(--text-white);
    }
    
    footer h4 {
        font-size: 1.2rem;
        font-weight: bold;
        margin-bottom: 0.5rem;
    }

    footer div[class="col-lg-3 col-md-3 col-sm-6 col-12"] {
        margin-bottom: 1rem;
    }
}

@media only screen and (min-width: 576px) and (max-width: 768px) { 
    header .phone_number {
        padding: 0.5rem 0.825rem; 
        background: var(--primary-blue);
        color: var(--text-white);
        border-radius: var(--rounded-full);
    }
    
    header .image-banner {
        width: 100%;
        height: 300px;
    }
    
    header .image-banner img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top center;
    }
    
    header .image-banner nav {
        padding: 1rem 0;
        background: transparent;
        position: absolute;
        top: 0;
        width: 100%;
    }

    header nav ul {
        margin-inline: auto;
    }
    
    header nav ul .list-inline-item {
        margin-right: 0.5rem !important;
    }
    
    header nav ul .list-inline-item:last-child {
        margin-right: 0.5rem !important;
    }

    header nav ul a {
        text-transform: uppercase;
        text-decoration: none;
        color: var(--text-white);
        padding: 0;
        font-weight: bold;
    }
    
    header nav ul a:hover, header nav ul a.active {
        text-underline-offset: 3px;
        text-decoration: underline;
        background: transparent;
        color: var(--text-white);
        border-radius: 0;
        padding: 0;
    }
    
    header .image-banner .headliner {
        font-size: 0.9725rem;
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 1rem;
        background: var(--black-o-3);
        color: var(--text-white);
        text-align: center;
    }

    .core_values {
        width: 100%;
        height: auto;
        padding: 3rem 1rem;
    }
    
    .core_values h2 {
        font-size: 2rem;
        color: var(--primary-gold);
        font-family: "Century School Bokok";
    }
    
    .core_values h5 {
        font-size: 1.4rem;
        color: var(--primary-blue);
        margin-bottom: 0.8725rem;
    }

    .core_values div[class="col-lg-4 col-md-4 col-sm-12 col-12"] {
        margin-bottom: 1rem;
    }

    .who_we_are {
        width: 100%;
        height: auto;
        padding: 3rem 1rem;
        background: var(--primary-blue);
        color: var(--text-white);
    }
    
    .who_we_are img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top center;
        border-radius: var(--border-lg);
        margin-bottom: 1rem;
    }
    
    .who_we_are h3 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .who_we_are p {
        font-size: 1rem;
        width: 100%;
    }

    .who_we_are .who_we_are_mobile {
        margin-bottom: 1.5rem;
    }

    .practice_areas {
        width: 100%;
        height: auto;
        padding: 3rem 1rem;
        background: var(--primary-gold);
        color: var(--text-white);
    }
    
    .practice_areas h3 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .practice_areas p {
        font-size: 1rem;
        width: 100%;
    }
    
    .practice_areas ul li {
        margin-bottom: 1.6rem !important;
    }

    .practice_areas .practice_areas_mobile {
        margin-top: 1.5rem;
    }
    
    .practice_areas img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        border-radius: var(--border-lg);
    }

    .testimonials .contact_para {
        font-size: 0.825rem;
        color: var(--primary-blue);
        line-height: 1.7;
        margin-bottom: 3rem;
    }

    .testimonials form input[type="email"] {
        margin-bottom: 1rem;
    }

    footer {
        width: 100%;
        height: auto;
        padding: 3rem 1rem 1rem;
        background: var(--primary-blue);
        color: var(--text-white);
    }
    
    footer h4 {
        font-size: 1.2rem;
        font-weight: bold;
        margin-bottom: 0.5rem;
    }

    footer div[class="col-lg-3 col-md-3 col-sm-6 col-12"] {
        margin-bottom: 1rem;
    }
}

@media only screen and (min-width: 768px) and (max-width: 992px) { 
    header .phone_number {
        padding: 0.5rem 0.825rem; 
        background: var(--primary-blue);
        color: var(--text-white);
        border-radius: var(--rounded-full);
    }
    
    header .image-banner {
        width: 100%;
        height: 500px;
    }
    
    header .image-banner img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top center;
    }
    
    header .image-banner nav {
        padding: 1rem 3rem 1rem 0;
        background: transparent;
        margin-bottom: 0;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
    }
    
    header nav ul .list-inline-item {
        margin-right: 0.5rem !important;
    }
    
    header nav ul .list-inline-item:last-child {
        margin-right: 0.5rem !important;
    }

    header nav ul a {
        text-transform: uppercase;
        text-decoration: none;
        color: var(--text-white);
        padding: 0;
        font-weight: bold;
    }
    
    header nav ul a:hover, header nav ul a.active {
        background: var(--primary-blue);
        color: var(--text-white);
        border-radius: var(--border-md);
        padding: 1rem;
    }
    
    header .image-banner .headliner {
        font-size: 1.4rem;
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 1rem;
        background: var(--black-o-3);
        color: var(--text-white);
        text-align: center;
    }

    .core_values {
        width: 100%;
        height: auto;
        padding: 3rem 1rem;
    }
    
    .core_values h2 {
        font-size: 2rem;
        color: var(--primary-gold);
        font-family: "Century School Bokok";
    }
    
    .core_values h5 {
        font-size: 1.4rem;
        color: var(--primary-blue);
        margin-bottom: 0.8725rem;
    }

    .core_values div[class="col-lg-4 col-md-12 col-sm-12 col-12"] {
        margin-bottom: 1rem;
    }

    .who_we_are {
        width: 100%;
        height: auto;
        padding: 3rem 1rem;
        background: var(--primary-blue);
        color: var(--text-white);
    }
    
    .who_we_are img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top center;
        border-radius: var(--border-lg);
        margin-bottom: 1rem;
    }
    
    .who_we_are h3 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .who_we_are p {
        font-size: 1rem;
        width: 100%;
    }

    .who_we_are .who_we_are_mobile {
        margin-bottom: 1.5rem;
    }

    .practice_areas {
        width: 100%;
        height: auto;
        padding: 3rem 1rem;
        background: var(--primary-gold);
        color: var(--text-white);
    }
    
    .practice_areas h3 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .practice_areas p {
        font-size: 1rem;
        width: 100%;
    }
    
    .practice_areas ul li {
        margin-bottom: 1.6rem !important;
    }

    .practice_areas .practice_areas_mobile {
        margin-top: 1.5rem;
    }
    
    .practice_areas img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        border-radius: var(--border-lg);
    }

    .testimonials .contact_para {
        font-size: 0.825rem;
        color: var(--primary-blue);
        line-height: 1.7;
        margin-bottom: 3rem;
    }

    .testimonials form input[type="email"] {
        margin-bottom: 1rem;
    }

    footer {
        width: 100%;
        height: auto;
        padding: 3rem 1rem 1rem;
        background: var(--primary-blue);
        color: var(--text-white);
    }
    
    footer h4 {
        font-size: 1.2rem;
        font-weight: bold;
        margin-bottom: 0.5rem;
    }

    footer div[class="col-lg-3 col-md-3 col-sm-6 col-12"] {
        margin-bottom: 1rem;
    }
}

@media only screen and (min-width: 992px) { 

}