/*
    Author: Fara;
    Theme: AutistiCare Website;
    version: 1.0;
*/



/* CSS for all*/
:root{
    --green:#9CDBDB;
    --black:#444;
    --box-shadow:0.5rem 0.5rem 0 rgba(22,160,133,0.2);
    --text-shadow:0.4rem 0.4rem 0 rgba(0,0,0,0.2);
    --border:0.2rem solid var(--green)

}

*{
    margin: 0 0;
    padding: 0 0 ;
    font-family: Arial, Helvetica, sans-serif;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-transform: capitalize;
    transition: all .2s ease ease-out;
    text-decoration: none;
}

body{
    background-color: #fff;
    /*background-image: url(../images/bg.png );*/
    background-size: cover;
    background-position: center;

}

.container{  
    width: 100%;
    /*margin: 0 auto; 
    padding: 1%;*/
}

.img-responsive{
    width: 100%;
}

/*.img-curve{
    border-radius: 20%;
}*/

.text-right{
    text-align: right;
}

.text-left{
    text-align: left;
}
.text-justify{
    text-align: justify;
}

.text-center{
    text-align: center;
}
.clearfix{
    clear: both;
    float: none;
}
.text-color{
    color: black;
}

.success{
    color: #9CDBDB;
}

.error{
    color: #FF8FAB;
}


.btn{
    padding: 1%;
    border: none;
    font-size: 1rem; 
    border-radius: 5px ;
    
}

.btn-submit{
    background-color: #9CDBDB;
    cursor: pointer;
    width: 100%; /* Adjust the width as needed */
    height: 40px; /* Adjust the height as needed */
    margin-left: 10px; 
    top: 75%; /* Adjust the distance from the bottom */
    left: 55%;
}

.btn-appoinment{
    background-color: #9CDBDB;
    cursor: pointer;
    position: absolute;
    width: 30%; /* Adjust the width as needed */
    height: 30px; /* Adjust the height as needed */
    margin-left: 10px; 
    left: 55%;
}

.btn-primary{
    background-color: #9CDBDB;
    cursor: pointer;
    position: absolute;
    bottom: 10px; /* Adjust the distance from the bottom */
    left: 70%;
    transform: translateX(-50%);
    width: 80px; /* Adjust the width as needed */
    height: 40px; /* Adjust the height as needed */
    margin-left: 10px; 
}

.btn-primary:hover{
    background-color: #23abab;
}

h2{
    color: #2f3542;
    font-size: 1rem;
}


h1{
    
    font-size: 3rem;
}


.float-container{
    position: relative
}

.float-text{
    position: absolute;
}

td[data-cell="email"] {
    text-transform: lowercase;
}
  
/*CSS for navbar section*/
nav{
    /*position: fixed;*/
    position: relative;
    width: 100%;
    background-color: #fff;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.15);
}

nav img{
    width: 100px;
    cursor: pointer;
    margin: 0%;
    padding: 0%;
}

nav .navbar ul{
    display: flex; /*everything in one row*/
    justify-content: flex-end;
    align-items: center;
    
}

nav .navbar ul li{
    list-style: none;
    margin-left: 30px;
    padding: 2vw;
}

nav .navbar ul li a{
    text-decoration: none;
    color: #675130;
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s ease;
}

nav .navbar ul li a:hover{
    color: #CAC2B6;
}

/*Footer*/
footer{
    position: relative;
    width: 100%;
    background-color: #fff;
    align-items: center;
    padding: 2vw 2vw;
}



/*CSS for home*/








/*CSS for consultation.html*/


/*CSS for Book Appoinment Page*/



/*CSS for details.html*/
.details-wrapper{
    width: 80%; /*min(900px, 100% - 3rem)*/
    margin-inline: auto;
}

table{
    border-collapse: collapse;
    background: #Fff;
    box-shadow: 0 1px 4px 0 rgba(0,0,50,0.3);
    width: 100%;
    margin: 2rem;
}

th{
    font-size: 1rem;
    text-transform: uppercase;
    padding: 1rem; 
    background-color: #9CDBDB;
    
}

td{
    padding: 1rem; 
    font-size: 0.8rem;
}

/*tr:nth-of-type(2n){
    background: #CAC2B6;
}*/

@media (max-width: 650px){
    th{
        display: none;
    }
    td{
        display: block;
        padding: .75rem 1rem;
    }
    td:first-child{
        padding-top: 1rem;
    }
    td:last-child{
        padding-bottom: 1rem;
    }
    td::before{
        content: attr(data-cell) ": ";
        font-weight: 700;
        text-transform: uppercase;
    }
}
/*CSS for button for all*/
button{
    border: none;
    width: 164px;
    height: 51px;
    margin: auto;
    margin-top: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 0;
    background: #9CDBDB;
    font-size: 15px;
    color: black;
}
button:hover{
    background: #23abab;
}


/*CSS for psychoeducation.html*/


/*CSS for slotform.html*/
h3{
    margin: 0;
}

img{
    max-width: 100%;
}

:focus{
    outline: none;
}

.wrapper{
    min-height: 100vh;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inner{
    padding: 20px;
    background: #fff;
    max-width: 1000px;
    margin: auto;
    display: flex;
}

.inner img{
    width: 50%;
}

.inner form{
    width: 50%;
    padding-top: 36px;
    padding-left: 10px;
    padding-right: 10px;
    margin: 5px;
}

.inner h3{
    text-transform: uppercase;
    font-size: 25px;
    text-align: center;
    margin-bottom: 28px;
    color: #23abab;
}
.form-group{
    display: flex;
}

.form-group input{
    width: 50%;
}

.form-group input:first-child{
    margin-right: 25px;
}

.form-wrapper{
    position: relative;
}

.form-control{
    border: 1px solid #9CDBDB;
    border: none;
    border-bottom: 1px solid #9CDBDB;
    display: block;
    width: 100%;
    height: 30px;
    padding-right: 0;
    margin: 25px;
}



@media (max-width: 1000px){
    .inner{
        display: block;
    }
    .inner .image-holder{
        width: 100%;
    }
    .inner form{
        width: 100%;
        padding: 40px 0 30px;
    }
    button{
        margin-top: 60px;
    }
}

  
