/*
Theme Name: charmed
Theme URI: https://github.com/tidythemes/charmed
Author: TidyThemes
Author URI: http://tidythemes.com/
Description: Please read: tidythemes.com/concept. charmed is the definitive WordPress HTML5 boilerplate starter theme. We've carefully constructed the most clean and minimalist theme possible for designers and developers to use as a base to build websites for clients or to build completely custom themes from scratch. Clean, simple, unstyled, semi-minified, unformatted, and valid code, SEO-friendly, jQuery-enabled, no programmer comments, standardized and as white label as possible, and most importantly, the CSS is reset for cross-browser-compatability and no intrusive visual CSS styles have been added whatsoever. A perfect skeleton theme. For support and suggestions, go to: https://github.com/tidythemes/charmed/issues. Thank you.
Version: 2019.1
License: GNU General Public License
License URI: https://www.gnu.org/licenses/gpl.html
Tags: one-column, two-columns, custom-menu, featured-images, microformats, sticky-post, threaded-comments, translation-ready
Text Domain: charmed

charmed WordPress Theme © 2011-2019 TidyThemes
charmed is distributed under the terms of the GNU GPL
*/

@import url('https://fonts.googleapis.com/css2?family=Forum&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');

html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline}body{line-height:1}button{outline:0}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}q{display:inline;font-style:italic}q:before{content:'"';font-style:normal}q:after{content:'"';font-style:normal}textarea,input[type="text"],input[type="button"],input[type="submit"],input[type="reset"],input[type="search"],input[type="password"]{-webkit-appearance:none;appearance:none;border-radius:0}table{border-collapse:collapse;border-spacing:0}th,td{padding:2px}big{font-size:120%}small,sup,sub{font-size:80%}sup{vertical-align:super}sub{vertical-align:sub}dd{margin-left:20px}kbd,tt{font-family:courier;font-size:12px}ins{text-decoration:underline}del,strike,s{text-decoration:line-through}dt{font-weight:bold}address,cite,var{font-style:italic}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}*{box-sizing:border-box;-webkit-tap-highlight-color:transparent}
.sticky{}.bypostauthor{}.wp-caption{}.wp-caption-text{}.gallery-caption{}.alignright{}.alignleft{}.aligncenter{}.screen-reader-text{clip:rect(1px, 1px, 1px, 1px);position:absolute !important}

body {
    font-family: 'Forum', sans-serif;
}
/* ---- Header ---- */

#header{
    background: #6d4e78; 
    float: left; 
}

#header-top{
    float: left; 
    position: absolute; 
    top: 0; 
    left: 0; 
}

.home #header-top{
    background: linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 78%);
    padding-bottom: 80px; 
}

#header .logo{
    width: 275px; 
    float: left; 
    height: auto; 
}

#header-top .logo{
    width: 350px; 
    float: left; 
    height: auto;  
    margin-top: 0px;    
}


.menu{
    margin-top: 5px; 
    float: right; 
}

.social-media{
    width: 100%; 
    float: left; 
    text-align: right;
}

.social-media img{
    width: 30px; 
    height: auto; 
    margin-right: 15px; 
}

.social-media img.wedding-wire-logo{
    width: 140px; 
}

.menu ul li{
    display: block; 
    float: left; 
    font-size: 20px; 
    text-align: right; 
}

.menu ul li a{
    color: #fff; 
    display: block; 
    padding: 5px 15px; 
    text-decoration: none;
}

#header-top .menu ul li a{
    color: #6d4e78;
}

#nav-icon {
    width: 30px;
    height: 20px;
    position: relative;
    margin: 50px 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    float: right; 
  }
  
#nav-icon{
    display: none; 
}

  #nav-icon span {
    display: block;
    position: absolute;
    height: 5px;
    width: 100%;
    background: #fff;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
  }
  
  .home #nav-icon span{
    background: #6c5887; 
  }

  #nav-icon span:nth-child(1) {
    top: 0px;
  }
  
  #nav-icon span:nth-child(2) {
    top: 8px;
  }
  
  #nav-icon span:nth-child(3) {
    top: 17px;
  }
  
  #nav-icon.open span:nth-child(1) {
    top: 18px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  
  #nav-icon.open span:nth-child(2) {
    opacity: 0;
    left: -60px;
  }
  
  #nav-icon.open span:nth-child(3) {
    top: 18px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }

/* Footer */
#footer{
    background: #6d4e78;
    color: #fff; 
    float: left;  
}

#footer p{
    font-size: 16px; 
}

#footer a{
    color: #fff; 
    text-decoration: none;
}

#footer h5{
    margin-bottom: 10px; 
}

#footer ul li{
    display: block; 
    float: left; 
    padding: 0 10px; 
    font-size: 18px; 
}

.footer-left, .footer-right{
    width: 50%; 
    float: left; 
}


/* ------- paddings ------*/

.p-15{
    padding: 15px; 
}

.p-30{
    padding: 30px; 
}

.pl-20{
    padding-left: 20px; 
}

.pl-30{
    padding-left: 30px; 
}

.px-100{
    padding-left: 100px; 
    padding-right: 100px; 
}

.px-15p{
    padding-left: 15%; 
    padding-right: 15%; 
}

.px-25p{
    padding-left: 25%; 
    padding-right: 25%; 
}

.py-10{
    padding-top: 10px; 
    padding-bottom: 10px; 
}

.py-20{
    padding-top: 20px; 
    padding-bottom: 20px; 
}

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

.pr-100{
    padding-right: 100px; 
}

.pl-100{
    padding-left: 100px; 
}

.pr-30{
    padding-right: 30px; 
}

.pb-30{
    padding-bottom: 30px; 
}

.pb-150{
    padding-bottom: 150px; 
}

.pt-0{
    padding-top: 0; 
}

/*----- Margins ------*/

.mt-15{
    margin-top: 15px;
}

.mt-30{
    margin-top: 30px; 
}

.mt-50{
    margin-top: 50px; 
}

.mt-0{
    margin-top: 0; 
}

/*------- Widths --------*/

.w-full{
    width: 100%; 
}

.w-30p{
    width: 30%; 
}

.w-33p{
    width: 33%; 
}

.w-40p{
    width: 40%; 
}

.w-50p{
    width: 50%; 
}

.w-60p{
    width: 60%; 
}

.w-66p{
    width: 66%; 
}

.w-160{
    width: 160px; 
}

/*------- Headings ------*/

h1{
    font-size: 55px;
    line-height: 55px;  
    text-align: center; 
    padding: 30px 20px; 
    float: left; 
    display: block; 
    width: 100%; 
}


h2{
    font-size: 40px; 
    line-height: 50px; 
}

h3{
    font-size: 30px; 
    line-height: 35px;
    margin-bottom: 15px; 
}

h4{

}

h5{
    font-size: 18px; 
}

p{
    font-size: 22px; 
    line-height: 28px; 
}

li{
    font-size: 22px; 
    line-height: 28px; 
}

a{

}

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

/*------ Floats -------*/

.float-left{
    float: left; 
}

.float-right{
    float: right; 
}

/* ------ Text Align's ------- */

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

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

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

/*------ Backgrounds -------*/

.bg-6c5887{
    background: #6c5887; 
    color: #fff; 
}

.bg-d3c6fd{
    background: #d3c6fd; 
}

.bg-a796c9{
    background: #a796c9; 
}

/*------- Colors --------*/

.text-6c5887{
    color: #6c5887; 
}

.text-a796c9{
    color: #a796c9; 
}

.text-fff{
    color: #fff; 
}

/*------- Page Hero -------*/

.page-hero img{
    width: 100%; 
    float: left; 
    height: auto; 
}

/*----- Misc -----*/

.home .social-media{
    margin-top: 40px; 
}

.clear-left{
    clear: left; 
}

.position-relative{
    position: relative;
}

.button{
    display: block; 
    margin-left: calc(50% - 80px); 
    float: left; 
    text-align: center; 
    font-size: 22px; 
    text-decoration: none;
}

.home-testimonial{
    color: #fff;
    padding: 50px 10%;
    margin-top: 50px;
    background: #a796c9;
}

.home-testimonial p{
    margin-top: 15px; 
}

.home-flex-right{
    display: flex;
    justify-content: center;
    flex-direction: column;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 100px;
}

.home-flex-left{
    display: flex;
    justify-content: center;
    flex-direction: column;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 100px;
}

.service.even .service-image{
    float: right; 
}

.service-image img{
    width: 100%; 
}

.service ul{
    margin-left: 25px; 
}

.service li{
    list-style: disc; 
    padding-top: 7px; 
}

.service{
    width: 100%; 
    float: left; 
}

.service.even .service-text {
    display: flex;
    justify-content: center;
    flex-direction: column;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 100px;
    width: calc(50% - 130px)
}

.service.odd .service-text {
    display: flex;
    justify-content: center;
    flex-direction: column;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 100px;
    width: calc(50% - 130px)
}


.service-text p{
    margin-top: 10px; 
}

.contact-btn{
    background: #6c5887; 
    color: #fff; 
    width: 150px; 
    text-align: center; 
    text-decoration: none; 
    padding: 7px 10px; 
    float: left; 
    margin-left: 0px;
    margin-top: 30px;  
}

.contact-btn a{
    color: #fff; 
    font-size: 22px; 
}

.testimonial-block{
    padding: 30px 100px; 
    color: #6c5887;
    float: left; 
    position: relative; 
}

.testimonial-image{
    width: 30%; 
    float: left; 
}

.testimonial-quote{
    width: 60%; 
    float: left; 
    padding-left: 20px; 
    display: flex;
    justify-content: center;
    flex-direction: column;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 35%;
}

.testimonial-quote h5{
    margin-top: 20px; 
    font-weight: bold; 
}

.bx-wrapper{
    float: left; 
    box-shadow: none !important; 
}

.nf-form-content label{
    display: none; 
}

.nf-form-content .list-select-wrap .nf-field-element>div, .nf-form-content input:not([type=button]), .nf-form-content textarea{
    background: #fff !important;
    color: #6d4e78;  
}

.nf-form-fields-required{
    margin-bottom: 15px; 
    width: 100%; 
    float: left; 
}

#nf-field-10{
    background: #6c5887 !important;
    color: #fff !important; 
    width: 120px; 
}

#nf-field-12-container{

}

#nf-field-18{
    background: #6d4e78 !important; 
    padding: 0 20px; 
    color: #fff; 
}

.post-41 p{
    text-align: left; 
    padding-left: 20px; 
}

@media screen and (max-width: 1015px){
    .service.even .service-text{
        left: 10px;
        width: calc(50% - 25px);
    }

    .service.odd .service-text{
        right: 10px;
        width: calc(50% - 25px);        
    }

    .header-logo .logo, #header-top .logo{
        width: 275px; 
    }
} @media screen and (max-width: 900px){

    #nav-icon{
        display: block; 
    }

    .mobile-menu{
        position: absolute; 
        top: 130px;
        right: 0; 
        padding: 20px; 
        background: #6d4e78; 
        color: #fff;
        width: 200px; 
        text-align: left; 
        display: none; 
    }

    .home .mobile-menu{
        background: #fff; 
    }

    .mobile-menu.nav-open{
        display: block; 
    }

    .mobile-menu ul li{
        display: block; 
        width: 100%; 
        float: left; 
        text-align: center; 
    }

    .home-cta img{
        width: 50%; 
        margin-left: 25%; 
        margin-right: 25%; 
        padding-right: 0; 
        padding-left: 0; 
        margin-bottom: 20px; 
    }

    .home-cta .home-flex-right, .home-cta .home-flex-left{
        display: block; 
        position: static; 
        width: 90%; 
        margin-left: 5%
    }

    #post-41 .w-33p{
        width: 50%;
        margin-left: 25%;  
        float: left; 
        padding-bottom: 20px; 
    }

    #post-41 .w-66p{
        width: 80%; 
        margin-left: 10%; 
    }

    #post-61 .service-image{
        width: 80%; 
        margin-left: 10%; 
        float: left; 
    }

    #post-61 .service.odd .service-text, #post-61 .service.even .service-text{
        display: block; 
        position: static; 
        width: 80% !important; 
        margin-left: 10%; 
        padding-left: 0; 
        float: left; 
        margin-bottom: 20px; 
    }

    .testimonial-quote{
        width: 100%;
        display: block; 
        position: static; 
    }

    .testimonial-image{
        display: none;  
    }

} @media screen and (max-width: 550px){
    #header{
        padding-left: 20px; 
        padding-right: 20px; 
    }

    #header-top, #header{
        padding-top: 8px; 
    }

    .home #header-top{
        padding-bottom: 45px; 
    }

    .header-logo .logo, #header-top .logo{
        width: 220px; 
    }

    #nav-icon{
       margin: 30px 0;  
    }

    .mobile-menu{
        position: static; 
        z-index: 9999; 
    }

    .testimonial-block{
        padding: 20px 40px; 
    }

    .testimonial-image{
        display: block; 
        margin-bottom: 20px; 
        width: 100%;  
    }

    .px-100{
        padding-left: 20px; 
        padding-right: 20px; 
    }

    #post-41 .w-33p{
        width: 100%; 
        margin-left: 0; 
    }

    #post-41 .w-66p{
        width: 100%; 
        margin-left: 0; 
    }

    .service-image img{
        margin-bottom: 20px; 
    }

    .footer-left, .footer-right {
        width: 100%;
        float: left;
    }

    .footer-right .social-media{
        text-align: left; 
    }
}