html {
	box-sizing: border-box;
}

*,
*:before,
*:after {
	/* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
	box-sizing: inherit;
}

/*
 * Typography
 */
body {
	color: #23232c;
	font-size: 14px;
	font-family: "Sofia Pro";
	line-height: 1.75;
	box-sizing: border-box;
	word-wrap: break-word;
	-webkit-font-smoothing: antialiased;
	font-weight: 300;
	overflow-x: hidden;
	background-color: #f4f6f8;
	margin: 0;
}

h1, h2, h3, h4, h5, h6 {
	font-weight: 600;
	line-height: 1.2;
}

h1 {
	font-size: 60px;
}

h2 {
	font-size: 40px;
}

h3 {
	font-size: 30px;
}

h4 {
	font-size: 24px;
}

h5 {
	font-size: 18px;
}

h6 {
	font-size: 16px;
}

p {
	margin-bottom: 1.5em;
}

a {
	color: #23232c;
	text-decoration: none;
	outline: none;
}

a:hover,
a:focus {
	outline: none;
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}

.screen-reader-text span {
	clip: rect(1px,1px,1px,1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

/*--------------------------------------------------------------
## Slick
--------------------------------------------------------------*/
/* Slider */
.slick-slider {
	position: relative;
	display: block;
	box-sizing: border-box;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-touch-callout: none;
	-khtml-user-select: none;
	-ms-touch-action: pan-y;
	touch-action: pan-y;
	-webkit-tap-highlight-color: transparent;
}

.slick-list {
	position: relative;
	display: block;
	overflow: hidden;
	margin: 0;
	padding: 0;
}

.slick-list:focus {
	outline: none;
}

.slick-list.dragging {
	cursor: pointer;
	cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.slick-track {
	position: relative;
	top: 0;
	left: 0;
	display: block;
}

.slick-track:before,
.slick-track:after {
	display: table;
	content: '';
}

.slick-track:after {
	clear: both;
}

.slick-loading .slick-track {
	visibility: hidden;
}

.slick-slide {
	display: none;
	float: left;
	height: 100%;
	min-height: 1px;
}

.slick-slide:hover,
.slick-slide:focus {
	outline: 0;
}

[dir='rtl'] .slick-slide {
	float: right;
}

.slick-slide img {
	display: block;
}

.slick-slide.slick-loading img {
	display: none;
}

.slick-slide.dragging img {
	pointer-events: none;
}

.slick-initialized .slick-slide {
	display: block;
}

.slick-loading .slick-slide {
	visibility: hidden;
}

.slick-vertical .slick-slide {
	display: block;
	height: auto;
	border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
	display: none;
}

/* Arrows */
span.slick-prev,
span.slick-next {
	font-size: 10px;
	position: absolute;
	top: 50%;
	display: block;
	transition: 0.5s;
	width: 60px;
	height: 60px;
	line-height: 57px;
	padding: 0;
	-webkit-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	transform: translate(0, -50%);
	cursor: pointer;
	border-radius: 50%;
	background-color: #ffffff;
	outline: none;
	z-index: 10;
	text-align: center;
	box-shadow: 0px 4px 10px 0px rgba(33, 33, 43, 0.1);
}

span.slick-prev {
	left: -105px;
}

span.slick-next {
	right: -105px;
}

/* Dots */
.slick-dots {
	padding: 0;
	margin: 0;
	list-style: none;
	text-align: center;
	display: none;
	left: 0;
	right: 0;
}

.slick-dots li {
	position: relative;
	display: inline-block;
	margin: 0 6px;
	padding: 0;
	cursor: pointer;
}

.slick-dots li button {
	font-size: 0;
	line-height: 0;
	display: block;
	width: 8px;
	height: 8px;
	padding: 0;
	cursor: pointer;
	color: transparent;
	border: 0;
	outline: none;
	background: transparent;
}

.slick-dots li button:hover, .slick-dots li button:focus {
	outline: none;
	background: transparent;
}

.slick-dots li button:before {
	position: absolute;
	top: 0;
	left: 0;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background-color: #c7c7ca;
	transition: 0.5s;
	content: '';
	text-align: center;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.slick-dots li button:hover:before {
	background-color: #21212b;
}

.slick-dots li.slick-active button:before {
	background-color: #21212b;
}

.text-center {
	text-align: center;
}

.text-right {
	text-align: right;
}

.text-light,
.text-light a {
	color: #fff;
}

.container {
	padding-left: 15px;
	padding-right: 15px;
	margin-right: auto;
	margin-left: auto;
}

.sober-container {
	padding-left: 60px;
	padding-right: 60px;
}

.row {
	display: flex;
	flex-wrap: wrap;
	margin-left: -15px;
	margin-right: -15px;
}

.sober-tabs__nav {
	list-style: none;
	margin: 0 0 36px;
	padding: 0 0 10px;
	display: flex;
	flex-wrap: nowrap;
	overflow: scroll;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.sober-tabs__nav::-webkit-scrollbar {
	display: none;
}

.sober-tabs__nav {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

.sober-tabs__nav li {
	font-size: 24px;
	margin-right: 80px;
	position: relative;
	cursor: pointer;
	transition: 0.3s;
	flex-shrink: 0;
}

.sober-tabs__nav li:after {
	content: '';
	width: 0;
	height: 2px;
	background-color: #23232c;
	position: absolute;
	right: 0;
	bottom: -8px;
	transition: width 0.3s;
}

.text-light .sober-tabs__nav li:after {
	background-color: #fff;
}

.sober-tabs__nav li:hover:after,
.sober-tabs__nav li.active:after {
	width: 100%;
}

.sober-tabs__nav li:hover:after {
	left: 0;
}

.sober-tabs__panels {
	position: relative;
}

.sober-tabs__panel {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	display: none;
}

.sober-tabs__panel.active {
	position: relative;
	top: 0;
}

svg {
	transition: .5s;
	width: 20px;
	height: 20px;
	display: inline-block;
	vertical-align: middle;
	stroke: #23232c;
	stroke-width: 0px;
	fill: #23232c;
}

ul.products {
	list-style: none;
	margin: 0 -15px;
	padding: 0;
}

ul.products li.product {
	padding-left: 15px;
	padding-right: 15px;
}

ul.products li.product .product-header {
	position: relative;
	overflow: hidden;
	margin-bottom: 16px;
}

ul.products li.product .product-header .product-thumbnail {
	display: block;
}

ul.products li.product .product-images .slick-arrow {
	width: 24px;
	height: 40px;
	line-height: 40px;
	border-radius: 0;
	box-shadow: none;
	opacity: 0;
}

ul.products li.product:hover .product-images .slick-arrow {
	opacity: 1;
}

ul.products li.product .product-images .slick-prev {
	left: 0;
}

ul.products li.product .product-images .slick-next {
	right: 0;
}

ul.products li.product .style-text {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 30px;
}

ul.products li.product h3 {
	font-size: 16px;
	font-weight: 300;
	margin: 0 0 5px;
}

ul.products li.product .price {
	font-size: 14px;
	font-weight: 600;
	line-height: 30px;
	margin-bottom: 0;
	transition: 0.5s;
}

ul.products li.product .price-wrapper {
	height: 30px;
	overflow: hidden;
}

ul.products li.product .price-wrapper .button {
	color: #23232c;
	font-size: 14px;
	font-weight: 600;
	opacity: 1;
	margin: 0;
	width: auto;
	height: 30px;
	min-height: 30px;
	line-height: 30px;
	border-bottom: 2px solid #23232c;
	background: transparent;
	text-transform: uppercase;
	overflow: visible;
	border-radius: 0;
}

ul.products li.product .buttons {
	position: absolute;
	top: 100%;
	width: 100%;
}

ul.products li.product .buttons-icon {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 100;
}

ul.products li.product .button {
	color: #fff;
	background-color: #23232c;
	margin: 0 5.5px;
	padding: 0;
	display: inline-block;
	vertical-align: middle;
	width: 50px;
	height: 50px;
	min-width: 0;
	min-height: 50px;
	line-height: 50px;
	overflow: hidden;
	transition: transform .5s,opacity .3s,background .5s;
	border-radius: 50%;
	opacity: 0;
}

ul.products li.product .buttons-icon .button {
	margin: 0;
	background: transparent;
}

ul.products li.product .add-to-wishlist,
ul.products li.product .quick-view {
	transition-delay: .1s;
}

ul.products li.product .buttons svg {
	stroke: #fff;
	fill: #fff;
}

ul.products li.product .buttons-icon svg {
	stroke: #23232c;
	fill: #23232c;
}

ul.products li.product:hover .buttons .button {
	transform: translateY(-72px);
	opacity: 1;
}

ul.products li.product:hover .buttons-icon .button {
	opacity: 1;
}

ul.products li.product:hover .price-wrapper .price,
ul.products li.product:hover .price-wrapper .button {
	transform: translateY(-103%);
}

ul.products li.product--style-3 .buttons .button {
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	border-radius: 0;
	width: 100%;
	margin: 0;
}

ul.products li.product--style-3:hover .buttons .button {
	transform: translateY(-100%);
}

ul.products li.product--style-5 .product-thumbnail {
	cursor: crosshair;
}

ul.products .slick-dots {
	margin-top: 46px;
}

ul.products > .slick-arrow {
	top: 43%;
}

/*
 * Header
 */
.site-header {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 999;
}

.site-header .sober-container {
	display: flex;
	justify-content: space-between;
	align-self: center;
	height: 120px;
}

.site-header__logo,
.site-header__links {
	display: flex;
	align-items: center;
}

.site-header__links {
	flex-wrap: nowrap;
	overflow: scroll;
}

.site-header__links::-webkit-scrollbar {
	display: none;
}

.site-header__links {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

.site-header__links a {
	flex-shrink: 0;
}

.site-header__logo a {
	position: relative;
	display: inline-block;
}

.site-header__logo .version {
	color: #fff;
	font-size: 12px;
	background-color: #2714df;
	font-weight: 700;
	border-radius: 10px 10px 10px 0;
	line-height: 1;
	position: absolute;
	left: 100%;
	bottom: 100%;
	padding: 4px 7px;
}

.site-header__links-link {
	font-weight: 500;
	position: relative;
}

.site-header__links-link:not( .site-header__links-purchase ) {
	font-size: 16px;
	margin-right: 60px;
}

.site-header__links-link:not( .site-header__links-purchase ):after {
	content: '';
	width: 0;
	height: 1px;
	background-color: #23232c;
	position: absolute;
	right: 0;
	bottom: 0;
	transition: width 0.3s;
}

.site-header__links-link:not( .site-header__links-purchase ):hover:after,
.site-header__links-link:not( .site-header__links-purchase ).active:after {
	width: 100%;
	
}

.site-header__links-link:not( .site-header__links-purchase ):hover:after {
	left: 0;
}

.site-header__links-purchase {
	color: #fff;
	font-size: 14px;
	background-color: #2714df;
	height: 48px;
	line-height: 48px;
	min-width: 180px;
	display: inline-flex;
	align-self: center;
	justify-content: center;
	border-radius: 24px;
}

.site-header__links-purchase .text {
	position: relative;
	padding-right: 9px;
	margin-right: 9px;
}

.site-header__links-purchase .text:after {
	content: '';
	width: 1px;
	height: 14px;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	background-color: rgba( 255,255,255,0.25 );
}

/*
 * Section
 */
.section-title {
	font-size: 40px;
	margin-top: 0;
	margin-bottom: 20px;
}

.section-desc {
	font-size: 16px;
}

/*----------- Introduce -----------*/

.introduce-section {
	background-image: url( 'images/head/head-bg.jpg' );
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	padding-top: 160px;
	padding-bottom: 75px;
}

.introduce-section h1 {
	font-size: 72px;
	margin-bottom: 15px;
}

.introduce-section p {
	font-size: 24px;
	margin-top: 0;
	margin-bottom: 21px;
}

.introduce-section .new-demo {
	font-size: 14px;
	font-weight: 600;
	position: relative;
	display: inline-block;
}

.introduce-section .new-demo:after {
	content: '';
	width: 100%;
	height: 1px;
	background-color: #23232c;
	position: absolute;
	left: 0;
	bottom: 0;
}

.introduce-section__plugins {
	margin-top: 260px;
	margin-bottom: 81px;
}

.introduce-section__plugins .plugin {
	flex: 0 0 33.333%;
	max-width: 33.333%;
	padding-left: 15px;
	padding-right: 15px;
}

.introduce-section__plugins .plugin img {
	margin-bottom: 24px
}

.introduce-section__plugins .plugin h2 {
	font-size: 16px;
	margin: 0 0 9px;
}

.introduce-section__plugins .plugin div {

}

/*----------- Demos Section -----------*/
.demos-section__items {
	margin-top: 72px;
}

.demos-section__items-item {
	font-size: 16px;
	font-weight: 600;
	flex: 0 0 33.333%;
	max-width: 33.333%;
	padding-left: 15px;
	padding-right: 15px;
	margin-bottom: 52px;
}

.demos-section__items-item a {
	display: inline-block;
	position: relative;
}

.demos-section__items-item img {
	box-shadow: 0 4px 10px 0 rgba(33, 33, 43, 0.1);
	margin-bottom: 36px;
	transition: box-shadow 0.3s;
}

.demos-section__items-item span.text {
	display: block;
}

.demos-section__items-item span.text span {
	display: inline-block;
	position: relative;
	line-height: 1;
	padding-bottom: 4px;
}

.demos-section__items-item span.text span:after {
	content: '';
	width: 0;
	height: 2px;
	background-color: #23232c;
	position: absolute;
	right: 0;
	bottom: 0;
	transition: width 0.3s;
}

.demos-section__items-item a:hover img {
	box-shadow: 0px 8px 30px 0px rgba(33, 33, 43, 0.2);
}

.demos-section__items-item a:hover span.text span:after {
	width: 100%;
	left: 0;
}

.demos-section__items-item span.bagde {
	font-weight: 600;
	min-width: 50px;
	height: 50px;
	line-height: 48px;
	border-radius: 50%;
	background-color: #ffc452;
	position: absolute;
	right: -25px;
	top: -25px;
}

.demos-section__items-coming-soon > div {
	position: relative;
}

.demos-section__items-coming-soon img {
	margin: 0;
}

.demos-section__items-coming-soon span {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 100%;
}

/*----------- Home Pages -----------*/
.demos-section--home-pages {
	padding-top: 38px;
	padding-bottom: 60px;
}

.demos-section--home-pages .sober-tabs {
	margin-top: 71px;
}

.demos-section--home-pages .demos-section__items {
	margin-top: 0;
}

/*----------- Shop Pages -----------*/
.demos-section--product-pages {
	background-color: #21212b;
	padding-top: 110px;
	padding-bottom: 160px;
}

.demos-section--product-pages .section-title {
	margin-bottom: 13px;
}

.demos-section--product-pages .sober-tabs {
	margin-top: 71px;
}

.demos-section--product-pages .sober-tabs__nav li {
	color: rgba( 255,255,255,0.5 );
}

.demos-section--product-pages .sober-tabs__nav li:hover,
.demos-section--product-pages .sober-tabs__nav li.active {
	color: #fff;
}

.demos-section--product-pages .sober-tabs__nav li:focus {
	outline: none;
}

.demos-section--product-pages .demos-section__items {
	margin-top: 0;
}

.demos-section--product-pages .demos-section__items-item {
	margin-bottom: 72px;
}

.demos-section--product-pages .demos-section__items-item span.text span:after {
	background-color: #fff;
}

.demos-section--product-pages .demos-section__items-item span.bagde {
	color: #23232d;
}

/*----------- Product Hover Style -----------*/
.product-hover-style-section {
	padding-bottom: 40px;
}

.product-hover-style-section .section-inner {
	background-color: #fff;
	border-radius: 8px;
	margin-top: -120px;
	padding-top: 70px;
	padding-bottom: 40px;
	box-shadow: 0 4px 10px 0 rgba(33, 33, 43, 0.1);
}

.product-hover-style-section .section-title {
	margin-bottom: 13px;
}

.product-hover-style-section__items {
	padding-left: 150px;
	padding-right: 150px;
	margin-top: 40px;
}

/*----------- Other Pages -----------*/
.demos-section--other-pages {
	padding-top: 70px;
}

.demos-section--other-pages .demos-section__items {
	margin-bottom: 80px;
}

.demos-section--other-pages .demos-section__items-item {
	flex: 0 0 25%;
	max-width: 25%;
}

.demos-section--other-pages .demos-section__items-item {
	margin-bottom: 33px;
}

.demos-section--other-pages .demos-section__items-item img {
	margin-bottom: 24px;
}

.demos-section--other-pages .demos-section__items-item span.bagde {
	min-width: 40px;
	height: 40px;
	line-height: 40px;
	right: -20px;
	top: -20px;
	font-size: 12px;
}

.demos-section__banners-item {
	flex: 0 0 50%;
	max-width: 50%;
	padding-left: 15px;
	padding-right: 15px;
	position: relative;
	margin-bottom: 30px;
}

.demos-section__banners-responsive {
	flex: 0 0 100%;
	max-width: 100%;
}

.demos-section__banners-item .content {
	position: absolute;
	left: 0;
	right: 0;
	top: 70px;
}

.demos-section__banners-item .title {
	font-size: 32px;
	font-weight: 600;
	display: block;
	line-height: 1.3;
	margin-bottom: 15px;
}

.demos-section__banners-item .desc {
	font-size: 16px;
	font-weight: 300;
	display: block;
	line-height: 1.5;
	margin-bottom: 32px;
}

.demos-section__banners-item .button {
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	min-width: 160px;
	height: 48px;
	line-height: 46px;
	border-radius: 24px;
	display: inline-block;
}

.demos-section__banners-blog a {
	color: #836d4f;
}

.demos-section__banners-blog .button {
	background-color: #836d4f;
}

.demos-section__banners-portfolio a {
	color: #465f8d;
}

.demos-section__banners-portfolio .button {
	background-color: #465f8d;
}

.demos-section__banners-responsive {
	color: #536f69;
	text-align: left;
}

.demos-section__banners-responsive .content {
	left: 95px;
}

/*----------- Plugins -----------*/
.plugins-section {
	padding-top: 79px;
}

.plugins-section .section-title {
	margin-bottom: 13px;
}

.plugins-section__items {
	justify-content: center;
	margin-top: 112px;
	margin-bottom: 62px;
}

.plugins-section__items-plugin {
	flex: 0 0 20%;
	max-width: 20%;
	padding-left: 15px;
	padding-right: 15px;
	margin-bottom: 50px;
}

.plugins-section__items-plugin a {
	display: inline-block;
	position: relative;
}

.plugins-section__items-plugin span {
	display: block;
}

.plugins-section__items-plugin img {
	margin-bottom: 19px;
}

.plugins-section__items-plugin .name {
	font-size: 20px;
	font-weight: 600;
	line-height: 1.3;
}

.plugins-section__items-plugin .desc {
	color: #868596;
	font-size: 14px;
	font-weight: 600;
}

.plugins-section__items-plugin .price {
	color: #fff;
	font-size: 20px;
	font-weight: 700;
	font-family: 'Kalam', cursive;
	background-color: #24bc1c;
	min-width: 50px;
	height: 32px;
	border-radius: 16px;
	display: inline-flex;
	justify-content: center;
	line-height: 40px;
	position: absolute;
	top: -16px;
	right: -6px;
}

.plugins-section__items-plugin .price .currency {
	font-size: 14px;
	font-weight: 400;
	transform: translateY(-6px);
}

.plugins-section__items-rev .price {
	top: -18px;
	right: -20px;
}

.plugins-section__save {
	margin-bottom: 120px;
}

/*----------- Features -----------*/
.features-section {
	color: #d3dee8;
	background-color: #21212b;
	padding-top: 110px;
	padding-bottom: 30px;
}

.features-section .section-title {
	margin-bottom: 13px;
}

.features-section__items {
	margin-top: 110px;
	justify-content: center;
}

.features-section__items-item {
	flex: 0 0 16.6667%;
	max-width: 16.6667%;
	padding-right: 15px;
	padding-left: 15px;
	margin-bottom: 85px;
}

.features-section__items-item img {
	margin-bottom: 16px;
}

.features-section__items-item .title {
	font-size: 14px;
	font-weight: 600;
	line-height: 1.3;
}

/*----------- About Us -----------*/

.about-us-section {
	padding-top: 109px;
}

.about-us-section .section-title {
	margin-bottom: 50px;
}

.about-us-section .section-title span {
	color: #f31a57;
	display: inline-block;
	background-image: url( 'images/line.png' );
	background-repeat: no-repeat;
	background-position: bottom center;
	padding-bottom: 8px;
}

.about-us-section__testimonials {
	max-width: 70%;
	margin: 0 auto 115px;
}

.about-us-section__testimonials-item .testimonial-name {
	color: #3d67c4;
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 2px;
}

.about-us-section__testimonials-item .testimonial-content {
	font-size: 20px;
	line-height: 1.5;
}

.about-us-section__testimonials-item .testimonial-rating {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 22px;
}

.testimonial-rating__star {
	margin-right: 20px;
}

.about-us-section__testimonials .slick-dots {
	margin-top: 60px;
}

.about-us-section__testimonials span.slick-prev {
	left: -110px;
}

.about-us-section__testimonials span.slick-next {
	right: -110px;
}

.about-us-section__boxes {
	display: flex;
	margin-bottom: -120px;
	position: relative;
}

.about-us-section__boxes-support,
.about-us-section__boxes-usage {
	width: 50%;
}

.about-us-section__boxes-support {
	color: #fff;
	background-color: #8491a2;
	background-image: url( 'images/support/support.png' );
	background-position: bottom center;
	background-repeat: no-repeat;
	border-radius: 8px 0 0 8px;
	padding-top: 75px;
}

.about-us-section__boxes-support h3 {
	font-size: 24px;
	margin: 0 0 13px;
}

.about-us-section__boxes-support p {
	margin: 0 0 13px;
}

.about-us-section__boxes-support a {
	color: #fff;
	font-weight: 600;
	min-width: 160px;
	height: 48px;
	line-height: 48px;
	border-radius: 24px;
	background-color: #2714df;
	display: inline-block;
}

.about-us-section__boxes-usage {
	padding: 30px 80px;
	border-radius:  0 8px 8px 0;
	text-align: left;
	background-color: #fff;
}

.about-us-section__boxes-usage .usage {
	padding-top: 47px;
	padding-bottom: 45px;
}

.about-us-section__boxes-usage img {
	float: left;
}

.about-us-section__boxes-usage .usage__content {
	padding-left: 60px;
}

.about-us-section__boxes-usage h3 {
	font-size: 20px;
	margin: 4px 0 9px;
}

.about-us-section__boxes-usage p {
	margin: 0 0 10px;
}

.about-us-section__boxes-usage a {
	font-weight: 600;
	display: inline-block;
	border-bottom: 1px solid;
	line-height: 1;
	padding-bottom: 4px;
}

.about-us-section__boxes-usage .documentation {
	border-bottom: 1px solid rgba( 33,33,43,0.1 )
}

/*----------- Footer ----------*/
.site-footer {
	background-color: #21212b;
}

.site-footer__extra {
	max-width: 75%;
	margin: auto;
	display: flex;
	justify-content: space-between;
	padding-top: 275px;
	padding-bottom: 141px;
}

.site-footer__extra div {
	font-size: 32px;
	font-weight: 600;
	line-height: 1.2;
}

.site-footer__extra .purchase {
	color: #21212b;
	font-size: 16px;
	font-weight: 600;
	background-color: #ffce4b;
	height: 60px;
	line-height: 60px;
	min-width: 240px;
	display: inline-flex;
	align-self: center;
	justify-content: center;
	border-radius: 30px;
}

.site-footer__extra .purchase .text {
	position: relative;
	padding-right: 11px;
	margin-right: 11px;
}

.site-footer__extra .purchase .text:after {
	content: '';
	width: 1px;
	height: 20px;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	background-color: rgba( 33,33,43,0.25 );
}

.site-footer__main {
	padding: 40px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

/* -------------- Responsive ------------- */
@media (min-width: 768px) {
	.container {
		width: 750px;
	}
}

@media (min-width: 992px) {
	.container {
		width: 970px;
	}
}

@media (min-width: 1200px) {
	.container {
		width: 1170px;
	}
}

@media ( max-width: 1199px ) {
	.section-desc br,
	.introduce-section__plugins br {
		display: none;
	}

	.demos-section__banners-blog br,
	.demos-section__banners-portfolio br {
		display: none;
	}

	.demos-section__banners-blog .content,
	.demos-section__banners-portfolio .content {
		top: 40px;
		padding: 0 50px;
	}

	.demos-section__banners-item .desc {
		margin-bottom: 23px;
	}

	.demos-section__banners-item .button {
		min-width: 150px;
		height: 40px;
		line-height: 38px;
	}

	.about-us-section__boxes-usage {
		padding: 20px 50px;
	}

	.about-us-section__boxes-usage br {
		display: none;
	}

	.about-us-section__boxes-usage .usage {
		padding-top: 35px;
		padding-bottom: 40px;
	}
}

@media ( max-width: 991px ) { 
	.site-header {
		padding: 30px 0;
	}

	.site-header .sober-container {
		display: block;
		height: auto;
	}

	.site-header__logo {
		margin-bottom: 20px;
		justify-content: center;
	}

	.introduce-section {
		padding-top: 150px;
		padding-bottom: 50px;
	}

	.introduce-section h1 {
		font-size: 60px;
	}

	.introduce-section__plugins {
		margin-top: 150px;
		margin-bottom: 50px;
	}

	.demos-section__items-item {
		flex: 0 0 50%;
		max-width: 50%;
	}

	.demos-section--other-pages .demos-section__items {
		margin-bottom: 50px;
	}

	.demos-section--other-pages .demos-section__items-item {
		flex: 0 0 33.333%;
		max-width: 33.333%;
	}

	.demos-section--product-pages {
		padding-top: 70px;
		padding-bottom: 120px;
	}

	.sober-tabs__nav li {
		font-size: 20px;
		margin-right: 60px;
	}

	.product-hover-style-section .section-inner {
		margin-top: -90px;
		padding-top: 60px;
	}

	.demos-section__banners-blog br,
	.demos-section__banners-portfolio br {
		display: none;
	}

	.demos-section__banners-item .title {
		font-size: 26px;
	}

	.demos-section__banners-item .desc {
		display: none;
	}

	.demos-section__banners-responsive .content {
		left: 60px;
		top: 100px;
	}

	.plugins-section {
		padding-top: 50px;
	}

	.plugins-section__items {
		margin-top: 80px;
		margin-bottom: 30px;
	}

	.plugins-section__items-plugin {
		flex: 0 0 25%;
		max-width: 25%;
	}

	.plugins-section__save {
		margin-bottom: 90px;
	}

	.features-section {
		padding-top: 70px;
	}

	.features-section__items {
		margin-top: 80px;
	}

	.features-section__items-item {
		flex: 0 0 20%;
		max-width: 20%;
	}

	.about-us-section {
		padding-top: 70px;
	}

	.about-us-section__testimonials {
		max-width: 100%;
		margin: 0 auto 80px;
	}

	.about-us-section__testimonials .slick-dots {
		margin-top: 30px;
	}

	.about-us-section__testimonials br {
		display: none;
	}

	.about-us-section__boxes {
		margin-bottom: -80px;
	}

	.about-us-section__boxes-usage {
		padding: 15px 30px;
	}

	.site-footer__extra {
		max-width: 100%;
		padding-top: 200px;
		padding-bottom: 90px;
	}
}

@media ( max-width: 767px ) {
	.sober-container {
		padding-left: 15px;
		padding-right: 15px;
	}

	.section-title {
		font-size: 32px;
	}

	.section-desc {
		font-size: 14px;
	}

	.demos-section--other-pages .demos-section__items-item span.bagde,
	.demos-section__items-item span.bagde {
		right: 0;
	}

	.introduce-section__plugins .plugin {
		flex: 0 0 100%;
		max-width: 100%;
		margin-bottom: 30px;
	}

	.introduce-section__plugins .plugin img {
		margin-bottom: 15px;
	}

	.sober-tabs__nav li {
		font-size: 18px;
		margin-right: 40px;
	}

	.product-hover-style-section__items {
		padding-left: 30px;
		padding-right: 30px;
	}

	ul.products > .slick-arrow {
		display: none !important;
	}

	.features-section__items-item {
		flex: 0 0 33.33%;
		max-width: 33.33%;
		margin-bottom: 50px;
	}
}

@media ( max-width: 600px ) {
	.demos-section--other-pages .demos-section__items-item {
		flex: 0 0 50%;
		max-width: 50%;
	}

	.demos-section__banners-item {
		flex: 0 0 100%;
		max-width: 100%;
	}

	.plugins-section__items-plugin {
		flex: 0 0 33.333%;
		max-width: 33.333%;
	}

	.about-us-section__boxes {
		flex-wrap: wrap;
	}

	.about-us-section__boxes-support, 
	.about-us-section__boxes-usage {
		width: 100%;
		border-radius: 0;
	}

	.about-us-section__boxes-support {
		padding-bottom: 230px;
	}

	.site-footer__extra {
		display: block;
		padding-top: 150px;
		padding-bottom: 40px;
	}

	.site-footer__extra div {
		font-size: 28px;
		margin-bottom: 25px;
	}

	.site-footer__extra div br {
		display: none;
	}
}

@media ( max-width: 480px ) {
	.introduce-section h1 {
		font-size: 48px;
	}

	.introduce-section__plugins {
		margin-top: 70px;
		margin-bottom: 20px;
	}

	.demos-section__items-item {
		flex: 0 0 100%;
		max-width: 100%;
	}

	.plugins-section__items-plugin {
		flex: 0 0 50%;
		max-width: 50%;
	}

	.demos-section__banners-responsive .content {
		top: 20px;
		left: 40px;
		right: auto;
	}

	.demos-section__banners-responsive .content .title {
		font-size: 20px;
	}

	.demos-section--other-pages .demos-section__items-item {
		flex: 0 0 100%;
		max-width: 100%;
	}

	.demos-section__items-item,
	.demos-section--product-pages .demos-section__items-item {
		margin-bottom: 40px;
	}

	.demos-section__items-item img {
		margin-bottom: 20px;
	}
}