:root {
    --border-color: #f3f2f1;
    --first-color: #ffb503;
    --second-color: #f37242;
}


html {
    font-size: 16px;
}

body {
    overflow-x: hidden;

}

body,
header,
footer {
    font-family: 'Muli', sans-serif;
}

.container {
    margin: 0 auto;
    max-width: 1250px;
    padding: 0 15px;
}


.site-header {
    right: 0;
    left: 0;
    z-index: 999;
    -webkit-transition: right 500ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: right 500ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
    top: 0;
    position: absolute;
    width: 100%;

}

body.fixed .site-header {
    /*background: var(--first-color);
	-webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.11);
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.11);*/
}

.fixed-header .site-header {
    position: fixed;
    background: #fff;
    -webkit-box-shadow: 0 2px 12px rgba(169, 169, 169);
    box-shadow: 0 2px 12px rgba(169, 169, 169);
    -webkit-transition: .7s;
    -webkit-transition: .5s;
    transition: .5s;
}

.fixed-header .nav ul li a {
    color: #000;
}

.header-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    margin: 10px 0;
    max-width: 200px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.logo img,
.logo svg {
    max-width: 100%;
}

.toggle--nav {
    display: none;
}

.overlay--nav {
    background-color: rgba(0, 0, 0, 0.7);
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 100;
    display: none;
}

body.toggled-left .overlay--nav,
body.toggled-right .overlay--nav {
    display: block;
}


.nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.nav ul li {
    margin: 0 0;
}

.nav ul li a {
    color: #fff;
    font-size: 1.25em;
    margin: 0 10px;
    padding: 4px 12px;
    display: block;
    border-radius: 6px;
    border: solid 2px transparent;
}

.nav ul li a:hover,
.nav ul li.is-active a {
    border-color: #ffb503;
    color: #ffb503;
}

.morph-wrap {
    width: 100%;
    overflow: hidden;

    z-index: -1;
}

.morph {
    position: relative;
    height: 100%;
}


.hero-txt {
    max-width: 520px;
    position: absolute;
    left: 50%;
    margin-left: -615px;

    z-index: 2;
}


.hero-txt h1 {
    color: #000;
    font-size: 4.5em;
    font-weight: 700;
}

.hero-txt h1 span {
    font-size: 2rem;
    font-weight: 400;
    display: block;
}


.screen {
    background: #fff;
    -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.33);
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.15);
    padding: 20px;
    border-radius: 20px;
    position: relative;
    left: -100px;
}


.small-cms {
    max-width: 675px;
}

.small-cms.center-layout {
    margin: 0 auto;
    text-align: center;
}

.small-cms.center-layout h2:before {
    margin: 0 auto;
    left: 0;
    right: 0;
    top: auto;
    bottom: -10px;

}

.small-cms h2 {
    color: #000;
    font-size: 2em;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 25px;
    position: relative;
}

.small-cms h2:before {
    content: "";
    background: var(--first-color);
    width: 29px;
    height: 2px;
    border-radius: 2px;
    position: absolute;
    top: 100%;
    left: 0;
}

.small-cms h4 {
    color: #3a3a3a;
    font-size: 1.25em;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 20px;
}

.small-cms p {
    color: #2a2a2a;
    font-size: 1em;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 20px;
}

.section {
    padding: 40px 0;
}

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

.featured-list ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.featured-list li {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
    margin: 50px auto;
}

.featured-list .icn {
    margin: 10px auto;
    display: block;
    max-width: 70px;
    position: relative;
    height: 90px;
}

.featured-list .icn img {
    display: inline-block;
    margin-bottom: 20px;
    position: absolute;
    bottom: 0;
    left: 0;
}


.featured-list p {
    margin: 0 auto;
    max-width: 143px;
    font-size: 1.125em;
    line-height: 1.5;
    color: #2a2a2a;
}


.pricing {
    padding: 130px 0 120px 0;
    background: url(../images/bg-pricing.png) repeat-x center top;
    background-size: contain;
    margin-top: 60px;
}

.ym-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.ym-row .ym-col {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 30%;
    flex: 1 0 30%;
    max-width: 30%;
    margin: 10px 10px;
}

.ym-section--pricing .price__box {
    padding: 20px;
    margin-top: 40px;
    text-align: center;
    background: #fff;
    border-radius: 15px;
    -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.08);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.08);

}

.price__box.-red.-modifier {
    margin-top: 70px;
}

.ym-section--pricing .price__box.-red .ym-package-twoprice {
    background: var(--second-color);
}

.ym-section--pricing .price__box.-red .price-box-inner {
    border-color: var(--second-color);
}

.ym-section--pricing .price__name {
    color: #000;
    font-size: 2em;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 15px;
    position: relative;
    text-align: center;

}

.ym-section--pricing .price__name:before {
    content: "";
    background: var(--first-color);
    width: 29px;
    height: 2px;
    border-radius: 2px;
    position: absolute;
    top: -10px;
    left: 0;
    margin: 0 auto;
    left: 0;
    right: 0;
    top: auto;
    bottom: -10px;
}

.price-box-inner {
    position: relative;
    margin: 0 auto;
    border: solid 2px var(--first-color);
    border-radius: 15px;

}

.ym-package-twoprice {
    background: var(--first-color);
    padding: 10px;
    border-radius: 15px;
}


.ym-price_tag {
    display: block;
    width: 182px;
    height: 35px;
    background: url(../images/bg-limited.png) no-repeat 0 0;
    font-size: 0.9375em;
    font-weight: 300;
    color: #000;
    text-align: center;
    margin: 15px auto;
    line-height: 35px;
}

.ym-package_newprice {
    color: #fff;
    font-size: 3.75em;
    font-weight: 800;
    line-height: 1;
}

.ym-package_newprice sup {
    font-size: 1.5rem;
    font-weight: 400;
}

.ym-package_price {
    color: #fff;
    display: block;
    font-size: 1.25em;
    font-weight: 300;
    text-decoration: line-through;
    margin-bottom: 10px;
}

.price-milestone {
    color: #000;
    font-size: 1em;
    text-align: center;
    padding: 15px;
    padding-bottom: 20px;

}

.price__features {
    line-height: 20px;
    max-width: 240px;
    margin: 30px auto;
}

.price__features li {
    padding: 12px 0;
    color: #424242;
    font-size: 15px;
    font-weight: 300;
    position: relative;
}

/*.price__features li:after {
	background: #e2e2e1;
	content: "";
	margin: 0 auto;
	position: absolute;
	left: 0;
	right: 0;
	width: 63px;
	height: 1px;
	bottom: 0;
}
*/

.price__features li a {
    color: var(--second-color);
}

.ym-button {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    display: inline-block;
    vertical-align: middle;
    font-size: 1rem;
    font-weight: 500;
    padding: 5px 15px;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    background-color: transparent;
    border: 2px solid transparent;
    color: #000000;
    min-width: 4.44444em;
    -webkit-transition: background-color 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out;
    background: var(--first-color);
    border-radius: 5px;
}

.tool-tip {
    display: inline-block !important;
}

.tool-tip {
    background: var(--first-color);
    border-radius: 50%;
    color: #000;
    cursor: pointer;
    display: inline-block;
    font-size: 11px;
    font-weight: 400;
    height: 17px;
    line-height: 19px;
    position: relative;
    text-align: center;
    width: 17px;
}

.tool-tip .bubble::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -28px;
    display: block;
    height: 30px;
}

.tool-tip .bubble::before {
    border-left: 6px solid rgba(0, 0, 0, 0);
    border-right: 6px solid rgba(0, 0, 0, 0);
    border-top: 6px solid #333333;
    bottom: -6px;
    content: "";
    position: absolute;
    right: 13px;
}

.tool-tip .bubble {
    display: block;
    position: absolute;
    right: -10px;
    bottom: 0;
    width: 245px;
    z-index: 9;
    text-align: left;
    background: #333333;
    color: #fff;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 400;
    padding: 15px;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all ease 0.2s;
    transition: all ease 0.2s;
}

.tool-tip .bubble {
    font-size: 12px;
    font-weight: 400;
    visibility: hidden;
}

/*.tool-tip:hover .bubble {
	visibility: visible;
	opacity: 1;
	bottom: 28px;
}*/

.open--tooltip .bubble {
    bottom: 28px;
    opacity: 1;
    visibility: visible;
}

.bubble ul li {
    list-style: disc !important;
    color: #fff;
    padding: 6px 0px;
}

.bubble > ul {
    text-align: left;
}

.bubble > ul {
    padding: 4px 0 0 10px;
}

/*--fatbit-product-link--*/

.fatbit-product.modifier {
    display: inline-block;
    padding: 3px 5px;
    font-size: 1.25em;
}

.fatbit-product.modifier a {
    color: var(--first-color)
}

.fatbit-product.modifier {
    color: #fff
}

.fixed-header .fatbit-product.modifier {
    color: #000;
    -webkit-text-decoration: ;
    text-decoration:
}

/*--fatbit-product-link--*/

.social-media {
    display: block;
    margin: 0px auto;
    text-align: center;
}

.social-media li {
    display: inline-block;
    vertical-align: middle;
}

.social-media li a {
    border-radius: 50%;
    padding: 5px;
    width: 50px;
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    opacity: 0.83;
}

.social-media li a.insta {
    background-color: #d3368f;
}

.social-media li a.fb {
    background: #3b5998;
}

.social-media li a.twtr {
    background: #55acee;
}

.social-media li a.g-pls {
    background: #dc4e41
}
.social-media li a.pintrst{
    background-color:#cb2027;
}

.social-media li a:hover {
    opacity: 1;

}

.get-in-touch {
    -webkit-box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.11);
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.11);
    border: solid 1px var(--border-color);
    border-radius: 15px;
    padding: 30px;
    max-width: 985px;
    margin: 30px auto;
    margin-bottom: 60px;
    background: #fff;
    position: relative;
    z-index: 1;
}

.get-in-touch .field-set {}

.form-get-touch input[type="text"],
.form-get-touch select,
.form-get-touch textarea {
    border: solid 1px rgba(0, 0, 0, 0.6);
    ;
    border-radius: 5px;
    height: 50px;
    width: 100%;
    padding: 10px;
    margin: 0;
    font-size: 0.875em;
    color: #888;
}

.form-get-touch input[type="submit"] {
    background: var(--second-color);
    border-radius: 5px;
    padding: 15px 25px;
    font-weight: 600;
    margin: 0px auto;
    display: block;

}

.form-get-touch textarea {
    height: 130px;
}

.form-get-touch label {
    position: relative;
    top: 13px;
    background: #fff;
    padding: 0 3px;
    line-height: 1;
    margin: 0 10px;
    color: #353534;
}

.getstarted {
    position: relative;
    background: #f3f2f1;
	padding: 60px 0;
}

.getstarted:after {
    content: "";
    background: url(../images/retina/footer_left.svg) no-repeat 0 0;
    width: 342px;
    height: 659px;
    display: block;
    position: absolute;
    left: 5%;
    top: 150px;
    z-index: 0;
}

.getstarted:before {
    content: "";
    background: url(../images/retina/footer_right.svg) no-repeat 0 0;
    width: 376px;
    height: 636px;
    display: block;
    position: absolute;
    right: 5%;
    top: 150px;
    z-index: 0;
}

.demo-actions ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-bottom: 20px;
}

.demo-actions ul li {
    margin-bottom: 5px;
    margin-right: 10px;


}

.demo-actions a {
    height: 100%;
    color: #fff;
    background: var(--second-color);
    border-radius: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 10px 15px;
    font-weight: 400;
    line-height: 1;
    max-width: 166px;
}


.demo-actions i {
    min-width: 40px;
    margin-right: 5px;
}

.demo-actions a:hover {
    background: var(--first-color);
}


.reverse .reverse-cols {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
}

.morph-bg {
    position: relative;
    /*padding: 160px 0;*/
    width: 100%;

}

.morph-bg:before {
    content: "";
    position: absolute;
    width: 778px;
    height: 784px;
}

.morph-left:before {
    left: 0;
    top: -30%;
    background: url(../images/retina/shape-left.svg) no-repeat right bottom;
    background-size: 100%;

}

.morph-right:before {
    right: 0;
    top: -30%;
    background: url(../images/retina/shape-right.svg) no-repeat left bottom;
    background-size: 100%;

}

.main-hero {
    height: 100vh;
    width: 100%;
    background: url(../images/hero-main.png) no-repeat top;
    background-size: cover;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-attachment: fixed;


}

.content-img {
    text-align: center;
    margin: 0 auto;
}


.content-img img {
    display: inline-block;
}

.first-section {
    padding-top: 80px;

}

#demo {

    padding-top: 0;

}

.ym-button:hover {
    background: #f37242;
    color: #fff;

}



.remove-bullet.price__features .bubble ul li {
    font-size: 12px;
    list-style: none !important;
}

.show-tooltip .tool-tip .bubble {
    visibility: visible;
    opacity: 1;
    bottom: 28px;
}

.hide-tooltip .tool-tip .bubble {
    visibility: hidden;
    opacity: 0;
    bottom: 28px;
}

.tooltip--close {
    width: 20px;
    height: 20px;
    display: inline-block;
    position: absolute;
    right: -5px;
    top: -5px;
    background: #ffb503;
    border-radius: 50%;
}

.tooltip--close .icon {
    width: 60%;
    height: 60%;
    margin-top: 4px;
}

.form input[type="text"].error,
.form select.error,
.form textarea.error {
    border-color: #f37242;
}

#loader {
    display: none;
    background-color: #fff;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}

.loader-load #loader {
    display: block
}

/*--Demo-btn-css-*/

.r-demo {
    margin-top: 15px;
}

.demo-actions .r-demo a.request-btn.popup-btn {
    background: #ffb503;
    color: #fff;
    border: solid transparent 2px;
    position: absolute;
    z-index: 9;
    height: auto;
    max-width: 100%;
    padding: 18px 22px;
    font-size: 20px;
    -webkit-box-shadow: 0px 0px 5px rgba(169, 169, 169);
    box-shadow: 0px 0px 5px rgba(169, 169, 169);
}

.demo-actions .r-demo a.request-btn.popup-btn:hover {
    background: #f37242;
    color: #fff
}

#demo {
    z-index: 9;
}

/*--video-section--*/
.wrap {
    position: relative;
   
   max-width: 899px;
    margin: 0 auto;
        margin-top: 0px;
        margin-bottom: 0px;

}
.video-blk {
    text-align: center;
    padding: 30px 0px 15px 0;
        padding-bottom: 15px;
    padding-bottom: 15px;
}
.embed-responsive-16by9 {
    padding-bottom: 50.5% !important;
    position: relative;
}
.embed-responsive .embed-responsive-item, .embed-responsive embed, .embed-responsive iframe, .embed-responsive object, .embed-responsive video {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
#features {
    padding-bottom: 60px;
}

.wrap::after,.wrap::before {

    position: absolute;
    content: "";
    background: #fff;
    left: 0;
    bottom: 0;
    height: 73px;
    width: 100%;
	z-index:999;


}
.wrap::before{bottom:auto;top:0}
.wrap:hover::after,.wrap:hover::before{width:0}

#features .small-cms p {
    margin: 0;
}
/*--video-section--*/

/*header sticky bar*/
.header-topbar {
    background: #f37242;
    color: #fff;
    font-size: 1rem;
    padding: 10px;
    position: relative;
    text-align: center;
}

@media(max-width:1600px) {
    .header-topbar {
        font-size: 14px;
    }
}

.header-topbar strong {
    font-weight: 700;
    color: #fff;
}

.sticky_btn {
    background: #fff;
    color: #f37242;
    padding: 3px 9px;
    font-weight: 600;
    border-radius: 4px;
    font-size: 14px;
    text-decoration: none;
    margin-left: clamp(5px, 1vw, 10px);
    display: inline-block;
}

.sticky_btn:hover {
    opacity: 0.9;
    color: #f37242;
}

.toggle--nav.is-active{
    display: none;
}

.pkg__info {
    color: white;
    font-weight: 600;
    font-size: 14px;
}