body {
	font-family: 'Poppins', sans-serif;
	font-size: 14px;
  line-height: 20px;
	color: #222222;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body, html, .main {
  height: 100%;
}
.mt-full-height {
  height: 100%;
}
.mt-relative {
  position: relative;
}
.mt-absulate {
  position: absolute;
}
.mt-full-width {
  width: 100%;
}
a,
a:focus {
  text-decoration: none;
}
a:hover	{
  text-decoration: unset;
}
.float-left {
  float: left;
}
.float-right {
  float: right;
}
.full-section {
  width: 100%;
  float: left;
}
.mt-100 {
  margin-top: 100px;
}
.mb-100 {
  margin-bottom: 100px;
}
@media (max-width: 1800px) {
  .ptb {
    padding: 80px 0;
  }
}
@media (max-width: 1440px) {
  .mt-100 {
    margin-top: 80px;
  }
  .mb-100 {
    margin-bottom: 80px;
  }
}
@media (max-width: 1199px) {
  .mt-100 {
    margin-top: 70px;
  }
  .mb-100 {
    margin-bottom: 70px;
  }
}
@media (max-width: 991px) {
  .mt-100 {
    margin-top: 30px;
  }
  .mb-100 {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .mt-100 {
    margin-top: 20px;
  }
  .mb-100 {
    margin-bottom: 20px;
  }
}
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255,255,255,1);
  z-index: 9999999;
  display: block;
}
.page-loader .home-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  text-align: center;
  transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  height: 60px;
  width: 60px;
}
.page-loader .home-loader .loader-spinner {
  opacity: 1;
  height: 100%;
  width: 10%;
}
.page-loader .home-loader .loader-spinner:before {
  animation: 0.8s linear infinite spinner;
  -webkit-animation: 0.8s linear infinite spinner;
  -moz-animation: 0.8s linear infinite spinner;
  -o-animation: 0.8s linear infinite spinner;
  animation-play-state: inherit;
  -webkit-animation-play-state: inherit;
  -moz-animation-play-state: inherit;
  -o-animation-play-state: inherit;
  border: solid 2px #dedede;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  content: " ";
  top: 50%;
  left: 50%;
  position: absolute;
  opacity: inherit;
  -webkit-transform: translate3d(-50%, -50%, 0);
  -moz-transform: translate3d(-50%, -50%, 0);
  -ms-transform: translate3d(-50%, -50%, 0);
  -o-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
  height: 40px;
  width: 40px;
  border-bottom-color: #222222;
}

/*--- End Top Header ---*/

/* header */
header,
header .full-section {
  position: relative;
  background: #53483F;
}
.full-section .header-background-img > img {
  width: 100%;
}
.header-nav .navbar-nav > li > a {
  font-size: 18px;
  color: #121212;
  padding: 0;
  font-weight: 500;
}
.header-nav .navbar-nav > li:hover > a {
  color: #CD865C;
}
.header-nav .navbar-nav > li {
  padding: 15px 0;
  position: relative;
}
.header-nav .navbar-nav>li>a:hover,
.header-nav .navbar-nav>li>a:focus,
.header-nav .navbar-nav>li>a:active{
  background-color: transparent;
  color: #CD865C;
}
.header-nav .navbar-nav>li:not(:first-child) {
  margin-left: 50px;
}
.header-background-img {
  position: relative;
}
.header-inner {
  position: relative;
  background: #F6F5F0;
}
.header-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}
/*---------
Start Button
---------*/
a.anim.button {
  display: inline-flex;
}
.anim.button span.purchase-btn {
  position: relative;
  overflow: hidden;
  display: inline-block;
  font-size: 18px;
  line-height: 20px;
  font-weight: 500;
  padding: 15px 20px;
  border: none;
  border-radius: 0;
  text-align: center;
  width: auto;
  z-index: 0;
  cursor: pointer;
  color: #ffffff;
  background: #CD865C;
  text-transform: uppercase;
  transition: all .6s;
  -o-transition: all .6s;
  -moz-transition: all .6s;
  -webkit-transition: all .6s;
}
.anim.button span::before {
  content: "";
  transform: scale(.2, 1);
  transition: all .6s;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: -1;
}
.anim.button span:hover::before {
  background: #222222;
  transform: scale(1, 1);
  opacity: 1;
}
.anim.button span.purchase-btn:hover {
  color: #ffffff;
}
.header-nav .anim.button span.purchase-btn {
  color: #ffffff;
  background: #222222;
}

.footer-block .anim.button span.purchase-btn {
  font-size: 20px;
  font-weight: 600;
  padding: 15px 20px;
  text-transform: capitalize;
}
.header-nav .anim.button span.purchase-btn:hover,
.footer-block .anim.button span.purchase-btn:hover {
  color: #ffffff;
}
.header-nav .anim.button span.purchase-btn:hover::before {
  background: #CD865C;
}
/*---------
End Button
---------*/

/*---------
Start Main Content
---------*/
#SectionContent {
  position: relative;
  background: #ffffff;
}
.content-top {
  text-align: center;
  margin: 0 auto;
}
.title-combo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 23px;
  color: #CD865C;
}
.title-combo .item {
  font-size: 96px;
  line-height: 72px;
  font-weight: 600;
}
.title-combo .title-right {
  font-size: 96px;
  font-weight: 600;
}
.demo-title > h1 {
  font-size: 42px;
  line-height: 60px;
  font-weight: 600;
  margin: 0 0 30px;
  text-align: center;
  color: #121212;
  text-transform: capitalize;
}
.demo-title > h1 span {
  color: #CD865C;
  font-weight: 700;
}
.main-content .theme-image .layout-content {
  display: block;
  position: relative;
  border-radius: 5px;
}
.item.theme-image {
  padding: 0 15px;
}
.item .content {
  padding: 15px 0 0;
}
.layout-desc {
  text-align: center;
}
.home-title {
  font-size: 20px;
  line-height: 24px;
  font-weight: 500;
  color: #121212;
  text-transform: capitalize;
}
.layout-title span {
  display: block;
  font-size: 16px;
  color: #777777;
  font-weight: 500;
  text-align: left;
}
.layout-content i {
  position: relative;
  font-size: 18px;
  color: #111111;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background: #f7f7f7;
  border-radius: 50%;
}
.layout-content i:hover {
  background: #222222;
  color: #ffffff;
}
.layout2 {
  display: flex;
  justify-content: center;
  margin: 0 -5px;
  width: 100%;
}
.layout-content .image-loaded {
  position: relative;
  overflow: hidden;
  display: inline-block;
  border-radius: 5px;
  transition: all 0.3s ease-in-out 0s;
  box-shadow: 0px 0 9px 0 rgb(85 85 85 / 10%);
}
.layout-content .image-loaded:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  opacity: 0;
  display: block;
  background: rgb(0 0 0 / 50%);
  transition: all 0.3s ease-in-out 0s;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
}
.layout-content:hover .image-loaded:before {
  opacity: 1;
}
.image-inner .button-group .layout-btn {
  position: relative;
  display: block;
  z-index: 0;
  overflow: hidden;
  padding: 13px 20px;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  border-radius: 0;
  background: #CD865C;
  transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
}
.image-inner .button-group .layout-btn::before {
  content: "";
  transform: scale(.2, 1);
  transition: all .6s;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: -1;
}
.image-inner .button-group .layout-btn:hover::before {
  background: #222222;
  transform: scale(1, 1);
  opacity: 1;
}
.image-inner .button-group .layout-btn:hover {
  color: #ffff;
}
.image-inner .button-group {
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  text-align: center;
  display: inline-block;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease-in-out 0s;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
}
.layout-content:hover .image-inner .button-group {
  opacity: 1;
}
.image-inner .button-group .layout-btn + .layout-btn {
  margin-top: 10px;
}
.image-inner .layout-btn:focus {
  text-decoration: none;
}

/*---------
End Main Content
---------*/
/*---------
Start Main Banner
---------*/
.main-slideshow-video {
  vertical-align: middle;
}
.html3 {
  background-image: linear-gradient(to bottom, #fafaf6, #fefbf8, #fffcfc, #fffdfe, #ffffff);
}
.main-banner {
  background: #E3E3DA;
  position: relative;
  padding: 100px 0;
}
.main-content .sub-title {
  font-size: 24px;
  font-weight: 500;
  color: #CD865C;
}
.main-content .main-title {
  margin-top: 0;
  font-size: 44px;
  font-weight: 400;
  margin-bottom: 20px;
  color: #121212;
  font-family: 'Sawarabi Mincho';
}
.main-content .main-desc {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  font-family: 'Sawarabi Mincho';
  color: #121212;
}
.main-content .anim.button span.purchase-btn {
  font-family: 'Sawarabi Mincho';
}
.main-content-wrap .main-image {
  position: relative;
}
.main-content-wrap img {
  border-radius: 18px;
  box-shadow: 0 1px 14px 0px rgba(48, 48, 48, 0.13);
}
.password {
  padding: 22px 0;
  background: #CD865C;
}
.password-inner {
  text-align: center;
  color: #ffffff;
  font-size: 28px;
  line-height: 46px;
}
.password-inner > span {
  background-color: #ffffff;
  color: #CD865C;
  border-radius: 5px;
  padding: 4px 10px;
  text-transform: lowercase;
}
.password-inner > a {
  color: #ffffff;
  text-decoration: underline;
}
.slideshow1-img {
  position: absolute;
  max-width: 210px;
  width: 100%;
  top: 10%;
  left: 15%;
  animation: mover 1s infinite alternate;
}

.slideshow2-img {
  position: absolute;
  max-width: 448px;
  width: 100%;
  bottom: 0px;
  left: 0;
  animation: mover1 2s infinite alternate;
}

.slideshow3-img {
  position: absolute;
  max-width: 850px;
  width: 100%;
  left: 50%;
  bottom: -50px;
  transform: translateX(-50%);
}

.slideshow4-img {
  position: absolute;
  max-width: 450px;
  width: 100%;
  bottom: 0px;
  right: 0;
  animation: mover1 2s infinite alternate;
}

.slideshow5-img {
  position: absolute;
  max-width: 200px;
  width: 100%;
  top: 20%;
  right: 15%;
  animation: mover 1s infinite alternate;
}

/*---------
End Main Banner
---------*/
/*---------
Start Banner
---------*/
.banner-left .banners + .banners {
  margin-top: 39px;
}

.banner-center .banners + .banners {
  margin-top: 20px;
}

.banner-right .banners + .banners {
  margin-top: 19px;
}

/*---------
End Banner
---------*/
@keyframes mover {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-20px);
  }
}

@keyframes mover1 {
  0% {
    transform: translateY(30px);
  }

  100% {
    transform: translateY(0px);
  }
}
@media (min-width: 992px) {
  .main-content-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .main-content .main-desc > p {
    margin: 0 0 17px;
  }
}
@media(max-width: 1800px) {
  .slideshow-logo-img {
    font-size: 50px;
  }
}
@media(max-width: 1600px) {
  .slideshow-logo-img {
    font-size: 42px;
  }
}
@media(max-width:1440px) {
  .slideshow-logo-img {
    font-size: 30px;
    line-height: 40px;
  }
  .slider-inner .main-heading{
    margin: 10px 0px;
    font-size: 14px;
  }
  .shopify-logo img {
    height: 60px;
    margin-bottom: 10px;
  }   
  .slideshow1-img {
    top: 30%;
    left: 7%;
  }
  .slideshow5-img {
    top: 30%;
    right: 8%;
  }
  .slideshow3-img {
    max-width: 660px;
  }
  .slideshow2-img,
  .slideshow4-img {
    display: none;
  }
  .slideshow{
    padding: 60px 0;
  }
}
@media(max-width: 1199px){
  .shopify-logo img{
    height: 40px;
  }
  .slideshow{
    padding: 50px 0;
  }
}
@media(max-width:1366px) {
  .slideshow-logo-img {
    font-size: 26px;
    line-height: 35px;
  }
  .slideshow1-img {
    max-width: 150px;
  }
  .slideshow2-img {
    max-width: 350px;
  }
  .slideshow4-img {
    max-width: 350px;
  }
  .slideshow5-img {
    right: 8%;
  }
  .slideshow3-img {
    max-width: 660px;
  }
}
@media(max-width: 1199px) {
  .slideshow-logo-img {
    font-size: 24px;
    line-height: 34px;
  }
}
@media(max-width: 991px) {
  .slideshow{
    padding: 20px 0 0;
  }
  .slider-inner{
    flex-direction: column;
    justify-content: center;
  }
  .slider-content {
    text-align: center;
    margin-bottom: 10px;
  }
   .shopify-logo img {
    margin: auto;
   }
  .slideshow-logo-img {
    font-size: 32px;
    line-height: 36px;
    margin-top: 10px;
  }
  .main-content-wrap .main-image img {
    margin: auto;
  }
  .main-content-wrap .main-content {
    margin-top: 30px;
    text-align: center;
  }
  .html3 .col-xs-4 {
    padding: 0 5px;
  }
  .html3 .row {
    margin: 0 -5px;
  }
}

@media(max-width: 767px){
  .slideshow{
    padding: 10px 0 0;
  }
  .banner-left .banners + .banners {
    margin-top: 20px;
  }
  .banner-center .banners + .banners {
    margin-top: 10px;
  }
  .banner-right .banners + .banners {
    margin-top: 9px;
  }
}
@media(max-width:575px) {
  .slideshow-logo-img {
    font-size: 26px;
    line-height: 32px;
  }
  .slider-inner .main-heading {
    font-size: 16px;
  }
  .slideshow5-img,
  .slideshow1-img {
    display: none;
  }
  .slideshow3-img {
    max-width: 80%;
  }
}

@media(max-width:480px) {
  .shopify-logo img{
    height: 36px;
  }
}

@media(max-width: 375px){
  .slideshow{
    padding: 20px 0 0;
  }
  .html3 .banner-right {
    display: none;
  }
  .html-content-inner .col-xs-4 {
    width: 50%;
  }
}
@media (max-width: 369px) {
  .slideshow-logo-img {
    font-size: 18px;
    line-height: 26px;
  }
}

@media(max-width:340px) {
   
}
/*---------------------
End Main Banner
-----------------------*/
/*---------------------
Html
-----------------------*/
#pages {
  position: relative;
  background: #f7f7f7;
}
.html .html-img-content {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}
.html-title {
  font-size: 40px;
  line-height: 52px;
  font-weight: 600;
  margin: 0 0 19px;
  text-transform: capitalize;
}
.html-title span {
  color: #CD865C;
}
.html-content p {
  font-size: 18px;
  line-height: 30px;
  font-weight: 500;
  margin-bottom: 25px;
  padding-right: 50px;
  color: #777777;    
}
/*---------------------
End Html
-----------------------*/

/*--------------------
Start Portfolio 
----------------------*/
.portfolio {
  position: relative;
  text-align: center;
  background: #f7f7f7;
}
.portfolio .item a {
  display: block;
  border: 5px solid #fff;
  box-shadow: 0 1px 10px 0 rgb(0 0 0 / 10%);
}
.portfolio .owl-stage-outer {
  padding: 10px 0;
  margin: -10px 0;
}
.portfolio .owl-nav > div {
  color: #222222;
  font-size: 24px;
}
.portfolio .owl-nav {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}
.portfolio .owl-nav > div i {
  padding: 0 20px;
  font-size: 50px;
  vertical-align: middle;
}
.portfolio .anim.button {
  margin-top: 45px;
  display: inline-block;
  text-align: center;
}
.portfolio .owl-nav > div.disabled i {
  cursor: default;
  opacity: .5;
}
.owl-carousel {
  touch-action: manipulation;
}

/*--- Carosal ---*/
.owl-carousel .owl-dots .owl-dot span {
  content: '';
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 11px;
  height: 11px;
  background: #888;
  border-radius: 20px;
}
.owl-carousel .owl-dots .owl-dot.active span {
  background: #333;
}
.owl-theme .owl-dot {
  width: 2.4rem;
  height: 2.4rem;
  opacity: 1;
  border-radius: 100%;
  background: transparent;
  border: .2rem solid transparent;
  position: relative;
}
.owl-theme .owl-nav.disabled+.owl-dots {
  margin-top: 30px;
}
.owl-theme .owl-dots .owl-dot:before {
  position: absolute;
  content: "";
  background: rgb(205 134 92 / 50%);
  width: 1.4rem;
  height: 1.4rem;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}
.owl-theme .owl-dots .owl-dot.active span {
  background: #CD865C;
}
.owl-theme .owl-dots .owl-dot.active {
  border-color: #CD865E;
}
.owl-theme .owl-dots .owl-dot.active:before {
  background: #CD865E;
}
.owl-theme .owl-dots .owl-dot + .owl-dot {
  margin-left: 5px;
}
/*--------------------
Features
--------------------*/
.services-box {
  padding: 100px 0 70px;
  background: url(../image/features_img/feature-bg.png) no-repeat top center;
}
.servic-icon i {
  height: 102px;
  width: 102px;
  display: block;
  margin: 0 auto 15px auto;
  background-color: #CD865C;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 50%;
}
.service-text {
  font-size: 22px;
  line-height: 28px;
  color: #222222;
  text-align: center;
  padding: 75px 0;
  font-weight: 600;
  margin: 0 0 30px;
  border-radius: 5px;
  background: #ffffff;
  box-shadow: 0 1px 14px 0px rgba(48, 48, 48, 0.13);
}
.service-desc {
  font-size: 22px;
  line-height: 28px;
  text-align: center;
  width: 80%;
  margin: 0 auto 50px;
}
/*Footer Start*/
footer {
  position: relative;
  text-align: center;
  font-size: 14px;
  width: 100%;
  background: #000000;
}
.footer-content .footer-title {
  font-size: 36px;
  line-height: 46px;
  font-weight: 600;
  margin: 47px 0 25px;
  color: #222222;
}
.footer-content .footer-title > span {
  display: block;
}
.footer-text > span {
  display: block;
}
.footer-text {
  font-size: 16px;
  line-height: 30px;
  text-transform: capitalize;
  color: #ffffff;
  font-weight: 400;
}
.footer-text > li {
  display: inline-block;
  position: relative;
  padding-left: 40px;
} 
.footer-text > li + li {
  margin-left: 20px;
}
.footer-text > li:before {
  content: "\f00c";
  font-family: 'FontAwesome';
  position: absolute;
  color: #000000;
  background: #ffffff;
  height: 30px;
  width: 30px;
  border-radius: 20px;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.footer-bottom-inner {
  padding: 21px 0;
  background: #000000;
  border-top: 1px solid #ffffff1a;
}
.footer-bottom-text {
  font-size: 18px;
  line-height: 28px;
  font-weight: 300;
  text-align: center;
  color: #ffffff;
}
footer .footer-block  a{
  display: block;
}
footer a {
  color: #ffffff;
  text-transform: uppercase;
}
.footer-bottom-text > a {
  color: #777777;
}
footer a:hover,
footer a:focus {
  color: #CD865C;
  text-decoration: none;
}
.footer-top {
  background: #000;
  color: #fff;
  text-align: center;
  padding-top: 120px;
  position: relative;
}
.footer-wrapper {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  display: flex;
  justify-content: center;
}
.footer-top-inner {
  background: #fff;
  color: #000;
  padding: 40px 60px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}
.footer-top h2 {
  font-size: 30px;
  line-height: 45px;
  margin: 0 0 10px;
  color: #121212;
  font-weight: 600;
}
.footer-top p {
  font-size: 16px;
  color: #121212;
  margin-bottom: 20px;
}
.footer-top .anim.button span.purchase-btn {
  font-family: 'Sawarabi Mincho';
  font-size: 20px;
  text-transform: capitalize;
  line-height: 30px;
  padding: 10px 25px;
}
.ptb {
  padding: 100px 0;
}
.pt-20 {
  padding-top: 20px;
}
.pb-90 {
  padding-bottom: 90px;
}
@media (min-width: 992px) {
  header.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    transition: top 0.45s ease;
    background: #ffffff;
    -webkit-animation: fadeInDown 0.5s ease-out forwards;
    -moz-animation: fadeInDown 0.5s ease-out forwards;
    -o-animation: fadeInDown 0.5s ease-out forwards;
    animation: fadeInDown 0.5s ease-out forwards;
    box-shadow: 0 0 10px 0 rgb(0 0 0 / 10%);
  }
  .full-section .main-image.sticky .header-nav {
    padding: 15px 0;
    margin-top: 0;
  }
  .sticky .header-nav .navbar-nav>li>a {
    color: #222222;
  }
  .sticky .header-nav .navbar-nav>li:hover>a,
  .sticky .header-nav .navbar-nav>li:focus>a {
    color: #CD865C;
  }
  .sticky .header-nav .anim.button span.purchase-btn {
    color: #ffffff;
    background: #222222;
  }
  .html-content.col-lg-4 {
    padding-left: 28px;
  }
  .layout2 > .item.theme-image {
    margin-bottom: 0;
  }
}
@media (min-width: 1441px) {
  .container{
    width: 1380px;
  }
  #SectionContent .row {
    margin: 0 -25px;
  }
  .main-content .main-desc span {
    display: block;
  }
}
@media (max-width: 1440px) {
  .ptb {
    padding: 70px 0;
  }
  .footer-wrapper {
    top: -70px;
  }
  .header-nav .navbar-nav>li:not(:first-child) {
    margin-left: 30px;
  }
  .title-combo .item {
    font-size: 80px;
    line-height: 60px;
  }
  .title-combo .title-right {
    font-size: 80px;
  }
  .main-content-wrap .main-image:after {
    top: -55px;
    right: -20px;
    width: 80px;
    height: 80px;
  }
  .home-title {
    font-size: 20px;
  }
  .item.theme-image {
    margin-bottom: 30px;
  }
  #SectionContent::before {
    width: 250px;
    height: 150px;
  }
  .html-title {
    font-size: 34px;
    line-height: 44px;
    margin: 0 0 15px;
  }
  .services-box {
    padding: 70px 0 40px;
  }
  .portfolio .owl-nav,
  .portfolio .anim.button {
    margin-top: 30px;
  }
  .main-banner:after {
    display: none;
  }
  .main-content .main-title {
    font-size: 36px;
    line-height: 46px;
  }
  .main-content .main-desc {
    font-size: 20px;
  }
  .pb-90 {
    padding-bottom: 50px;
  }
  .service-text {
    padding: 50px 0;
  }
}
@media (max-width: 1199px) {
  .ptb {
    padding: 50px 0;
  }
  .header-nav .navbar-nav>li>a {
    font-size: 16px;
  }
  .anim.button span.purchase-btn,
  .footer-top .anim.button span.purchase-btn {
    padding: 10px 25px;
    font-size: 16px;
    line-height: 20px;
  }
  .title-combo .item {
    font-size: 65px;
    line-height: 50px;
  }
  .title-combo .title-right {
    font-size: 60px;
  }
  .demo-title > h1 {
    font-size: 30px;
    line-height: 30px;
    margin: 0 0 25px;
  }
  .home-title {
    font-size: 18px;
    line-height: 20px;
  }
  .layout-title span {
    font-size: 14px;
  }
  .image-inner .button-group .layout-btn {
    font-size: 14px;
    padding: 8px 18px;
  }
  .html-title {
    font-size: 30px;
    line-height: 40px;
    margin: 0 0 10px;
  }
  .html-content p {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 15px;
  }
  .servic-icon i {
    height: 92px;
    width: 92px;
  }
  .services-box {
    padding: 50px 0 20px;
  }
  .main-banner {
    padding: 100px 0 70px;
  }
  .main-content .main-title {
    font-size: 40px;
    line-height: 55px;
    margin: 15px 0;
  }
  .main-content .sub-title {
    font-size: 20px;
  }
  .main-content .main-desc {
    font-size: 18px;
  }
  .main-banner {
    padding: 70px 0 40px;
    background-repeat: repeat;
  }
  .main-content-wrap .main-image:after {
    top: -45px;
  }
  .password-inner {
    font-size: 24px;
    line-height: 44px;
  }
  .footer-content .footer-title {
    font-size: 24px;
    line-height: 30px;
    margin: 30px 0 20px;
  }
  .footer-text {
    font-size: 16px;
    line-height: 26px;
    margin: 0 0 30px;
  }
}
@media (max-width: 991px) {
  .ptb {
    padding: 30px 0;
  }
  .pb-90 {
    padding-bottom: 30px;
  }
  .main-image {
    position: relative;
  }
  .header-nav {
    padding: 20px 0;
  }
  .anim.button span.purchase-btn {
    font-size: 12px;
    padding: 10px 20px;
  }
  #header-menu {
    display: none;
  }
  .title-combo {
    margin-bottom: 10px;
  }
  .title-combo .item {
    font-size: 50px;
    line-height: 42px;
  }
  .title-combo .title-right {
    font-size: 45px;
  }
  .demo-title > h1 {
    font-size: 28px;
    line-height: 30px;
    margin: 0 0 25px;
  }
  .main-content-wrap .main-image:after {
    right: 40px;
  }
  #SectionContent::before {
    display: none;
  }
  .layout2 {
    display: block;
    margin: 0;
  }
  .layout-content i {
    font-size: 14px;
    width: 40px;
    height: 40px;
    line-height: 40px;
  }
  .layout-content .image-loaded:before,
  .layout-content .image-inner .button-group {
    opacity: 1;
  }
  .item .content {
    padding: 10px 0 0;
  }
  .html .html-img-content {
    display: block;
  }
  .services-box {
    padding: 30px 0 0;
  }
  .portfolio .owl-nav, .portfolio .anim.button {
    margin-top: 15px;
  }
  .layout2 > .item.theme-image:nth-child(2n),
  .layout2 > .item.theme-image:nth-child(3n) {
    margin-bottom: 0;
  }
  .service-desc {
    font-size: 18px;
    margin: 0 auto 30px;
  }
  .service-text {
    padding: 55px 0;
  }
  .password-inner {
    font-size: 22px;
  }
  .footer-top {
    padding-top: 30px;
  }
  .footer-top h2 {
    font-size: 26px;
    line-height: 36px;
  }
  .footer-wrapper {
    position: unset;
    transform: unset;
  }
  .footer-content .footer-title {
    font-size: 20px;
    line-height: 30px;
    margin: 20px 0 15px;
  }
  .footer-text {
    font-size: 14px;
    line-height: 24px;
    margin: 0;
  }
  .footer-text > li:before {
    width: 26px;
    height: 26px;
  }
  .footer-text > li + li {
    margin-left: 10px;
  }
  .footer-bottom-inner {
    padding: 17px 0;
  }
  .footer-bottom-text {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .pb-90 {
    padding-bottom: 20px;
  }
  .header-nav {
    padding: 15px 0;
  }
  .demo-title > h1 {
    font-size: 22px;
    margin: 0 0 15px;
  }
  .item .content {
    padding: 12px 10px 0;
  }
  .item .content a{
    font-size: 20px;
  }
  .home-title {
    font-size: 16px;
    margin: 0 0 7px;
  }
  .services-box {
    padding-top: 20px;
  }
  .service-desc {
    font-size: 16px;
    margin: 0 auto 20px;
  }
  .servic-icon i {
    margin: 0 auto 10px auto;
  }
  .service-text {
    font-size: 18px;
    line-height: 24px;
    padding: 40px 0;
  }
  .header-logo img {
    width: 130px;
  }
  .main-content-wrap .main-image:after {
    width: 70px;
    height: 70px;
    right: 55px;
  }
  .main-content .main-title {
    font-size: 36px;
    line-height: 50px;
    margin: 10px 0;
  }
  .footer-logo img {
    width: 120px;
  }
  .footer-text > li {
    padding: 0;
    display: block;
  }
  .footer-text > li + li {
    margin: 10px 0 0;
  }
  .footer-text > li:before {
    left: auto;
    margin-left: -30px;
  }
  
}
@media (max-width: 680px) {
  .anim.button span.purchase-btn {
    font-size: 12px;
    padding: 5px 15px;
  }   
  .service-text {
    font-size: 18px;
  }
  .main-content-wrap .main-image:after {
    width: 60px;
    height: 60px;
    right: 10px;
    top: -40px;
  }
  .main-content .main-title {
    font-size: 32px;
    line-height: 42px;
    margin: 10px 0;
  }
  .password-inner {
    font-size: 20px;
    line-height: 42px;
  }
  .password {
    padding: 15px 0;
  }
}
@media(max-width: 575px) {
  .main-content .item.theme-image {
    width: 100%;
  }
  .layout2 > .item.theme-image:nth-child(2n) {
    margin-bottom: 30px;
  }
  .main-content .main-title {
    font-size: 26px;
    line-height: 34px;
  }
  .main-content-wrap .main-image:after {
    width: 45px;
    height: 45px;
    right: 10px;
    top: -30px;
  }
  .main-content .sub-title {
    font-size: 18px;
  }
  .main-content .main-desc {
    font-size: 16px;
  }
  .footer-top h2 {
    font-size: 22px;
    line-height: 32px;
  }
}
@media (max-width: 540px) {
  #SectionContent .row {
    display: block;
  }
  .item.theme-image {
    margin-bottom: 20px;
  }
  .item.theme-image:last-child {
    margin-bottom: 0;
  }
  .html-title {
    font-size: 24px;
    line-height: 32px;
  }
  .html-content p {
    font-size: 14px;
    line-height: 24px;
  }
  .service-item {
    width: 100%;
    border-right: none;
  }
  .portfolio .owl-nav > div i {
    font-size: 40px;
  }
  .service-text {
    padding: 20px 10px;
    margin: 0 0 20px;
  }
  .footer-content .footer-title {
    font-size: 18px;
  }
}
@media (max-width: 480px) { 
  .header-nav {
    padding: 10px 0;
  }
  .header-logo > img,
  .footer-logo > img {
    width: 100px;
  }
  .header-nav .anim.button span.purchase-btn {
    font-size: 10px;
  }
  .title-combo .item {
    font-size: 40px;
    line-height: 34px;
  }
  .title-combo .title-right {
    font-size: 30px;
  }
  .services-content .service-item {
    width: 100%;
  } 
  .portfolio .demo-title > h1 {
    font-size: 20px;
    line-height: 20px;
  }
  .password-inner {
    font-size: 18px;
    line-height: 36px;
  }
  .footer-content .footer-title > span {
    display: unset;
  }
  .footer-bottom-inner {
    padding: 15px 0;
  }
  .footer-content .footer-title {
    margin: 15px 0 10px;
  }
  .footer-text {
    font-size: 14px;
    line-height: 26px;
    margin: 0 0 15px;
  }
}