/* ClotheStudio Landing Page Dynamic Style Index

1. Website Default Styling
2. Navigation
3. Primary and Secondary Colors
4. Banner
5. Typography
6. Buttons
7. Footer


/*------------------------------------------------------------------------------------------*/
/* 1. Website Default Styling */
/*------------------------------------------------------------------------------------------*/


/* Main CSS Files */
@import url("style.css");

/* Icon Fonts - Font Awesome Icons */
@import url("font-awesome.min.css");

/* Animate CSS */   
@import url("animate.css");



body {
    background:#fff;
}


/* Default Link Color */

a, .la-ball-triangle-path {
    color:#e99335;
}

a:hover, #header.nav-solid nav a:hover {
    color:#e99335;
}

/* Default Icon Color */

.icon i {
    color:#e99335;
}

/* Border Color */

#banner .section-heading:before, .testimonial.classic footer:before {
    background: #e99335;
}

.pricing-block-content:hover {
    border-color:#e99335;
}


/*------------------------------------------------------------------------------------------*/
/* 2. Navigation */
/*------------------------------------------------------------------------------------------*/


/* Transparent Navigation Color on a Banner */

#header nav a, #header i {
    color:#111;
}


/* Navigation Colors when the Navigation is sticky and solid */ 

#header.nav-solid, #header.nav-solid a, #header.nav-solid i, #nav-mobile ul li a {
    color:#333;
}


/* Navigation Active State */

#header.nav-solid .active {
    color: #e99335;
    border-color: #e99335;
}    



/*------------------------------------------------------------------------------------------*/
/* 3. Primary and Secondary Colors */
/*------------------------------------------------------------------------------------------*/


/* Primary Background and Text Colors */

.primary-color, .featured .pricing {
    background-color:#e99335;
}

.primary-color, .primary-color .section-title, .primary-color .section-subtitle, .featured .pricing, .featured .pricing p {
    color:#fff;    
}

.section-heading h2:after {
    background:#e99335;
    content:"";
    display:block;
    width:30px;
    height:5px;
    margin-top:30px;
}

.text-center .section-heading h2:after {
    margin:30px auto 25px auto;
}

/* Primary Icon Colors */

.primary-color .icon i, .primary-color i {
    color:#fff;
}


/* Secondary Background and Text Colors */

.secondary-color {
    background-color:#f5f8fc;
}


/*------------------------------------------------------------------------------------------*/
/* 4. Banner */
/*------------------------------------------------------------------------------------------*/


/* Banner Background and Text Colors */

#banner {
    background: url("../images/banner-images/banner-image-1.jpg") no-repeat center top;
    background-size:cover;
}


@media all and (min-width: 768px) and (max-width: 1024px){
#banner {
    background: url("../images/banner-images/banner-image-2.png") no-repeat;
    background-size:cover;
    background-color: #f5f8fc;
    overflow-x: hidden
        }
}

@media all and (max-width: 480px){
#banner {
    background: url("../images/banner-images/banner-image-3.png") no-repeat;
    background-size:cover;
    background-color: #f5f8fc;
    overflow-x: hidden
        }
}

/*------------------------------------------------------------------------------------------*/
/* 5. Typography */
/*------------------------------------------------------------------------------------------*/


body {
    font-family: 'Open Sans', sans-serif, Arial, Helvetica;
    font-size:15px;
    font-weight:normal;
    color:#111;
}

/* Banner Typography */

#banner h1 {
    font-family: 'Open Sans', sans-serif, Arial, Helvetica;
    font-size:50px;
    line-height:60px;
    font-weight:800;
    color:#111;
}

#banner h2 {
    font-family: 'Open Sans', sans-serif, Arial, Helvetica;
    font-size:17px;
    font-weight:400;
    color:#111;
}


/* Section Title and Subtitle */

.section-title {
    font-family: 'Open Sans', sans-serif, Arial, Helvetica;
    font-size: 34px; 
    font-weight:700;
    color:#111;
}

.section-subtitle {
    font-family: 'Open Sans', sans-serif, Arial, Helvetica;
    font-size: 16px;
    font-weight:300;
    color:#9c9c9c;
}

/* Testimonial */

.testimonial q {
    font-family: 'Open Sans', sans-serif, Arial, Helvetica;
    font-size: 17px; 
    font-weight:300;
}

.testimonial.classic q, .testimonial.classic footer {
    color:#111;
}


/* Standard Headings h1-h6 */

h1 {
    font-family: 'Open Sans', sans-serif, Arial, Helvetica;
    font-size: 40px; 
    font-weight:300;
    color:#111;
}

h2 {
    font-family: 'Open Sans', sans-serif, Arial, Helvetica;
    font-size: 34px; 
    font-weight:300;
    color:#111;
}

h3 {
    font-family: 'Open Sans', sans-serif, Arial, Helvetica;
    font-size: 30px; 
    font-weight:700;
    color:#111;
}

h4 {
    font-family: 'Open Sans', sans-serif, Arial, Helvetica;
    font-size: 18px; 
    font-weight:400;
    color:#111;
}

h5 {
    font-family: 'Open Sans', sans-serif, Arial, Helvetica;
    font-size: 16px; 
    font-weight:400;
    color:#111;
}

h6 {
    font-family: 'Open Sans', sans-serif, Arial, Helvetica;
    font-size: 14px; 
    font-weight:400;
    color:#111;
}


/*------------------------------------------------------------------------------------------*/
/* 6. Buttons */
/*------------------------------------------------------------------------------------------*/

/* ----------Default Buttons---------- */


/* Button Text */

.button, input[type="submit"]  {
    font-family: 'Open Sans', sans-serif, Arial, Helvetica;
    font-size:14px;
    font-weight:bold;
    color:#111;
}


/* Button Color */

.button, input[type="submit"] {
    border-color:#111;
}


/* Button Hover Color */

.button:hover,  input[type="submit"]:hover {
    border-color:#e99335;
    color:#e99335;
}


/* ----------Banner Buttons---------- */


/* Button Text */

#banner .button {
    font-family: 'Open Sans', sans-serif, Arial, Helvetica;
    font-size:16px;
    color:#111;
}


/* Button Color */

#banner .button {
    border-color:#111;
}


/* Button Hover Color */

#banner .button:hover {
    color:#e99335;
    border-color:#e99335;
}

/* ----------header nav Buttons---------- */
#header nav .button {
    font-size: 15px;
    margin: 0px 0;
    height: auto;
    line-height: 38px;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear;
    display: inline-block;
    border-width: 0px;
    color: #fff;
    background-color: #e99335;
    
}

#header nav .button:hover {
    color: #fff;
    background-color: #e37905;
}

#header.nav-solid nav .button {
    display: inline-block;
    border-width: 0px;
    color: #fff;
    background-color: #e99335;
   
    
}
#header.nav-solid nav .button:hover {
    color: #fff;
    background-color: #e37905;
}

/* ----------Ready to sign Buttons---------- */



#readytosign .button {
    display: inline-block;
    border-width: 0px;
    color: #fff;
    background-color: #e99335;
    font-size: 21px;
    
}
#readytosign .button:hover {
    color: #fff;
    background-color: #e37905;
}


/* ---------- Sign In Buttons---------- */


#signin .signin-block .button {
    display: inline-block;
    text: cover ;
    border-width: 0px;
    color: #fff;
    background-color: #e99335;
    font-size: 21px;
    width: 35%;
    
}
#signin .button:hover {
    color: #fff;
    background-color: #e37905;
}


/* ---------- Password Recovery Buttons---------- */

#forgotpassword .signin-block .button {
    display: inline-block;
    text: cover ;
    border-width: 0px;
    color: #fff;
    background-color: #e99335;
    font-size: 16px;
    width: 50%;
    
}
#forgotpassword .button:hover {
    color: #fff;
    background-color: #e37905;
}

/* FAQ style */

.accordion {
  
  color: #111;
  background: #fff;
  cursor: pointer;
  padding: 19px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 20px;
  font-weight: 600;
  transition: 0.4s;
}


.accordion:after {
  content: '\002B';
  color: #111;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

#faq .active:after {
  content: "\2212";
}

.panel {
  padding: 0 18px;
  background-color: #fff;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  border-bottom: solid 1px;
}

/*------------------------------------------------------------------------------------------*/
/* 7. Footer */
/*------------------------------------------------------------------------------------------*/

#landing-footer, #landing-footer p, #landing-footer a {
    font-family: 'Open Sans', sans-serif, Arial, Helvetica;
    font-size:14px;
    font-weight:normal;
    color:#111;
}

/* Footer Icon Color */

#landing-footer i {
    color:#111;
}
