/* table of content - start
================================================== */
/* 
* Project Name   :  Dexfolio - Portfolio & Agency Template
* File           :  CSS Base
* Version        :  1.0.0
* Last change    :  20 August 2021
* 
*/
/* table of content - end
================================================== */
/* template fonts - start
================================================== */
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
/* template fonts - end
================================================== */
/* global reset - start
================================================== */
body {
  margin: 0px;
  padding: 0px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.65;
  font-style: normal;
  color: #272727;
  letter-spacing: 0.27px;
  font-family: "Poppins", sans-serif;
  background-repeat: no-repeat;
  text-rendering: optimizelegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#F2F7F9), color-stop(#F6F2ED), to(#F2F7F9));
  background-image: linear-gradient(0deg, #F2F7F9, #F6F2ED, #F2F7F9);
}

.body_wrap {
  overflow: hidden;
  position: relative;
}

.container {
  max-width: 1200px;
}
.container .row {
  margin: -20px -15px;
}
.container .col {
  -webkit-box-flex: unset;
      -ms-flex-positive: unset;
          flex-grow: unset;
  -ms-flex-preferred-size: unset;
      flex-basis: unset;
  padding: 20px 15px;
}

.maxwidth_1400 {
  max-width: 1430px;
}

.layer {
  position: relative !important;
}

.section_space {
  padding: 180px 0;
}

iframe {
  border: none;
}

a:focus,
a:active,
input,
input:hover,
input:focus,
input:active,
textarea,
textarea:hover,
textarea:focus,
textarea:active {
  outline: none;
}

img:not([draggable]),
embed,
object,
video {
  height: auto;
  max-width: 100%;
}

img {
  border: none;
  height: auto;
  max-width: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  vertical-align: middle;
}

a {
  outline: 0;
  display: inline-block;
  text-decoration: none;
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
a:active, a:focus, a:hover, a:visited {
  outline: 0;
  text-decoration: none;
}

button {
  padding: 0px;
  border: none;
  outline: none;
  background: none;
  display: inline-block;
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
button:focus {
  outline: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: #272727;
  letter-spacing: 0.19px;
  font-family: "Poppins", sans-serif;
}

hr {
  opacity: 1;
  height: 1px;
  margin: 25px 0;
  background-color: #f5f5f5;
}

/* Back To Top Button - Start */
.backtotop {
  right: 15px;
  z-index: 999;
  bottom: 50px;
  display: none;
  position: fixed;
}
.backtotop .scroll {
  z-index: 1;
  width: 50px;
  height: 50px;
  display: block;
  position: relative;
}
.backtotop .scroll:before, .backtotop .scroll:after {
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  content: "";
  position: absolute;
  border-radius: 100%;
  background-color: #ffffff;
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.2);
}
.backtotop .scroll:after {
  opacity: 0;
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
}
.backtotop .scroll:hover:before {
  opacity: 0;
  -webkit-transform: scale(0.3);
          transform: scale(0.3);
}
.backtotop .scroll:hover:after {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.backtotop .scroll i {
  left: 50%;
  z-index: 1;
  font-size: 15px;
  position: absolute;
  color: #272727;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.backtotop .scroll i:nth-child(1) {
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.backtotop .scroll i:nth-child(2) {
  top: 130%;
  opacity: 0;
  visibility: hidden;
}
.backtotop .scroll:hover i:nth-child(1) {
  top: -110%;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.backtotop .scroll:hover i:nth-child(2) {
  top: 50%;
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

/* Back To Top Button - End */
/* Button - Start */
.btn {
  z-index: 1;
  border: none;
  outline: none;
  line-height: 1;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 0;
  min-width: 200px;
  overflow: hidden;
  position: relative;
  padding: 23px 30px;
  display: inline-block;
  text-transform: uppercase;
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.btn:before {
  top: 0px;
  width: 0px;
  left: auto;
  right: 0px;
  z-index: -1;
  bottom: 0px;
  content: "";
  position: absolute;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.btn:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.btn:hover {
  color: #ffffff;
}
.btn:hover:before {
  left: 0px;
  width: 100%;
  right: auto;
}
.btn.btn_primary {
  background-color: #4444FF;
}
.btn.btn_primary:before {
  background-color: #FF5252;
}
.btn.btn_info {
  background-color: #803CFF;
}
.btn.btn_info:before {
  background-color: #4444FF;
}
.btn.btn_info:hover {
  border-color: #4444FF;
}
.btn.btn_danger {
  background-color: #FF5252;
}
.btn.btn_danger:before {
  background-color: #4444FF;
}
.btn.btn_danger:hover {
  border-color: #4444FF;
}

/* Button - End */
/* Section Title - Start */
.section_title {
  margin-bottom: 80px;
}
.section_title .small_title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #4444FF;
}
.section_title .title_text {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 30px;
}
.section_title p {
  font-size: 20px;
}

/* Section Title - End */
/* Carousel Style - Start */
.carousel_arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.carousel_arrow button {
  width: 50px;
  height: 50px;
  color: #ffffff;
  font-size: 14px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #4444FF;
}
.carousel_arrow button:not(:last-child) {
  margin-right: 8px;
}
.carousel_arrow button:hover {
  -webkit-box-shadow: 0 10px 20px 0 rgba(68, 68, 255, 0.3);
          box-shadow: 0 10px 20px 0 rgba(68, 68, 255, 0.3);
}

.slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: static;
  padding-top: 60px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.slick-dots > li:not(:last-child) {
  margin: 0 12px 0 0;
}
.slick-dots > li button {
  opacity: 0.4;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: #4444FF;
}
.slick-dots > li:hover button, .slick-dots > li.slick-active button {
  opacity: 1;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

/* Carousel Style - End */
/* global reset - end
================================================== */
/* Body Content - start
================================================== */
/* Header Section - Start */
.header_section {
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  padding: 20px 0;
  position: absolute;
}
.header_section .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header_section.sticky {
  position: fixed;
  padding: 15px 0;
  background-color: #ffffff;
  -webkit-box-shadow: 0px 0px 18px 1px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 18px 1px rgba(0, 0, 0, 0.1);
  -webkit-animation: 0.5s ease-in-out 0s normal none 1 running fadeInDown;
          animation: 0.5s ease-in-out 0s normal none 1 running fadeInDown;
}

.menu_list ul {
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.menu_list li {
  float: left;
  font-size: 16px;
  font-weight: 500;
  display: inline-block;
}
.menu_list li:not(:last-child) {
  margin: 0 10px 0 0;
}
.menu_list a {
  display: block;
  color: #272727;
}
.menu_list a:hover, .menu_list a.active {
  color: #4444FF;
}

.mobile_menu_close {
  width: 40px;
  height: 40px;
  display: none;
  color: #272727;
  margin-left: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #F2F7F9;
}

.mobile_menu_btn {
  display: none;
  line-height: 1;
  font-size: 20px;
}

/* Header Section - End */
/* Banner Section - Start */
.banner_section {
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 120px 0;
  min-height: 100vh;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: left bottom;
}
.banner_section h1 {
  margin-bottom: 25px;
}
.banner_section h1 small {
  display: block;
  line-height: 1;
  font-size: 24px;
  margin-bottom: 30px;
  color: #4444FF;
}
.banner_section h1 strong {
  line-height: 1;
  font-size: 115px;
  display: inline-block;
  background: -webkit-linear-gradient(45deg, #4444FF, #803CFF, #FF5252);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.banner_section p {
  max-width: 65%;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 0;
  line-height: 1.5;
}
.banner_section p span:nth-child(1) {
  color: #EA5C2B;
}
.banner_section p span:nth-child(2) {
  color: #5800FF;
}
.banner_section p span:nth-child(3) {
  color: #95CD41;
}
.banner_section p span:nth-child(4) {
  color: #750550;
}
.banner_section .pages_list {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 0;
  z-index: -1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
}
.banner_section .pages_list li {
  float: left;
  max-width: 330px;
  position: absolute;
  display: inline-block;
}
.banner_section .pages_list li .image_wrap {
  overflow: hidden;
  border-radius: 8px;
  border: 6px solid #ffffff;
  background-color: #ffffff;
  -webkit-box-shadow: 0 15px 40px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 15px 40px 0 rgba(0, 0, 0, 0.1);
}
.banner_section .pages_list li:nth-child(2) {
  top: 25%;
  left: -120px;
  -webkit-transform: rotate(-50deg);
          transform: rotate(-50deg);
}
.banner_section .pages_list li:nth-child(1) {
  left: -100px;
  bottom: 130px;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
}
.banner_section .pages_list li:nth-child(3) {
  right: 350px;
  bottom: 30px;
  max-width: 500px;
  -webkit-transform: rotate(-20deg);
          transform: rotate(-20deg);
}
.banner_section .pages_list li:nth-child(4) {
  top: 20%;
  right: -80px;
  -webkit-transform: rotate(20deg);
          transform: rotate(20deg);
}
.banner_section .pages_list li:nth-child(5) {
  top: 50%;
  right: -100px;
  -webkit-transform: rotate(-10deg);
          transform: rotate(-10deg);
}
.banner_section .demo_count {
  top: 20%;
  right: 28%;
  width: 170px;
  height: 170px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 1;
  font-size: 20px;
  font-weight: 500;
  position: absolute;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.1);
}
.banner_section .demo_count strong {
  display: block;
  font-size: 60px;
  font-weight: 700;
}

/* Banner Section - End */
/* Funfact Section - Start */
.counter_item span, .counter_item strong {
  display: block;
  line-height: 1;
}
.counter_item strong {
  font-size: 84px;
  font-weight: 700;
  margin-bottom: 20px;
}
.counter_item span {
  font-size: 20px;
  font-weight: 600;
}

/* Funfact Section - End */
/* Home Demo Section - Start */
.home_damo_item .item_image,
.inner_damo_item .item_image {
  display: block;
  overflow: hidden;
  position: relative;
  margin-bottom: 30px;
  background-color: #803CFF;
  -webkit-box-shadow: 0px 20px 54px 6px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 20px 54px 6px rgba(0, 0, 0, 0.2);
}
.home_damo_item .item_image:hover,
.inner_damo_item .item_image:hover {
  -webkit-transform: translateY(-15px);
          transform: translateY(-15px);
}

.home_damo_item .item_title {
  font-size: 28px;
  font-weight: 600;
}

.inner_damo_item .item_title {
  font-size: 20px;
  font-weight: 600;
}

/* Home Demo Section - End */
/* Blog Section - Start */
.blog_image {
  position: relative;
}
.blog_image:before {
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  height: 50%;
  position: absolute;
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(30%, #ffffff), to(transparent));
  background-image: linear-gradient(0deg, #ffffff 30%, transparent);
}

.blog_wrap {
  margin-top: -100px;
}

/* Blog Section - End */
/* Portfolio Section - Start */
.portfolio_section .section_title {
  z-index: 1;
  position: relative;
  display: inline-block;
}

.portfolio_carousel {
  position: relative;
}
.portfolio_carousel .carousel_item {
  padding: 15px;
}
.portfolio_carousel .home_damo_item .item_image,
.portfolio_carousel .inner_damo_item .item_image {
  -webkit-box-shadow: 0px 5px 15px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0px 5px 15px 0 rgba(0, 0, 0, 0.1);
}
.portfolio_carousel .carousel_arrow {
  left: 0;
  right: 0;
  top: -86px;
  z-index: 0;
  position: absolute;
}
.portfolio_carousel .carousel_arrow .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

/* Portfolio Section - End */
/* Header & Footer Section - Start */
.header_style_wrap .image_wrap {
  margin-left: -130px;
}
.header_style_wrap .image_wrap img:not(:last-child) {
  margin-bottom: 30px;
}

.footer_style_wrap .image_wrap {
  margin-top: 30px;
}

/* Header & Footer Section - End */
/* Features Section - Start */
.feature_section .row {
  margin: -15px;
}
.feature_section .row .col {
  padding: 15px;
}

.features_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  background-color: #ffffff;
}
.features_item:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0px 20px 40px 0px rgba(4, 10, 48, 0.1);
          box-shadow: 0px 20px 40px 0px rgba(4, 10, 48, 0.1);
}
.features_item .item_icon {
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 15px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 80px;
          flex: 0 0 80px;
  margin-right: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-right: 1px solid #f1f1f1;
}
.features_item .item_title {
  font-size: 16px;
  font-weight: 600;
}

/* Features Section - End */
/* Footer Section - Start */
.footer_section {
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: right bottom;
}
.footer_section .footer_content {
  padding: 180px 0 100px;
}
.footer_section h2 {
  line-height: 1;
  font-size: 115px;
  font-weight: 800;
  margin-bottom: 30px;
  display: inline-block;
  background: -webkit-linear-gradient(45deg, #4444FF, #803CFF, #FF5252);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.footer_section h3 {
  font-size: 48px;
  line-height: 1.3;
  margin-bottom: 30px;
}
.footer_section p {
  font-size: 22px;
  margin-bottom: 60px;
}
.footer_section .copyright_text {
  font-size: 18px;
  padding: 30px 15px;
}
.footer_section .copyright_text a {
  font-weight: 600;
  color: #4444FF;
}

/* Footer Section - End */
/* Body Content - end
================================================== */
/* ================================================== 
* Project Name   :  Dexfolio - Portfolio & Agency Template
* File           :  CSS Base
* Version        :  1.0.0
* Last change    :  20 August 2021
* 
*	css code for responsive layout To make Responsive
================================================== */
/* media screen and (max-width: 1460px) - start
================================================== */
@media screen and (max-width: 1460px) {
  .banner_section .pages_list li {
    max-width: 290px;
  }

  .banner_section .pages_list li:nth-child(3) {
    right: 250px;
    max-width: 400px;
  }

  .banner_section .pages_list li:nth-child(1) {
    bottom: 20px;
  }

  .banner_section .demo_count {
    width: 140px;
    height: 140px;
    font-size: 15px;
  }

  .banner_section .demo_count strong {
    font-size: 48px;
  }

  .header_style_wrap .image_wrap {
    margin-left: 0;
  }
}
/* media screen and (max-width: 1460px) - end
================================================== */
/* media screen and (max-width: 1360px) - start
================================================== */
/* media screen and (max-width: 1360px) - end
================================================== */
/* media screen and (max-width: 1199px) - start
================================================== */
@media screen and (max-width: 1199px) {
  .header_section {
    padding: 15px 0;
  }

  .btn {
    min-width: auto;
    padding: 18px 25px;
  }

  .banner_section {
    text-align: center;
  }

  .banner_section p {
    margin: auto;
    font-size: 30px;
  }

  .banner_section .pages_list li {
    max-width: 270px;
  }

  .banner_section .pages_list li:nth-child(3) {
    bottom: 0;
    right: 210px;
    max-width: 340px;
  }

  .banner_section h1 {
    margin-bottom: 20px;
  }

  .banner_section h1 small {
    font-size: 20px;
  }

  .banner_section h1 strong,
.footer_section h2 {
    font-size: 100px;
  }

  .banner_section .demo_count {
    width: 100px;
    height: 100px;
    font-size: 12px;
  }

  .banner_section .demo_count strong {
    font-size: 36px;
  }

  .section_title .title_text {
    font-size: 42px;
  }

  .footer_section h2 {
    margin-bottom: 20px;
  }

  .footer_section h3 {
    font-size: 42px;
    margin-bottom: 30px;
  }

  .footer_section p {
    font-size: 20px;
    margin-bottom: 45px;
  }
}
/* media screen and (max-width: 1199px) - end
================================================== */
/* media screen and (max-width: 1024px) - start
================================================== */
@media screen and (max-width: 1024px) {
  .banner_section .pages_list li {
    max-width: 220px;
  }

  .banner_section .pages_list li:nth-child(3) {
    right: 33%;
    max-width: 280px;
  }

  .banner_section .pages_list li:nth-child(5) {
    top: 68%;
    right: -65px;
    -webkit-transform: rotate(-20deg);
            transform: rotate(-20deg);
  }

  .banner_section .demo_count {
    top: 16%;
    right: 47%;
  }

  .banner_section p {
    font-size: 24px;
  }

  .menu_list li:not(:last-child) {
    margin: 0;
  }

  .nav-link {
    padding: 10px 13px;
  }

  .menu_list a {
    font-size: 15px;
  }

  .banner_section h1 strong,
.footer_section h2 {
    font-size: 90px;
  }

  .btn {
    font-size: 12px;
  }

  .home_damo_item .item_title {
    font-size: 24px;
  }

  .section_title p {
    font-size: 18px;
  }

  .portfolio_carousel .carousel_arrow {
    position: static;
  }

  .portfolio_carousel .carousel_arrow .container {
    margin-top: 20px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .footer_section h3 {
    font-size: 38px;
  }
}
/* media screen and (max-width: 1024px) - end
================================================== */
/* media screen and (max-width: 991px) - start
================================================== */
@media screen and (max-width: 991px) {
  .section_space {
    padding: 140px 0;
  }

  .section_title {
    text-align: center;
    margin-bottom: 40px;
  }

  .section_title .title_text {
    margin-bottom: 15px;
  }

  .banner_section .pages_list li:nth-child(2) {
    left: -70px;
  }

  .banner_section .pages_list li:nth-child(1) {
    bottom: 100px;
  }

  .counter_item strong {
    font-size: 78px;
    margin-bottom: 12px;
  }

  .counter_item span {
    font-size: 18px;
  }

  .order-last {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }

  .section_title .small_title {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .footer_section .footer_content {
    padding: 140px 0 50px;
  }

  .portfolio_section .section_title {
    display: block;
  }

  .menu_list {
    top: 0;
    bottom: 0;
    left: -260px;
    z-index: 999;
    width: 250px;
    position: fixed;
    padding: 50px 0;
    background-color: #ffffff;
    -webkit-box-shadow: 5px 0 10px 0 rgba(0, 0, 0, 0.08);
            box-shadow: 5px 0 10px 0 rgba(0, 0, 0, 0.08);
    -webkit-transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  }
  .menu_list.active {
    left: 0;
  }
  .menu_list ul {
    width: 100%;
    display: table;
    padding: 30px 0;
  }
  .menu_list li {
    width: 100%;
    display: block;
  }
  .menu_list a {
    padding: 10px 30px;
  }

  .header_section.sticky {
    -webkit-animation: unset;
            animation: unset;
  }

  .mobile_menu_close {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }

  .mobile_menu_btn {
    margin-right: 20px;
    display: inline-block;
  }
}
/* media screen and (max-width: 991px) - end
================================================== */
/* media screen and (max-width: 767px) - start
================================================== */
@media screen and (max-width: 767px) {
  .banner_section p {
    font-size: 20px;
  }

  .banner_section h1 {
    margin-bottom: 5px;
  }

  .banner_section h1 small {
    font-size: 18px;
  }

  .banner_section .demo_count {
    top: 19%;
    right: 45%;
  }

  .section_title .title_text {
    font-size: 36px;
  }

  .section_title .small_title {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .home_damo_item,
.inner_damo_item {
    margin: auto;
    max-width: 370px;
  }

  .home_damo_item .item_image,
.inner_damo_item .item_image {
    margin-bottom: 20px;
    -webkit-box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.1);
            box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.1);
  }

  .home_damo_item .item_title {
    font-size: 20px;
  }

  .section_title p {
    font-size: 16px;
  }

  .blog_wrap {
    margin-top: -80px;
  }

  .mobile_device_image {
    max-width: 470px;
    margin: 0 auto 20px;
  }

  .footer_section h2 {
    margin-bottom: 10px;
  }

  .footer_section h3 {
    font-size: 36px;
    margin-bottom: 20px;
  }

  .footer_section p {
    font-size: 18px;
    margin-bottom: 35px;
  }
}
/* media screen and (max-width: 767px) - end
================================================== */
/* media screen and (max-width: 575px) - start
================================================== */
@media screen and (max-width: 575px) {
  .banner_section p {
    max-width: 100%;
  }
  .banner_section p span {
    display: block;
  }

  .banner_section h1 strong,
.footer_section h2 {
    font-size: 80px;
  }

  .banner_section h1 small {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .banner_section h1 {
    margin-bottom: 10px;
  }

  .banner_section .pages_list li {
    max-width: 170px;
  }

  .banner_section .pages_list li:nth-child(3) {
    max-width: 220px;
  }

  .banner_section .demo_count {
    position: static;
    margin: 0 auto 35px;
  }

  .banner_section {
    min-height: auto;
    padding: 120px 0 230px;
  }

  .section_space {
    padding: 100px 0;
  }

  .backtotop .scroll {
    width: 40px;
    height: 40px;
  }

  .mobile_menu_btn {
    margin-right: 0;
  }

  .header_section .btn {
    display: none;
  }
}
/* media screen and (max-width: 575px) - end
================================================== */
/* media screen and (max-width: 425px) - start
================================================== */
@media screen and (max-width: 425px) {
  .banner_section h1 strong,
.footer_section h2 {
    font-size: 66px;
  }

  .banner_section p {
    font-size: 17px;
  }

  .banner_section .pages_list li {
    max-width: 140px;
  }

  .banner_section .pages_list li:nth-child(3) {
    right: 30%;
    max-width: 180px;
  }

  .banner_section {
    padding: 120px 0 180px;
  }

  .section_title .title_text {
    font-size: 30px;
  }

  .counter_item strong {
    font-size: 60px;
    margin-bottom: 10px;
  }

  .counter_item span {
    font-size: 15px;
  }

  .blog_wrap {
    margin-top: -40px;
  }

  .footer_section h3 {
    font-size: 30px;
    margin-bottom: 10px;
  }

  .footer_section p {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .footer_section .footer_content {
    padding: 100px 0 30px;
  }

  .footer_section .copyright_text {
    font-size: 15px;
    padding: 20px 15px;
  }
}
/* media screen and (max-width: 425px) - end
================================================== */
/* media screen and (max-width: 375px) - start
================================================== */
@media screen and (max-width: 375px) {
  .section_title .title_text {
    font-size: 26px;
  }

  .footer_section h3 {
    font-size: 26px;
  }
}
/* media screen and (max-width: 375px) - end
================================================== */
/* media screen and (max-width: 320px) - start
================================================== */
/* media screen and (max-width: 320px) - end
================================================== */