/* colors
black : 2c2c2c;
orange: fcbda3;
yellow : fce5bc;
brown : 614514;

background 1 : f7f2ed;
background 2 : ffffff;

*/

/* General *********************/
body {
	font-family: "Archivo", sans-serif;
 	font-weight: 400;
    background: #f7f2ed;
    color: #614514;
    /* -webkit-user-select: none;
     -khtml-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none; */
    overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
	color: #2c2c2c;
	font-family: 'Roboto', sans-serif;
	/* line-height: 1; */
}
p.para {
	font-size: 1.1rem;
}
img {
  	-webkit-user-drag: none;
  	-khtml-user-drag: none;
  	-moz-user-drag: none;
  	-o-user-drag: none;
  	user-drag: none;
}
a, .btn {
	-webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -ms-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}

a.ln-link {
	position: relative;
}
a.ln-link::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    background-color: #614514;
}
a.ln-link:hover {
    color: #614514;
    text-decoration: none;
}
a.ln-link:hover::before {
    width: 100%;
}
a:focus,
.btn:focus {
	outline: none;
	box-shadow: none;
}
.btn-sign-in {
	font-family: 'Roboto', sans-serif;
	color: #ffffff;
	background: #2c2c2c;
	padding: 10px 25px;
	border-radius: 24px;
	line-height: 1;
	display: flex;
	align-items: center;
}
.btn-sign-in img {
	height: 28px;
	margin-right: 10px;
}
.btn-sign-in:hover {
	color: #ffffff;
}

.tlt-span {
	display: inline-block;
	text-transform: uppercase;
	font-weight: 500;
	font-family: "Archivo", sans-serif;
	letter-spacing: 3px;
	line-height: 1;
	padding: 6px 20px;
	border-radius: 16px;
	margin-bottom: 15px;
	border-bottom-left-radius: 0px;
}
.tlt-span.yl-bg {
	background: #fce5bc;
}
.tlt-span.bl-bg {
	background: #2c2c2c;
	color: #ffffff;
}

/* NAVBAR *******************************************************************/
.navbar {
	padding: 25px 0px;
	background: #f7f2ed;
}
.navbar .navbar-brand {
	padding: 0px;
	font-size: 0px;
}
.navbar .nav-item {
	padding: 5px;
}
.navbar .nav-item .nav-link {
	padding: 0px;
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	color: #09101f;
	margin-right: 30px;
}
.navbar .nav-item .nav-link:hover,
.navbar .nav-item.active .nav-link {
	color: #614514;
}
.navbar .logo {
	height: 50px;
	width: auto;
}
/* SECTIONS *******************************************************************/
.sct-page-header {
	padding-top: 60px;
    padding-bottom: 60px;
}
.sct-page-header .tlt {
	font-weight: 900;
}
.sct-page-header .crc-header {
	width: 90%;
	height: auto;
	margin: auto;
}
/* SECTIONS *******************************************************************/
.sct-main {
	padding-top: 60px;
    padding-bottom: 60px;
}
.sct-main .tlt {
	font-weight: 900;
}
.sct-main .btn-sign-in {
	margin-bottom: 25px;
}
.item-icon {
	display: flex;
	flex-direction: row;
	align-items: center;
	margin-bottom: 15px;
	align-items: center;
}
.item-icon img {
	height: 50px;
	margin-right: 10px;
	width: auto;
}
.item-icon .txt .txt-h {
	font-family: "Archivo", sans-serif;
	margin: 0px;
	font-weight: 700;
	line-height: 1;
}
.item-icon .txt .txt-p {
	margin: 0;
	line-height: 1;
}
.sct-main .crc-main {
	width: 90%;
	height: auto;
	margin: auto;
}


/* Features *******************************************************************/
.sct-features {
	background: #ffffff;
	color: #2c2c2c;
	padding-top: 60px;
    padding-bottom: 100px;
}
.sct-features .tlt {
	font-weight: 900;
}
.sct-features .item-card-holder {
	position: relative;
	margin-top: 40px;
}
.sct-features .item-card-holder::before {
	content: "";
    position: absolute;
    left: 5px;
    bottom: -15px;
    width: calc(100% - 30px);
	height: 30%;
	border: 3px solid #2c2c2c;
	border-radius: 20px;
	z-index: 1;
	-webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -ms-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}
.sct-features .item-card-holder:nth-child(even)::before {
	background: #2c2c2c;
}
.sct-features .item-card-holder:hover::before {
	height: 100%;
}

.sct-features .item-card-holder .item-card {
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 20px;
	border-radius: 20px;
	border-top-right-radius: 0px;
	background: #fce5bc;
	z-index: 10;
}
.sct-features .item-card-holder .item-card .txt {
	flex: 1;
}
.sct-features .item-card-holder .item-card .icon {
	height: 75px;
	width: 75px;
	padding: 15px;
	background: #2c2c2c;
	margin-bottom: 15px;
	border-radius: 50%;
	border-bottom-right-radius: 0px;
	-webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -ms-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}
.sct-features .item-card-holder:hover .item-card .icon {
	border-bottom-right-radius: 50%;
	border-top-right-radius: 0px;
}
.sct-features .item-card-holder .item-card .icon img {
	height: 100%;
	width: auto;
}

.sct-features .item-card-holder .item-card .item-action {
	display: flex;
	flex-direction: column;
	align-items: end;
}
.sct-features .item-card-holder .item-card .btn-learn-more {
	padding: 0px;
	display: flex;
	flex-direction: row;
	line-height: 1;
	align-items: center;
	font-style: italic;
}
.sct-features .item-card-holder .item-card .btn-learn-more img {
	height: 40px;
	width: 40px;
	margin-left: 10px;
}

/* Get Started *******************************************************************/
.sct-getstarted {
	background: #f7f2ed;
	color: #2c2c2c;
	padding-top: 60px;
    padding-bottom: 100px;
}
.sct-getstarted .tlt {
	font-weight: 900;
}
.sct-getstarted .row-content {
	margin-top: 30px;
}

.sct-getstarted .step-item {
	display: flex;
	flex-direction: column;
}
.sct-getstarted .step-item:not(:last-child) {
	margin-bottom: 40px;
}
.sct-getstarted .step-item .num {
	height: 50px;
	width: 50px;
	border: 3px solid #2c2c2c;
	margin-bottom: 5px;
	border-radius: 50%;
	border-bottom-left-radius: 0px;
	line-height: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: 'Roboto', sans-serif;
	font-weight: 900;
	font-size: 30px;
}
.sct-getstarted .step-item .txt-h {
	margin-bottom: 0px;
}
.sct-getstarted .step-item .txt-p {
	margin: 0;
}
.sct-getstarted .img-get-started {
	width: 100%;
	height: auto;
}

/* Testimonials *******************************************************************/
.sct-testimonials {
	background: #ffffff;
	color: #2c2c2c;
	padding-top: 60px;
    padding-bottom: 100px;
}
.sct-testimonials .tlt {
	font-weight: 900;
}
.sct-testimonials .item-card-holder {
	position: relative;
	margin-top: 40px;
}
.sct-testimonials .item-card-holder::before {
	content: "";
    position: absolute;
    left: 5px;
    bottom: -15px;
    width: calc(100% - 30px);
	height: 30%;
	border: 3px solid #fce5bc;
	border-radius: 20px;
	z-index: 1;
	-webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -ms-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}
.sct-testimonials .item-card-holder:nth-child(even)::before {
	background: #fce5bc;
}
.sct-testimonials .item-card-holder:hover::before {
	height: 100%;
}

.sct-testimonials .item-card-holder .item-card {
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 20px;
	border-radius: 20px;
	border-top-right-radius: 0px;
	background: #2c2c2c;
	color: #ffffff;
	z-index: 10;
}
.sct-testimonials .item-card-holder .item-card .x-logo {
	position: absolute;
	height: 30px;
	width: auto;
	top: 20px;
	right: 20px;
}
.sct-testimonials .item-card-holder .item-card .txt {
	flex: 1;
}
.sct-testimonials .item-card-holder .item-card .tlt-h {
	color: #fce5bc;
	font-weight: 400;
	margin-bottom: 5px;
}
.sct-testimonials .item-card-holder .item-card .icon {
	height: 75px;
	width: 75px;
	padding: 3px;
	background: #fce5bc;
	margin-bottom: 15px;
	border-radius: 50%;
	border-bottom-right-radius: 0px;
	-webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -ms-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}
.sct-testimonials .item-card-holder:hover .item-card .icon {
	border-bottom-right-radius: 50%;
	border-top-right-radius: 0px;
}
.sct-testimonials .item-card-holder .item-card .icon img {
	height: 100%;
	width: auto;
	border-radius: 50%;
}
.sct-testimonials .item-card-holder .item-card .item-stars {
	display: flex;
	flex-direction: column;
	align-items: end;
}

/* FAQ *******************************************************************/
.sct-faq {
	background: #f7f2ed;
	color: #2c2c2c;
	padding-top: 60px;
    padding-bottom: 100px;
}
.sct-faq .tlt {
	font-weight: 900;
	margin: 0px;
}
.sct-faq .tlt-span {
	letter-spacing: 3px;
	line-height: 1;
	font-size: 1.5rem;
	padding: 6px 20px;
	border-radius: 18px;
	margin-bottom: 15px;
	border-bottom-right-radius: 0px;
}
.sct-faq .crc-faq {
	margin-bottom: 15px;
	width: 80%;
	height: auto;
}


.faq-card {
	border: 3px solid #2c2c2c;
	border-radius: 30px;
	padding: 0px 30px;
	margin-bottom: 15px;
	border-bottom-left-radius: 0px;
}
.faq-card .hdr-card {
	min-height: 60px;
	cursor: pointer;
	display: flex;
	flex-direction: row;
	align-items: center;
}
.faq-card .hdr-card .tlt-card {
	width: calc(100% - 32px);
}
.faq-card .hdr-card .icon {
	width: 32px;
	text-align: right;
}
.faq-card .hdr-card .zmdi {
	-webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -ms-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
	-webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
}
.faq-card .hdr-card:not(.collapsed) .zmdi {
	-webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -ms-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
	-webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}
.faq-card .body-card {
	color: #614514;
}
.faq-card .body-card.show {
	/* border-top: 2px solid #2c2c2c; */
}
.faq-card .body-card .ctx {
	/* padding-top: 15px; */
	padding-bottom: 15px;
}

/* Footer *******************************************************************/
.sct-prefooter {
	background: #ffffff;
	padding-top: 60px;
    padding-bottom: 60px;
}
.sct-prefooter .tlt {
	font-weight: 900;
	margin-bottom: 0px;
}
.sct-prefooter .tlt-l {
	font-weight: 400;
}

.sct-footer {
	background: #fce5bc;
	padding-top: 60px;
    padding-bottom: 30px;
}
.sct-footer .logo {
	height: 60px;
	width: auto;
	margin-bottom: 15px;
}
.sct-footer .links-h {
	font-weight: 700;
}
.sct-footer .ln-link {
	color: #2c2c2c;
	font-weight: 400;
	font-size: 1.1rem;
	font-family: "Archivo", sans-serif;
}
.sct-footer .ln-link.l-up {
	text-transform: uppercase;
}
.sct-footer .links-li {
	padding-left: 0px;
	list-style: none;
	margin-bottom: 30px;
}


/* Pricing *******************************************************************/
.sct-pricing {
	background: #ffffff;
	color: #2c2c2c;
	padding-top: 60px;
    padding-bottom: 100px;
}
.sct-pricing .tlt {
	font-weight: 900;
}

.switch-block {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	text-transform: uppercase;
	margin-bottom: 15px;
}
.switch-block .switch-lb {
	width: 120px;
}
.switch {
	position: relative;
	display: inline-block;
	width: 60px;
	height: 34px;
	margin-left: 5px;
	margin-right: 5px;
}
.switch input {
	opacity: 0;
	width: 0;
	height: 0;
}
.slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #2c2c2c;
	-webkit-transition: .4s;
	transition: .4s;
}
.slider:before {
	position: absolute;
	content: "";
	height: 26px;
	width: 26px;
	left: 4px;
	bottom: 4px;
	background-color: white;
	-webkit-transition: .4s;
	transition: .4s;
}
input:checked + .slider {
	background-color: #2c2c2c;
}
input:focus + .slider {
	box-shadow: 0 0 1px #2c2c2c;
}
input:checked + .slider:before {
	-webkit-transform: translateX(26px);
	-ms-transform: translateX(26px);
	transform: translateX(26px);
}
.slider.round {
	border-radius: 34px;
}
.slider.round:before {
	border-radius: 50%;
}


.sct-pricing .price-card-holder {
	position: relative;
	margin-top: 90px;
}
.sct-pricing .price-card-holder.dark-card-holder {
	margin-top: 90px;
}
.sct-pricing .price-card-holder::before {
	content: "";
    position: absolute;
    left: 5px;
    bottom: -15px;
    width: calc(100% - 30px);
	height: 30%;
	border: 3px solid #2c2c2c;
	border-radius: 20px;
	z-index: 1;
	-webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -ms-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}
.sct-pricing .price-card-holder:nth-child(even)::before {
	background: #2c2c2c;
}
.sct-pricing .price-card-holder:hover::before {
	height: 100%;
}

.price-card {
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 20px;
	border-radius: 20px;
	border-top-right-radius: 0px;
	background: #fce5bc;
	z-index: 10;
}
.price-card .tlt-h {
	font-weight: 900;
	margin-bottom: 5px;
}
.price-card .price {
	display: flex;
	flex-direction: row;
	align-items: flex-end;
}
.price-card .price h1 {
	font-weight: 900;
	font-family: "Archivo", sans-serif;
	margin: 0px;
}
.price-card .price p {
	margin-left: 5px;
	margin-bottom: 5px;
}
.price-card .billed {
	font-weight: 600;
}
.price-card .txt {
	height: 80px;
	display: flex;
	align-items: flex-end;
	color: #614514;
}
.price-card .btn-subscribe {
	font-family: 'Roboto', sans-serif;
	color: #ffffff;
	background: #2c2c2c;
	padding: 15px 25px;
	border-radius: 24px;
	font-weight: 700;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 15px;
}
.sct-pricing .included-list {
	flex: 1;
	list-style: none;
	padding-left: 20px;
	margin-bottom: 0px;
	color: #614514;
}
.sct-pricing .included-list li {
	position: relative;
}
.sct-pricing .included-list li::before {
	content: '\f26b';
	display: inline-block;
	font: normal normal normal 14px/1 'Material-Design-Iconic-Font';
	font-size: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	position: absolute;
	font-weight: bold;
	left: -20px;
	top: 3px;
}

.sct-pricing .card-extra {
	background-color: #fcbda3;
	padding: 10px 20px;
	padding-bottom: 30px;
	border-top-left-radius: 20px;
	border-top-right-radius: 0px;
	position: absolute;
	z-index: 9;
	width: calc(100% - 30px);
	height: 100px;
	top: -50px;
}
.sct-pricing .card-extra p {
	margin: 0px;
	line-height: 1;
}
.price-card.dark-card {
	background: #2c2c2c;
	margin-top: ;
}
.price-card.dark-card .tlt-h,
.price-card.dark-card .included-tlt {
	color: #fcbda3;;
}
.price-card.dark-card .price h1,
.price-card.dark-card .price p,
.price-card.dark-card .txt,
.price-card.dark-card .billed,
.price-card.dark-card .included-list {
	color: #ffffff;
}
.price-card.dark-card .btn-subscribe {
	color: #2c2c2c;
	background: #ffffff;
}