@-webkit-keyframes hvr-wobble-horizontal {
  16.65% {
    -webkit-transform: translateX(8px);
    transform: translateX(8px);
  }
  33.3% {
    -webkit-transform: translateX(-6px);
    transform: translateX(-6px);
  }
  49.95% {
    -webkit-transform: translateX(4px);
    transform: translateX(4px);
  }
  66.6% {
    -webkit-transform: translateX(-2px);
    transform: translateX(-2px);
  }
  83.25% {
    -webkit-transform: translateX(1px);
    transform: translateX(1px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes hvr-wobble-horizontal {
  16.65% {
    -webkit-transform: translateX(8px);
    transform: translateX(8px);
  }
  33.3% {
    -webkit-transform: translateX(-6px);
    transform: translateX(-6px);
  }
  49.95% {
    -webkit-transform: translateX(4px);
    transform: translateX(4px);
  }
  66.6% {
    -webkit-transform: translateX(-2px);
    transform: translateX(-2px);
  }
  83.25% {
    -webkit-transform: translateX(1px);
    transform: translateX(1px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@-webkit-keyframes scrollUp {
  from {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@keyframes scrollUp {
  from {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
.scrollUp {
  -webkit-animation: scrollUp 0.5s forwards;
          animation: scrollUp 0.5s forwards;
}

:root{
  --font-body: 'Jost', sans-serif;
  --font-custom: 'Quicksand', sans-serif;

  --color-base: #4D5574;
  --color-heading: #2D2A6E;
  --color-hover: #96AE00;

  --color-button: #ffffff;
  --background-button: #96AE00;
  --border-button: #96AE00;
  --color-button-hover: #ffffff;
  --background-button-hover: #859a00;
  --border-button-hover: #859a00;

  --color-button-2: #ffffff;
  --background-button-2: #2D2A6E;
  --border-button-2: #2D2A6E;
  --color-button-2-hover: #ffffff;
  --background-button-2-hover: #96AE00;
  --border-button-2-hover: #96AE00;
}

body {
  font-family: var(--font-body);
  color: var(--color-base);
  background-color: #F6F7F9;
  overflow-x: hidden;
}

@media(min-width: 1440px){
  .container{
    max-width: 1440px;
    padding-left: 15px;
    padding-right: 15px;
  }
}

.dflex{
  display: flex;
  flex-wrap: wrap;
}

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

.row25{
  margin-left: -25px;
  margin-right: -25px;
}

.col25{
  padding-left: 25px;
  padding-right: 25px;
}

a{
  color: var(--color-base);
}

a:hover{
  color: var(--color-hover);
}

a,
a:hover {
  text-decoration: none !important;
}

a:focus,
a:hover {
  color: #df0e0e;
}

.hidden {
  display: none !important;
}

html,
body {
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-heading);
}

@media only screen and (min-width: 992px) {
  [class*="col"] {
    margin-bottom: 0;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 1200px) {
  [class*="col"] {
    margin-bottom: 0;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin-bottom: 0;
  }
  .boxed {
    max-width: 1200px;
    margin: auto;
  }
}
/*--------------------------------------------------------------
Reset
--------------------------------------------------------------*/
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,
font,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  border: 0;
  font-size: 100%;
  font-style: inherit;
  font-weight: inherit;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline;
}
html {
  overflow-y: scroll;
  /* Keeps page centered in all browsers regardless of content height */
  -webkit-text-size-adjust: 100%;
  /* Prevents iOS text size adjust after orientation change, without disabling user zoom */
  -ms-text-size-adjust: 100%;
  /* www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/ */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
*,
*:before,
*:after {
  /* apply a natural box layout model to all elements; see http://www.paulirish.com/2012/box-sizing-border-box-ftw/ */
  -webkit-box-sizing: border-box;
  /* Not needed for modern webkit but still used by Blackberry Browser 7.0; see http://caniuse.com/#search=box-sizing */
  -moz-box-sizing: border-box;
  /* Still needed for Firefox 28; see http://caniuse.com/#search=box-sizing */
  box-sizing: border-box;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section {
  display: block;
}
ol,
ul {
  list-style: none;
}
table {
  /* tables still need 'cellspacing="0"' in the markup */
  border-collapse: separate;
  border-spacing: 0;
}
caption,
th,
td {
  font-weight: normal;
  text-align: left;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
}
blockquote,
q {
  quotes: "" "";
}
a:focus {
  outline: none;
}
a:hover,
a:active {
  outline: 0;
}
a img {
  border: 0;
}
/*--------------------------------------------
Initial Setup
----------------------------------------------*/
a {
  text-decoration: none;
}
input:focus,
textarea:focus {
  outline: none;
}
img,
video {
  max-width: 100%;
  vertical-align: top;
}
audio,
canvas,
video {
  display: inline;
  zoom: 1;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}
/*--------------------------------------------
General
----------------------------------------------*/
a,
a:visited {
  cursor: pointer;
}
/*--------------------------------------------
Combo CSS
----------------------------------------------*/
.clr:before,
.clr:after {
  content: " ";
  display: table;
}
.clr:after {
  clear: both;
}
.icf {
  font-family: 'FontAwesome';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
}
.tran,
a,
.mfp-fade.mfp-bg,
.mfp-fade.mfp-wrap .mfp-content {
  -webkit-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}
/*--------------------------------------------
Popup Effects
----------------------------------------------*/
/* overlay at start */
.mfp-fade.mfp-bg {
  opacity: 0;
}
/* overlay animate in */
.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.8;
}
/* overlay animate out */
.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}
/* content at start */
.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
}
/* content animate it */
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}
/* content animate out */
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}
/*--------------------------------------------------------------
Common
--------------------------------------------------------------*/
.site {
  overflow: hidden;
}

.action {
  background-color: var(--background-button);
  color: var(--color-button);
  font-size: 13px;
  font-weight: 600;
  line-height: 19px;
  padding: 13px 37px;
  display: inline-block;
  border-radius: 30px;
  text-transform: uppercase;
}

.action:hover{
  background-color: var(--background-button-hover);
  color: var(--color-button-hover);
}

.action:focus{
  background-color: var(--background-button);
  color: var(--color-button);
}

.demo .coming > a{
  display: block;
  position: relative;
  pointer-events: none;
}
.demo .coming h3{
  text-align: center;
}
.demo .coming h3 a{
  pointer-events: none;
  float: none !important;
}
.demo .coming > a:before{
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #000;
  opacity: 0.4;
  z-index: 2;
  border-radius: 0 0 3px 3px;
}
.not-done{
  display: block;
  pointer-events: none;
}
.not-done .border_tool,
.not-done .demo__content{
  opacity: 0.2;
}

.demo.feauter{
  background-color: white;
  padding-top: 100px;
  padding-bottom: 78px;
}

.demo.feauter .inner-item{
  box-shadow: 0px 0px 20px rgba(61, 110, 168, 0.08);
  padding: 50px;
}

.demo.feauter .inner-item .title{
  font-size: 20px;
  font-weight: 500;
  line-height: 29px;
}

.demo.feauter .inner-item .content{
  font-size: 16px;
  font-weight: 400;
  line-height: 23px;
  margin-top: 3px;
}

.demo.product{
  background: #f9f9f9 !important;
  border: 1px solid #ebebeb;
  border-left: 0;
  border-right: 0;
}
.demo.product .border_tool{
      border-radius: 12px 12px 0 0;
}
.demo.product .demo__content{
    height: 30vh;
    background-size: 100%;
    background-repeat: no-repeat;
}
.demo.shop .text,
.demo.product .text {
    color: #222;
    font-size: 14px;
    font-weight: 500;
    border-radius: 3px;
    display: inline-block;
    text-transform: capitalize;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    text-decoration: none;
}
.demo.shop .text:hover,
.demo.product .text:hover{
  color: #ff9400;
}
.demo.product .content-text {
  margin-bottom: 74px;
}
.demo__content,
.demo__content {
  box-shadow: 0px 15px 40px 0px rgba(18, 46, 73, 0.08);
  -webkit-box-shadow: 0px 15px 40px 0px rgba(18, 46, 73, 0.08);
  -ms-box-shadow: 0px 15px 40px 0px rgba(18, 46, 73, 0.08);
  -o-box-shadow: 0px 15px 40px 0px rgba(18, 46, 73, 0.08);
}
.demo.feauter .content-text h2{
  font-size: 30px;
  margin-top: -7px;
  margin-bottom: 17px;
}

.demo .content-text .title{
  font-family: var(--font-custom);
  font-size: 36px;
  font-weight: 700;
  line-height: 45px;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.demo.blog-other .content-text .title{
  font-size: 30px;
  line-height: 38px;
}

.demo.feature-general .content-text .title{
  margin-bottom: 12px;
}

.demo .content-text .content {
  font-size: 16px;
  font-weight: 400;
  line-height: 23px;
  margin-top: 16px;
}

.demo .content-text .content ul{
  margin-top: 25px;
}

.demo .content-text .content ul li{
  display: inline-block;
  margin-right: 53px;
  margin-bottom: 10px;
}

.demo .content-text .content ul li .icon{
  margin-right: 10px;
}

.demo .content-text .content ul li>*{
  display: inline-block;
  vertical-align: middle;
}

.demo .content-text .content ul li:last-child{
  margin-right: 0;
}

.demo .btn-popup{
  position: relative;
}

.demo .item{
  margin-bottom: 50px;
}

.demo .inner-item{
  padding: 21px 21px 25px;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 20px 30px rgba(61, 110, 168, 0.05);
}

.demo.extension{
  padding-top: 91px;
}

.demo.extension .inner-item{
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: flex-end;
}

.demo.extension .inner-item .demo__content{
  padding: 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0px 20px 30px rgba(61, 110, 168, 0.05);
}

.demo.feature-general {
  background: white;
  padding-top: 91px;
  padding-bottom: 100px;
}

.demo.feature-general .item{
  margin-bottom: 30px;
}

.demo.feature-general .inner-item{
  background: #F6F7F9;
  box-shadow: none;
  padding: 50px 35px 44px;
}

.demo.feature-general .inner-item .title{
  font-size: 13px;
  font-weight: 600;
  line-height: 19px;
  text-transform: uppercase;
}

.demo.feature-general .inner-item .content{
  font-size: 16px;
  font-weight: 400;
  line-height: 23px;
  margin-top: 15px;
}

.demo__content {
  border-top: 0;
  margin-bottom: 25px;
  position: relative;
  background-size: cover; 
  background-repeat: no-repeat;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  background-position: center center;
}

.demo.blog-other{
  padding-bottom: 98px;
}

.demo.blog-other .container{
  position: relative;
  text-align: center;
}

.demo.blog-other .content-text{
  position: absolute;
  top:91px;
  left: 0;
  right: 0;
}

.demo.blog-other .inner-item{
  padding: 0;
  background-color: transparent;
  box-shadow: none;
  border-radius: 0;
  text-align: center;
  overflow: visible;
}

.demo.blog-other .item-title{
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  text-transform: uppercase;
}

.demo.blog-other .item-text{
  font-size: 16px;
  font-weight: 400;
  line-height: 23px;
  margin-top: 20px;
}

.demo.blog-other .item{
  margin-bottom: 0;
}


.demo.blog-other .content-main{
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
}

.block_header_footer h2{
  margin-top: 4px;
}
.blog-other .row img{
  transition: all 0.3s;
}
.blog-other .inner-item:hover img{
  transform: translateY(-6px);
}

.demo.home{
  padding-bottom: 50px;
  background-color: #f6f7f9;
}

.demo h3 {
	margin-top: 26px;
}

.demo h3 a {
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  display: inline-block;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: var(--color-heading);
}

.demo h3 a:hover{
  color: var(--color-hover);
}

.demo .inner-item .label{
    position: absolute;
    top: -20px;
    right: -20px;
    display: inline-block;
}

.align-center{
  align-items: center !important;
}
.demo a label:not(.new-label){
  background: #f54949;
}

.demo.block_product h3 a:before{
  background: #fff;
}

.block_shop img, .block_product img{
  border-radius: 30px;
}

.block_shop img{
  border: 1px solid #ebebeb;
}
.demo .item:hover h3 a:before{
    width: 100%;
    right: 0;
}
.pd-80{
  padding: 0 80px !important;
}
.demo .row > div:hover h3 a:before {
    width: 100%;
    right: 0;
}
.demo .info span:hover {
  background-color: #fff;
  color: #222;
}
.key-features {
  background-color: #EEEEEE;
  padding: 100px 0;
}
.key-features h2 {
  position: relative;
  margin-bottom: 40px;
  display: inline-block;
  padding: 0 50px 15px;
}
.key-features h2:before {
  content: '';
  width: 100%;
  height: 1px;
  background-color: #DDDDDD;
  position: absolute;
  bottom: 0;
  left: 0;
}
.key-features h2:after {
  content: '';
  width: 110px;
  height: 3px;
  left: 50%;
  margin-left: -55px;
  bottom: -1px;
  position: absolute;
  background-color: #222;
}
.key-features .col-md-4 {
  margin-bottom: 50px;
}
.key-features .col-md-4 img {
  margin-bottom: 20px;
}
.key-features h3 {
  color: #666666;
}
.saved-plugins {
  padding: 100px 0;
}
.saved-plugins img {
  padding: 0 20px;
}
.saved-plugins h2 span {
  color: #D80000;
}
.saved-plugins h2 {
  position: relative;
  margin-bottom: 40px;
  display: inline-block;
  padding: 0 50px 15px;
}
.saved-plugins h2:before {
  content: '';
  width: 100%;
  height: 1px;
  background-color: #DDDDDD;
  position: absolute;
  bottom: 0;
  left: 0;
}
.saved-plugins h2:after {
  content: '';
  width: 110px;
  height: 3px;
  left: 50%;
  margin-left: -55px;
  bottom: -1px;
  position: absolute;
  background-color: #222;
}
.color-scheme {
  margin-bottom: 50px;
}
.color-scheme h2 {
  margin-bottom: 40px;
}
.color-scheme img {
  border: 10px solid #EEEEEE;
}
.bottom {
  margin-top: 135px;
  min-height: 200px;
  position: relative;
}

.block_shop h3 a{
  margin-top: 40px;
}
.demo.block_shop{
  background-color: #f9f9f9;
}

.demo.block_mobile{
  position: relative;
}

.demo.block_mobile .content{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
}

.demo.block_mobile .content .inner-content{
  max-width: 330px;
}

.demo.block_mobile .content{
  color: white;
  text-align: center;
}

.demo.block_mobile .content .title{
  font-family: var(--font-custom);
  font-size: 48px;
  font-weight: 700;
  line-height: 50px;
  letter-spacing: -0.03em;
  color: white;
  text-transform: uppercase;
}

.demo.block_mobile .content .text{
  font-size: 16px;
  font-weight: 400;
  line-height: 23px;
  margin-top: 27px;
}

.demo.block_mobile .content .actions{
  margin-top: 52px;
}

.demo.block_mobile .content .action{
  background-color: white;
  color: var(--color-heading);
}

.demo.block_mobile .content .action:hover{
  color: var(--color-button-2);
  background: var(--background-button-2);
}

.block_product_header,  
.block_shop_header{
    margin-bottom: 45px;
}
.bottom__content {
  width: 100%;
  margin: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: #222;
}
.bottom__content h2 {
  font-size: 48px;
  font-weight: 500;
  text-transform: none;
  color: #333d47;
  margin-bottom: 15px;
}
.bottom__content a {
  border: 2px solid #df0e0e;
  background-color: #df0e0e;
  color: #fff;
  padding: 15px 75px;
  display: inline-block;
  text-transform: uppercase;
  font-size: 13px;
  margin-top: 50px;
  font-weight: 500;
  border-radius: 3px;
}
.bottom__content a:hover {
  -webkit-animation-name: hvr-wobble-horizontal;
  animation-name: hvr-wobble-horizontal;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  color: #fff;
}
.footer {
  background: url("../images/footer-bg.png") top center no-repeat;
  font-size: 14px;
  color: #fff;
  padding: 95px 0 98px;
  font-weight: 500;
  background-size: cover;
  margin-top: -20px;
}

.footer .items .content{
  text-align: initial;
  font-size: 16px;
  font-weight: 400;
  line-height: 23px;
  margin-bottom: 23px;
}

.footer .items .content .title{
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  margin-bottom: 11px;
}
.footer .items .content a{
  text-decoration: underline !important;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 23px;
}

.footer .items .content a:hover{
  text-decoration: none !important;
}

.footer .items .content p{
    margin-bottom: 22px;
    line-height: 24px;
}
.footer .items .item{
    display: flex;
}
.footer .items .item .icon{
    flex: 0 0 55px;
    width: 43px;
    margin-right: 30px;
}
.footer .footer__footer .content-footer {
    text-align: center;
    color: #fff;
    line-height: 1.3333;
}

.footer .footer__footer{
  border-top: 1px solid #37498A;
  margin-top: 74px;
  padding-top: 100px;
}
.copyright{
  font-size: 16px;
  font-weight: 400;
  line-height: 23px;
}

.copyright a{
  color: var(--color-hover);
}

.copyright a:hover{
  color: #fff;
}

.footer .footer__footer .content-footer .subtitle-footer{
  margin-bottom: 23px;
  font-size: 11px;
  font-weight: 700;
  line-height: 16px;
  color: white;
  background: #EA0D42;
  border-radius: 30px;
  display: inline-block;
  padding: 7px 27px;
  text-transform: uppercase;
}

.footer .footer__footer .content-footer .title-footer {
  font-family: var(--font-custom);
  font-size: 48px;
  font-weight: 700;
  line-height: 55px;
  letter-spacing: -0.03em;
}

.footer .footer__footer .content-footer .content-footer{
  margin-top: 28px;
}

.footer .footer__footer .content-footer .content-footer ul{
  margin: 0;
}


.footer .footer__footer .content-footer .content-footer ul li{
  margin-right: 30px;
  display: inline-block;
  margin-bottom: 10px;
}

.footer .footer__footer .content-footer .content-footer ul li:last-child{
  margin-right: 0;
}

.purchase__bottom {
  margin-bottom: 55px;
}

/*--------------------------------------------------------------
Header
--------------------------------------------------------------*/
.header-top {
  background: url("../images/bg-header-top.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  color: #fff;
  font-size: 13px;
  font-weight: 400;
  line-height: 19px;
  padding-top: 11px;
  padding-bottom: 11px;
  text-align: center;
}

.nav-desktop .nav-menu{
  margin-bottom: 0;
  text-align: center;
}

.nav-desktop .nav-menu .menu-item{
  display: inline-block;
  margin-right: 50px;
}

.nav-desktop .nav-menu .menu-item:last-child{
  margin-right: 0;
}

.nav-desktop .nav-menu .menu-item a{
  display: block;
  color: var(--color-heading);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
  line-height: 19px;
}

.nav-desktop .nav-menu .menu-item a:hover{
  color: var(--color-hover);
}

header .logo{
  text-align: initial;
}

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

.header-main{
  padding: 17px 0;
/*  border-radius: 40px 40px 0px 0px;*/
/*  margin-top: -40px;*/
  background-color: white;
  position: relative;
}

.header-sticky{
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header-sticky.is-sticky{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  -webkit-animation: scrollUp 0.5s forwards;
  animation: scrollUp 0.5s forwards;
}

.header .header-top{
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header-sticky.is-sticky .header-top{
  height: 0;
  overflow: hidden;
  min-height: 0;
  padding: 0;
}

.header-sticky.is-sticky .header-main{
  margin-top: 0;
  border-radius: 0;
}

@media(min-width: 1601px){
  .slider-home .img img{
    width: 100%;
  }
}

.slider-home{
  position: relative;
}

.slider-home .caption{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  z-index: 1;
  text-align: initial;
}

.slider-home .caption1{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  color: var(--color-hover);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  line-height: 17px;
  margin-bottom: 12px;
}

.slider-home .caption1 .icon{
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: var(--background-button);
  border-radius: 50%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-right: 14px;
}

.slider-home .caption2{
  font-family: var(--font-custom);
  font-size: 60px;
  font-weight: 700;
  line-height: 75px;
  letter-spacing: -0.05em;
}

.slider-home .caption3{
  margin-top: 20px;
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
}

.slider-home .actions{
  margin-top: 57px;
}

.descript-header{
  color: var(--color-button-2);
  background-color: var(--background-button-2);
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
  padding: 14px 0;
  text-align: center;
}

.header__text_bottom {
  text-align: center;
  margin-top: 57px;
}
a.header__text_bottom{
  margin-top: 30px;
}
.header__text_bottom.button_header a{
  background-color: #fff;
  color: #222;
  box-shadow: none;
}
.header__text_bottom a, 
a.header__text_bottom  {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  color: var(--color-button);
  display: inline-block;
  background-color: var(--background-button);
  font-size: 13px;
  font-weight: 600;
  line-height: 19px;
  padding: 18px 45px;
  max-width: 290px;
  text-shadow: none;
  white-space: nowrap;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  font-size: 13px;
  text-transform: uppercase;
  border-radius: 30px;

}
.header__text_bottom a:hover ,  
a.header__text_bottom:hover{
  -webkit-animation-name: hvr-wobble-horizontal;
  animation-name: hvr-wobble-horizontal;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  color: var(--color-button-hover);
  background-color: var(--background-button-hover);
}
.left-column h4{
  margin-bottom: 24px;
  display: block;
}
.left-column .logo{
      position: relative;
      display: block;
    margin: auto;
}
@media screen and (min-width: 1024px){
  [data-aos][data-aos][data-aos-easing=ease-in-out-sine], 
  body[data-aos-easing=ease-in-out-sine] .header__text [data-aos]{
    transition-timing-function: ease;
    transition-duration: 1s;
  }
  .left-column h2{
    transition-delay: 0.2s;
  }
  .left-column p{
    transition-delay: 0.6s;
  }
  .left-column .header__text_bottom{
    transition-delay: 1s;
  }
  .header__text .images{
    display: flex;
    max-width: 1080px;
    margin-left: auto;
    position: relative;
    align-items: flex-end;
  }
  .header__text .images .image-bottom{
        margin-left: 3.5%;
        transition-delay: 1s;
  }
  .image-right{
    transition-delay: 0.8s;
    position: absolute;
    right: 0;
    top: 0;
  }
  .image-right img{
   transform: translateY(-46%);
   -webkit-transform: translateY(-46%);
   -o-transform: translateY(-46%);
   -ms-transform: translateY(-46%);
   z-index: 1;
  }
  .image-topp{
    position: absolute;
    top: 0;
    left: 60%;
    z-index: 5;
    transition-delay: 0.4s;
  }
  .image-topp img{
   transform: translateY(-64%);
   -webkit-transform: translateY(-64%);
   -o-transform: translateY(-64%);
   -ms-transform: translateY(-64%);
  }
}
[data-aos][data-aos][data-aos-duration="400"], body[data-aos-duration="400"] [data-aos]{
    transition-timing-function: ease;
    transition-duration: 0.8s;
  }
@-webkit-keyframes ripple{
   0%{
      opacity: 1;
        -webkit-transform:scale(0.5);
        transform:scale(0.5)
    }
    100%{
        opacity: 0;
        -webkit-transform:scale(1);
        transform:scale(1)
    }
}
@keyframes ripple{
    0%{
      opacity: 1;
        -webkit-transform:scale(0.5);
        transform:scale(0.5)
    }
    100%{
        opacity: 0;
        -webkit-transform:scale(1);
        transform:scale(1)
    }
}
.price-animation{
  position: absolute;
  top: 0;
  transform: translate(-50%,-100%);
  -webkit-transform: translate(-50%,-100%);
  -o-transform: translate(-50%,-100%);
  -ms-transform: translate(-50%,-100%);
  left: 50%;
  padding-bottom: 30px;
  padding-right: 20px;
}
.price-animation .border{
  position: relative;
  padding: 12px;
}
.price-animation .border:after{
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 22;
    background-color: #d62325;
    opacity: 0.4;
    border-radius: 50%;
     border-radius:100px;
    -webkit-animation: ripple 1.65s infinite;
    animation: ripple 1.5s infinite
}
.price-animation .border.border-first:after{
  opacity: 0.2;
}
.price-animation .border.border-second:after{
  opacity: 0.3;
}
.price-animation .value{
  width: 98px;
  height: 98px;
  background-color: #d62325;
  border-radius: 50%;
  color: #fff;
  font-size: 30px;
  font-weight: 500;
  line-height: 98px;
  position: relative;
  z-index: 222;
}
.price-animation .value span{
  width: 100%;
  height: 13px;
  display: block;
  background: url(../images/background-price.png) center center no-repeat;
  background-size: contain;
  position: absolute;
  left: 4px;
  bottom: 50%;
  transform: translateY(calc(150% + 6px) );
  -webkit-transform: translateY(calc(150% + 6px) );
  -ms-transform: translateY(calc(150% + 6px) );
  -o-transform: translateY(calc(150% + 6px) );
}
@media screen and (max-width: 992px) {
  .footer-main .container .items >div:not(:last-child){
    margin-bottom: 50px;
  }
  .footer .footer__footer .content-footer .title-footer{
    font-size: 30px;
    line-height: 40px;
  }
}
.header__text p {
  color: #fff;
  font-size: 16px;
  text-align: center;
  text-transform: none;
  line-height: 30px;
}
.header__text h6 {
  font-size: 14px;
}

.content-text.content-text-home {
  padding: 121px 0 37px 0;
  margin-bottom: 0;
  
}
.content-text{
  margin-bottom: 40px;
  text-align: center;
}

.content-text h2 {
  font-size: 30px;
  margin-bottom: 30px;
  text-transform: capitalize;
}
.content-text p {
  width: 63%;
  margin: 0 auto;
  font-size: 14px;
  font-weight: 500;
}
.bottom__content p {
  font-size: 18px;
  color: #333d47;
  font-weight: 500;
}
.Reviews{
    background: url("../images/background-review.jpg") center center no-repeat;
    background-size: cover;
    padding: 87px 0 107px 0;
}
.Reviews h4 {
  font-size: 14px;
  text-transform: capitalize;
  margin: 29px 0 4px 0;
  color: #fff;
}
.Reviews h5{
    font-size: 14px;
    margin-bottom: 5px;
    color: #fff;
    text-transform: uppercase;
}
.Reviews .content-text p{
    color: #999999;
}
.Reviews .content-text h2{
    color: #ffffff;
    font-size: 30px;
    margin-top: 10px;
}
.Reviews .list-item-review p {
  line-height: 24px;
  color: #999999;
  margin: 30px auto 35px;
  padding: 0 30px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-style: normal;
} 
.Reviews .list-item-review .author p{
  display: block;
  min-height: 1px;
  margin: 0;
  line-height: 1.6;
}
.Reviews .p-text{
  margin: 0;
}
.col-text{
  background: #252525;
  padding: 60px 0; 
  border-radius: 0 90px 0 90px;
  border: 1px solid #333333;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.col-text img{
    width: auto !important;
}
.our-items{
  margin-top: 0;
}
.our-items .owl-wrapper-outer{
  margin-bottom: 0 !important;
}
.our-items .owl-theme .owl-controls .owl-page{
  margin-top: 15px;
}

.product-page{
  padding-top: 100px;
}

.product-page .subtitle{
  font-size: 12px;
  font-weight: 600;
  line-height: 17px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  text-transform: uppercase;
  color: var(--color-hover);
  margin-bottom: 19px;
}

.product-page .title{
  font-family: var(--font-custom);
  font-size: 40px;
  font-weight: 700;
  line-height: 50px;
  letter-spacing: -0.03em;
}

.product-page .content{
  font-size: 16px;
  font-weight: 400;
  line-height: 23px;
  margin-top: 19px;
}

.product-page .subtitle .icon{
  margin-right: 10px;
}

.product-page .actions{
  margin-top: 48px;
}


.demo.Plugins{
    margin-top: 120px;
}
.demo.Plugins ul li{
  display: inline-block;
  padding: 0 25px;
}
.demo.Plugins ul li span{
  display: block;
    color: #666;
    margin-top: 30px;
    margin-right: 10px;
}
.demo.Plugins .bottom {
  margin-top: 100px;
  min-height: 150px;
}
.demo.Plugins .bottom a {
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  border: none;
  border-radius: 0px;
  box-shadow: none;
  color: #fff;
  display: inline-block;
  background-color: #df0e0e;
  border: 2px solid #df0e0e;
  font-weight: normal;
  padding: 19px 70px;
  text-align: center;
  line-height: 1;
  text-shadow: none;
  text-transform: capitalize;
  white-space: nowrap;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  font-size: 13px;
  text-transform: uppercase;
  border-radius: 30px;
}

h1 {
  font-size: 30px;
}
h2 {
  font-size: 25px;
}
h3 {
  font-size: 20px;
}

/*# sourceMappingURL=main.css.map */
@media only screen and (max-width: 1440px){
  .pd-80{
    padding: 0 40px !important;
  }
}
@media only screen and (max-width: 1024px) {
  .header-menu {
    padding: 40px 20px 20px 20px !important;
  }
}
@media only screen and (max-width: 910px) {
  .header-menu .col-xs-12 .logo {
    margin-bottom: 30px;
  }
  .header-menu .col-xs-12 {
    width: 100% !important;
    text-align: center !important;
  }
  .header__text {
    padding: 30px 0 0;
  }
  .header__text_bottom,
  .bottom {
    margin-top: 30px;
  }
/*  .footer {
    margin-top: 90px;
  }*/
  .header__text h2 {
    line-height: 60px;
  }
  .demo.shop .text, .demo.product .text{
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 768px) {
  .padding-mobile-quick{
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }
  .nav-menu .list-inline li.last {
    margin-top: 30px;
  }
  .desktop{
    padding-right: 20px;
  }
  .blog-other p{
    max-width: 100%;
  }
}

@media only screen and (max-width: 480px) {
  .left-column .logo{
    left: 0;
  }
  .container {
    max-width: 100%;
  }
  .header__text h2,
  .bottom__content h2 {
    font-size: 30px;
    line-height: 30px;
  }
  .nav-menu .list-inline li {
    padding: 0 5px;
  }
  .nav-menu .list-inline li.last a {
    padding: 15px 15px !important;
  }
  .demo h3 a {
    padding: 0 15px !important;
  }
  .content-text.content-text-home{
    padding: 50px 0;
  }
}
@media only screen and (max-width: 991px) {
  .padding-mobile{
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .container{
    width: 100% !important;
   
  }
  .header__text h2{
    white-space: unset;
    animation: none;
    border-right: 0;
  }
  .left-column{
     margin-bottom: 50px;
  }
  .left-column *{
    text-align: center !important;
   
  }
  .container.demo-home{
    margin-top: 0;
  }
  .col-home{
    padding-bottom: 60px !important;
   }
  .header .container{
     max-width: 95%;
     margin: auto;
  }
  .header__text .images{
    display: flex;
    align-items: flex-end;
    position: relative;
  }
  .price-animation{
    padding: 0;
    transform: none;
    left: 0;
    top: -30px;
  }
  .price-animation .value{
    width: 58px;
    height: 58px;
    line-height: 58px;
    font-size: 20px;
  }
  .price-animation .value span{
    background-size: 65%;
    transform: translateY(calc(150% ) );
  }
  .content-text p{
    width: 100%;
  }
 
}
.feauter .col-md-3 {
  display: table;
  min-height: 126px;
  margin-bottom: 30px;
}
.product-text {
  border-radius: 20px;
  display: table-cell;
  vertical-align: middle;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  background: #f7f8f9;
  padding: 0 20px;
  cursor: pointer;
}
.product-text h5 {
  text-transform: capitalize;
  font-weight: 500;
  color: #222222;
  margin-top: 30px;
  margin-bottom: 23px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.product-text p{
    line-height: 24px;
    margin: 0;
}
.product-text:hover img{
    -webkit-animation-name: hvr-wobble-horizontal;
    animation-name: hvr-wobble-horizontal;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    color: #fff;
}
.new {
  color: #fff;
  text-transform: uppercase;
  transform: rotate(90deg);
  z-index: 2;
  background: #e13e3e;
  position: absolute;
  top: 15px;
  right: 30px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  display: inline-block;
  padding: 0 15px;
  height: 28px;
  line-height: 28px;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-decoration: none;
}
.new:before {
  border: 5px solid #e13e3e;
  border-color: transparent transparent #e13e3e #e13e3e;
  border-width: 9px 5px;
  position: absolute;
  right: -9px;
  bottom: 0;
  content: '';
}
.new:after {
  border: 5px solid #e13e3e;
  border-color: #e13e3e transparent transparent #e13e3e;
  border-width: 9px 5px;
  position: absolute;
  right: -9px;
  top: 0;
  content: '';
}

@media (max-width: 1199px) and (min-width: 767px){
  .bg-top{
    padding: 20px 0;
  }

  .demo h3 a{
    padding: 0 15px;
  }
  .demo.product .demo__content{
    height: 200px;
    background-size: 100%;
  }
}
@keyframes morphing {
    0% {
      border-radius 30% 70% 70% 30% / 30% 30% 70% 70%
      box-shadow 15px 15px 50px rgba(0,0,0,0.2)
    }
    25% { 
      border-radius 58% 42% 75% 25% / 76% 46% 54% 24%
    }
    50% {
      border-radius 50% 50% 33% 67% / 55% 27% 73% 45%
      box-shadow -10px -5px 50px rgba(0,0,0,0.2)
    }
    75% {
      border-radius 33% 67% 58% 42% / 63% 68% 32% 37%   
    }
  }
@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}

/* The typewriter cursor effect */
@keyframes blink-caret {
  from, to { border-color: transparent }
  50% { border-color: #fff }
}
@keyframes tracking-in-contract {
  0% {
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
  }
}
@media screen and ( min-width: 1400px ){
  .demo.product .demo__content{
    height: 380px;
  }
  .demo.shop .demo__content{
    height: 380px;
  }
}
/* Css tab */
#nav-tabs-wrapper{
	padding: 0;
	border: 0;
	background: transparent;
    box-shadow: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 70px;
}
.flex-layout{
  display: flex;
}
.flex-pc-mobile{
  align-items: flex-end;
  justify-content: space-evenly;
}
#nav-tabs-wrapper li{
	margin: 0 5px;
}

#nav-tabs-wrapper li a{
    transition: 0.3s;
	display: block;
	font-weight: 500;
	font-size: 14px;
	color: #222;
	text-transform: capitalize;
	position: relative;
	letter-spacing: -0.5px;
	margin: 0;
  background-color: #fff;
    border: 1px solid #dfe2f1;
  border-radius: 3px;
  padding: 9px 40px;
  margin-bottom: 10px;
}
#nav-tabs-wrapper li.active a,
#nav-tabs-wrapper li:hover a{
  background-color: #ff9400;
  border-color: #ff9400;
  color: #fff;
}
#nav-tabs-wrapper li.active a span,
#nav-tabs-wrapper li:hover a span{
  color: #fff;
}
#nav-tabs-wrapper li a span{
	color: #ff9400;
	font-size: 12px;
	position: relative;
	right: -4px;
	top: -4px;
  font-weight: 500;
}
.tab-panel{
	display: none;
}
.tab-panel.active{
	display: block;
}

.owl-dots {
    display: flex;
    justify-content: center;
    align-items: center;
}
.owl-carousel button.owl-dot{
  outline: none;
}

.owl-dots .owl-dot span {
    display: flex;
    margin: 60px 10px 0;
    width: 8px;
    height: 8px;
    background-color: rgba( 255, 255, 255, 0.1 );
    border-radius: 100%;
    border: 2px solid transparent;
    outline: none;
}

.owl-dots .owl-dot.active span {
    position: relative;
}

.owl-dots .owl-dot.active span::before {
    content: "";
    width: 14px;
    height: 14px;
    background-color: transparent;
    border-radius: 100%;
    border: 2px solid #fff;
    position: absolute;
    left: -5px;
    top: -5px;
}
.block_shop .owl-dots .owl-dot span{
  background-color: #e1e1e1;
}
.block_shop .owl-dots .owl-dot.active span, .block_product .owl-dots .owl-dot.active span{
  background-color: transparent;
}
.block_shop .owl-dots .owl-dot.active span::before, .block_product .owl-dots .owl-dot.active span::before{
  border-color: #f67d5e;
}
@media (max-width: 767px) { 
  .block_mobile h2, 
  .block_product h2, 
  .block_shop h2,
  .demo .content-text .title,
  .product-page .title,
  .demo.block_mobile .content .title{
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 0;
  }
  .content-text{
    margin-bottom: 50px;
  }
  .owl-dots .owl-dot span{
    margin-top: 30px;
  }
  .footer{
    padding: 80px 0;
  }
  .footer .footer__footer{
    padding-top: 80px;
    padding-bottom: 0;
  }
  .hidden-xs {
    display: none !important;
  }
  br{
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important;
  }
}
@media (min-width: 1200px){
  .container.demo-home .col-md-4{
    padding-left: 25px !important;
    padding-right: 25px !important;
  }
}
.page-builder{
  background-color: #f6f7f9;
  position: relative;
  z-index: 1;
}
.page-builder .title-hedding {
   color: #fff;
   padding-bottom: 4rem;
   padding-top: 7rem;
   position: relative;
   z-index: 10;
}
.page-builder .title-hedding h2 {
   margin-bottom: 32px;
   padding: 0 15px;
}
.page-builder .title-hedding p{
   line-height: 2;
   padding: 0 15px;
}
.page-builder .content{
   max-width: 1090px;
   margin: auto;
   padding-left: 15px;
   padding-right: 15px;
}
.page-builder .wrap-video {
    position: relative;
}
.page-builder .wrap-video::before{
    content: "";
    position: absolute;
    left: -17px;
    right: -17px;
    bottom: 50%;
    top: -17px;
    z-index: 2;
    border-left: 3px solid rgba( 255, 255, 255, 0.5);
    border-top: 3px solid rgba( 255, 255, 255, 0.5);
    border-right: 3px solid rgba( 255, 255, 255, 0.5);
    border-radius: 20px 20px 0 0;
}
.page-builder .wrap-video::after{
    content: "";
    position: absolute;
    left: -17px;
    right: -17px;
    top: 50%;
    bottom: -15px;
    z-index: 1;
    border: 3px solid rgba(237,239,243,1);
    border-radius: 0 0 20px 20px;
    border-top: 0;
}
.page-builder .wrap-video video{
   border-radius: 20px;
   position: relative;
   z-index: 2;
   box-shadow: 0px 15px 40px 0px rgba(18, 46, 73, 0.08);
   -webkit-box-shadow: 0px 15px 40px 0px rgba(18, 46, 73, 0.08);
   -ms-box-shadow: 0px 15px 40px 0px rgba(18, 46, 73, 0.08);
   -o-box-shadow: 0px 15px 40px 0px rgba(18, 46, 73, 0.08);
}
.page-builder .wrap-video-item{
    width: 100vw;
    position: absolute;
    right: 0;
    top: -265px;
    bottom: 50%;
    left: calc((-1 * (100vw - 100%) / 2));
    background-image: url(../images/img-landing.png);
    z-index: -1;
    background-repeat: no-repeat;
    background-size: cover;
}
@media (max-width: 1200px){
    .page-builder .wrap-video::before{
       content: none;
    }
    .page-builder .wrap-video::after{
      content: none;
    }
}
@media (max-width: 480px) {
    .page-builder .title-hedding{
        padding-top: 0;
    }
    .page-builder .wrap-video{
      margin: 0;
    }
}
 
 .s-nav {
    overflow: hidden;
    margin-bottom: 90px;
    display: inline-block;
 }
 .s-nav li{padding: 0 10px;position:relative;display:inline-block;margin-bottom: 20px;}
 .s-nav li a{
	height: 45px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 30px;
	border: 1px solid #dfe2f1;
	background: #fff;
	color: #222;
	border-radius: 3px;
	position: relative;
 }
 .s-nav li a .skin-count,
 .s-nav li a .demo-count{
	color: #f54949;
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-5px);
    margin-left: 5px;
 }
	.s-nav li a .new-label{
	height: 30px;
	width: 30px;
	top: -10px;
	right: 0;
	font-size: 10px;
	}
 .s-nav li a:hover,
 .s-nav li.active a{
    background-color: #15bcdc;
    border-color: #15bcdc;
    color: #fff;
 }
   .s-nav li a:hover .skin-count,
 .s-nav li.active a .skin-count,
  .s-nav li a:hover .demo-count,
 .s-nav li.active a .demo-count{
	 color:#fff;
 }
 ul.password-wrap {
	display: flex;
	flex-wrap: wrap;
	margin: 0;
	padding-top: 100px;
}
ul.password-wrap li.password-wrapper {
  width: 50%;
  border: 1px solid #e2e2e2;
}
ul.password-wrap li.password-wrapper a {
  display: block;
}
ul.password-wrap li.password-wrapper a img {
  width: 100%;
}
.password-content {
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: 0 100px;
}
.password-content .section-title {
  text-align: left;
}
.password-content .section-title h2 {
  text-transform: none;
  line-height: 40px;
  font-size: 28px;
}
.password-content .section-title p {
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 600;
  background: linear-gradient(to right,#ee6766,#f26dc5,#ee6766);
    background-size: auto;
    background-clip: border-box;
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.password-content .clipboard {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 30px;
}
.password-content .copy-input {
  cursor: pointer;
  background-color: #fff;
  color: #6c6c6c;
  font-size: 14px;
  height: 72px;
  max-width: 290px;
  min-width: 290px;
  border-radius: 3px;
  padding: 15px 45px 15px 30px;
  box-shadow: 0 0 15px rgb(0 0 0 / 10%);
  border: 1px solid #e2e2e2;
}
.password-content .copy-btn {
	font-size: 22px;
	padding: 0;
	margin-left: -40px;
	transition: all .4s;
	width: 20px;
	height: 20px;
	border: none;
	background: no-repeat;
}
.password-content .copy-btn svg{
	
}
.password-content .copied {
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  line-height: 20px;
  padding: 15px 25px;
  background-color: #232323;
  border-radius: 3px;
  margin-left: 50px;
  height: 72px;
  box-shadow: 0 0 15px rgb(0 0 0 / 15%);
}
.password-content .copied span {
  display: block;
}
.sticky-button {
  text-align: center;
  position: fixed;
  top: 20px;
  right: 20px;
  background-color: #0072bc;
  color: #fff;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  font-weight: 300;
  z-index: 999;
  line-height: 20px;
  min-width: 210px;
}
.sticky-button:focus,
.sticky-button:hover{color:#fff;}
.start-button {
  top: 70px;
  background-color: #599A26;
}
.sticky-button .tf-text {
  background-image: url(../images/logoen.png);
  width: 66px;
  height: 12px;
  display: inline-block;
  background-repeat: no-repeat;
}

@media screen and (max-width: 1599px){
  .nav-desktop .nav-menu .menu-item{
    margin-right: 30px;
  }
}

@media screen and (max-width: 1379px){
  .action{
    padding: 10px 20px;
  }

  .nav-desktop .nav-menu .menu-item a{
    font-size: 11px;
  }

  .nav-desktop .nav-menu .menu-item{
    margin-right: 20px;
  }
}

@media screen and (max-width: 1199px) {
  .nav-desktop{
    display: none;
  }

  .header-main .item-menu{
    order: 3;
  }

  .slider-home .caption2{
    font-size: 40px;
    line-height: 50px;
  }
}

@media screen and (max-width: 991px){
  .slider-home .caption3{
    display: none;
  }

  .slider-home .actions{
    margin-top: 30px;
  }

  .demo.blog-other .content-text{
    position: static;
    margin-bottom: 0;
  }

  .demo.blog-other .content-main{
    position: static;
  }

  .demo.block_mobile .content .actions{
    margin-top: 30px;
  }

  .demo.block_mobile .content .text{
    margin-top: 15px;
  }
}

 @media screen and (max-width: 767px) {
	 ul.password-wrap{
		 flex-direction: column;
		 padding-top: 0;
	 }
	 ul.password-wrap li.password-wrapper{
		width: 100%;
	 }
	.password-content .copy-input{
		max-width: 200px;
		min-width: 200px;
	}
	.s-nav li {
		padding: 0 1px;
	}
	.s-nav li a{
		padding: 0 5px;
		font-size: 11px;
	}
	.s-nav li a .new-label {
		height: 20px;
		width: 20px;
		top: -10px;
		right: 0;
		font-size: 8px;
	}

  .product-page{
    padding: 50px 0;
  }

  .product-page .item-content{
    order: 2;
  }

  .demo.block_mobile .content .text{
    display: none;
  }

  .content-text.content-text-home{
    padding-top: 80px;
  }

  .demo.blog-other .item{
    margin-bottom: 30px;
  }

  .demo.blog-other .item:last-child{
    margin-bottom: 0;
  }
 }

 @media screen and (max-width: 575px){
  .slider-home .caption{
    position: static;
    transform: translateY(0);
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .demo.block_mobile .content{
    position: static;
    transform: translateY(0);
    color: var(--font-body);
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .demo.block_mobile .content .title{
    color: var(--color-heading);
  }

  .demo.block_mobile .content .action{
    color: var(--color-button);
    background: var(--background-button);
  }

  .demo.block_mobile .content .action:hover{
    color: var(--color-button-hover);
    background: var(--background-button-hover);
  }

  .slider-home .caption2{
    font-size: 30px;
    line-height: 40px;
  }
 }

 @media screen and (max-width: 479px){
  .demo .content-text .content ul{
    text-align: initial;
  }

  .action{
    font-size: 10px;
  }
 }