@charset "utf-8";
/* CSS Document */

/*
mynewdj Color Pallette
Dark Blue      HEX: #2675E7 RGB: 38  117 231
mynewdj Teal   HEX: #52EBF5 RGB: 82  235 245
Creamy White   HEX: #F1F7EE RGB: 
Slate Grey     HEX: #708090
Alert Red      HEX: #EB5E55
Almost Black   HEX: #0A0809
*/


body{
	font-family: 'Open Sans', sans-serif;
	color: #0A0809;
    background-color: #edf3fd;
    background-image: url("../images/banner_musical_1825867_stockunlimited_(Transparent)2333x583.png");
    background-size:cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    margin: 0;
	
}
main{
    text-align: center;
}
section {
    background-color: white;
    padding: 10px 30px;
}
footer{
    text-align: center;
}
h1 {
    font-family: 'Abel', sans-serif;
	font-size: 32px;
	font-weight: 600;
}
h2 {
    text-align: left;
    font-size: 24px;
    font-weight: 600;
}
h3 {
	font-size: 20x;
	font-weight: 600;
}
h4{
    font-size: 14px;
    font-weight: 600;
}
p{
    font-size: 12px;
    line-height: 200%;
}
.text-justify{
    text-align: justify;
    padding: 0 5px;
}
.bgImage{

}
button{
    background-color: #2675E7;
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 5px;
}
.main-content{
    text-align: center;
    background-color: #F1F7EE;
}
.section-heading{
    background-color: #708090;
    text-align: center;
    margin: 10px 0;
    padding: 0 5px;
}
.section-heading h2{
    margin: 5px 0;
}
.sectin-heading p{
    text-align: center;
}
.img_gallery{
    display: flex;
    justify-content: center;
    width: 100%;
}
.img_gallery img{
    width: 18%;
    padding: 5px;
    -webkit-transition: width 2s; /*Safari*/
    transition: width 2s ease-in-out;
}
.img_gallery:hover img{
    width: 18%;
    height: 18%
}
.img_gallery img:hover{
    width: 50%;
    max-width: 600px;
}
.click_consultation{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50px;
    border: 2px solid #2675E7;
    border-radius: 25px;
    cursor: pointer;
    -webkit-transition: width .8s ease-out .2s; /*Safari*/
    transition: width .8s ease-out .2s;
}

@media screen and (min-width: 375px){
 h1 {
	font-size: 40px;
     text-align: center;
}
h2 {
    font-size: 28px;
}
h3 {
	font-size: 22x;
}
h4{
    font-size: 18px;
}
p{
    font-size: 16px;
}        
}

@media screen and (min-width: 975px){
main{
    width: 75vw;
    margin: auto;
}
h1 {

font-size: 48px;
}
h2 {
    font-size: 36px;
}
h3 {
	font-size: 28px;
}
h4{
    font-size: 24px;
}
p{
    font-size: 20px;
}
.click_consultation{
    width: 50%;
    margin: auto;
}
.click_consultation:hover{
    border-color: #2675E7;
    background-color: #2675E7;
    width: 100%;
}
    button:hover{
        cursor:pointer;
    }
}