@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
}


body {
    font-family:'Roboto', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: white;
}

a {
    text-decoration: none;
}

a:hover, a:focus {
    text-decoration: none;
}

hr {
    color: white;
    width: 100%;
}

h2 {
    text-align: center;
    text-decoration: underline;
    text-underline-offset: 10px;
    text-decoration-color: #6ac05f;
    padding-bottom: 10px;
}

nav {
    position: sticky;
    top: 0;
    overflow: hidden;

    background-color: #fff;
    box-shadow: 3px 3px 5px rgba(0,0,0,0.1);
    z-index: 999;
}

nav ul {
    width: 100%;
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 0;
}

nav li {
    height: 150px;
}

nav a {
    height: 100%;
    padding:0 30px;
    text-decoration: none;
    display: flex;
    align-items: center;
    color: #000;
}

nav a:hover {
    background-color: #f0f0f0;
}

nav li:first-child {
    margin-right: auto;
}

.email {
    color: #f5821f;
}

.email-header {
    padding-left: 1;
}

.sidebar{
    position: fixed;
    top: 50px;
    right: 0;
    height: 100vh;
    width: 250px;
    z-index: 999;
    background-color: rgba(255, 255,255, 0.2);
    -webkit-backdrop-filter: blur(60px);
    backdrop-filter: blur(60px);
    box-shadow: -10px 0 10px rgba(0,0,0,0.1);
    display:none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    cursor:context-menu;
}

.sidebar li {
    width: 100%;
}

.sidebar a {
    width: 100%;
}

.menu-button {
    display: none;
}

.main-logo {
    width: 200px;
    /* height: 150px; */
}



section {
    padding: 110px;
    position: relative;
    color: #058ddd;
}

section ul li::marker {
    color: #f5821f;
    font-size: 1.5rem;
}

.container {
    border: 1px solid #79b3e9;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
    padding: 20px 10px;
    border-radius: 25px;
}

.two-column {
    display: flex;
    gap: 30px;

}

/****************
    Index - Hero Section
*****************/
.section-hero {
    min-height: 50vh;
    color: white;
    /* opacity: 0.5; */
    background-image: url('../images/01.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;

    display:flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.section-hero hr {
    opacity: .75;
}

.hero-text {
    /* color: #058ddd; */

    font-weight: 300;
    font-size: 2.3rem;
    text-align: justify;
    /* padding: 20px 0; */
}

.appointments {
    padding-top: 30px;
    padding-bottom: 30px;
}

.appointments .container {
    text-align: center;
    font-size:2rem;
}

/* .section-what-is {

} */

.section-autism-signs {
    padding-top: 50px;
}

.section-autism-child {
    background-color: #eef3f8;
}

.section-autism-child .container{
    border: none;
    box-shadow: none;
}

/* .section-adhd-myths {
} */

.section-adhd-myths .container {
    border: none;
    box-shadow: none;
}


.truth {
    display:none;
}

.truth-paragraph {
    display: none;
}

.adhd-myths-cards {
    width: 100%;
}

.myth-card {
    border: 1px solid #6ac05f;
    border-radius: 25px;
    padding: 20px;
    margin-bottom: 20px;;
    display: flex;
    gap:30px;    
}

.myth-card:hover {
    background-color: white;

    .truth {
        display: block;
    }
    .truth-paragraph {
        display: block;
    }

    .myth {
        display: none;
    }

    .myth-paragraph {
        display: none;
    }

}

.myth-card-title {
    font-size: 2rem;
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.align-right {
    justify-content: right;
}

.myth-card-body {
    width: 90%;
    min-width: 250px;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: justify;
}




.section-fees {
background-color: #eef3f8;
}

.section-fees .container {
    border: none;
    box-shadow: none;
}

.price-cards {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 30px;
}

.price-card {
    min-width: 300px;
    width: 300px;
    height: 540px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 5px 5px 10px 1px rgba(0,0,0,0.5);
    transition: all 0.3s ease-out;    
}

.price-card-hdr {
    color: white;
    height: 170px;
    border-bottom: #e3e3e3;
    background-color: #2f9cd5;
    font-size: 1.8rem;
    text-align: center;
    padding-top: 30px;
    position: relative;    
}

.price-card-price {
    text-align: center;
    line-height: 3rem;
    font-size: 2rem;
}

.price-card-body {
    background-color: #dbf1f4;
    height: 370px;
    padding: 20px;
    display: flex;
    /* align-items: center;     */
}

.section-message {
    padding-top: 20px;
    padding-bottom: 20px;
    color: white;
}

.section-message .container {
    border-color: #AA560D;
    background-color: #F5621f;
}

.company-name {
    font-style: italic;
    font-size: 1.1rem;
}

footer {
    background-color: #eef3f8;
    color:#058ddd;
    padding: 20px;
}

.footer-container {
    width: 100%;
    display: flex;
    justify-content: space-around;
}

.address {
    position: relative;
    right: 30px;
}

.copyright {
    width: 1005;
    text-align: center;
    padding-top: 0;
    padding-bottom: 20px;
}

@media(max-width: 1184px){
    .hide-on-mobile {
        display: none;
    }

    .menu-button {
        display: block;
    }   
}

@media(max-width: 800px){
    html {
        scroll-padding-top: 140px;
    }
    
    section {
        padding: 30px;        
    }
    nav li:first-child {
        margin-right: 0;
    }
    .main-logo {
        width: 150px;
        /* height: 150px; */
    }    
}

@media(max-width: 550px) {

    h2 {
        text-underline-offset: 6px;
        text-decoration-color: #6ac05f;
        padding-bottom: 10px;
        line-height: 34px;
    }
        
    .myth-card {
        width: 100%;
        padding: 10px;
        gap:15px;    
    }

    .myth-card-title {
        font-size: 1.6rem;
        width: 60px;
    }

    .myth-card-body {
        width: 60%;
    }

    .myth-paragraph {
        text-align: start;
    }

    .two-column {
        flex-direction: column;
        gap:20px;
    }

    .footer-container {
        flex-direction: column;
    }  
    
    .address {
        padding: 30px;
    }    
}

@media(max-width: 400px) {
    .sidebar {
        width:100%;
    }

    .no-padding-right {
        padding-right: 0;
    }

    .email-header {
        padding-left: 30px;
        padding-right: 5px;
    }



    section {
        padding: 5px;
    }

    .hero-text {        
        text-align: justify;
        font-size: 1.4rem;
    }
}
@media(min-width: 1185px) {
    .sidebar {
        /* overides the inline style applied by the javascript */
        display: none !important;
    }
}

