

/*---------------  PAYPAL BUTTON -----------------*/
.btn-PayPal {
    border: 1px solid #0070BA;
    color: #fff;
    background-color: #0070BA;
     padding-left: 30px;
    padding-right: 30px;
}

.btn-PayPal:hover,
.btn-PayPal:focus {
    border: 1px solid #002F86;
    outline: 0;
    color: #fff;
    background-color: #002F86;
}

/*------------ DISPLAYED DESKTOP NAVIGATION ------ */
/*----------- Categories Accordion -------------*/

/* Style the buttons that are used to open and close the accordion panel */
button.accordion {
    background-color: #916A99;
    color: #fff;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: left;
    border: ;
  border-radius: 5px;
    outline: none;
    transition: 1.4s;
  font-size: 18px;
  margin-bottom: 20px;
  box-shadow: 5px 5px 10px #848484;
}


/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
button.accordion.active, button.accordion:hover {
    background-color: #76C24C;
}

/* Style the accordion panel. Note: hidden by default */
div.panel {
    padding: 0 18px;
    background-color: white;
    display: none;
}

/* The "show" class is added to the accordion panel when the user clicks on one of the buttons. This will show the panel content */
div.panel.show {
    display: block;
}
div.panel {
    padding: 0 18px;
    background-color: #faf8ef;
    max-height: 0;
    overflow: hidden;
    transition: 1.6s ease-in-out;
    opacity: 0;
    border: 1px solid #e2d8b6;
  box-shadow: 5px 5px 10px #848484;
}


div.panel.show {
    opacity: 1;
    max-height: 100%; /* Whatever you like, as long as its more than the height of the content (on all screen sizes) */
}
button.accordion:after {
    content: '\025BC'; /* Unicode character for "plus" sign (+) */
    font-size: 14px;
    color: #fff;
    float: right;
    margin-left: 5px;
}

button.accordion.active:after {
    content: "\25B2"; /* Unicode character for "minus" sign (-) */
}
.outline {
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #1C235F;
}

/*---------- HOME PAGE HEADER SECTION ------------*/


#homepage-header {
  padding-top: 190px;
  padding-bottom: 100px;
  width: 100%;
  height: auto;
  background-color: #f2f2f2;
  color: #fff;
  background: url(../img/headers/header-2.jpg) no-repeat center center scroll;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
}
#homepage-header h1 {
  font-family: montserrat;
  font-weight: 500;
  font-size: 40px;
  text-align: center;
  color: #ffffff;
  margin-bottom: 10px;
  margin-top: 0px;
  text-transform: none;
}
@media(max-width:768px) {
    #homepage-header h1 {
        font-size: 28px;
    }
}
#homepage-header h2 {
  font-family: montserrat;
  font-weight: 400;
  font-size: 30px;
  text-align: center;
  color: #ffffff;
  margin-bottom: 20px;
  text-transform: none;
  
}
@media(max-width:768px) {
    #homepage-header h2 {
        font-size: 26px;
    }
}
#homepage-header p {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 0px;
  font-size: 24px;
  font-family: montserrat;
  fornt-weight: 500;
}
@media(max-width:768px) {
    #homepage-header p {
        font-size: 20px;
    }
}
#homepage-header a {
    color: #1C225E;
  font-size: 22px;
  font-weight: 500;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

#homepage-header a:hover,
#homepage-header a:focus {
    text-decoration: none;
    color: #fff;
}
.btn-header {
    border: 1px solid #fff;
    color: #1C225E;
    background-color: #fff;
}

.btn-header:hover,
.btn-header:focus {
    border: 1px solid #77C34C;
    outline: 0;
    color: #fff;
    background-color: #77C34C;
}

#Logo-Band {
  padding-top: 0px;
  padding-bottom: 0px;
  width: 100%;
  height: auto;
  background-color: #fff;
}
#Logo-Band img {
  margin-top: 0px;
  margin-bottom: 0px;
}


/*---------- ABOUT SECTION ------------*/
#intro {
  padding-top: 50px;
  padding-bottom: 50px;
  width: 100%;
  height: auto;
  background-color: #F9F7F0;
  color: #0d0d0d;
}
#intro h2 {
  font-family: Raleway;
  font-weight: 400;
  font-size: 50px;
  text-align: center;
  color: #916A9B;
  margin-bottom: 5px;
  text-transform: none;
}
@media(max-width:768px) {
    #intro h2 {
        font-size: 40px;
    }
}
#intro p {
  font-family: montserrat;
  font-weight: 400;
  font-size: 20px;
  text-align: left;
  color: #0d0d0d;
}
@media(max-width:768px) {
    #intro p {
        font-size: 18px;
    }
}
#intro a {
    color: #4072B4;
  font-size: 20px;
  font-weight: 500;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
  text-decoration: underline;
}

#intro a:hover,
#intro a:focus {
    text-decoration: underline;
    color: #333;
}


/*---------- SERVICES SECTION ------------*/
@media(max-width:768px) {
    #services  {
        display:none;
    }
}
@media(min-width:768px) {
    #services-mobile  {
        display:none;
    }
}



#services {
  padding-top: 50px;
  padding-bottom: 50px;
  width: 100%;
  height: auto;
  background-color: #f2f2f2;
  color: #0d0d0d;
}
#services h2 {
  font-family: Raleway;
  font-weight: 400;
  font-size: 50px;
  text-align: center;
  color: #916A9B;
  margin-bottom: 5px;
  text-transform: none;
}
@media(max-width:768px) {
    #services h2 {
        font-size: 40px;
    }
}
#services h3 {
  font-family: Raleway;
  font-weight: 400;
  font-size: 22px;
  text-align: left;
  color: #0d0d0d;
  text-transform: none;
}
@media(max-width:768px) {
    #services h3 {
        font-size: 26px;
    }
}

#services p {
  font-family: montserrat;
  font-weight: 400;
  font-size: 20px;
  text-align: left;
  color: #0d0d0d;
}
@media(max-width:768px) {
    #services p {
        font-size: 18px;
    }
}
#services a {
    color: #0d0d0d;
  font-size: 22px;
  font-weight: 500;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
  text-decoration: underline;
}

#services a:hover,
#services a:focus {
    text-decoration: underline;
    color: #f2f2f2;
}

.btn-services {
    border: 1px solid #77C24D;
    color: #fff;
    background-color: #77C24D;
}

.btn-services:hover,
.btn-services:focus {
    border: 1px solid #46354D;
    outline: 0;
    color: #fff;
    background-color: #46354D;
}




/*---------- SERVICES MOBILE SECTION ------------*/
#services-mobile {
  padding-top: 50px;
  padding-bottom: 50px;
  width: 100%;
  height: auto;
  background-color: #f2f2f2;
  color: #0d0d0d;
}
#services-mobile h2 {
  font-family: Raleway;
  font-weight: 400;
  font-size: 50px;
  text-align: center;
  color: #916A9B;
  margin-bottom: 5px;
  text-transform: none;
}
@media(max-width:768px) {
    #services-mobile h2 {
        font-size: 40px;
    }
}
#services-mobile h3 {
  font-family: Raleway;
  font-weight: 400;
  font-size: 30px;
  text-align: left;
  color: #0d0d0d;
  text-transform: none;
}
@media(max-width:768px) {
    #services-mobile h3 {
        font-size: 20px;
    }
}

#services-mobile p {
  font-family: montserrat;
  font-weight: 400;
  font-size: 20px;
  text-align: left;
  color: #0d0d0d;
}
@media(max-width:768px) {
    #services-mobile p {
        font-size: 18px;
    }
}
#services-mobile a {
    color: #0d0d0d;
  font-size: 22px;
  font-weight: 500;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
  text-decoration: underline;
}

#services-mobile a:hover,
#services-mobile a:focus {
    text-decoration: underline;
    color: #f2f2f2;
}


/*---------- BAND SECTION ------------*/
#band {
  padding-top: 40px;
  padding-bottom: 30px;
  width: 100%;
  height: auto;
  background-color: #4476B6;
}
#band h2 {
  font-family: Raleway;
  font-weight: 300;
  font-size: 40px;
  text-align: center;
  color: #f2f2f2;
  text-transform: none;
  margin-top: 0px;
  margin-bottom: 20px;
}
@media(max-width:768px) {
    #band h2 {
        font-size: 28px;
    }
}
#band a {
    color: #0d0d0d;
  font-size: 22px;
  font-weight: 500;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

#band a:hover,
#band a:focus {
    text-decoration: none;
    color: #fff;
}
.btn-band {
    border: 1px solid #D00606;
    color: #1C225E;
    background-color: #D00606;
}

.btn-band:hover,
.btn-band:focus {
    border: 1px solid #ad0505;
    outline: 0;
    color: #fff;
    background-color: #ad0505;
}





/*-- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^  PAGES ^^^^^^^^^^^^^^^^^^^^^^ --*/
#pages-header img {
  margin-top: 0px;
  margin-bottom: 30px;
}
#pages-header {
  padding-top: 70px;
  padding-bottom: 20px;
  width: 100%;
  height: auto;
  background-color: #fff;
}
#pages-header h2 {
  font-family: Raleway;
  font-weight: 400;
  font-size: 50px;
  text-align: center;
  color: #916A99;
  margin-bottom: 5px;
  text-transform: none;
}
@media(max-width:768px) {
    #pages-header h2 {
        font-size: 40px;
    }
}

/*---------- SOCIAL SKILLS PAGE ------------*/
#social-skills-page {
  padding-top: 50px;
  padding-bottom: 30px;
  width: 100%;
  height: auto;
  background-color: #fff;
  color: red;
}
#social-skills-page h3 {
  font-family: Raleway;
  font-weight: 600;
  font-size: 36px;
  text-align: left;
  color: #916A99;
  margin-bottom: 20px;
  text-transform: none;
}
@media(max-width:768px) {
    #social-skills-page h3 {
        font-size: 30px;
    }
}

#social-skills-page p {
  font-family: montserrat;
  font-weight: 400;
  font-size: 20px;
  text-align: left;
  color: #0d0d0d;
}
@media(max-width:768px) {
    #social-skills-page p {
        font-size: 18px;
    }
}
#social-skills-page a {
    color: #916A99;
  font-weight: 500;
  text-decoration: underline;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

#social-skills-page a:hover,
#social-skills-page a:focus {
    text-decoration: underline;
    color: #a6a6a6;
  font-weight: 500;
}


/*---------- SERVICES PAGE ------------*/
#services-page {
  padding-top: 50px;
  padding-bottom: 30px;
  width: 100%;
  height: auto;
  background-color: #fff;
  color: red;
}
#services-page h3 {
  font-family: Raleway;
  font-weight: 600;
  font-size: 36px;
  text-align: left;
  color: #916A99;
  margin-bottom: 20px;
  text-transform: none;
}
@media(max-width:768px) {
    #services-page h3 {
        font-size: 30px;
    }
}

#services-page p {
  font-family: montserrat;
  font-weight: 400;
  font-size: 20px;
  text-align: left;
  color: #0d0d0d;
}
@media(max-width:768px) {
    #services-page p {
        font-size: 18px;
    }
}
#services-page a {
    color: #916A99;
  font-weight: 500;
  text-decoration: underline;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

#services-page a:hover,
#services-page a:focus {
    text-decoration: underline;
    color: #a6a6a6;
  font-weight: 500;
}



/*---------- PAYMENTS PAGE ------------*/
#Payments {
  padding-top: 50px;
  padding-bottom: 30px;
  width: 100%;
  height: auto;
  background-color: #fff;
  color: red;
}
#Payments h3 {
  font-family: Raleway;
  font-weight: 600;
  font-size: 36px;
  text-align: left;
  color: #916A99;
  margin-bottom: 20px;
  text-transform: none;
}
@media(max-width:768px) {
    #Payments h3 {
        font-size: 30px;
    }
}

#Payments p {
  font-family: montserrat;
  font-weight: 400;
  font-size: 20px;
  text-align: left;
  color: #0d0d0d;
}
@media(max-width:768px) {
    #Payments p {
        font-size: 18px;
    }
}
#Payments a {
    color: #916A99;
  font-weight: 500;
  text-decoration: underline;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

#Payments a:hover,
#Payments a:focus {
    text-decoration: underline;
    color: #a6a6a6;
  font-weight: 500;
}

/*---------- BIOS PAGE ------------*/
#Bios {
  padding-top: 50px;
  padding-bottom: 30px;
  width: 100%;
  height: auto;
  background-color: #fff;
  color: red;
}
#Bios h3 {
  font-family: Raleway;
  font-weight: 600;
  font-size: 36px;
  text-align:center;
  color: #0d0d0d;
  margin-bottom: 20px;
  text-transform: none;
}
@media(max-width:768px) {
    #Bios h3 {
        font-size: 30px;
    }
}

#Bios p {
  font-family: montserrat;
  font-weight: 400;
  font-size: 20px;
  text-align: left;
  color: #0d0d0d;
}
@media(max-width:768px) {
    #Bios p {
        font-size: 18px;
    }
}


/*---------- EMPLOYMENT PAGE ------------*/
#employment-page {
  padding-top: 50px;
  padding-bottom: 30px;
  width: 100%;
  height: auto;
  background-color: #fff;
  color: red;
}
#employment-page h3 {
  font-family: Raleway;
  font-weight: 600;
  font-size: 36px;
  text-align: left;
  color: #916A99;
  margin-bottom: 20px;
  text-transform: none;
}
@media(max-width:768px) {
    #employment-page h3 {
        font-size: 30px;
    }
}

#employment-page p {
  font-family: montserrat;
  font-weight: 400;
  font-size: 20px;
  text-align: left;
  color: #0d0d0d;
}
@media(max-width:768px) {
    #employment-page p {
        font-size: 18px;
    }
}
#employment-page a {
    color: #916A99;
  font-weight: 500;
  text-decoration: underline;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

#employment-page a:hover,
#employment-page a:focus {
    text-decoration: underline;
    color: #a6a6a6;
  font-weight: 500;
}

/*---------- STAFF PAGE ------------*/
#staff-page {
  padding-top: 50px;
  padding-bottom: 30px;
  width: 100%;
  height: auto;
  background-color: #fff;
  color: red;
}
#staff-page h3 {
  font-family: Raleway;
  font-weight: 600;
  font-size: 36px;
  text-align: left;
  color: #916A99;
  margin-bottom: 20px;
  text-transform: none;
}
@media(max-width:768px) {
    #staff-page h3 {
        font-size: 30px;
    }
}

#staff-page p {
  font-family: montserrat;
  font-weight: 400;
  font-size: 20px;
  text-align: left;
  color: #0d0d0d;
}
@media(max-width:768px) {
    #staff-page p {
        font-size: 18px;
    }
}
#staff-page a {
    color: #916A99;
  font-weight: 500;
  text-decoration: underline;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

#staff-page a:hover,
#staff-page a:focus {
    text-decoration: underline;
    color: #a6a6a6;
  font-weight: 500;
}

/*---------- CONTACT PAGE ------------*/
#contact-page {
  padding-top: 50px;
  padding-bottom: 30px;
  width: 100%;
  height: auto;
  background-color: #fff;
  color: red;
}
#contact-page h3 {
  font-family: Raleway;
  font-weight: 600;
  font-size: 36px;
  text-align: left;
  color: #916A99;
  margin-bottom: 20px;
  text-transform: none;
}
@media(max-width:768px) {
    #contact-page h3 {
        font-size: 30px;
    }
}

#contact-page p {
  font-family: montserrat;
  font-weight: 400;
  font-size: 20px;
  text-align: left;
  color: #0d0d0d;
}
@media(max-width:768px) {
    #contact-page p {
        font-size: 18px;
    }
}
#contact-page a {
    color: #916A99;
  font-weight: 500;
  text-decoration: underline;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

#contact-page a:hover,
#contact-page a:focus {
    text-decoration: underline;
    color: #a6a6a6;
  font-weight: 500;
}

/*---------- RESOURCES PAGE ------------*/
#resources-page {
  padding-top: 50px;
  padding-bottom: 30px;
  width: 100%;
  height: auto;
  background-color: #fff;
  color: red;
}
#resources-page h3 {
  font-family: Raleway;
  font-weight: 600;
  font-size: 36px;
  text-align: left;
  color: #916A99;
  margin-bottom: 20px;
  text-transform: none;
}
@media(max-width:768px) {
    #resources-page h3 {
        font-size: 30px;
    }
}

#resources-page p {
  font-family: montserrat;
  font-weight: 400;
  font-size: 20px;
  text-align: left;
  color: #0d0d0d;
}
@media(max-width:768px) {
    #resources-page p {
        font-size: 18px;
    }
}
#resources-page a {
    color: #916A99;
  font-weight: 500;
  text-decoration: underline;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

#resources-page a:hover,
#resources-page a:focus {
    text-decoration: underline;
    color: #a6a6a6;
  font-weight: 500;
}

/*---------- CONTINUING EDUCATION PAGE ------------*/
#Continuing-Ed {
  padding-top: 0px;
  padding-bottom: 30px;
  width: 100%;
  height: auto;
  background-color: #fff;
  color: red;
}

#Continuing-Ed p {
  font-family: montserrat;
  font-weight: 400;
  font-size: 20px;
  text-align: left;
  color: #0d0d0d;
}
@media(max-width:768px) {
    #Continuing-Ed p {
        font-size: 18px;
    }
}
#Continuing-Ed a {
    color: #916A99;
  font-weight: 500;
  text-decoration: underline;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

#Continuing-Ed a:hover,
#Continuing-Ed a:focus {
    text-decoration: underline;
    color: #a6a6a6;
  font-weight: 500;
}
.btn-purple {
    border: 1px solid #906B99;
    color: #1C225E;
    background-color: #906B99;
}

.btn-purple:hover,
.btn-purple:focus {
    border: 1px solid #47344b;
    outline: 0;
    color: #fff;
    background-color: #47344b;
}



/*---------- SOCIAL SKILLS PAGE ------------*/
#SocialSkills {
  padding-top: 50px;
  padding-bottom: 30px;
  width: 100%;
  height: auto;
  background-color: #fff;
  color: #0d0d0d;
}
#SocialSkills h2 {
  font-family: Raleway;
  font-weight: 400;
  font-size: 50px;
  text-align: center;
  color: #4477B7;
  margin-bottom: 5px;
  text-transform: none;
}
@media(max-width:768px) {
    #SocialSkills h2 {
        font-size: 40px;
    }
}
#SocialSkills h3 {
  font-family: Montserrat;
  font-weight: 400;
  font-size: 26px;
  text-align: center;
  color: #4477B7;
  margin-bottom: 0px;
  margin-top: 0px;
  text-transform: none;
}
@media(max-width:768px) {
    #SocialSkills h3 {
        font-size: 22px;
    }
}
#SocialSkills h4 {
  font-family: montserrat;
  font-weight: 600;
  font-size: 26px;
  text-align: left;
  color: #0d0d0d;
  margin-bottom: 0px;
  margin-top: 0px;
  text-transform: none;
}
@media(max-width:768px) {
    #SocialSkills h4 {
        font-size: 22px;
    }
}
#SocialSkills p {
  font-family: montserrat;
  font-weight: 400;
  font-size: 20px;
  text-align: left;
  color: #0d0d0d;
}
@media(max-width:768px) {
    #SocialSkills p {
        font-size: 18px;
    }
}
#SocialSkills a {
    color: #4576B7;
  font-weight: 500;
  text-decoration: underline;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

#SocialSkills a:hover,
#SocialSkills a:focus {
    text-decoration: underline;
    color: #a6a6a6;
  font-weight: 500;
}
#SocialSkills img {
}





/*---------- Q&A SECTION ------------*/
#QA {
  padding-top: 50px;
  padding-bottom: 30px;
  width: 100%;
  height: auto;
  background-color: #fff;
  color: #fff;
}
#QA h2 {
  font-family: Raleway;
  font-weight: 400;
  font-size: 50px;
  text-align: center;
  color: #4477B7;
  margin-bottom: 5px;
  text-transform: none;
}
@media(max-width:768px) {
    #QA h2 {
        font-size: 40px;
    }
}
#QA h4 {
  font-family: montserrat;
  font-weight: 500;
  font-size: 22px;
  text-align: left;
  color: #0d0d0d;
  margin-bottom: 0px;
  margin-top: 0px;
  text-transform: none;
}
@media(max-width:768px) {
    #QA h4 {
        font-size: 22px;
    }
}
#QA p {
  font-family: montserrat;
  font-weight: 400;
  font-size: 20px;
  text-align: left;
  color: #0d0d0d;
}
@media(max-width:768px) {
    #QA p {
        font-size: 18px;
    }
}
#QA a {
    color: #4576B7;
  font-weight: 500;
  text-decoration: underline;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

#QA a:hover,
#QA a:focus {
    text-decoration: underline;
    color: #a6a6a6;
  font-weight: 500;
}







/*---------- CONTACT SECTION ------------*/
#contact {
  padding-top: 50px;
  padding-bottom: 50px;
  width: 100%;
  height: auto;
  background-color: #f2f2f2;
  color: #0d0d0d;
}
#contact h2 {
  font-family: Raleway;
  font-weight: 400;
  font-size: 50px;
  text-align: center;
  color: #1C225E;
  margin-bottom: 15px;
  text-transform: none;
}
@media(max-width:768px) {
    #contact h2 {
        font-size: 40px;
    }
}
#contact p {
  font-family: montserrat;
  font-weight: 400;
  font-size: 20px;
  text-align: center;
  color: #0d0d0d;
}
@media(max-width:768px) {
    #contact p {
        font-size: 18px;
    }
}
#contact a {
    color: #ad0505;
  font-weight: 500;
  text-decoration: underline;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

#contact a:hover,
#contact a:focus {
    text-decoration: underline;
    color: #a6a6a6;
  font-weight: 500;
}








footer {
    padding: 50px 0;
  background-color: #46344c; 
}

footer p {
    margin: 0;
  font-size: 18px;
  font-family: montserrat;
  font-weight: 400;
  color: #f2f2f2;
}
footer a {
    color: #f2f2f2;
  font-weight: 400;
  text-decoration: underline;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

footer a:hover,
footer a:focus {
    text-decoration: underline;
    color: #a6a6a6;
  font-weight: 400;
}




body {
    width: 100%;
    height: 100%;
    font-family: montserrat;
    color: #fff;
    background-color: #000;
}

html {
    width: 100%;
    height: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 35px;
    text-transform: uppercase;
    font-family: Montserrat
    font-weight: 700;
    letter-spacing: 1px;
}

p {
    margin: 0 0 25px;
    font-size: 18px;
    line-height: 1.5;
}

@media(min-width:768px) {
    p {
        margin: 0 0 35px;
        font-size: 20px;
        line-height: 1.6;
    }
}

a {
    color: #288DBC;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

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

.light {
    font-weight: 400;
}


.nav-justified {
width: 98%;
}
.nav-justified > li {
float: none;
}
@media (min-width: 768px) {

    .nav-justified {
        width: 97%;
    }
}

.navbar-custom {
    margin-bottom: 0;
    border-bottom: 1px solid rgba(255,255,255,.3);
    text-transform: uppercase;
    font-family: Montserrat;
    background-color: #906B99;
  
}

.navbar-custom .navbar-brand {
    font-weight: 700;
}

.navbar-custom .navbar-brand:focus {
    outline: 0;
}

.navbar-custom .navbar-brand .navbar-toggle {
    padding: 4px 6px;
    font-size: 18px;
    color: #fff;
}

.navbar-custom .navbar-brand .navbar-toggle:focus,
.navbar-custom .navbar-brand .navbar-toggle:active {
    outline: 0;
}

.navbar-custom a {
    color: #fff;
  font-weight: 500;
  font-family: montserrat;
  text-decoration: underline;
}

.navbar-custom .nav li a {
    -webkit-transition: background .3s ease-in-out;
    -moz-transition: background .3s ease-in-out;
    transition: background .3s ease-in-out;
}

.navbar-custom .nav li a:hover {
    outline: 0;
    color: #0d0d0d;
  font-weight: 500;
    background-color: transparent;
  text-decoration: underline;
}

.navbar-custom .nav li a:focus,
.navbar-custom .nav li a:active {
    outline: 0;
    background-color: transparent;
}

.navbar-custom .nav li.active {
    outline: 0;
}

.navbar-custom .nav li.active a {
    background-color: ;
}

.navbar-custom .nav li.active a:hover {
    color: ;
}

@media(min-width:768px) {
    .navbar-custom {
        padding: 0px 0;
        border-bottom: ;
        /*box-shadow: 5px 5px 10px #848484;*/
        letter-spacing: 1px;
        background-color: #906B99 ;
        -webkit-transition: background .5s ease-in-out,padding .5s ease-in-out;
        -moz-transition: background .5s ease-in-out,padding .5s ease-in-out;
        transition: background .5s ease-in-out,padding .5s ease-in-out;
    }

    .navbar-custom.top-nav-collapse {
        padding: 0;
        border-bottom: ;
        background-color: #906B99;
    }
}







.intro {
    display: table;
    width: 100%;
    height: auto;
    padding: 100px 0;
    text-align: center;
    color: #fff;
    background: url(../img/header.jpg) no-repeat top center fixed;
    background-color: #000;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
}

.intro .intro-body {
    display: table-cell;
    vertical-align: middle;
}

.intro .intro-body .brand-heading {
    font-size: 40px;
}

.intro .intro-body .intro-text {
    font-size: 18px;
  font-family: montserrat;
  font-weight: 300;
}

@media(min-width:768px) {
    .intro {
        height: 70%;
        padding: 0;
    }

    .intro .intro-body .brand-heading {
        font-size: 100px;
    }

    .intro .intro-body .intro-text {
        font-size: 26px;
    }
}

.btn-circle {
    width: 70px;
    height: 70px;
    margin-top: 15px;
    padding: 7px 16px;
    border: 2px solid #fff;
    border-radius: 100%!important;
    font-size: 40px;
    color: #fff;
    background: 0 0;
    -webkit-transition: background .3s ease-in-out;
    -moz-transition: background .3s ease-in-out;
    transition: background .3s ease-in-out;
}

.btn-circle:hover,
.btn-circle:focus {
    outline: 0;
    color: #fff;
    background: rgba(255,255,255,.1);
}

.btn-circle i.animated {
    -webkit-transition-property: -webkit-transform;
    -webkit-transition-duration: 1s;
    -moz-transition-property: -moz-transform;
    -moz-transition-duration: 1s;
}

.btn-circle:hover i.animated {
    -webkit-animation-name: pulse;
    -moz-animation-name: pulse;
    -webkit-animation-duration: 1.5s;
    -moz-animation-duration: 1.5s;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-timing-function: linear;
}

@-webkit-keyframes pulse {    
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-moz-keyframes pulse {    
    0% {
        -moz-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -moz-transform: scale(1.2);
        transform: scale(1.2);
    }

    100% {
        -moz-transform: scale(1);
        transform: scale(1);
    }
}

.content-section {
    padding-top: 100px;
}

.download-section {
    width: 100%;
    padding: 50px 0;
    color: #fff;
    background: url(../img/downloads-bg.jpg) no-repeat center center scroll;
    background-color: #000;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
}

#map {
    width: 100%;
    height: 200px;
    margin-top: 100px;
}

@media(min-width:767px) {
    .content-section {
        padding-top: 250px;
    }

    .download-section {
        padding: 100px 0;
    }

    #map {
        height: 400px;
        margin-top: 250px;
    }
}

.btn {
    border-radius: 30px;
    text-transform: none;
    font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
    font-weight: 400;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.btn-default {
    border: 1px solid #42dca3;
    color: #42dca3;
    background-color: transparent;
}

.btn-default:hover,
.btn-default:focus {
    border: 1px solid #42dca3;
    outline: 0;
    color: #000;
    background-color: #42dca3;
}

ul.banner-social-buttons {
    margin-top: 0;
}

@media(max-width:1199px) {
    ul.banner-social-buttons {
        margin-top: 15px;
    }
}

@media(max-width:767px) {
    ul.banner-social-buttons li {
        display: block;
        margin-bottom: 20px;
        padding: 0;
    }

    ul.banner-social-buttons li:last-child {
        margin-bottom: 0;
    }
}



::-moz-selection {
    text-shadow: none;
    background: #fcfcfc;
    background: rgba(255,255,255,.2);
}

::selection {
    text-shadow: none;
    background: #fcfcfc;
    background: rgba(255,255,255,.2);
}

img::selection {
    background: 0 0;
}

img::-moz-selection {
    background: 0 0;
}

body {
    webkit-tap-highlight-color: rgba(255,255,255,.2);
}
