
/*===========================
        01.COMMON css 
===========================*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap");
body {
  font-family: "Montserrat", sans-serif;
  font-weight: normal;
  font-style: normal;
  color: #666e82;
    background-color: #252525; }
  overflow-X: hidden; }

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

img {
  max-width: 100%; }

a:focus,
input:focus,
textarea:focus,
button:focus {
  text-decoration: none;
  outline: none; }

a:focus,
a:hover {
  text-decoration: none; }

i,
span,
a {
  display: inline-block; }

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle; }

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: #2e3d62;
  margin: 0px; }

h1 {
  font-size: 48px; }

h2 {
  font-size: 36px; }

h3 {
  font-size: 28px; }

h4 {
  font-size: 22px; }

h5 {
  font-size: 18px; }

h6 {
  font-size: 16px; }

ul, ol {
  margin: 0px;
  padding: 0px;
  list-style-type: none; }

p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #fff;
  margin: 0px; }
  
  p1 {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #000;
  margin: 0px; }

.bg_cover {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%; }

@media only screen and (min-width: 1400px) {
  .custom-container {
    max-width: 1590px; } }


/*===== All Section Title Style =====*/
.section-title .sub-title {
  font-weight: 600;
  color: #FFF;
  font-size: 32px;
  position: relative;
  padding-top: 35px; }
  .section-title .sub-title::before {
    position: absolute;
	content: '';
    width: 15px;
    height: 15px;
	background: linear-gradient(135deg, #ba943c, #ba943c, #f9eeb0, #ba943c, #ba943c);
    -webkit-transform: rotate(45deg) translateX(0);
    -moz-transform: rotate(45deg) translateX(0);
    -ms-transform: rotate(45deg) translateX(0);
    -o-transform: rotate(45deg) translateX(0);
    transform: rotate(45deg) translateX(0);
    left: 2px;
    top: 10px; }
	
.section-title .title {
  font-size: 46px;
  font-weight: 800;
  color: #2e3d62;
  margin-top: 5px;
  letter-spacing: -2px; }
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .section-title .title {
      font-size: 40px; } }
  @media (max-width: 767px) {
    .section-title .title {
      font-size: 30px;
      letter-spacing: 0; } }
.section-title.text-center .sub-title::before {
  left: 50%;
  -webkit-transform: rotate(45deg) translateX(-50%);
  -moz-transform: rotate(45deg) translateX(-50%);
  -ms-transform: rotate(45deg) translateX(-50%);
  -o-transform: rotate(45deg) translateX(-50%);
  transform: rotate(45deg) translateX(-50%);
  top: 9px; }

/*===========================
       Header css 
===========================*/
.header-area {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 23px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15); 
  background-color: #252525; }
  .header-area.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    margin-top: 0;
    -webkit-animation: sticky 1s;
    -moz-animation: sticky 1s;
    -o-animation: sticky 1s;
    animation: sticky 1s;
    background-color: #252525; }

.navbar {
  padding: 0; }
  .navbar .container {
    padding-left: 15px;
    padding-right: 15px; }
  .navbar .navbar-toggler {
    padding: 0; }
    .navbar .navbar-toggler .toggler-icon {
      width: 30px;
      height: 2px;
      background-color: #fff;
      display: block;
      margin: 5px 0;
      position: relative;
      -webkit-transition: all 0.3s linear;
      -moz-transition: all 0.3s linear;
      -ms-transition: all 0.3s linear;
      -o-transition: all 0.3s linear;
      transition: all 0.3s linear; }
    .navbar .navbar-toggler.active .toggler-icon:nth-of-type(1) {
      -webkit-transform: rotate(45deg);
      -moz-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
      -o-transform: rotate(45deg);
      transform: rotate(45deg);
      top: 7px; }
    .navbar .navbar-toggler.active .toggler-icon:nth-of-type(2) {
      opacity: 0; }
    .navbar .navbar-toggler.active .toggler-icon:nth-of-type(3) {
      -webkit-transform: rotate(135deg);
      -moz-transform: rotate(135deg);
      -ms-transform: rotate(135deg);
      -o-transform: rotate(135deg);
      transform: rotate(135deg);
      top: -7px; }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .navbar .navbar-collapse {
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      background-color: #fff;
      z-index: 9;
      -webkit-box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
      -moz-box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
      box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
      padding: 12px;
      -webkit-transition: all 0.3s linear;
      -moz-transition: all 0.3s linear;
      -ms-transition: all 0.3s linear;
      -o-transition: all 0.3s linear;
      transition: all 0.3s linear;
      margin-top: 23px; } }
  @media (max-width: 767px) {
    .navbar .navbar-collapse {
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      background-color: #fff;
      z-index: 9;
      -webkit-box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
      -moz-box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
      box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
      padding: 12px;
      -webkit-transition: all 0.3s linear;
      -moz-transition: all 0.3s linear;
      -ms-transition: all 0.3s linear;
      -o-transition: all 0.3s linear;
      transition: all 0.3s linear;
      margin-top: 23px; } }
  .navbar .navbar-nav li {
    margin-right: 50px;
    position: relative;
    padding: 15px 0; }
    @media only screen and (min-width: 992px) and (max-width: 1199px) {
      .navbar .navbar-nav li {
        margin-right: 40px; } }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .navbar .navbar-nav li {
        padding: 0;
        margin-right: 0; } }
    @media (max-width: 767px) {
      .navbar .navbar-nav li {
        padding: 0;
        margin-right: 0; } }
    .navbar .navbar-nav li a {
      font-size: 16px;
      font-weight: 700;
      position: relative;
      color: #fff;
      -webkit-transition: all 0.3s linear;
      -moz-transition: all 0.3s linear;
      -ms-transition: all 0.3s linear;
      -o-transition: all 0.3s linear;
      transition: all 0.3s linear; }
      @media only screen and (min-width: 768px) and (max-width: 991px) {
        .navbar .navbar-nav li a {
          color: #2e3d62;
          display: block;
          padding: 5px 10px; } }
      @media (max-width: 767px) {
        .navbar .navbar-nav li a {
          color: #2e3d62;
          display: block;
          padding: 5px 10px; } }
      .navbar .navbar-nav li a::before {
        position: absolute;
        content: '';
        width: 0;
        height: 1px;
        background-color: #fff;
        bottom: 2px;
        left: 0;
        -webkit-transition: all 0.3s linear;
        -moz-transition: all 0.3s linear;
        -ms-transition: all 0.3s linear;
        -o-transition: all 0.3s linear;
        transition: all 0.3s linear; }
        @media only screen and (min-width: 768px) and (max-width: 991px) {
          .navbar .navbar-nav li a::before {
            display: none; } }
        @media (max-width: 767px) {
          .navbar .navbar-nav li a::before {
            display: none; } }
      .navbar .navbar-nav li a .sub-nav-toggler {
        display: none; }
        @media only screen and (min-width: 768px) and (max-width: 991px) {
          .navbar .navbar-nav li a .sub-nav-toggler {
            display: block;
            position: absolute;
            right: 0;
            top: 0;
            background: none;
            color: #666e82;
            font-size: 16px;
            border: 0;
            width: 35px;
            height: 35px; } }
        @media (max-width: 767px) {
          .navbar .navbar-nav li a .sub-nav-toggler {
            display: block;
            position: absolute;
            right: 0;
            top: 0;
            background: none;
            color: #666e82;
            font-size: 16px;
            border: 0;
            width: 35px;
            height: 35px; } }
        .navbar .navbar-nav li a .sub-nav-toggler span {
          width: 8px;
          height: 8px;
          border-left: 1px solid #222;
          border-bottom: 1px solid #222;
          -webkit-transform: rotate(-45deg);
          -moz-transform: rotate(-45deg);
          -ms-transform: rotate(-45deg);
          -o-transform: rotate(-45deg);
          transform: rotate(-45deg);
          position: relative;
          top: -5px; }
    .navbar .navbar-nav li.active > a::before, .navbar .navbar-nav li:hover > a::before {
      width: 100%; }
    .navbar .navbar-nav li .sub-menu {
      position: absolute;
      top: 120%;
      left: 50%;
      -webkit-transform: translateX(-50%);
      -moz-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      -o-transform: translateX(-50%);
      transform: translateX(-50%);
      width: 190px;
      background-color: #fff;
      border-top: 2px solid #2e3d62;
      -webkit-box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.05);
      -moz-box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.05);
      box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.05);
      -webkit-transition: all 0.3s linear;
      -moz-transition: all 0.3s linear;
      -ms-transition: all 0.3s linear;
      -o-transition: all 0.3s linear;
      transition: all 0.3s linear;
      padding: 10px 0;
      opacity: 0;
      visibility: hidden; }
      @media only screen and (min-width: 768px) and (max-width: 991px) {
        .navbar .navbar-nav li .sub-menu {
          position: relative;
          width: 100%;
          top: 0;
          left: 0;
          -webkit-transform: translateX(0);
          -moz-transform: translateX(0);
          -ms-transform: translateX(0);
          -o-transform: translateX(0);
          transform: translateX(0);
          display: none;
          opacity: 1;
          visibility: visible;
          -webkit-box-shadow: none;
          -moz-box-shadow: none;
          box-shadow: none;
          -webkit-transition: all 0s linear;
          -moz-transition: all 0s linear;
          -ms-transition: all 0s linear;
          -o-transition: all 0s linear;
          transition: all 0s linear;
          border-top: 0;
          padding: 0 10px; } }
      @media (max-width: 767px) {
        .navbar .navbar-nav li .sub-menu {
          position: relative;
          width: 100%;
          top: 0;
          left: 0;
          -webkit-transform: translateX(0);
          -moz-transform: translateX(0);
          -ms-transform: translateX(0);
          -o-transform: translateX(0);
          transform: translateX(0);
          display: none;
          opacity: 1;
          visibility: visible;
          -webkit-box-shadow: none;
          -moz-box-shadow: none;
          box-shadow: none;
          -webkit-transition: all 0s linear;
          -moz-transition: all 0s linear;
          -ms-transition: all 0s linear;
          -o-transition: all 0s linear;
          transition: all 0s linear;
          border-top: 0;
          padding: 0 10px; } }
      .navbar .navbar-nav li .sub-menu li {
        padding: 0;
        margin-right: 0; }
        .navbar .navbar-nav li .sub-menu li a {
          color: #2e3d62;
          padding: 6px 20px;
          font-size: 14px;
          display: block; }
          .navbar .navbar-nav li .sub-menu li a::before {
            display: none; }
        .navbar .navbar-nav li .sub-menu li:hover > a {
          padding-left: 23px;
          color: #ff8257; }
    .navbar .navbar-nav li:hover .sub-menu {
      top: 100%;
      opacity: 1;
      visibility: visible; }
      @media only screen and (min-width: 768px) and (max-width: 991px) {
        .navbar .navbar-nav li:hover .sub-menu {
          top: 0;
          left: 0; } }
      @media (max-width: 767px) {
        .navbar .navbar-nav li:hover .sub-menu {
          top: 0;
          left: 0; } }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .navbar .navbar-btn {
      padding-top: 10px; } }
  @media (max-width: 767px) {
    .navbar .navbar-btn {
      padding-top: 10px; } }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .navbar .navbar-btn .main-btn {
      display: block; } }
  @media (max-width: 767px) {
    .navbar .navbar-btn .main-btn {
      display: block; } }

@-webkit-keyframes sticky {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%); }
  100% {
    -webkit-transform: translateY(0%);
    transform: translateY(0%); } }
@keyframes sticky {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%); }
  100% {
    -webkit-transform: translateY(0%);
    transform: translateY(0%); } }


/*===========================
       Banner css 
===========================*/
.banner-area {
  position: relative;
  z-index: 5;
  padding-top: 180px;
  padding-bottom: 110px;
  overflow: hidden; }
  .banner-area .banner-shape-1 {
    position: absolute;
    top: 0;
    right: 0;
    width: 68%;
    z-index: -1; }
    @media only screen and (min-width: 1400px) {
      .banner-area .banner-shape-1 {
        width: 63%; } }
    @media only screen and (min-width: 992px) and (max-width: 1199px) {
      .banner-area .banner-shape-1 {
        width: 75%; } }
    .banner-area .banner-shape-1 img {
      width: 100%; }
    .banner-area .banner-shape-1 .line {
      position: absolute;
      top: 0;
      right: 0;
      width: auto;
      z-index: 1; }
  .banner-area .banner-shape-2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 30%;
    z-index: -1; }
    .banner-area .banner-shape-2 img {
      width: 100%; }
  .banner-area .banner-shape-3 {
    position: absolute;
    top: 50%;
    left: 0;
    z-index: -1;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%); }
    @media (max-width: 767px) {
      .banner-area .banner-shape-3 {
        width: 150px; } }

.banner-content-wrapper {
  padding-bottom: 30px; }
  .banner-content-wrapper .banner-content {
    margin-top: 50px; }
    .banner-content-wrapper .banner-content .title {
      font-size: 60px;
      font-weight: 800;
      color: #2e3d62; }
      @media only screen and (min-width: 992px) and (max-width: 1199px) {
        .banner-content-wrapper .banner-content .title {
          font-size: 50px; } }
      @media (max-width: 767px) {
        .banner-content-wrapper .banner-content .title {
          font-size: 30px; } }
      @media only screen and (min-width: 576px) and (max-width: 767px) {
        .banner-content-wrapper .banner-content .title {
          font-size: 48px; } }
    .banner-content-wrapper .banner-content p {
      font-size: 18px;
      font-weight: 300;
      line-height: 26px;
      margin-top: 35px; }
      @media (max-width: 767px) {
        .banner-content-wrapper .banner-content p {
          font-size: 16px;
          line-height: 28px; } }
    .banner-content-wrapper .banner-content .download-btn {
      padding-top: 40px; }
      .banner-content-wrapper .banner-content .download-btn li {
        margin-top: 10px;
        display: inline-block;
        margin-right: 18px; }
        .banner-content-wrapper .banner-content .download-btn li:last-child {
          margin-right: 0; }
        .banner-content-wrapper .banner-content .download-btn li a {
          padding-left: 70px;
          padding-right: 40px;
          padding-top: 17px;
          padding-bottom: 17px;
          position: relative;
          border-radius: 5px;
          -webkit-transition: all 0.3s linear;
          -moz-transition: all 0.3s linear;
          -ms-transition: all 0.3s linear;
          -o-transition: all 0.3s linear;
          transition: all 0.3s linear; }
          @media only screen and (min-width: 992px) and (max-width: 1199px) {
            .banner-content-wrapper .banner-content .download-btn li a {
              padding-top: 10px;
              padding-bottom: 10px;
              padding-left: 60px;
              padding-right: 30px; } }
          @media (max-width: 767px) {
            .banner-content-wrapper .banner-content .download-btn li a {
              padding-top: 10px;
              padding-bottom: 10px;
              padding-left: 60px;
              padding-right: 30px; } }
          .banner-content-wrapper .banner-content .download-btn li a i {
            font-size: 28px;
            color: #fff;
            position: absolute;
            top: 50%;
            left: 40px;
            -webkit-transform: translateY(-50%);
            -moz-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
            -o-transform: translateY(-50%);
            transform: translateY(-50%); }
            @media only screen and (min-width: 992px) and (max-width: 1199px) {
              .banner-content-wrapper .banner-content .download-btn li a i {
                left: 30px;
                font-size: 24px; } }
            @media (max-width: 767px) {
              .banner-content-wrapper .banner-content .download-btn li a i {
                left: 30px;
                font-size: 24px; } }
          .banner-content-wrapper .banner-content .download-btn li a .text-1 {
            font-size: 14px;
            font-weight: 500;
            color: #fff;
            display: block; }
          .banner-content-wrapper .banner-content .download-btn li a .text-2 {
            font-size: 18px;
            font-weight: 700;
            color: #fff;
            display: block; }
          .banner-content-wrapper .banner-content .download-btn li a.google-play {
            background-color: #ff8257; }
            .banner-content-wrapper .banner-content .download-btn li a.google-play:hover {
              background-color: #666e82; }
          .banner-content-wrapper .banner-content .download-btn li a.apple-store {
            background-color: #666e82; }
            .banner-content-wrapper .banner-content .download-btn li a.apple-store:hover {
              background-color: #ff8257; }
  .banner-content-wrapper .banner-image {
    margin-top: 50px; }
    .banner-content-wrapper .banner-image .image {
      -webkit-transform: rotate(15deg);
      -moz-transform: rotate(15deg);
      -ms-transform: rotate(15deg);
      -o-transform: rotate(15deg);
      transform: rotate(15deg);
      -webkit-animation: ImgBounce1 2s ease-in-out infinite alternate;
      -moz-animation: ImgBounce1 2s ease-in-out infinite alternate;
      -o-animation: ImgBounce1 2s ease-in-out infinite alternate;
      animation: ImgBounce1 2s ease-in-out infinite alternate; }

@-webkit-keyframes ImgBounce1 {
  0% {
    -webkit-transform: translateY(0) rotate(15deg);
    -moz-transform: translateY(0) rotate(15deg);
    -ms-transform: translateY(0) rotate(15deg);
    -o-transform: translateY(0) rotate(15deg);
    transform: translateY(0) rotate(15deg); }
  100% {
    -webkit-transform: translateY(-20px) rotate(15deg);
    -moz-transform: translateY(-20px) rotate(15deg);
    -ms-transform: translateY(-20px) rotate(15deg);
    -o-transform: translateY(-20px) rotate(15deg);
    transform: translateY(-20px) rotate(15deg); } }
@keyframes ImgBounce {
  0% {
    -webkit-transform: translateY(0) rotate(15deg);
    -moz-transform: translateY(0) rotate(15deg);
    -ms-transform: translateY(0) rotate(15deg);
    -o-transform: translateY(0) rotate(15deg);
    transform: translateY(0) rotate(15deg); }
  100% {
    -webkit-transform: translateY(-20px) rotate(15deg);
    -moz-transform: translateY(-20px) rotate(15deg);
    -ms-transform: translateY(-20px) rotate(15deg);
    -o-transform: translateY(-20px) rotate(15deg);
    transform: translateY(-20px) rotate(15deg); } }
.banner-counter {
  padding-top: 40px; }
  .banner-counter .counter-title .title {
    font-size: 16px;
    font-weight: 600;
    color: #666e82; }
  .banner-counter .counter-wrapper {
    padding-top: 40px; }
  .banner-counter .single-counter {
    margin-top: 30px; }
    .banner-counter .single-counter .count-content {
      font-size: 16px;
      font-weight: 600;
      color: #666e82;
      display: block; }
      @media only screen and (min-width: 992px) and (max-width: 1199px) {
        .banner-counter .single-counter .count-content {
          font-size: 14px; } }
      @media (max-width: 767px) {
        .banner-counter .single-counter .count-content {
          font-size: 14px; } }
      .banner-counter .single-counter .count-content .count {
        font-size: 60px;
        line-height: 60px;
        font-weight: 700;
        color: #2e3d62; }
        @media only screen and (min-width: 992px) and (max-width: 1199px) {
          .banner-counter .single-counter .count-content .count {
            font-size: 40px;
            line-height: 40px; } }
        @media only screen and (min-width: 768px) and (max-width: 991px) {
          .banner-counter .single-counter .count-content .count {
            font-size: 40px;
            line-height: 40px; } }
        @media (max-width: 767px) {
          .banner-counter .single-counter .count-content .count {
            font-size: 40px;
            line-height: 40px; } }
      .banner-counter .single-counter .count-content span {
        color: #ff8257; }

/*===========================
      Features css 
===========================*/
.features-area {

  position: relative;
  z-index: 5;
  overflow: hidden; }
  .features-area::before {
    	position: absolute;
    content: '';
    background-color: #292929;
    width: 100%;
    height: 100%;
    z-index: -100; }


.single-features {
  background-color: #fff;
  -webkit-box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.05);
  padding: 60px 60px 23px;
  position: relative;
  margin-top: 30px;
  margin-bottom: 65px;
  border-radius: 5px;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  position: relative;
  z-index: 5; }
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .single-features {
      padding: 60px 30px 28px; } }
  @media (max-width: 767px) {
    .single-features {
      padding: 60px 30px 28px; } }
  .single-features::before {
    position: absolute;
    content: '';
    bottom: -170px;
    right: -170px;
    width: 0;
    height: 0;
    border-bottom: 170px solid rgba(255, 255, 255, 0.2);
    border-left: 170px solid transparent;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear; }
  .single-features .features-icon i {
    font-size: 64px;
    line-height: 60px;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear; }
  .features-icon {
   border: 10 px;
  }
  .single-features .features-content .features-title a {
    font-size: 22px;
    line-height: 34px;
    font-weight: 800;
    color: #c3a24f;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    margin-top: 32px; }
  .single-features .features-content p {
    margin-top: 37px;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear; }
  .single-features .features-btn {
    position: relative;
    left: 85px;
	bottom: -60px;
    display: inline-block;
    background: linear-gradient(135deg, #ba943c, #ba943c, #f9eeb0, #ba943c, #ba943c);
    padding: 7px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    border-radius: 5px; }
	.single-features .features-btn:hover {
    position: relative;
    left: 85px;
	bottom: -60px;
    display: inline-block;
    background-color: #fff;
    padding: 7px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    border-radius: 5px; }
    .single-features .features-btn a {
      width: 60px;
      height: 60px;
      line-height: 60px;
      background-color: #fff;
      color: #c3a24f;
      text-align: center;
      font-size: 22px;
      border-radius: 5px;
      -webkit-box-shadow: 0px -25px 30px 0px rgba(0, 0, 0, 0.05);
      -moz-box-shadow: 0px -25px 30px 0px rgba(0, 0, 0, 0.05);
      box-shadow: 0px -25px 30px 0px rgba(0, 0, 0, 0.05);
      -webkit-transition: all 0.3s linear;
      -moz-transition: all 0.3s linear;
      -ms-transition: all 0.3s linear;
      -o-transition: all 0.3s linear;
      transition: all 0.3s linear; }
      .single-features .features-btn a i {
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg); }
		
		    .single-features .features-btn:hover a {
      width: 60px;
      height: 60px;
      line-height: 60px;
      background-color: #5dd8d3;
      color: #fff;
      text-align: center;
      font-size: 22px;
      border-radius: 5px;
      -webkit-box-shadow: 0px -25px 30px 0px rgba(0, 0, 0, 0.05);
      -moz-box-shadow: 0px -25px 30px 0px rgba(0, 0, 0, 0.05);
      box-shadow: 0px -25px 30px 0px rgba(0, 0, 0, 0.05);
      -webkit-transition: all 0.3s linear;
      -moz-transition: all 0.3s linear;
      -ms-transition: all 0.3s linear;
      -o-transition: all 0.3s linear;
      transition: all 0.3s linear; }
      .single-features .features-btn:hover a i {
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg); }
		
		
  .single-features.features-1 .features-btn a {
    background-color: #fff;}
	  .single-features.features-1 .features-btn:hover a {
    background-color: #cc6733;}
  .single-features.features-1:hover {
    background-color: #cc6733; }
    .single-features.features-1:hover .features-content .features-title a {
      color: #fff; }
    .single-features.features-1:hover .features-content p1 {
      color: rgba(255, 255, 255); }


  .single-features.features-2 .features-btn a {
    background-color: #fff; }
		  .single-features.features-2 .features-btn:hover a {
    background-color: #000;}
  .single-features.features-2:hover {
    background-color: #000000; }
    .single-features.features-2:hover .features-content .features-title a {
      color: #fff; }
    .single-features.features-2:hover .features-content p1 {
      color: rgba(255, 255, 255); }


  .single-features.features-3 .features-btn a {
    background-color: #fff; }
		  .single-features.features-3 .features-btn:hover a {
    background-color: #da1ada;}
  .single-features.features-3:hover {
    background-color: #da1ada; }
    .single-features.features-3:hover .features-content .features-title a {
      color: #fff; }
    .single-features.features-3:hover .features-content p1 {
      color: rgba(255, 255, 255); }
	  

  .single-features.features-4 .features-btn a {
    background-color: #fff; }
		  .single-features.features-4 .features-btn:hover a {
    background-color: #38b6ff;}
  .single-features.features-4:hover {
    background-color: #38b6ff; }
    .single-features.features-4:hover .features-content .features-title a {
      color: #fff; }
    .single-features.features-4:hover .features-content p1 {
      color: rgba(255, 255, 255); }


  .single-features.features-5 .features-btn a {
    background-color: #fff; }
		  .single-features.features-5 .features-btn:hover a {
    background-color: #2eb723;}
  .single-features.features-5:hover {
    background-color: #2eb723; }
    .single-features.features-5:hover .features-content .features-title a {
      color: #fff; }
    .single-features.features-5:hover .features-content p1 {
      color: rgba(255, 255, 255); }


  .single-features.features-6 .features-btn a {
    background-color: #fff; }
		  .single-features.features-6 .features-btn:hover a {
    background-color: #41d0ff;}
  .single-features.features-6:hover {
    background-color: #41d0ff; }
    .single-features.features-6:hover .features-content .features-title a {
      color: #fff; }
    .single-features.features-6:hover .features-content p1 {
      color: rgba(255, 255, 255); }
	  
	  
  .single-features:hover::before {
    bottom: 0;
    right: 0;
    opacity: 1;
    visibility: visible; }

/*===========================
        Footer 
===========================*/
.footer-area {
  position: relative;
  z-index: 5;
  overflow: hidden; }

.footer-widget {
  padding-bottom: 50px; }
  .footer-widget .footer-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff; }

.footer-widget-wrapper {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  flex-wrap: wrap; }

  .footer-widget-wrapper .footer-contact {
  width: 100%;
  position: center;}

    .footer-widget-wrapper .footer-contact .contact-info .single-contact {
      position: relative;
      margin-top: 25px;}
	  
      .footer-widget-wrapper .footer-contact .contact-info .single-contact i {
        font-size: 16px;
        color: #c3a24f;
        position: absolute;
        left: 0;
        top: 5px; }
		
      .footer-widget-wrapper .footer-contact .contact-info .single-contact .contact-text {
        padding-left: 25px; }
		
        .footer-widget-wrapper .footer-contact .contact-info .single-contact .contact-text p {
          font-size: 32px;
          color: #fff;
          font-weight: 600; }
          .footer-widget-wrapper .footer-contact .contact-info .single-contact .contact-text p a {
            color: #fff;
            -webkit-transition: all 0.3s linear;
            -moz-transition: all 0.3s linear;
            -ms-transition: all 0.3s linear;
            -o-transition: all 0.3s linear;
            transition: all 0.3s linear; }
            .footer-widget-wrapper .footer-contact .contact-info .single-contact .contact-text p a:hover {
              color: #c3a24f; }

.footer-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 35px 0; }
  .footer-copyright p {
    font-size: 16px;
    line-height: 28px;
    color: #fff;
    font-weight: 600; }
    .footer-copyright p a {
      color: #fff;
      -webkit-transition: all 0.3s linear;
      -moz-transition: all 0.3s linear;
      -ms-transition: all 0.3s linear;
      -o-transition: all 0.3s linear;
      transition: all 0.3s linear; }
      .footer-copyright p a:hover {
        color: #c3a24f; }

/*===== Back To Top =====*/
.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 18px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 5px;
  z-index: 99;
  text-align: center;
  display: none;
  -webkit-box-shadow: 0px 0px 30px 0px rgba(156, 156, 156, 0.25);
  -moz-box-shadow: 0px 0px 30px 0px rgba(156, 156, 156, 0.25);
  box-shadow: 0px 0px 30px 0px rgba(156, 156, 156, 0.25);
  -webkit-transition: all 0.4s linear;
  -moz-transition: all 0.4s linear;
  -ms-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  color: #fff;
  background-color: #2e3d62; }
  .back-to-top:hover {
    color: #fff;
    background-color: #ff8257; }