/* ========== BEGIN: Google Fonts ========== */

@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

/* ========== END: Google Fonts ========== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-font: "Raleway", sans-serif;
    --secondary-font: "Nunito", sans-serif;
    --primary-color: #FFFFFF;
    --secondary-color: #404042;
    --tertiary-color: #72b5d8;
    --quaternary-color: #40a3d8;
}

.about-us-hero {
    height: 800px;
    background-image: url(../img/about-us-header.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-color: var(--secondary-color);
    background-blend-mode: overlay;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.about-us-heading {
    font-family: var(--primary-font);
    color: var(--primary-color);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.about-us-heading h1 {
    font-size: clamp(24px, 5vw, 50px);
    font-weight: 700;
}

.about-us-heading p {
    font-size: clamp(16px, 5vw, 24px);
    font-weight: 500;
}

.about-us-heading p.serving-areas {
    font-weight: 600;   
}

.about-us-heading h1,
.about-us-heading p {
    margin-bottom: clamp(0.5rem, 3vw, 1.25rem);
}

.about-us-heading a {
    font-size: clamp(14px, 3vw, 18px);
    font-weight: 500;
    background-color: var(--tertiary-color);
    border-radius: 60px;
    border: 2px solid var(--quaternary-color);
    padding-inline: clamp(1.3rem, 5vw, 2rem);
    padding-top: clamp(0.3rem, 5vw, 1rem);
    padding-bottom: clamp(0.3rem, 5vw, 1rem);
    transition: all 0.3s ease;
}

.about-us-heading a:hover {
    color: #000;
    background-color: transparent;
    border: 2px solid var(--quaternary-color);
}

.about-us-content {
    padding-top: clamp(2rem, 5vw, 4rem);
}

.about-us-content h2 {
    font-family: var(--primary-font);
    font-size: clamp(20px, 5vw, 38px);
    font-weight: 600;
    position: relative;
    text-align: center;
    margin-bottom: clamp(1rem, 3vw, 3rem);
}

.about-us-content h2 span {
    position: relative;
}

.about-us-content h2 span::before,
.about-us-content h2 span::after {
    content: "\A";
    width: 50px;
    height: 10px;
    background: url(../img/h1_line.png) no-repeat;
    display: inline-block;
    margin: 0 5px;
}

.about-us-content p,
.about-us-content ul li {
    font-family: var(--secondary-font);
    font-size: clamp(14px, 3vw, 18px);
    font-weight: 500;
}

.about-us-text-row {
    margin-bottom: clamp(2rem, 5vw, 4rem);
}

.about-us-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* align-items: center; */
    height: 100%;
}

.about-us-text p {
    margin-bottom: 1rem;
}

.about-us-content-img {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.about-us-content-img img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.timing-box {
    font-family: var(--primary-font);
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: clamp(1rem, 3vw, 2rem);
}

.timing-box i {
    color: var(--tertiary-color);
    margin-right: 0.3rem;
    font-size: clamp(18px, 5vw, 36px);
}

.practice-timings {
    background-color: var(--tertiary-color);
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-inline: clamp(1rem, 3vw, 2rem);
    width: 100%;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    display: flex;
    justify-content: space-between;
}

.practice-timings span,
.private-patients-announcement p {
    font-size: 16px;
    font-weight: 600;
}

.private-patients-announcement .weekly-implant {
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 18px;
}

.private-patients-announcement .sat-app {
    margin-bottom: 3rem;
}

@media (max-width: 1199px){
    .about-us-content-img {
        padding: 0rem;
    }   
}

@media (max-width: 991px){
    .about-us-hero {
        height: 500px;
    }    
}

@media (max-width: 575px){
    .about-us-hero {
        height: 400px;
    }    
}

@media (max-width: 475px){
    .about-us-content h2 span::before,
    .about-us-content h2 span::after {
        height: 7px;
    }
}