/*
@File: Varn Theme Styles

* This file contains the styling for the actual theme, this
is the file you need to edit to change the look of the
theme.

This files table contents are outlined below>>>>>

*******************************************
*******************************************

** - Default CSS
** - Preloader Area CSS
** - Navbar Area CSS
** - Main Banner Area CSS
** - Featured Boxes Area CSS
** - About Area CSS
** - Services Area CSS
** - Services Details Area CSS
** - Why Choose Us Area CSS
** - Overview Area CSS
** - Fun Facts Area CSS
** - Projects Area CSS
** - Projects Details Area CSS
** - Features Area CSS
** - Team Area CSS
** - Solution Area CSS
** - Feedback Area CSS
** - Pricing Area CSS
** - Partner Area CSS
** - Blog Area CSS
** - Blog Details Area CSS
** - Subscribe Area CSS
** - Page Title Area CSS
** - Pagination Area CSS
** - Sidebar Area CSS
** - 404 Error Area CSS
** - Shop Area CSS
** - Product Details Area CSS
** - Cart Area CSS
** - Checkout Area CSS
** - FAQ Area CSS
** - Contact Area CSS
** - Footer Area CSS
** - Go Top CSS
*/
/*================================================
Default CSS
=================================================*/
:root {
  --mainColor: #0000ff;
  --optionalColor: #fa7070;
}

body {
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-family: "Overpass", sans-serif;
}

img {
  max-width: 100%;
  height: auto;
}

button {
  outline: 0 !important;
}

.d-table {
  width: 100%;
  height: 100%;
}
.d-table-cell {
  vertical-align: middle;
}

.ptb-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

a {
  text-decoration: none;
  transition: 0.5s;
  outline: 0 !important;
  color: #212529;
}
a:hover {
  text-decoration: none;
}

.pt-165 {
  padding-top: 130px !important;
}

p {
  font-size: 16px;
  line-height: 1.8;
  color: #737b9a;
  margin-bottom: 15px;
}
p:last-child {
  margin-bottom: 0;
}

.bg-F4F7FC {
  background-color: #F4F7FC;
}

.bg-fafafa {
  background-color: #fafafa;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
  color: #212529;
}

.navbar-brand h2 {
  font-weight: 800;
  font-size: 30px;
  margin: 0;
}

/*default-btn*/
.default-btn {
  border: none;
  position: relative;
  display: inline-block;
  text-align: center;
  overflow: hidden;
  z-index: 1;
  color: #ffffff;
  text-transform: uppercase;
  transition: 0.5s;
  border-radius: 5px;
  font-weight: 600;
  font-size: 15.5px;
  padding-left: 35px;
  padding-right: 35px;
  padding-top: 17px;
  padding-bottom: 13px;
}
.default-btn span {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: var(--optionalColor);
  transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
  transform: translate(-50%, -50%);
  z-index: -1;
  border-radius: 5px;
}
.default-btn:hover, .default-btn:focus {
  color: #ffffff;
}
.default-btn:hover span, .default-btn:focus span {
  width: 225%;
  height: 562.5px;
}

/*section-title*/
.section-title {
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 55px;
}
.section-title .sub-title {
  display: block;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-size: 15px;
  font-weight: 600;
}
.section-title h2 {
  max-width: 560px;
  font-weight: 700;
  font-size: 40px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
}
.section-title p {
  margin-top: 12px;
  margin-bottom: 0;
}

/*form-control*/
.form-control {
  height: 50px;
  border: 1px solid #eeeeee;
  background-color: transparent;
  border-radius: 0;
  transition: 0.5s;
  color: #212529;
  line-height: initial;
  padding-left: 13px;
  font-size: 16px;
}
.form-control:hover, .form-control:focus {
  box-shadow: unset;
}
.form-control::-moz-placeholder {
  color: #999999;
}
.form-control::placeholder {
  color: #999999;
}
.form-control:focus {
  box-shadow: unset;
}

textarea.form-control {
  padding-top: 13px;
}

/*================================================
Preloader Area CSS
=================================================*/
.preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 99999;
  background: transparent;
  top: 0;
  left: 0;
}
.preloader .loader {
  position: absolute;
  top: 43%;
  left: 0;
  right: 0;
  transform: translateY(-43%);
  text-align: center;
  margin: 0 auto;
  width: 50px;
  height: 50px;
  transition: 0.5s;
}
.preloader .loader .box {
  width: 100%;
  height: 100%;
  background: #ffffff;
  animation: animate 0.5s linear infinite;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 3px;
}
.preloader .loader .shadow {
  width: 100%;
  height: 5px;
  background: #000000;
  opacity: 0.1;
  position: absolute;
  top: 59px;
  left: 0;
  border-radius: 50%;
  animation: shadow 0.5s linear infinite;
}
.preloader::before, .preloader::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 60%;
  height: 100%;
  z-index: -1;
  transition: 0.9s;
}
.preloader::after {
  left: auto;
  right: 0;
}
.preloader.preloader-deactivate {
  visibility: hidden;
}
.preloader.preloader-deactivate::after, .preloader.preloader-deactivate::before {
  width: 0;
}
.preloader.preloader-deactivate .loader {
  opacity: 0;
  visibility: hidden;
}

@keyframes loader {
  0% {
    left: -100px;
  }
  100% {
    left: 110%;
  }
}
@keyframes animate {
  17% {
    border-bottom-right-radius: 3px;
  }
  25% {
    transform: translateY(9px) rotate(22.5deg);
  }
  50% {
    transform: translateY(18px) scale(1, 0.9) rotate(45deg);
    border-bottom-right-radius: 40px;
  }
  75% {
    transform: translateY(9px) rotate(67.5deg);
  }
  100% {
    transform: translateY(0) rotate(90deg);
  }
}
@keyframes shadow {
  50% {
    transform: scale(1.2, 1);
  }
}
/*================================================
Navbar Area CSS
=================================================*/
.dropdown-toggle::after {
  margin-left: 0;
  vertical-align: 0;
  font-size: 10px;
  content: "\f078";
  margin-left: 5px;
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  border-top: 0;
  border-right: 0;
  border-left: 0;
}

.hide-adminbar .navbar-area.is-sticky {
  margin-top: 30px;
}

.aronix-responsive-nav {
  display: none;
}

.aronix-nav {
  background-color: transparent;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-right: 0;
  padding-left: 0;
}
.aronix-nav .navbar {
  padding-right: 0;
  padding-top: 0;
  padding-left: 0;
  padding-bottom: 0;
}
.aronix-nav .navbar ul {
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
}
.aronix-nav .navbar .navbar-nav {
  margin-left: auto;
}
.aronix-nav .navbar .navbar-nav .nav-item {
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 0;
  padding-right: 0;
}
.aronix-nav .navbar .navbar-nav .nav-item a {
  font-size: 16px;
  font-weight: 500;
  color: #5b5b98;
  text-transform: capitalize;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
  padding-bottom: 0;
  margin-left: 15px;
  margin-right: 15px;
}
.aronix-nav .navbar .navbar-nav .nav-item a i {
  font-size: 10px;
  position: relative;
  top: -1px;
  margin-left: 1px;
}
.aronix-nav .navbar .navbar-nav .nav-item:last-child a {
  margin-right: 0;
}
.aronix-nav .navbar .navbar-nav .nav-item:first-child a {
  margin-left: 0;
}
.aronix-nav .navbar .navbar-nav .nav-item .dropdown-menu {
  margin: 0;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
  background: #ffffff;
  position: absolute;
  border: none;
  top: 80px;
  left: 0;
  width: 270px;
  z-index: 99;
  display: block;
  opacity: 0;
  visibility: hidden;
  border-radius: 0;
  transition: all 0.3s ease-in-out;
  border-top: 3px solid;
  padding-top: 15px;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 15px;
}
.aronix-nav .navbar .navbar-nav .nav-item .dropdown-menu li {
  padding: 0;
}
.aronix-nav .navbar .navbar-nav .nav-item .dropdown-menu li a {
  text-transform: capitalize;
  padding: 5px 25px;
  margin: 0;
  color: #696997;
  font-size: 16px;
}
.aronix-nav .navbar .navbar-nav .nav-item .dropdown-menu li a:hover, .aronix-nav .navbar .navbar-nav .nav-item .dropdown-menu li a:focus, .aronix-nav .navbar .navbar-nav .nav-item .dropdown-menu li a.active {
  background-color: transparent !important;
}
.aronix-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu {
  left: -100%;
  top: 0;
  opacity: 0;
  visibility: hidden;
}
.aronix-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a {
  color: #696997;
}
.aronix-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu {
  left: -245px;
  top: 0;
  opacity: 0;
  visibility: hidden;
}
.aronix-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: #696997;
  text-transform: capitalize;
}
.aronix-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu {
  left: -245px;
  top: 0;
  opacity: 0;
  visibility: hidden;
}
.aronix-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: #696997;
  text-transform: capitalize;
}
.aronix-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu {
  left: 195px;
  top: 0;
  opacity: 0;
  visibility: hidden;
}
.aronix-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: #696997;
  text-transform: capitalize;
}
.aronix-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu {
  left: 195px;
  top: 0;
  opacity: 0;
  visibility: hidden;
}
.aronix-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: #696997;
  text-transform: capitalize;
}
.aronix-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu {
  left: 195px;
  top: 0;
  opacity: 0;
  visibility: hidden;
}
.aronix-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: #696997;
  text-transform: capitalize;
}
.aronix-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: -15px;
}
.aronix-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: -15px;
}
.aronix-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: -15px;
}
.aronix-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: -15px;
}
.aronix-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: -15px;
}
.aronix-nav .navbar .navbar-nav .nav-item .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: -15px;
}
.aronix-nav .navbar .navbar-nav .nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: 100%;
}
.aronix-nav .navbar .others-options {
  margin-left: 30px;
}
.aronix-nav .navbar .others-options .option-item {
  color: #5b5b98;
  display: inline-block;
  position: relative;
  line-height: 1;
}
.aronix-nav .navbar .others-options .option-item .search-btn {
  cursor: pointer;
  transition: 0.5s;
  color: #5b5b98;
  font-size: 20px;
  font-weight: 600;
}
.aronix-nav .navbar .others-options .option-item .close-btn {
  cursor: pointer;
  display: none;
  transition: 0.5s;
  width: 20px;
  color: #5b5b98;
  font-size: 18px;
}
.aronix-nav .navbar .others-options .option-item .close-btn.active {
  display: block;
}
.aronix-nav .navbar .others-options .burger-menu {
  width: 35px;
  height: auto;
  background-color: transparent;
  margin-left: 20px;
  cursor: pointer;
  display: inline-block;
  position: relative;
  top: 1px;
}
.aronix-nav .navbar .others-options .burger-menu span {
  display: block;
  width: 35px;
  height: 3px;
  background: #5b5b98;
  transition: 0.5s;
  border-radius: 30px;
  margin-left: auto;
  margin-bottom: 4px;
}
.aronix-nav .navbar .others-options .burger-menu span:nth-child(3) {
  margin-bottom: 0;
  width: 28px;
  margin-left: auto;
}
.aronix-nav .navbar .others-options .burger-menu:hover span {
  background: #212529;
}
.aronix-nav .navbar .others-options .burger-menu:hover span:nth-child(3) {
  width: 35px;
}

.top-header {
  background-color: var(--mainColor) !important;
  padding-top: 10px;
  padding-bottom: 10px;
}

.top-header-social {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
.top-header-social li {
  display: inline-block;
  margin-right: 5px;
}
.top-header-social li a {
  display: block;
  font-size: 20px;
  color: #ffffff !important;
}
.top-header-social li a:hover {
  color: #ffffff !important;
  transform: translateY(-2px);
}
.top-header-social li a i {
  font-size: 20px;
}
.top-header-social li:last-child {
  margin-right: 0;
}

.top-header-contact-info {
  padding-left: 0;
  margin-bottom: 0;
  text-align: right;
  list-style-type: none;
}
.top-header-contact-info li {
  display: inline-block;
  margin-right: 10px;
  color: #ffffff !important;
  font-size: 14px;
  position: relative;
  padding-left: 24px;
}
.top-header-contact-info li i {
  position: absolute;
  left: 0;
  top: 1px;
  font-size: 18px;
  color: #ffffff !important;
}
.top-header-contact-info li a {
  display: inline-block;
  font-weight: 600;
  color: #ffffff !important;
}
.top-header-contact-info li:first-child {
  margin-left: 0;
}

.header-area {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 999;
  width: 100%;
  height: auto;
}

.navbar-area {
  background-color: transparent;
  transition: 0.5s;
}
.navbar-area.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
  background: #ffffff !important;
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  transition: 0.5s;
}

.navbar-area-two {
  position: absolute;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: auto;
}

.search-overlay {
  display: none;
}
.search-overlay.search-popup {
  position: absolute;
  top: 100%;
  width: 300px;
  right: 0;
  background: #ffffff;
  z-index: 2;
  padding: 20px;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
  margin-top: 25px;
}
.search-overlay.search-popup .search-form {
  position: relative;
}
.search-overlay.search-popup .search-form .search-input {
  display: block;
  width: 100%;
  height: 50px;
  line-height: initial;
  border: 1px solid #eeeeee;
  color: #212529;
  outline: 0;
  transition: 0.5s;
  padding-top: 4px;
  padding-left: 10px;
}
.search-overlay.search-popup .search-form .search-button {
  position: absolute;
  right: 0;
  top: 0;
  height: 50px;
  background: transparent;
  border: none;
  width: 50px;
  outline: 0;
  color: #737b9a;
  transition: 0.5s;
  padding: 0;
}

.sidebar-modal {
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  overflow: hidden;
}
.sidebar-modal .sidebar-modal-inner {
  position: absolute;
  right: -100%;
  top: 0;
  width: 30%;
  overflow-y: scroll;
  height: 100%;
  background-color: #ffffff;
  transition: 0.7s;
  z-index: 1;
  padding-top: 80px;
  padding-bottom: 40px;
  padding-left: 40px;
  padding-right: 40px;
}
.sidebar-modal .sidebar-modal-inner .close-btn {
  display: inline-block;
  position: absolute;
  right: 35px;
  top: 30px;
  font-size: 20px;
  transition: 0.5s;
  color: #212529;
  opacity: 0.66;
  cursor: pointer;
}
.sidebar-modal .sidebar-modal-inner .close-btn:hover {
  opacity: 1;
}
.sidebar-modal .sidebar-about-area {
  margin-bottom: 40px;
}
.sidebar-modal .sidebar-about-area .title h2 {
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 700;
}
.sidebar-modal .sidebar-about-area .title p {
  margin-top: 15px;
  font-size: 15px;
}
.sidebar-modal .sidebar-instagram-feed {
  margin-bottom: 40px;
}
.sidebar-modal .sidebar-instagram-feed h2 {
  margin-bottom: 25px;
  font-size: 24px;
  font-weight: 700;
}
.sidebar-modal .sidebar-instagram-feed ul {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  list-style-type: none;
  margin-left: -5px;
  margin-right: -5px;
  margin-bottom: 0;
  margin-top: -10px;
}
.sidebar-modal .sidebar-instagram-feed ul li {
  flex: 0 0 25%;
  max-width: 25%;
  padding-left: 5px;
  padding-right: 5px;
  padding-top: 10px;
}
.sidebar-modal .sidebar-instagram-feed ul li a {
  display: block;
  position: relative;
}
.sidebar-modal .sidebar-instagram-feed ul li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
}
.sidebar-modal .sidebar-instagram-feed ul li a:hover::before {
  opacity: 0.5;
  visibility: visible;
}
.sidebar-modal .sidebar-contact-area .contact-info {
  text-align: center;
}
.sidebar-modal .sidebar-contact-area .contact-info .contact-info-content h2 {
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 700;
}
.sidebar-modal .sidebar-contact-area .contact-info .contact-info-content h2 a {
  display: inline-block;
}
.sidebar-modal .sidebar-contact-area .contact-info .contact-info-content h2 a:hover {
  color: #212529;
}
.sidebar-modal .sidebar-contact-area .contact-info .contact-info-content h2 a:not(:first-child) {
  color: #212529;
}
.sidebar-modal .sidebar-contact-area .contact-info .contact-info-content h2 span {
  display: block;
  color: #737b9a;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 600;
}
.sidebar-modal .sidebar-contact-area .contact-info .contact-info-content .social {
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
  margin-top: 20px;
}
.sidebar-modal .sidebar-contact-area .contact-info .contact-info-content .social li {
  display: inline-block;
  margin: 0 1px;
  padding-left: 0;
}
.sidebar-modal .sidebar-contact-area .contact-info .contact-info-content .social li a {
  width: 35px;
  height: 35px;
  line-height: 34px;
  border: 1px solid #dadada;
  border-radius: 50%;
  color: #aba5a5;
  display: block;
}
.sidebar-modal .sidebar-contact-area .contact-info .contact-info-content .social li a i {
  font-size: 14px;
}
.sidebar-modal .sidebar-contact-area .contact-info .contact-info-content .social li a:hover {
  color: #ffffff;
}
.sidebar-modal.active {
  opacity: 1;
  visibility: visible;
}
.sidebar-modal.active .sidebar-modal-inner {
  right: 0;
}

.navbar-brand img {
  max-width: 120px;
}

@media only screen and (max-width: 991px) {
  .navbar-area {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .navbar-area.is-sticky {
    border-bottom: none;
    box-shadow: 0 7px 13px 0 rgba(0, 0, 0, 0.1);
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .aronix-responsive-nav {
    display: block;
  }
  .aronix-responsive-nav .aronix-responsive-menu {
    position: relative;
  }
  .aronix-responsive-nav .aronix-responsive-menu.mean-container .mean-nav ul {
    font-size: 14px;
  }
  .aronix-responsive-nav .aronix-responsive-menu.mean-container .mean-nav ul li a {
    font-size: 15px;
  }
  .aronix-responsive-nav .aronix-responsive-menu.mean-container .mean-nav ul li li a {
    font-size: 15px;
  }
  .aronix-responsive-nav .aronix-responsive-menu.mean-container .navbar-nav {
    overflow-y: scroll;
    height: 336px;
    box-shadow: 0 7px 13px 0 rgba(0, 0, 0, 0.1);
  }
  .aronix-responsive-nav .aronix-responsive-menu.mean-container .others-options {
    display: none;
  }
  .aronix-responsive-nav .mean-container a.meanmenu-reveal {
    color: #212529;
  }
  .aronix-responsive-nav .mean-container a.meanmenu-reveal span {
    background: #212529;
  }
  .aronix-responsive-nav .logo {
    position: relative;
    width: 50%;
    z-index: 999;
  }
  .aronix-nav {
    display: none;
  }
}
/*================================================
Main Banner Area CSS
=================================================*/
.banner-image-pr {
  position: initial !important;
}

.main-banner {
  overflow: hidden;
  position: relative;
  z-index: 1;
  background-color: #f5f5fc;
  padding-top: 220px;
}

.main-banner-content {
  text-align: center;
  max-width: 790px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 70px;
}
.main-banner-content .sub-title {
  display: block;
  text-transform: uppercase;
  margin-bottom: 15px;
  font-size: 15px;
  font-weight: 600;
}
.main-banner-content h1 {
  line-height: 1.2;
  margin-bottom: 0;
  font-weight: 700;
  font-size: 60px;
}
.main-banner-content p {
  font-size: 17px;
  margin-top: 15px;
  margin-bottom: 0;
}
.main-banner-content .btn-box {
  margin-top: 25px;
}
.main-banner-content form {
  position: relative;
  margin-top: 30px;
}
.main-banner-content form .input-newsletter {
  display: block;
  width: 100%;
  background-color: #ffffff;
  border: none;
  height: 65px;
  padding-left: 25px;
  border-radius: 70px;
  padding-top: 5px;
  outline: 0;
  color: #212529;
  box-shadow: 0px 5px 28.5px 1.5px rgba(149, 152, 200, 0.2) !important;
}
.main-banner-content form .input-newsletter::-moz-placeholder {
  color: #737b9a;
}
.main-banner-content form .input-newsletter::placeholder {
  color: #737b9a;
}
.main-banner-content form button {
  position: absolute;
  right: 5px;
  top: 5px;
  color: #ffffff;
  border: none;
  height: 55px;
  padding: 0 30px;
  border-radius: 70px;
  transition: 0.5s;
  line-height: 60px;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 700;
}
.main-banner-content form button:hover {
  background-color: var(--optionalColor);
  color: #ffffff;
}

.main-banner-image {
  text-align: center;
}

.banner-section {
  overflow: hidden;
  position: relative;
  background-color: #f5f5fc;
  z-index: 1;
  height: 960px;
}

.banner-content {
  margin-top: -20px;
}
.banner-content .sub-title {
  display: block;
  text-transform: uppercase;
  margin-bottom: 15px;
  font-size: 15px;
  font-weight: 600;
}
.banner-content h1 {
  line-height: 1.2;
  margin-bottom: 0;
  font-weight: 700;
  font-size: 59px;
}
.banner-content p {
  font-size: 17px;
  margin-top: 15px;
  margin-bottom: 0;
}
.banner-content form {
  max-width: 580px;
  position: relative;
  margin-top: 30px;
}
.banner-content form .input-newsletter {
  display: block;
  width: 100%;
  background-color: #ffffff;
  border: none;
  height: 65px;
  padding-left: 25px;
  border-radius: 5px;
  padding-top: 5px;
  outline: 0;
  color: #212529;
  box-shadow: 0px 5px 28.5px 1.5px rgba(149, 152, 200, 0.2) !important;
}
.banner-content form .input-newsletter::-moz-placeholder {
  color: #737b9a;
}
.banner-content form .input-newsletter::placeholder {
  color: #737b9a;
}
.banner-content form button {
  position: absolute;
  right: 5px;
  top: 5px;
  color: #ffffff;
  border: none;
  height: 55px;
  padding: 0 30px;
  border-radius: 5px;
  transition: 0.5s;
  line-height: 60px;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 700;
}
.banner-content form button:hover {
  background-color: var(--optionalColor);
  color: #ffffff;
}

.banner-image {
  position: relative;
  text-align: center;
}
.banner-image img:nth-child(1) {
  position: absolute;
  z-index: 1;
  bottom: -220px;
  left: 65px;
  right: 0;
  margin: 0 auto;
}
.banner-image img:nth-child(2) {
  position: relative;
  left: 35px;
  top: 185px;
  z-index: -1;
}

.cloud-shape {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  width: 100%;
  height: auto;
  animation: moveBounce 3s linear infinite;
}

.cloud-icon {
  position: absolute;
  right: 15%;
  top: 20%;
  transform: translateY(-20%) translateX(-15%);
  z-index: -1;
}

.cloud-icon1 {
  position: absolute;
  z-index: -1;
  top: 12%;
  right: 36.5%;
  animation: moveLeftBounce 3s linear infinite;
}

.cloud-icon2 {
  position: absolute;
  z-index: -1;
  top: 36%;
  right: 20%;
  animation: moveLeftBounce 5s linear infinite;
}

.cloud-icon3 {
  position: absolute;
  z-index: -1;
  top: 48%;
  right: 40%;
  animation: moveLeftBounce 3s linear infinite;
}

.hero-banner {
  overflow: hidden;
  height: 900px;
  position: relative;
  z-index: 1;
}
.hero-banner.banner-bg1 {
  background: transparent url(../../assets/img/banner-bg1.jpg) right top no-repeat;
  border-bottom: 1px solid #f6f7f9;
}
.hero-banner.banner-bg2 {
  background: transparent url(../../assets/img/banner-bg2.jpg) left top no-repeat;
  border-bottom: 1px solid #f6f7f9;
}

.hero-banner-content {
  max-width: 540px;
  margin-top: 85px;
  margin-left: auto;
}
.hero-banner-content .sub-title {
  display: block;
  text-transform: uppercase;
  margin-bottom: 15px;
  font-size: 15px;
  font-weight: 600;
}
.hero-banner-content h1 {
  line-height: 1.2;
  margin-bottom: 0;
  font-weight: 700;
  font-size: 59px;
}
.hero-banner-content p {
  font-size: 17px;
  margin-top: 15px;
  margin-bottom: 0;
}
.hero-banner-content .btn-box {
  margin-top: 25px;
}
.hero-banner-content form {
  position: relative;
  margin-top: 30px;
}
.hero-banner-content form .input-newsletter {
  display: block;
  width: 100%;
  background-color: #ffffff;
  border: none;
  height: 65px;
  padding-left: 25px;
  border-radius: 70px;
  padding-top: 5px;
  outline: 0;
  color: #212529;
  box-shadow: 0px 5px 28.5px 1.5px rgba(149, 152, 200, 0.2) !important;
}
.hero-banner-content form .input-newsletter::-moz-placeholder {
  color: #737b9a;
}
.hero-banner-content form .input-newsletter::placeholder {
  color: #737b9a;
}
.hero-banner-content form button {
  position: absolute;
  right: 5px;
  top: 5px;
  color: #ffffff;
  border: none;
  height: 55px;
  padding: 0 30px;
  border-radius: 70px;
  transition: 0.5s;
  line-height: 60px;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 700;
}
.hero-banner-content form button:hover {
  background-color: var(--optionalColor);
  color: #ffffff;
}

.hero-banner-image {
  position: relative;
  text-align: center;
  margin-left: 30px;
  margin-right: 50px;
  margin-top: 85px;
}
.hero-banner-image img:nth-child(2) {
  position: absolute;
  left: 0;
  bottom: 0;
}
.hero-banner-image img:nth-child(3) {
  position: absolute;
  right: 0;
  bottom: 0;
}

.hero-main-banner-content {
  margin-top: 85px;
}
.hero-main-banner-content .sub-title {
  display: block;
  text-transform: uppercase;
  margin-bottom: 15px;
  font-size: 15px;
  font-weight: 600;
}
.hero-main-banner-content h1 {
  line-height: 1.2;
  margin-bottom: 0;
  font-weight: 700;
  font-size: 59px;
}
.hero-main-banner-content p {
  font-size: 17px;
  margin-top: 15px;
  margin-bottom: 0;
}
.hero-main-banner-content .btn-box {
  margin-top: 25px;
}
.hero-main-banner-content form {
  position: relative;
  margin-top: 30px;
}
.hero-main-banner-content form .input-newsletter {
  display: block;
  width: 100%;
  background-color: #ffffff;
  border: none;
  height: 65px;
  padding-left: 25px;
  border-radius: 70px;
  padding-top: 5px;
  outline: 0;
  color: #212529;
  box-shadow: 0px 5px 28.5px 1.5px rgba(149, 152, 200, 0.2) !important;
}
.hero-main-banner-content form .input-newsletter::-moz-placeholder {
  color: #737b9a;
}
.hero-main-banner-content form .input-newsletter::placeholder {
  color: #737b9a;
}
.hero-main-banner-content form button {
  position: absolute;
  right: 5px;
  top: 5px;
  color: #ffffff;
  border: none;
  height: 55px;
  padding: 0 30px;
  border-radius: 70px;
  transition: 0.5s;
  line-height: 60px;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 700;
}
.hero-main-banner-content form button:hover {
  background-color: var(--optionalColor);
  color: #ffffff;
}

.hero-main-banner-image {
  position: relative;
  right: -20px;
  margin-top: 85px;
}
.hero-main-banner-image img {
  position: absolute;
}
.hero-main-banner-image img:nth-child(1) {
  z-index: 3;
  top: -130px;
  left: -18px;
}
.hero-main-banner-image img:nth-child(2) {
  right: 145px;
  top: -287px;
}
.hero-main-banner-image img:nth-child(3) {
  left: 25px;
  top: -20px;
}
.hero-main-banner-image img:nth-child(4) {
  right: 12%;
  top: 118px;
  z-index: 1;
}
.hero-main-banner-image img:nth-child(5) {
  left: 28%;
  top: -120px;
  z-index: 2;
}
.hero-main-banner-image img:nth-child(6) {
  right: 35%;
  z-index: 1;
  top: -150px;
}
.hero-main-banner-image img:nth-child(7) {
  right: 20px;
  top: -110px;
}
.hero-main-banner-image img:nth-child(8) {
  right: 25px;
  top: -140px;
}
.hero-main-banner-image img:nth-child(9) {
  right: 30%;
  z-index: 1;
  top: -35px;
}
.hero-main-banner-image img:nth-child(10) {
  left: 37%;
  top: -28px;
  z-index: 1;
}
.hero-main-banner-image img:nth-child(11) {
  left: 37%;
  top: -160px;
  z-index: 1;
}
.hero-main-banner-image img:nth-child(12) {
  left: 90px;
  top: -110px;
}
.hero-main-banner-image img:nth-child(13) {
  left: 56%;
  top: -25px;
  z-index: 2;
}
.hero-main-banner-image img:nth-child(14) {
  right: 105px;
  top: -28px;
}
.hero-main-banner-image img:last-child {
  display: none;
}

.shape-img1 {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.shape-img2 {
  position: absolute;
  left: 5%;
  top: 10%;
  z-index: -1;
  animation-name: rotateMe;
  animation-duration: 20s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

.shape-img3 {
  position: absolute;
  right: 5%;
  bottom: 5%;
  z-index: -1;
  animation-name: rotateMe;
  animation-duration: 15s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

.shape-img4 {
  position: absolute;
  right: 8%;
  top: 8%;
  z-index: -1;
  animation: animationFramesTwo 20s infinite linear;
}

.shape-img5 {
  position: absolute;
  left: 2%;
  bottom: 25%;
  z-index: -1;
  animation: animationFramesOne 20s infinite linear;
}

.shape-img6 {
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  margin: 0 auto;
  z-index: -1;
  bottom: 0;
  animation: rotate3d 4s linear infinite;
}
.shape-img6 img {
  opacity: 0.2;
}

.shape-img7 {
  position: absolute;
  left: 10%;
  top: 35%;
  z-index: -1;
  animation: moveBounce 5s linear infinite;
}
.shape-img7 img {
  opacity: 0.3;
}

.shape-img8 {
  position: absolute;
  top: 12%;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  z-index: -1;
  animation: moveLeftBounce 5s linear infinite;
}
.shape-img8 img {
  opacity: 0.4;
}

.shape-img9 {
  position: absolute;
  left: 20%;
  top: 15%;
  z-index: -1;
  animation: moveScale 3s linear infinite;
}
.shape-img9 img {
  opacity: 0.4;
}

.shape-img10 {
  position: absolute;
  left: 75%;
  z-index: -1;
  top: 40%;
  animation: animationFramesOne 20s infinite linear;
}

@keyframes rotateMe {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes animationFramesOne {
  0% {
    transform: translate(0px, 0px) rotate(0deg);
  }
  20% {
    transform: translate(73px, -1px) rotate(36deg);
  }
  40% {
    transform: translate(141px, 72px) rotate(72deg);
  }
  60% {
    transform: translate(83px, 122px) rotate(108deg);
  }
  80% {
    transform: translate(-40px, 72px) rotate(144deg);
  }
  100% {
    transform: translate(0px, 0px) rotate(0deg);
  }
}
@keyframes animationFramesTwo {
  0% {
    transform: translate(0px, 0px) rotate(0deg);
  }
  20% {
    transform: translate(-73px, 1px) rotate(-36deg);
  }
  40% {
    transform: translate(-141px, -72px) rotate(-72deg);
  }
  60% {
    transform: translate(-83px, -122px) rotate(-108deg);
  }
  80% {
    transform: translate(40px, -72px) rotate(-144deg);
  }
  100% {
    transform: translate(0px, 0px) rotate(0deg);
  }
}
@keyframes rotate3d {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}
@keyframes moveScale {
  0% {
    transform: scale(0.6);
  }
  50% {
    transform: scale(0.8);
  }
  100% {
    transform: scale(0.6);
  }
}
@keyframes moveLeftBounce {
  0% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(20px);
  }
  100% {
    transform: translateX(0px);
  }
}
@keyframes moveBounce {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(20px);
  }
  100% {
    transform: translateY(0px);
  }
}
/*================================================
Featured Services Area CSS
=================================================*/
.featured-services-area {
  padding-bottom: 70px;
}
.featured-services-area.ptb-100.pt-0 {
  padding-top: 40px !important;
}

.single-featured-box {
  margin-bottom: 30px;
  text-align: center;
  background-color: #f9f9fc;
  position: relative;
  padding: 115px 25px 35px 25px;
  overflow: hidden;
  transition: 0.5s;
}
.single-featured-box .icon {
  color: var(--optionalColor);
  position: absolute;
  top: 33px;
  left: 50%;
  transform: translate(-50%, 0);
  font-size: 55px;
  margin-top: -12px;
}
.single-featured-box .icon.color-fb7756 {
  color: #fb7756;
}
.single-featured-box .icon.color-facd60 {
  color: #facd60;
}
.single-featured-box .icon.color-1ac0c6 {
  color: #1ac0c6;
}
.single-featured-box h3 {
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 700;
}
.single-featured-box p {
  margin-top: 13px;
  margin-bottom: 0;
}
.single-featured-box .default-btn {
  margin-top: 20px;
  background-color: transparent;
  border: 1px solid;
  font-size: 15px;
  padding-top: 14px;
  padding-bottom: 10px;
}
.single-featured-box .default-btn:hover {
  box-shadow: 0 5px 28.5px 1.5px rgba(0, 0, 255, 0.2);
}
.single-featured-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
  background-color: #ffffff;
}
.single-featured-box:hover .icon {
  animation: iconTop 0.4s ease-in-out;
}
.single-featured-box:hover .default-btn {
  color: #ffffff;
}

@keyframes iconTop {
  0% {
    transform: translate(-50%, 0);
  }
  25% {
    opacity: 0;
    transform: translate(-50%, -70%);
  }
  50% {
    opacity: 0;
    transform: translate(-50%, -40%);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}
/*================================================
About Area CSS
=================================================*/
.about-area {
  position: relative;
  z-index: 1;
}

.about-image {
  text-align: center;
}

.about-content {
  padding-left: 30px;
}
.about-content .sub-title {
  display: block;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-size: 15px;
  font-weight: 600;
}
.about-content h2 {
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 40px;
}
.about-content .features-list {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
  margin-top: 10px;
  margin-left: -10px;
  margin-right: -10px;
}
.about-content .features-list li {
  flex: 0 0 50%;
  max-width: 50%;
  margin-top: 10px;
  padding-left: 10px;
  padding-right: 10px;
}
.about-content .features-list li span {
  display: block;
  background-color: #F8FAFF;
  border-radius: 5px;
  padding: 13px 12px 8px 40px;
  z-index: 1;
  position: relative;
  transition: 0.5s;
  font-weight: 600;
  font-size: 15.5px;
}
.about-content .features-list li span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  border-radius: 5px;
  z-index: -1;
  transition: 0.5s;
}
.about-content .features-list li span i {
  font-size: 12px;
  color: #ffffff;
  width: 23px;
  height: 23px;
  line-height: 23px;
  transition: 0.5s;
  text-align: center;
  border-radius: 3px;
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
}
.about-content .features-list li span:hover {
  color: #ffffff;
}
.about-content .features-list li span:hover::before {
  width: 100%;
}
.about-content .features-list li span:hover i {
  background-color: var(--optionalColor);
}

.about-inner-area {
  margin-top: 100px;
}

.about-text h3 {
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eeeeee;
  font-size: 24px;
  font-weight: 700;
}
.about-text h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 50px;
  height: 1px;
}
.about-text .features-list {
  padding-left: 0;
  list-style-type: none;
  margin-top: 15px;
  margin-bottom: 0;
}
.about-text .features-list li {
  position: relative;
  margin-bottom: 12px;
  color: #212529;
  padding-top: 3px;
  padding-left: 30px;
}
.about-text .features-list li i {
  font-size: 8px;
  color: #212529;
  background-color: #eaeaf2;
  width: 20px;
  height: 20px;
  line-height: 20px;
  border-radius: 50%;
  transition: 0.5s;
  text-align: center;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.about-text .features-list li:last-child {
  margin-bottom: 0;
}
.about-text .features-list li:hover i {
  color: #ffffff;
}

/*================================================
Services Area CSS
=================================================*/
.services-area {
  padding-bottom: 70px;
  position: relative;
  z-index: 1;
}

.single-services-box {
  margin-bottom: 30px;
  background-color: #ffffff;
  padding: 40px 30px;
  position: relative;
  transition: 0.5s;
  z-index: 1;
}
.single-services-box .icon {
  width: 75px;
  height: 75px;
  text-align: center;
  line-height: 75px;
  background-color: rgba(250, 112, 112, 0.1);
  border-radius: 50%;
  color: var(--optionalColor);
  transition: 0.5s;
  font-size: 35px;
  margin-bottom: 25px;
}
.single-services-box .icon.bg-f78acb {
  background-color: rgba(247, 138, 203, 0.2);
  color: #f78acb;
}
.single-services-box .icon.bg-cdf1d8 {
  background: rgba(68, 206, 111, 0.2);
  color: #44ce6f;
}
.single-services-box .icon.bg-c679e3 {
  color: #c679e3;
  background: rgba(198, 121, 227, 0.2);
}
.single-services-box .icon.bg-eb6b3d {
  color: #eb6b3d;
  background: rgba(235, 107, 61, 0.2);
}
.single-services-box .icon.bg-00aeff {
  background: rgba(0, 174, 255, 0.2);
  color: #00aeff;
}
.single-services-box h3 {
  transition: 0.4s;
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 700;
}
.single-services-box h3 a {
  display: inline-block;
}
.single-services-box p {
  transition: 0.4s;
  margin-top: 13px;
  margin-bottom: 0;
}
.single-services-box .read-more-btn {
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 30px;
  opacity: 0;
  visibility: hidden;
  transition: 0.6s;
  font-size: 16px;
  font-weight: 400;
}
.single-services-box .read-more-btn::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 1px;
  width: 0;
  transition: 0.5s;
  height: 1px;
}
.single-services-box .read-more-btn i {
  font-size: 14px;
}
.single-services-box .read-more-btn:hover::before {
  width: 100%;
}
.single-services-box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  z-index: -1;
  transition: 0.5s;
}
.single-services-box:hover {
  transform: translateY(-10px);
}
.single-services-box:hover::before {
  width: 100%;
}
.single-services-box:hover h3 {
  color: #ffffff;
  transform: translateY(-15px);
}
.single-services-box:hover h3 a {
  color: #ffffff;
}
.single-services-box:hover p {
  transform: translateY(-15px);
  color: #ffffff;
}
.single-services-box:hover .icon {
  transform: translateY(-15px) rotate(360deg);
  background-color: #ffffff;
}
.single-services-box:hover .read-more-btn {
  opacity: 1;
  visibility: visible;
  color: #ffffff;
  bottom: 15px;
}
.single-services-box:hover .read-more-btn::before {
  background-color: #ffffff;
}

/*================================================
Services Details Area CSS
=================================================*/
.services-details-overview {
  align-items: center !important;
  display: flex;
  flex-wrap: wrap;
  margin-right: -25px;
  margin-left: -25px;
  margin-bottom: 60px;
}
.services-details-overview:last-child {
  margin-bottom: 0;
}
.services-details-overview .services-details-desc {
  flex: 0 0 50%;
  max-width: 50%;
  padding-right: 25px;
  padding-left: 25px;
}
.services-details-overview .services-details-desc h3 {
  margin-bottom: 15px;
  font-size: 24px;
  font-weight: 700;
}
.services-details-overview .services-details-desc .features-text {
  margin-top: 25px;
}
.services-details-overview .services-details-desc .features-text h4 {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 600;
}
.services-details-overview .services-details-desc .features-text h4 i {
  font-size: 16px;
  margin-right: 4px;
}
.services-details-overview .services-details-desc .services-details-accordion {
  margin-top: 25px;
}
.services-details-overview .services-details-desc .services-details-accordion .accordion {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
}
.services-details-overview .services-details-desc .services-details-accordion .accordion .accordion-item {
  display: block;
  box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  background: #ffffff;
  margin-bottom: 10px;
}
.services-details-overview .services-details-desc .services-details-accordion .accordion .accordion-item:last-child {
  margin-bottom: 0;
}
.services-details-overview .services-details-desc .services-details-accordion .accordion .accordion-item:nth-child(2) .accordion-title i, .services-details-overview .services-details-desc .services-details-accordion .accordion .accordion-item:nth-child(4) .accordion-title i, .services-details-overview .services-details-desc .services-details-accordion .accordion .accordion-item:nth-child(6) .accordion-title i, .services-details-overview .services-details-desc .services-details-accordion .accordion .accordion-item:nth-child(8) .accordion-title i {
  background: var(--optionalColor);
}
.services-details-overview .services-details-desc .services-details-accordion .accordion .accordion-title {
  padding: 15px 20px 10px 51px;
  color: #212529;
  position: relative;
  border-bottom: 1px solid transparent;
  margin-bottom: -1px;
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
}
.services-details-overview .services-details-desc .services-details-accordion .accordion .accordion-title i {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  text-align: center;
  height: 100%;
  color: #ffffff;
}
.services-details-overview .services-details-desc .services-details-accordion .accordion .accordion-title i::before {
  position: absolute;
  left: 0;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  font-size: 13px;
}
.services-details-overview .services-details-desc .services-details-accordion .accordion .accordion-title.active {
  border-bottom-color: #eeeeee;
}
.services-details-overview .services-details-desc .services-details-accordion .accordion .accordion-title.active i::before {
  content: "\f068";
}
.services-details-overview .services-details-desc .services-details-accordion .accordion .accordion-content {
  display: none;
  position: relative;
  padding: 15px 15px;
}
.services-details-overview .services-details-desc .services-details-accordion .accordion .accordion-content.show {
  display: block;
}
.services-details-overview .services-details-image {
  flex: 0 0 50%;
  max-width: 50%;
  padding-right: 15px;
  padding-left: 15px;
}

/*================================================
Why Choose Us Area CSS
=================================================*/
.why-choose-content {
  padding-right: 30px;
}
.why-choose-content .sub-title {
  display: block;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-size: 15px;
  font-weight: 600;
}
.why-choose-content h2 {
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 40px;
}
.why-choose-content .features-text {
  margin-top: 25px;
}
.why-choose-content .features-text h4 {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 600;
}
.why-choose-content .features-text h4 i {
  font-size: 16px;
  margin-right: 4px;
}

.why-choose-image {
  text-align: center;
}

/*================================================
Overview Area CSS
=================================================*/
.overview-area {
  overflow: hidden;
}

.overview-box {
  align-items: center !important;
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
  margin-right: -15px;
  margin-left: -15px;
  margin-bottom: 100px;
}
.overview-box:last-child {
  margin-bottom: 0;
}
.overview-box .overview-content {
  flex: 0 0 50%;
  max-width: 50%;
  padding-left: 15px;
  padding-right: 15px;
}
.overview-box .overview-content .content {
  padding-right: 30px;
}
.overview-box .overview-content .content .sub-title {
  display: block;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-size: 15px;
  font-weight: 600;
}
.overview-box .overview-content .content h2 {
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 35px;
}
.overview-box .overview-content .content .features-text {
  margin-top: 25px;
}
.overview-box .overview-content .content .features-text h4 {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 600;
}
.overview-box .overview-content .content .features-text h4 i {
  font-size: 16px;
  margin-right: 4px;
}
.overview-box .overview-content .content.right-content {
  padding-left: 30px;
  padding-right: 0;
}
.overview-box .overview-content .content .features-list {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
  margin-top: 10px;
  margin-left: -10px;
  margin-right: -10px;
}
.overview-box .overview-content .content .features-list li {
  flex: 0 0 50%;
  max-width: 50%;
  margin-top: 5px;
  margin-bottom: 10px;
  padding-left: 10px;
  padding-right: 10px;
}
.overview-box .overview-content .content .features-list li span {
  display: block;
  background-color: #F8FAFF;
  border-radius: 5px;
  padding: 13px 12px 8px 40px;
  z-index: 1;
  position: relative;
  transition: 0.5s;
  font-weight: 600;
  font-size: 15.5px;
}
.overview-box .overview-content .content .features-list li span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  border-radius: 5px;
  z-index: -1;
  transition: 0.5s;
}
.overview-box .overview-content .content .features-list li span i {
  font-size: 12px;
  color: #ffffff;
  width: 23px;
  height: 23px;
  line-height: 23px;
  transition: 0.5s;
  text-align: center;
  border-radius: 3px;
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
}
.overview-box .overview-content .content .features-list li span:hover {
  color: #ffffff;
}
.overview-box .overview-content .content .features-list li span:hover::before {
  width: 100%;
}
.overview-box .overview-content .content .features-list li span:hover i {
  background-color: var(--optionalColor);
}
.overview-box .overview-image {
  flex: 0 0 50%;
  max-width: 50%;
  padding-left: 15px;
  padding-right: 15px;
}
.overview-box .overview-image .image {
  text-align: center;
}

.saas-overview .overview-content .content .features-list li span {
  background-color: #ffffff;
}

/*================================================
Fun Facts Area CSS
=================================================*/
.fun-facts-area {
  position: relative;
  z-index: 1;
}
.fun-facts-area::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0.4;
  height: 100%;
  z-index: -1;
  background-image: url(../../assets/img/bg_lines.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.single-fun-facts {
  overflow: hidden;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 30px;
  border: 1px dashed rgba(255, 255, 255, 0.4);
  border-radius: 5px;
  transition: 0.5s;
}
.single-fun-facts h3 {
  position: relative;
  color: #ffffff;
  margin-bottom: 0;
  font-size: 50px;
  font-weight: 700;
}
.single-fun-facts h3 .sign-icon {
  display: inline-block;
  font-size: 18px;
  margin-left: 2px;
}
.single-fun-facts p {
  line-height: initial;
  margin-top: 5px;
  color: #ffffff;
  font-size: 17px;
  font-weight: 600;
}
.single-fun-facts .back-text {
  position: absolute;
  left: 0;
  color: #ffffff;
  right: 0;
  top: -5px;
  z-index: -1;
  opacity: 0.13;
  line-height: initial;
  font-size: 150px;
  font-weight: 700;
  font-style: italic;
}
.single-fun-facts:hover {
  transform: translateY(-10px);
  border-color: #ffffff;
}

/*================================================
Projects Area CSS
=================================================*/
.projects-area {
  padding-bottom: 70px;
  position: relative;
  z-index: 1;
}

.single-projects-box {
  position: relative;
  margin-bottom: 30px;
  overflow: hidden;
}
.single-projects-box .projects-content {
  position: absolute;
  left: 0;
  bottom: 15px;
  background-color: #ffffff;
  height: auto;
  width: 100%;
  padding: 25px 20px 20px;
  transition: transform 0.3s ease, opacity 0.3s;
  max-width: 370px;
  transform: translate3d(-100%, 0, 0);
}
.single-projects-box .projects-content h3 {
  margin-bottom: 0;
  transform: translateX(20px);
  transition: transform 0.3s ease, opacity 0.3s;
  opacity: 0;
  font-size: 24px;
  font-weight: 700;
}
.single-projects-box .projects-content .category {
  display: block;
  margin-top: 8px;
  font-size: 16px;
  color: #737b9a;
  opacity: 0;
  transform: translateX(20px);
  transition: transform 0.4s ease;
}
.single-projects-box .plus-icon a {
  width: 85px;
  height: 85px;
  position: absolute;
  top: 25px;
  right: 25px;
  transform: scale(0);
  transition: all 0.4s ease-out 0s;
  overflow: hidden;
  border-radius: 50%;
}
.single-projects-box .plus-icon a span {
  width: 35px;
  height: 35px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.single-projects-box .plus-icon a span::after, .single-projects-box .plus-icon a span::before {
  position: absolute;
  content: "";
  width: 2px;
  height: 100%;
  background-color: #ffffff;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.single-projects-box .plus-icon a span::after {
  height: 2px;
  width: 100%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.single-projects-box .plus-icon a:hover {
  background-color: var(--optionalColor);
}
.single-projects-box:hover .projects-content {
  transition: transform 0.5s ease;
  transform: translate3d(0, 0, 0);
}
.single-projects-box:hover .projects-content h3 {
  opacity: 1;
  transform: translateX(0);
  transition: transform 0.5s ease 0.5s, opacity 0.5s 0.3s;
}
.single-projects-box:hover .projects-content .category {
  opacity: 1;
  transform: translateX(0);
  transition: transform 0.5s ease 0.6s, opacity 0.5s 0.6s;
}
.single-projects-box:hover .plus-icon a {
  transform: scale(1);
}

.projects-slides.owl-theme .owl-nav.disabled + .owl-dots {
  line-height: 0.01;
  margin-top: 10px;
  margin-bottom: 30px;
}
.projects-slides.owl-theme .owl-dots .owl-dot span {
  width: 14px;
  height: 14px;
  margin: 0 5px;
  background: #D6D6D6;
  display: block;
  transition: 0.5s;
  border-radius: 50%;
}

/*================================================
Projects Details Area CSS
=================================================*/
.project-details-image {
  margin-bottom: 30px;
  overflow: hidden;
  position: relative;
}
.project-details-image img {
  transition: 0.5s;
}
.project-details-image a {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
  width: 75px;
  height: 75px;
  line-height: 75px;
  font-size: 30px;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
  margin-top: 20px;
}
.project-details-image a i.fas.fa-plus {
  position: relative;
  top: 4px;
}
.project-details-image a:hover {
  background-color: var(--optionalColor);
  color: #ffffff;
}
.project-details-image:hover a {
  margin-top: 0;
  opacity: 1;
  visibility: visible;
}
.project-details-image:hover img {
  transform: scale(1.3) rotate(4deg);
}

.projects-details-desc {
  margin-top: 5px;
}
.projects-details-desc h3 {
  margin-bottom: 13px;
  font-size: 24px;
  font-weight: 700;
}
.projects-details-desc .features-text {
  margin-top: 25px;
  margin-bottom: 25px;
}
.projects-details-desc .features-text h4 {
  margin-bottom: 12px;
  font-size: 17px;
  font-weight: 600;
}
.projects-details-desc .features-text h4 i {
  font-size: 16px;
  margin-right: 4px;
}
.projects-details-desc .project-details-info {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
  margin-top: 35px;
}
.projects-details-desc .project-details-info .single-info-box {
  flex: 0 0 20%;
  max-width: 20%;
  padding-left: 15px;
  padding-right: 15px;
}
.projects-details-desc .project-details-info .single-info-box h4 {
  margin-bottom: 10px;
  font-size: 19px;
  font-weight: 700;
}
.projects-details-desc .project-details-info .single-info-box span {
  display: block;
  color: #737b9a;
  font-size: 15px;
}
.projects-details-desc .project-details-info .single-info-box .social {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
.projects-details-desc .project-details-info .single-info-box .social li {
  display: inline-block;
  margin-right: 8px;
}
.projects-details-desc .project-details-info .single-info-box .social li a {
  color: #737b9a;
  display: inline-block;
}
.projects-details-desc .project-details-info .single-info-box .social li a:hover {
  transform: translateY(-5px);
}

/*================================================
Features Area CSS
=================================================*/
.features-area {
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.tab .tabs_item {
  display: none;
}
.tab .tabs_item:first-child {
  display: block;
}

.features-list-tab .tabs {
  padding-left: 0;
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  margin-left: -5px;
  margin-right: -5px;
  margin-bottom: 40px;
}
.features-list-tab .tabs li {
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
  text-align: center;
  padding-right: 5px;
  padding-left: 5px;
}
.features-list-tab .tabs li a {
  display: block;
  border-radius: 2px;
  box-shadow: 0px 10px 40px 0px rgba(107, 125, 179, 0.11);
  padding-right: 18px;
  padding-top: 15px;
  padding-bottom: 18px;
  padding-left: 18px;
  font-size: 17px;
  font-weight: 700;
}
.features-list-tab .tabs li a i {
  transition: 0.5s;
  font-weight: normal;
  font-size: 40px;
}
.features-list-tab .tabs li a.bg-fa7070 i {
  color: #fa7070;
}
.features-list-tab .tabs li a.bg-00aeff i {
  color: #00aeff;
}
.features-list-tab .tabs li a.bg-c679e3 i {
  color: #c679e3;
}
.features-list-tab .tabs li a.bg-eb6b3d i {
  color: #eb6b3d;
}
.features-list-tab .tabs li a.bg-f78acb i {
  color: #f78acb;
}
.features-list-tab .tabs li a span {
  display: block;
  margin-top: 3px;
}
.features-list-tab .tabs li.current a, .features-list-tab .tabs li:hover a {
  color: #ffffff;
  box-shadow: 0px 10px 40px 0px rgba(0, 0, 255, 0.22);
}
.features-list-tab .tabs li.current a i, .features-list-tab .tabs li:hover a i {
  color: #ffffff;
}
.features-list-tab .features-overview {
  align-items: center !important;
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.features-list-tab .features-overview .overview-content {
  flex: 0 0 50%;
  max-width: 50%;
  padding-left: 15px;
  padding-right: 15px;
}
.features-list-tab .features-overview .overview-content .content {
  padding-left: 15px;
  padding-right: 15px;
}
.features-list-tab .features-overview .overview-content .content .sub-title {
  display: block;
  text-transform: capitalize;
  margin-bottom: 8px;
  font-size: 15px;
  font-weight: 600;
}
.features-list-tab .features-overview .overview-content .content h2 {
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 30px;
}
.features-list-tab .features-overview .overview-content .content .features-list {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
  margin-top: 10px;
  margin-left: -10px;
  margin-right: -10px;
}
.features-list-tab .features-overview .overview-content .content .features-list li {
  flex: 0 0 50%;
  max-width: 50%;
  margin-top: 10px;
  padding-left: 10px;
  padding-right: 10px;
}
.features-list-tab .features-overview .overview-content .content .features-list li span {
  display: block;
  background-color: #F8FAFF;
  border-radius: 5px;
  padding: 13px 12px 8px 40px;
  z-index: 1;
  position: relative;
  transition: 0.5s;
  font-weight: 600;
  font-size: 15.5px;
}
.features-list-tab .features-overview .overview-content .content .features-list li span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  border-radius: 5px;
  z-index: -1;
  transition: 0.5s;
}
.features-list-tab .features-overview .overview-content .content .features-list li span i {
  font-size: 12px;
  color: #ffffff;
  width: 23px;
  height: 23px;
  line-height: 23px;
  transition: 0.5s;
  text-align: center;
  border-radius: 3px;
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
}
.features-list-tab .features-overview .overview-content .content .features-list li span:hover {
  color: #ffffff;
}
.features-list-tab .features-overview .overview-content .content .features-list li span:hover::before {
  width: 100%;
}
.features-list-tab .features-overview .overview-content .content .features-list li span:hover i {
  background-color: #ffffff;
  color: var(--optionalColor);
}
.features-list-tab .features-overview .overview-image {
  flex: 0 0 50%;
  max-width: 50%;
  padding-left: 15px;
  padding-right: 15px;
}
.features-list-tab .features-overview .overview-image .image {
  padding-left: 15px;
  padding-right: 15px;
}

/*================================================
Team Area CSS
=================================================*/
.team-area {
  padding-bottom: 70px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.team-area .elementor-column-wrap {
  padding-bottom: 0 !important;
  padding-top: 0 !important;
}

.single-team-box {
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
  background-color: #ffffff;
  transition: 0.5s;
  text-align: center;
}
.single-team-box .image {
  position: relative;
  overflow: hidden;
}
.single-team-box .image img {
  transition: 0.5s;
}
.single-team-box .image .social {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-decoration: none;
  opacity: 0;
  margin-top: -100px;
  padding: 10px 15px 5px;
  background: #ffffff;
  border-radius: 35px;
  visibility: hidden;
  transition: 0.5s;
}
.single-team-box .image .social a {
  display: inline-block;
  font-size: 18px;
  margin: 0 6px;
}
.single-team-box .image .social a:hover {
  color: var(--optionalColor);
}
.single-team-box .content {
  padding: 25px;
  position: relative;
  transition: 0.5s;
}
.single-team-box .content h3 {
  margin-bottom: 0;
  transition: 0.5s;
  font-size: 24px;
  font-weight: 700;
}
.single-team-box .content span {
  display: block;
  margin-top: 8px;
  transition: 0.5s;
  font-weight: 500;
}
.single-team-box:hover {
  transform: translateY(-5px);
}
.single-team-box:hover .image img {
  transform: scale(1.2);
}
.single-team-box:hover .image .social {
  opacity: 1;
  margin-top: 0;
  visibility: visible;
}
.single-team-box:hover .content h3 {
  color: #ffffff;
}
.single-team-box:hover .content span {
  color: #ffffff;
}

/*================================================
Solution Area CSS
=================================================*/
.solution-area {
  position: relative;
  z-index: 1;
  background-image: url(../../assets/img/solution-bg.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.solution-area::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: -1;
  height: 100%;
  background-color: #000000;
  opacity: 0.8;
}
.solution-area.extra-pb {
  padding-bottom: 200px;
}

.solution-area-spac .extra-pb {
  padding-bottom: 100px;
}

.solution-content .sub-title {
  color: var(--optionalColor);
  display: block;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 600;
}
.solution-content h2 {
  color: #ffffff;
  margin-bottom: 12px;
  font-weight: 700;
  font-size: 50px;
}
.solution-content p {
  color: #e8e3e3;
}
.solution-content .default-btn {
  margin-top: 10px;
}

.solution-video {
  text-align: center;
}
.solution-video .video-btn {
  display: inline-block;
  width: 90px;
  height: 90px;
  line-height: 90px;
  background-color: #ffffff;
  border-radius: 50%;
  position: relative;
  padding-left: 10px;
  padding-top: 2px;
  z-index: 1;
}
.solution-video .video-btn i::before {
  font-size: 38px;
}
.solution-video .video-btn::after, .solution-video .video-btn::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  bottom: 0;
  left: 0;
  border-radius: 50%;
  border: 1px solid #ffffff;
}
.solution-video .video-btn::before {
  animation: ripple 2s linear infinite;
}
.solution-video .video-btn::after {
  animation: ripple 2s linear 1s infinite;
}
.solution-video .video-btn:hover, .solution-video .video-btn:focus {
  color: #ffffff;
}

@keyframes ripple {
  0% {
    transform: scale(1);
  }
  75% {
    transform: scale(1.75);
    opacity: 1;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}
/*================================================
Feedback Area CSS
=================================================*/
.feedback-area {
  padding-bottom: 70px;
  position: relative;
  z-index: 1;
}
.feedback-area.bg-color {
  margin-top: -100px;
}
.feedback-area.bg-color .section-title {
  margin-bottom: 30px;
}
.feedback-area.bg-color .section-title .sub-title {
  color: #ffffff;
}
.feedback-area.bg-color .section-title h2 {
  color: #ffffff;
}
.feedback-area.bg-color::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 60%;
  right: 0;
  z-index: -1;
  margin-left: 50px;
  margin-right: 50px;
}
.feedback-area.bg-color::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0.4;
  height: 60%;
  z-index: -1;
  background-image: url(../../assets/img/bg_lines.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin-left: 50px;
  margin-right: 50px;
}

.single-feedback-item {
  position: relative;
  z-index: 1;
  background-color: #ffffff;
  box-shadow: 0 0 15px #f1f1f1;
  padding: 30px;
  margin-bottom: 30px;
}
.single-feedback-item p {
  color: #565968;
  margin-bottom: 0;
  font-weight: normal;
  font-style: italic;
  font-size: 18px;
}
.single-feedback-item .client-info {
  margin-top: 30px;
  position: relative;
  padding-left: 90px;
}
.single-feedback-item .client-info img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.single-feedback-item .client-info h3 {
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 700;
}
.single-feedback-item .client-info span {
  display: block;
  margin-top: 3px;
  font-size: 15px;
}

.feedback-slides {
  padding-left: 80px;
  padding-right: 80px;
}
.feedback-slides .single-feedback-item {
  box-shadow: 0px 5px 15px #f1f1f1;
  margin-top: 30px;
  margin-right: 15px;
  margin-left: 15px;
  margin-bottom: 30px;
}
.feedback-slides.owl-theme .owl-nav.disabled + .owl-dots {
  line-height: 0.01;
  margin-top: 10px;
  margin-bottom: 30px;
}
.feedback-slides.owl-theme .owl-dots .owl-dot span {
  width: 14px;
  height: 14px;
  margin: 0 5px;
  background: #D6D6D6;
  display: block;
  transition: 0.5s;
  border-radius: 50%;
}

/*================================================
Pricing Area CSS
=================================================*/
.pricing-area {
  padding-bottom: 70px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-image: url(../../assets/img/shape-wave.png);
  background-size: cover;
  background-repeat: no-repeat;
}

.single-pricing-box {
  margin-bottom: 30px;
  text-align: center;
  background-color: #ffffff;
  box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.08);
  padding: 40px 30px 28px 30px;
  border-radius: 5px;
  transition: 0.5s;
}
.single-pricing-box .pricing-header {
  position: relative;
  z-index: 1;
  margin: -40px -30px 30px -30px;
  border-radius: 5px 5px 0 0;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 30px;
  padding-bottom: 25px;
}
.single-pricing-box .pricing-header h3 {
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 0;
}
.single-pricing-box .price {
  color: #212529;
  line-height: 50px;
  align-items: baseline;
  position: relative;
  z-index: 1;
  font-size: 50px;
  font-weight: 700;
}
.single-pricing-box .price sub {
  line-height: 16px;
  color: #737b9a;
  margin: 0 -8px 0 -12px;
  position: relative;
  top: -4px;
  display: inline-block;
  font-weight: 600;
  font-size: 16px;
}
.single-pricing-box .price-features-list {
  text-align: left;
  padding: 30px 30px;
  margin: 25px -30px 30px -30px;
  list-style-type: none;
  border-bottom: 1px solid #eeeeee;
  border-top: 1px solid #eeeeee;
}
.single-pricing-box .price-features-list li {
  position: relative;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-right: 25px;
  color: #737b9a;
  font-weight: 500;
  font-size: 17px;
}
.single-pricing-box .price-features-list li i {
  font-size: 14px;
  position: absolute;
  right: 0;
  top: 10px;
}
.single-pricing-box .price-features-list li i.flaticon-tick {
  color: #6ac04f;
}
.single-pricing-box .price-features-list li i.flaticon-close {
  color: #dd5252;
  font-size: 13px;
  top: 12px;
}
.single-pricing-box .get-started-btn {
  display: inline-block;
  position: relative;
  font-weight: 600;
  font-size: 18px;
}
.single-pricing-box .get-started-btn::before {
  width: 0;
  height: 1px;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  transition: 0.5s;
}
.single-pricing-box .get-started-btn:hover::before {
  width: 100%;
}
.single-pricing-box.red .pricing-header {
  background-color: #fc6765;
}
.single-pricing-box.red .get-started-btn {
  color: #fc6765;
}
.single-pricing-box.red .get-started-btn::before {
  background-color: #fc6765;
}
.single-pricing-box.orange .pricing-header {
  background-color: #ffa143;
}
.single-pricing-box.orange .get-started-btn {
  color: #ffa143;
}
.single-pricing-box.orange .get-started-btn::before {
  background-color: #ffa143;
}
.single-pricing-box:hover {
  transform: translateY(-10px);
}

/*================================================
Partner Area CSS
=================================================*/
.partner-area {
  position: relative;
  overflow: hidden;
  z-index: 1;
  padding-bottom: 90px;
}
.partner-area .row {
  margin-left: -5px;
  margin-right: -5px;
}

.single-partner-item {
  text-align: center;
  margin-bottom: 10px;
  flex: 0 0 20%;
  max-width: 20%;
  padding-left: 5px;
  padding-right: 5px;
}
.single-partner-item a {
  display: block;
  position: relative;
  overflow: hidden;
  background-color: #F4F7FC;
  border-radius: 5px;
  padding: 20px;
}
.single-partner-item a img:nth-child(1) {
  position: relative;
  display: inline-block !important;
  width: auto !important;
  transition: transform 0.4s ease;
}
.single-partner-item a img:nth-child(2) {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 200%);
  transition: transform 0.4s ease;
  display: inline-block !important;
  width: auto !important;
}
.single-partner-item a:hover img:nth-child(1) {
  transform: translateY(-200%);
}
.single-partner-item a:hover img:nth-child(2) {
  transform: translate(-50%, -50%);
}

.partner-slides .single-partner-item {
  flex: 0 0 100%;
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

/*================================================
Subscribe Area CSS
=================================================*/
.subscribe-area {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.subscribe-inner-area {
  position: relative;
  z-index: 1;
  padding: 80px;
  background-image: url(../../assets/img/subscribe-bg.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.subscribe-inner-area::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: -1;
  height: 100%;
  opacity: 0.8;
}
.subscribe-inner-area::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0.7;
  height: 100%;
  z-index: -1;
  background-image: url(../../assets/img/bg_lines.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.subscribe-content {
  text-align: center;
}
.subscribe-content .sub-title {
  color: #ffffff;
  display: block;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 600;
}
.subscribe-content h2 {
  color: #ffffff;
  max-width: 700px;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  font-weight: 700;
  font-size: 40px;
}
.subscribe-content .newsletter-form {
  max-width: 550px;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  margin-top: 35px;
}
.subscribe-content .newsletter-form .input-newsletter {
  display: block;
  width: 100%;
  background-color: #ffffff;
  border: none;
  height: 65px;
  padding-left: 25px;
  border-radius: 70px;
  padding-top: 5px;
  outline: 0;
  color: #212529;
}
.subscribe-content .newsletter-form .input-newsletter::-moz-placeholder {
  color: #737b9a;
}
.subscribe-content .newsletter-form .input-newsletter::placeholder {
  color: #737b9a;
}
.subscribe-content .newsletter-form button {
  position: absolute;
  right: 5px;
  top: 5px;
  color: #ffffff;
  border: none;
  height: 55px;
  padding: 0 30px;
  border-radius: 70px;
  transition: 0.5s;
  line-height: 60px;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 700;
}
.subscribe-content .newsletter-form button:hover {
  background-color: var(--optionalColor);
  color: #ffffff;
}
.subscribe-content .newsletter-form #validator-newsletter {
  position: absolute;
  left: 0;
  margin: 0 auto;
  right: 0;
  color: #ffffff;
  bottom: -35px;
}
.subscribe-content .mchimp-errmessage, .subscribe-content .mchimp-sucmessage {
  color: #ffffff;
  margin-top: 5px;
}

/*================================================
Page Title Area CSS
=================================================*/
.page-title-area {
  height: 450px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  border-bottom: 2px solid #fbfcfe;
}
.page-title-area.page-title-bg1 {
  background: transparent url(../../assets/img/banner-bg1.jpg) right top no-repeat;
}
.page-title-area.page-title-bg2 {
  background: transparent url(../../assets/img/banner-bg2.jpg) left top no-repeat;
}
.page-title-area .shape-img7 {
  left: 75%;
}

.page-title-content {
  position: relative;
  margin-top: 70px;
  text-align: center;
  text-transform: capitalize;
}
.page-title-content h1 {
  margin-bottom: 0;
  position: relative;
  word-break: break-all;
  padding-bottom: 10px;
  font-size: 45px;
  font-weight: 700;
}
.page-title-content h1::before {
  width: 30px;
  height: 2px;
  background-color: var(--optionalColor);
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
}
.page-title-content h2 {
  margin-bottom: 0;
  position: relative;
  word-break: break-all;
  padding-bottom: 10px;
  font-size: 40px;
  font-weight: 700;
}
.page-title-content h2::before {
  width: 30px;
  height: 2px;
  background-color: var(--optionalColor);
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
}
.page-title-content h3 {
  margin-bottom: 0;
  position: relative;
  word-break: break-all;
  padding-bottom: 10px;
  font-size: 35px;
  font-weight: 700;
}
.page-title-content h3::before {
  width: 30px;
  height: 2px;
  background-color: var(--optionalColor);
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
}
.page-title-content h4 {
  margin-bottom: 0;
  position: relative;
  word-break: break-all;
  padding-bottom: 10px;
  font-size: 30px;
  font-weight: 700;
}
.page-title-content h4::before {
  width: 30px;
  height: 2px;
  background-color: var(--optionalColor);
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
}
.page-title-content h5 {
  margin-bottom: 0;
  position: relative;
  word-break: break-all;
  padding-bottom: 10px;
  font-size: 25px;
  font-weight: 700;
}
.page-title-content h5::before {
  width: 30px;
  height: 2px;
  background-color: var(--optionalColor);
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
}
.page-title-content h6 {
  margin-bottom: 0;
  position: relative;
  word-break: break-all;
  padding-bottom: 10px;
  font-size: 20px;
  font-weight: 700;
}
.page-title-content h6::before {
  width: 30px;
  height: 2px;
  background-color: var(--optionalColor);
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
}
.page-title-content ul {
  padding-left: 0;
  list-style-type: none;
  word-break: break-all;
  margin-bottom: 0;
  margin-top: 20px;
}
.page-title-content ul li {
  position: relative;
  display: inline-block;
  font-size: 17px;
  margin-left: 12px;
  margin-right: 12px;
}
.page-title-content ul li a {
  display: inline-block;
  color: #737b9a;
}
.page-title-content ul li a:hover {
  color: var(--optionalColor);
}
.page-title-content ul li::before {
  content: "\f054";
  position: absolute;
  right: -18px;
  top: 3px;
  color: #737b9a;
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  font-size: 12px;
}
.page-title-content ul li:first-child {
  margin-left: 0;
}
.page-title-content ul li:last-child {
  margin-right: 0;
}
.page-title-content ul li:last-child::before {
  display: none;
}

.page_bg_area {
  background-position: center !important;
  background-size: cover !important;
}
.page_bg_area::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: #fff;
  opacity: 0.88;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/*================================================
Pagination Area CSS
=================================================*/
.pagination-area {
  margin-top: 40px;
  text-align: center;
}
.pagination-area .page-numbers {
  width: 45px;
  height: 45px;
  margin: 0 3px;
  display: inline-block;
  background-color: #ffffff;
  line-height: 49px;
  color: #212529;
  box-shadow: 0 2px 10px 0 #d8dde6;
  font-size: 18px;
  font-weight: 700;
}
.pagination-area .page-numbers.current, .pagination-area .page-numbers:hover, .pagination-area .page-numbers:focus {
  color: #ffffff;
  box-shadow: 0 2px 10px 0 #d8dde6;
}

/*================================================
Sidebar Area CSS
=================================================*/
.widget-area .widget {
  margin-top: 35px;
}
.widget-area .widget:first-child {
  margin-top: 0;
}
.widget-area .widget .widget-title {
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 10px;
  margin-bottom: 20px;
  text-transform: capitalize;
  position: relative;
  font-weight: 700;
  font-size: 22px;
}
.widget-area .widget .widget-title::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 50px;
  height: 1px;
}
.widget-area .widget_search {
  box-shadow: 0px 0px 29px 0px rgba(102, 102, 102, 0.1);
  background-color: #ffffff;
  padding: 15px;
}
.widget-area .widget_search form {
  position: relative;
}
.widget-area .widget_search form label {
  display: block;
  margin-bottom: 0;
}
.widget-area .widget_search form .screen-reader-text {
  display: none;
}
.widget-area .widget_search form .search-field {
  background-color: transparent;
  height: 50px;
  padding: 6px 15px;
  border: 1px solid #eeeeee;
  width: 100%;
  display: block;
  outline: 0;
  transition: 0.5s;
}
.widget-area .widget_search form button {
  position: absolute;
  right: 0;
  outline: 0;
  bottom: 0;
  height: 50px;
  width: 50px;
  z-index: 1;
  border: none;
  color: #ffffff;
  transition: 0.5s;
}
.widget-area .widget_search form button:hover {
  background-color: var(--optionalColor);
  color: #ffffff;
}
.widget-area .widget_aronix_posts_thumb {
  position: relative;
  overflow: hidden;
}
.widget-area .widget_aronix_posts_thumb .item {
  overflow: hidden;
  margin-bottom: 15px;
}
.widget-area .widget_aronix_posts_thumb .item:last-child {
  margin-bottom: 0;
}
.widget-area .widget_aronix_posts_thumb .item .thumb {
  float: left;
  height: 80px;
  overflow: hidden;
  position: relative;
  width: 80px;
  margin-right: 15px;
}
.widget-area .widget_aronix_posts_thumb .item .thumb .fullimage {
  width: 80px;
  height: 80px;
  display: inline-block;
  background-size: cover !important;
  background-repeat: no-repeat;
  background-position: center center !important;
}
.widget-area .widget_aronix_posts_thumb .item .thumb .fullimage.bg1 {
  background-image: url(../../assets/img/blog-image/7.jpg);
}
.widget-area .widget_aronix_posts_thumb .item .thumb .fullimage.bg2 {
  background-image: url(../../assets/img/blog-image/8.jpg);
}
.widget-area .widget_aronix_posts_thumb .item .thumb .fullimage.bg3 {
  background-image: url(../../assets/img/blog-image/9.jpg);
}
.widget-area .widget_aronix_posts_thumb .item .info {
  overflow: hidden;
  margin-top: 5px;
}
.widget-area .widget_aronix_posts_thumb .item .info time {
  display: block;
  color: #737b9a;
  text-transform: uppercase;
  margin-top: 5px;
  margin-bottom: 3px;
  font-size: 11px;
}
.widget-area .widget_aronix_posts_thumb .item .info .title {
  margin-bottom: 0;
  line-height: 1.4;
  font-size: 17px;
  font-weight: 700;
}
.widget-area .widget_aronix_posts_thumb .item .info .title a {
  display: inline-block;
}
.widget-area .widget_recent_entries ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
.widget-area .widget_recent_entries ul li {
  position: relative;
  margin-bottom: 12px;
  color: #212529;
  padding-left: 14px;
  line-height: 1.5;
  font-weight: 600;
  font-size: 15.5px;
}
.widget-area .widget_recent_entries ul li:last-child {
  margin-bottom: 0;
}
.widget-area .widget_recent_entries ul li::before {
  position: absolute;
  height: 7px;
  width: 7px;
  content: "";
  left: 0;
  top: 6px;
}
.widget-area .widget_recent_entries ul li a {
  display: inline-block;
  color: #212529;
}
.widget-area .widget_recent_entries ul li .post-date {
  display: block;
  font-size: 13px;
  color: #737b9a;
  margin-top: 4px;
}
.widget-area .widget_recent_comments ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
.widget-area .widget_recent_comments ul li {
  position: relative;
  margin-bottom: 12px;
  color: #737b9a;
  padding-left: 14px;
  line-height: 1.5;
  font-weight: 600;
  font-size: 15.5px;
}
.widget-area .widget_recent_comments ul li:last-child {
  margin-bottom: 0;
}
.widget-area .widget_recent_comments ul li::before {
  position: absolute;
  height: 7px;
  width: 7px;
  content: "";
  left: 0;
  top: 6px;
}
.widget-area .widget_recent_comments ul li a {
  display: inline-block;
  color: #212529;
}
.widget-area .widget_archive ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
.widget-area .widget_archive ul li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 14px;
  color: #212529;
  font-size: 15.5px;
  font-weight: 600;
}
.widget-area .widget_archive ul li:last-child {
  margin-bottom: 0;
}
.widget-area .widget_archive ul li::before {
  height: 7px;
  width: 7px;
  content: "";
  left: 0;
  top: 6px;
  position: absolute;
}
.widget-area .widget_archive ul li a {
  display: inline-block;
  color: #212529;
}
.widget-area .widget_categories ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
.widget-area .widget_categories ul li {
  position: relative;
  margin-bottom: 12px;
  color: #737b9a;
  font-weight: 600;
  padding-left: 14px;
  font-size: 15.5px;
  font-weight: 600;
}
.widget-area .widget_categories ul li:last-child {
  margin-bottom: 0;
}
.widget-area .widget_categories ul li::before {
  height: 7px;
  width: 7px;
  content: "";
  left: 0;
  top: 6px;
  position: absolute;
}
.widget-area .widget_categories ul li a {
  color: #212529;
  display: block;
}
.widget-area .widget_categories ul li .post-count {
  float: right;
}
.widget-area .widget_meta ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
.widget-area .widget_meta ul li {
  position: relative;
  margin-bottom: 12px;
  color: #212529;
  padding-left: 14px;
  font-size: 15.5px;
  font-weight: 600;
}
.widget-area .widget_meta ul li:last-child {
  margin-bottom: 0;
}
.widget-area .widget_meta ul li::before {
  height: 7px;
  width: 7px;
  content: "";
  left: 0;
  top: 6px;
  position: absolute;
}
.widget-area .widget_meta ul li a {
  display: inline-block;
  color: #212529;
}
.widget-area .widget_tag_cloud .widget-title {
  margin-bottom: 12px;
}
.widget-area .tagcloud a {
  display: inline-block;
  color: #212529;
  font-weight: 600;
  font-size: 14.5px !important;
  padding: 6px 13px 3px;
  border: 1px dashed #eeeeee;
  margin-top: 8px;
  margin-right: 4px;
}
.widget-area .tagcloud a:hover, .widget-area .tagcloud a:focus {
  color: #ffffff;
}

/*================================================
404 Error Area CSS
=================================================*/
.error-area {
  height: 100vh;
}

.error-content {
  text-align: center;
  margin: 0 auto;
  max-width: 700px;
}
.error-content h3 {
  font-size: 40px;
  font-weight: 700;
  margin-top: 45px;
  margin-bottom: 15px;
}
.error-content p {
  max-width: 520px;
  margin: 0 auto 20px;
}

/*================================================
FAQ Area CSS
=================================================*/
.faq-accordion .accordion {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
}
.faq-accordion .accordion .accordion-item {
  display: block;
  box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  background: #ffffff;
  margin-bottom: 20px;
}
.faq-accordion .accordion .accordion-item:last-child {
  margin-bottom: 0;
}
.faq-accordion .accordion .accordion-item:nth-child(2) .accordion-title i, .faq-accordion .accordion .accordion-item:nth-child(4) .accordion-title i, .faq-accordion .accordion .accordion-item:nth-child(6) .accordion-title i, .faq-accordion .accordion .accordion-item:nth-child(8) .accordion-title i {
  background: var(--optionalColor);
}
.faq-accordion .accordion .accordion-title {
  padding: 15px 20px 10px 51px;
  color: #212529;
  position: relative;
  border-bottom: 1px solid transparent;
  margin-bottom: -1px;
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
}
.faq-accordion .accordion .accordion-title i {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  text-align: center;
  height: 100%;
  color: #ffffff;
}
.faq-accordion .accordion .accordion-title i::before {
  position: absolute;
  left: 0;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  font-size: 13px;
}
.faq-accordion .accordion .accordion-title.active {
  border-bottom-color: #eeeeee;
}
.faq-accordion .accordion .accordion-title.active i::before {
  content: "\f068";
}
.faq-accordion .accordion .accordion-content {
  display: none;
  position: relative;
  padding: 15px 15px;
}
.faq-accordion .accordion .accordion-content.show {
  display: block;
}

.faq-area .col-lg-6:nth-child(2) .faq-accordion .accordion .accordion-item:nth-child(2) .accordion-title i, .faq-area .col-lg-6:nth-child(2) .faq-accordion .accordion .accordion-item:nth-child(4) .accordion-title i, .faq-area .col-lg-6:nth-child(2) .faq-accordion .accordion .accordion-item:nth-child(6) .accordion-title i, .faq-area .col-lg-6:nth-child(2) .faq-accordion .accordion .accordion-item:nth-child(8) .accordion-title i, .faq-area .elementor-col-50:nth-child(2) .faq-accordion .accordion .accordion-item:nth-child(2) .accordion-title i, .faq-area .elementor-col-50:nth-child(2) .faq-accordion .accordion .accordion-item:nth-child(4) .accordion-title i, .faq-area .elementor-col-50:nth-child(2) .faq-accordion .accordion .accordion-item:nth-child(6) .accordion-title i, .faq-area .elementor-col-50:nth-child(2) .faq-accordion .accordion .accordion-item:nth-child(8) .accordion-title i {
  background: var(--mainColor);
}
.faq-area .col-lg-6:nth-child(2) .faq-accordion .accordion .accordion-title i, .faq-area .elementor-col-50:nth-child(2) .faq-accordion .accordion .accordion-title i {
  background: var(--optionalColor);
}

.faq-contact-form {
  padding-left: 30px;
}
.faq-contact-form form .form-control {
  background-color: #ffffff;
  border: none;
  box-shadow: 0 5px 28.5px 1.5px rgba(149, 152, 200, 0.2);
  height: 55px;
  font-size: 16px;
}
.faq-contact-form form .row {
  margin-left: -7px;
  margin-right: -7px;
}
.faq-contact-form form .row .col-lg-12, .faq-contact-form form .row .col-lg-6 {
  padding-left: 7px;
  padding-right: 7px;
}
.faq-contact-form form textarea.form-control {
  height: auto;
  padding-top: 20px;
}
.faq-contact-form form .default-btn {
  margin-top: 5px;
  box-shadow: 0 5px 28.5px 1.5px rgba(0, 0, 255, 0.2);
}
.faq-contact-form form .help-block ul {
  padding-left: 0;
  list-style-type: none;
  margin-top: 5px;
  margin-bottom: 0;
}
.faq-contact-form form .help-block ul li {
  color: red;
}
.faq-contact-form form #msgSubmit {
  margin-bottom: 0;
  text-align: left !important;
}
.faq-contact-form form #msgSubmit.text-danger, .faq-contact-form form #msgSubmit.text-success {
  margin-top: 8px;
  font-size: 23px;
  font-weight: 700;
}

/*================================================
Contact Area CSS
=================================================*/
.contact-area .section-title {
  margin-top: 110px;
}

.contact-form {
  padding-left: 30px;
}
.contact-form form .form-control {
  background-color: #ffffff;
  border: none;
  box-shadow: 0 5px 28.5px 1.5px rgba(149, 152, 200, 0.2);
  height: 55px;
  font-size: 16px;
}
.contact-form form .row {
  margin-left: -7px;
  margin-right: -7px;
}
.contact-form form .row .col-lg-12, .contact-form form .row .col-lg-6 {
  padding-left: 7px;
  padding-right: 7px;
}
.contact-form form textarea.form-control {
  height: auto;
  padding-top: 20px;
}
.contact-form form .default-btn {
  margin-top: 5px;
  box-shadow: 0 5px 28.5px 1.5px rgba(0, 0, 255, 0.2);
}
.contact-form form .help-block ul {
  padding-left: 0;
  list-style-type: none;
  margin-top: 5px;
  margin-bottom: 0;
}
.contact-form form .help-block ul li {
  color: red;
}
.contact-form form #msgSubmit {
  margin-bottom: 0;
  text-align: left !important;
}
.contact-form form #msgSubmit.text-danger, .contact-form form #msgSubmit.text-success {
  margin-top: 8px;
  font-size: 23px;
  font-weight: 700;
}

.contact-info-box {
  text-align: center;
  border-radius: 5px;
  transition: 0.5s;
  box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
  background: #ffffff;
  padding: 30px;
}
.contact-info-box .icon {
  display: inline-block;
  width: 70px;
  height: 70px;
  line-height: 70px;
  background: #f5f5f5;
  border-radius: 50%;
  font-size: 30px;
  transition: 0.5s;
  margin-bottom: 20px;
}
.contact-info-box .icon i {
  display: inline-block;
  width: 70px;
  height: 70px;
  line-height: 70px;
  background: #f5f5f5;
  border-radius: 50%;
  font-size: 30px;
  transition: 0.5s;
  margin-bottom: 20px;
}
.contact-info-box h3 {
  margin-bottom: 12px;
  font-size: 24px;
  font-weight: 700;
}
.contact-info-box p {
  margin-bottom: 0;
}
.contact-info-box p a {
  display: inline-block;
  color: #737b9a;
}
.contact-info-box:hover {
  transform: translateY(-10px);
}
.contact-info-box:hover .icon {
  color: #ffffff;
}

/*================================================
Footer Area CSS
=================================================*/
.footer-area {
  padding-top: 80px;
  background-color: #212529;
}

.single-footer-widget {
  margin-bottom: 30px;
}
.single-footer-widget .footer-contact-info {
  padding-left: 0 !important;
  margin-bottom: 0 !important;
  list-style-type: none !important;
}
.single-footer-widget .footer-contact-info li::before {
  display: none;
}
.single-footer-widget .footer-contact-info li {
  line-height: 1.5 !important;
  color: #ffffff;
  padding-left: 55px;
  position: relative;
  margin-bottom: 25px !important;
  font-size: 14.5px;
}
.single-footer-widget .footer-contact-info li:last-child {
  margin-bottom: 0;
}
.single-footer-widget .footer-contact-info li i {
  font-size: 35px;
  color: var(--optionalColor);
  position: absolute;
  left: 0;
  top: 0;
}
.single-footer-widget .footer-contact-info li span {
  display: block;
  margin-bottom: 5px;
  text-transform: uppercase;
}
.single-footer-widget .footer-contact-info li a {
  display: inline-block;
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
}
.single-footer-widget .footer-contact-info li a:hover {
  color: var(--optionalColor);
}
.single-footer-widget .footer-contact-info li .social {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
.single-footer-widget .footer-contact-info li .social li {
  display: inline-block;
  padding-left: 0;
  margin-right: 15px;
  margin-bottom: 0;
}
.single-footer-widget .footer-contact-info li .social li a {
  display: inline-block;
}
.single-footer-widget .footer-contact-info li .social li a i {
  position: relative;
  color: #ffffff;
  font-size: 17px;
  transition: 0.5s;
}
.single-footer-widget .footer-contact-info li .social li a:hover {
  transform: translateY(-2px);
}
.single-footer-widget .footer-contact-info li .social li a:hover i {
  color: var(--optionalColor);
}
.single-footer-widget .footer-contact-info li .social li:last-child {
  margin-right: 0;
}
.single-footer-widget .footer-quick-links {
  padding-left: 0;
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
  margin-bottom: 0;
  margin-top: -15px;
}
.single-footer-widget .footer-quick-links li {
  flex: 0 0 45%;
  max-width: 45%;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 15px;
}
.single-footer-widget .footer-quick-links li a {
  display: inline-block;
  color: #ffffff;
}
.single-footer-widget .footer-quick-links li a:hover {
  color: var(--optionalColor);
}
.single-footer-widget .footer-instagram-post {
  padding-left: 0;
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px;
  margin-bottom: 0;
  margin-top: -10px;
}
.single-footer-widget .footer-instagram-post li {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
  padding-left: 5px;
  padding-right: 5px;
  padding-top: 10px;
}
.single-footer-widget .footer-instagram-post li a {
  display: block;
}
.single-footer-widget .footer-instagram-post li a:hover {
  opacity: 0.6;
}

.copyright-area {
  border-top: 1px solid #4e5e6a;
  margin-top: 50px;
  padding-top: 25px;
  padding-bottom: 25px;
}
.copyright-area p {
  color: #ffffff;
  margin-bottom: 0;
}
.copyright-area p a {
  display: inline-block;
  color: #ffffff;
}
.copyright-area p a:hover {
  color: var(--optionalColor);
}
.copyright-area ul {
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
  text-align: right;
}
.copyright-area ul li {
  display: inline-block;
  margin: 0 10px;
  color: #ffffff;
  position: relative;
}
.copyright-area ul li a {
  display: inline-block;
  text-transform: capitalize;
  color: #ffffff;
}
.copyright-area ul li a:hover {
  color: var(--optionalColor);
}
.copyright-area ul li::before {
  content: "";
  position: absolute;
  right: -12px;
  top: 1px;
  width: 1px;
  height: 14px;
  background-color: #ffffff;
}
.copyright-area ul li:first-child {
  margin-left: 0;
}
.copyright-area ul li:last-child {
  margin-right: 0;
}
.copyright-area ul li:last-child::before {
  display: none;
}

.footer-area .widget_nav_menu ul {
  padding-left: 0 !important;
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px !important;
  margin-left: -15px !important;
  margin-bottom: 0 !important;
  margin-top: -15px !important;
}
.footer-area .widget_nav_menu ul li {
  flex: 0 0 45%;
  max-width: 45%;
  padding-left: 15px;
  margin-bottom: 0 !important;
  padding-right: 15px;
  line-height: 1.5 !important;
  padding-top: 15px;
}
.footer-area .widget_nav_menu ul li::before {
  display: none;
}

/*================================================
Go Top CSS
=================================================*/
.go-top {
  position: fixed;
  cursor: pointer;
  top: 50%;
  right: 15px;
  z-index: 4;
  width: 40px;
  text-align: center;
  height: 40px;
  line-height: 45px;
  opacity: 0;
  visibility: hidden;
  transition: 0.9s;
  color: #ffffff;
  border-radius: 2px;
  font-size: 20px;
}
.go-top.active {
  top: 98%;
  transform: translateY(-98%);
  opacity: 1;
  visibility: visible;
}
.go-top:hover, .go-top:focus {
  color: #ffffff;
  background-color: var(--optionalColor);
}

.wow {
  visibility: visible !important;
}

/*================================================
Start IT Startup Page CSS
=================================================*/
.pt-100 {
  padding-top: 100px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pb-70 {
  padding-bottom: 70px;
}

.gray-bg {
  background-color: #f9f9fc;
}

.bg-f4f7fe {
  background-color: #f4f7fe;
}

.it-banner {
  height: 100vh;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #f7f7f7;
}
.it-banner .container.mt-50 {
  margin-top: 80px;
}
.it-banner .banner-btn {
  margin-top: 30px;
}
.it-banner .banner-btn a {
  display: inline-flex;
}
.it-banner .video-btn {
  margin-left: 5px;
  line-height: 40px;
}
.it-banner .video-btn i {
  background-color: #ececff;
  height: 35px;
  width: 35px;
  display: inline-block;
  color: var(--mainColor);
  text-align: center;
  line-height: 35px;
  border-radius: 50%;
  padding-left: 5px;
  margin-right: 8px;
  transition: 0.5s;
}
.it-banner .video-btn:hover i {
  background-color: var(--mainColor);
  color: #ffffff;
}
.it-banner .it-banner-image {
  text-align: center;
}
.it-banner .it-banner-image.owl-theme .owl-nav {
  margin: 0;
}

.shape-img11 {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: -1;
}

.shape-img12 {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

/* Animate banner image */
.animate-image {
  position: relative;
}

.animate-image img {
  display: block !important;
  animation: border-transform 10s linear infinite alternate forwards;
  margin: auto;
}
@keyframes border-transform {
  0%, 100% {
    border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  }
  14% {
    border-radius: 40% 60% 54% 46%/49% 60% 40% 51%;
  }
  28% {
    border-radius: 54% 46% 38% 62%/49% 70% 30% 51%;
  }
  42% {
    border-radius: 61% 39% 55% 45%/61% 38% 62% 39%;
  }
  56% {
    border-radius: 61% 39% 67% 33%/70% 50% 50% 30%;
  }
  70% {
    border-radius: 50% 50% 34% 66%/56% 68% 32% 44%;
  }
  84% {
    border-radius: 46% 54% 50% 50%/35% 61% 39% 65%;
  }
}
.service-card-one {
  margin-bottom: 30px;
  border-radius: 10px;
  transition: 0.5s;
}
.service-card-one .icon {
  position: relative;
}
.service-card-one .icon i {
  background-color: #ececff;
  height: 65px;
  width: 65px;
  text-align: center;
  line-height: 65px;
  border-radius: 50%;
  font-size: 30px;
  color: var(--mainColor);
  display: inline-block;
  margin-bottom: 25px;
}
.service-card-one .icon .check-icon {
  position: absolute;
  background: transparent;
  width: auto;
  height: auto;
  line-height: 1;
  margin: 0px 0px 20px -20px;
  font-size: 18px;
}
.service-card-one h3 {
  font-size: 20px;
  font-weight: bold;
}
.service-card-one p {
  margin-bottom: -6px;
}
.service-card-one.bg-white {
  padding: 30px;
}
.service-card-one.center {
  text-align: center;
}
.service-card-one:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 50px 0 rgba(0, 0, 0, 0.08);
}
.service-card-one.gray-bg {
  padding: 30px;
}
.service-card-one.gray-bg:hover {
  background-color: var(--mainColor);
}
.service-card-one.gray-bg:hover .icon .check-icon {
  display: none;
}
.service-card-one.gray-bg:hover h3 {
  color: #ffffff;
}
.service-card-one.gray-bg:hover h3 a {
  color: #ffffff;
}
.service-card-one.gray-bg:hover h3 a:hover {
  text-decoration: underline;
}
.service-card-one.gray-bg:hover p {
  color: #ffffff;
}

.it-overview .overview-content .content .features-list li span i {
  color: var(--mainColor);
  width: auto;
  height: auto;
  background-color: transparent !important;
  line-height: 1;
  font-size: 22px;
}
.it-overview .overview-content .content .features-list li span:hover i {
  background-color: transparent;
  color: #ffffff;
}
.it-overview .overview-content .content .rm-btn {
  margin-top: 25px;
}
.it-overview .overview-content .content .features-text {
  margin-top: 20px;
}
.it-overview .overview-content .content .features-text h4 {
  margin-bottom: 10px;
}

.works-area .more-work {
  margin-top: 20px;
  text-align: center;
}

.work-card {
  margin-bottom: 30px;
  position: relative;
  transition: 0.5s;
}
.work-card::before {
  content: "";
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgb(0, 0, 0));
  width: 100%;
  height: 90%;
  left: 0;
  bottom: 0;
  position: absolute;
  border-radius: 8px;
  transition: 0.5s;
  z-index: 1;
}
.work-card:hover::before {
  background-color: rgba(0, 0, 0, 0.8);
}
.work-card img {
  border-radius: 8px;
  width: 100%;
}
.work-card .content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding: 30px;
  transition: 0.5s;
  z-index: 5;
}
.work-card .content span {
  display: block;
  margin-bottom: 10px;
  font-size: 15px;
  color: #ffffff;
}
.work-card .content h3 {
  font-size: 22px;
  line-height: 1.4;
  margin-bottom: 20px;
  font-weight: bold;
}
.work-card .content .work-btn {
  background-color: #ffffff;
  color: var(--mainColor);
  padding: 10px 20px 5px;
  border-radius: 30px;
  font-size: 15px;
}
.work-card .content .work-btn:hover {
  background-color: #212529;
  color: #ffffff;
}
.work-card .content a {
  color: #ffffff;
}
.work-card:hover::before {
  height: 100%;
  background-image: linear-gradient(to bottom, rgba(0, 0, 255, 0), blue);
}
.work-card:hover .content {
  bottom: 20px;
}

.team-slider .single-team-box {
  box-shadow: none;
}
.team-slider .single-team-box .content {
  border-bottom: 1px solid #f7f7f7;
  border-left: 1px solid #f7f7f7;
  border-right: 1px solid #f7f7f7;
}
.team-slider .single-team-box:hover .content {
  border-bottom: 1px solid var(--mainColor);
  border-left: 1px solid var(--mainColor);
  border-right: 1px solid var(--mainColor);
}
.team-slider.owl-theme .owl-nav {
  margin-top: 0;
}
.team-slider.owl-theme .owl-nav button.owl-prev {
  position: absolute;
  left: 5px;
  top: 5px;
  width: 30px;
  background: #fff;
  height: 30px;
  margin: 0;
  border-radius: 0;
  line-height: 30px;
}
.team-slider.owl-theme .owl-nav button.owl-prev:hover {
  background-color: var(--mainColor);
}
.team-slider.owl-theme .owl-nav button.owl-next {
  position: absolute;
  right: 5px;
  top: 5px;
  width: 30px;
  background: #fff;
  height: 30px;
  margin: 0;
  border-radius: 0;
  line-height: 30px;
}
.team-slider.owl-theme .owl-nav button.owl-next:hover {
  background-color: var(--mainColor);
}

.pricing-area-two {
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.single-pricing-table {
  margin-bottom: 30px;
  background-color: #ffffff;
  padding-bottom: 30px;
  border-radius: 5px;
  transition: 0.5s;
}
.single-pricing-table .pricing-header {
  padding: 20px 40px;
}
.single-pricing-table .pricing-header .icon {
  background-color: #ececff;
  width: 120px;
  height: 120px;
  text-align: center;
  line-height: 120px;
  border-radius: 50%;
  margin: 0 auto 25px;
}
.single-pricing-table .pricing-header .icon img {
  max-width: 70px;
}
.single-pricing-table .pricing-header h3 {
  margin-bottom: -5px;
  font-size: 20px;
  font-weight: bold;
}
.single-pricing-table .pricing-header p {
  margin: 10px 0 -10px;
  font-size: 15px;
}
.single-pricing-table .price {
  color: #212529;
  transition: 0.5s;
  padding: 10px 40px 0;
  border-top: 2px dashed #f4f5fe;
  border-bottom: 2px dashed #f4f5fe;
  font-size: 40px;
  font-weight: 900;
}
.single-pricing-table .price sup {
  top: -18px;
  font-size: 18px;
  font-weight: 500;
}
.single-pricing-table .price sub {
  bottom: 2px;
  color: #4a6f8a;
  padding-right: 5px;
  font-size: 14px;
  font-weight: 500;
}
.single-pricing-table .pricing-features {
  margin: 0;
  padding: 30px 40px;
  list-style-type: none;
}
.single-pricing-table .pricing-features li {
  margin-bottom: 10px;
  position: relative;
  color: #444683;
  padding-left: 25px;
}
.single-pricing-table .pricing-features li:last-child {
  margin-bottom: 0;
}
.single-pricing-table .pricing-features li i {
  color: var(--mainColor);
  position: absolute;
  left: 0;
  top: 2px;
}
.single-pricing-table .pricing-features li span {
  display: inline-block;
  color: #b7bad2;
  font-size: 20px;
  position: absolute;
  top: 1px;
  margin-left: 3px;
}
.single-pricing-table .btn-box {
  padding: 0 40px;
}
.single-pricing-table:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
  transform: translateY(-10px);
}
.single-pricing-table.center {
  text-align: center;
}
.single-pricing-table.center .pricing-features {
  text-align: left;
}
.single-pricing-table.center .pricing-features li {
  padding-left: 0;
  padding-right: 25px;
}
.single-pricing-table.center .pricing-features li i {
  left: auto;
  right: 0;
}
.single-pricing-table.center .default-btn {
  display: block;
  width: 100%;
}

.lets-work .sub-title {
  color: #ffffff;
  display: block;
  margin-bottom: 10px;
}
.lets-work h2 {
  color: #ffffff;
  font-size: 60px;
  font-weight: 900;
}
.lets-work .contact-btn {
  text-align: right;
}
.lets-work .contact-btn .default-btn {
  box-shadow: 0px 10px 13px -6px rgba(0, 0, 0, 0.25);
}
.lets-work .contact-btn .default-btn span {
  background-color: var(--optionalColor);
  width: 100%;
  height: 100%;
  left: 0 !important;
  top: 0 !important;
  transform: translate(0%, 0%);
}
.lets-work .contact-btn .default-btn:hover span {
  background-color: #000;
}

.feedback-area-two .section-title {
  margin-bottom: 40px;
}
.feedback-area-two .feedback-slides .single-feedback-item {
  margin-top: 15px;
}
.feedback-area-two .feedback-slides .single-feedback-item.border {
  border: 1px solid #eee;
  border-radius: 10px;
}

/*================================================
End IT Startup Page CSS
=================================================*/
/*================================================
SEO Startup Page CSS
=================================================*/
.seo-banner-slider img {
  width: auto !important;
  display: inline-block !important;
}
.seo-banner-slider.owl-theme .owl-nav {
  margin: 0;
}
.seo-banner-slider.owl-theme .owl-nav button.owl-prev {
  position: absolute;
  left: 0;
  top: 50%;
  width: 40px;
  background-color: var(--mainColor);
  color: #ffffff;
  height: 40px;
  margin: 0;
  border-radius: 0;
  line-height: 40px;
  transform: translateY(-50%);
}
.seo-banner-slider.owl-theme .owl-nav button.owl-prev:hover {
  background-color: #212529;
  color: #ffffff;
}
.seo-banner-slider.owl-theme .owl-nav button.owl-next {
  position: absolute;
  right: 0;
  top: 50%;
  width: 40px;
  background-color: var(--mainColor);
  color: #ffffff;
  height: 40px;
  margin: 0;
  border-radius: 0;
  transform: translateY(-50%);
  line-height: 40px;
}
.seo-banner-slider.owl-theme .owl-nav button.owl-next:hover {
  background-color: #212529;
  color: #ffffff;
}

.seo-banner {
  height: 100vh;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #f7f7f7;
}
.seo-banner .container.mt-50 {
  margin-top: 80px;
}
.seo-banner .banner-btn {
  margin-top: 30px;
}
.seo-banner .banner-btn a {
  display: inline-flex;
}
.seo-banner .video-btn {
  margin-left: 5px;
  line-height: 40px;
}
.seo-banner .video-btn i {
  background-color: #ececff;
  height: 35px;
  width: 35px;
  display: inline-block;
  color: var(--mainColor);
  text-align: center;
  line-height: 35px;
  border-radius: 50%;
  padding-left: 5px;
  margin-right: 8px;
  transition: 0.5s;
}
.seo-banner .video-btn:hover i {
  background-color: var(--mainColor);
  color: #ffffff;
}
.seo-banner .seo-banner-image {
  text-align: center;
}
.seo-banner .seo-banner-image.animate-tb {
  animation: moveBounce 5s linear infinite;
}

.shape-img13 {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}

.shape-img14 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.rounded-10 {
  border-radius: 10px;
}

.seo-featured-services .col-lg-7 .row .col-lg-6:nth-child(2) {
  margin-top: 30px;
}
.seo-featured-services .col-lg-7 .row .col-lg-6:nth-child(3) {
  margin-top: -30px;
}
.seo-featured-services .col-lg-7 .row .col-lg-6:nth-child(5) {
  margin-top: -30px;
}

.about-area-two .section-title {
  margin-bottom: 30px;
  max-width: 525px;
  margin-left: 0;
  width: 100%;
}
.about-area-two .section-title h2 {
  max-width: 100%;
  margin-bottom: 0;
}
.about-area-two .about-image {
  position: relative;
}
.about-area-two .solution-video {
  text-align: center;
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  transform: translateY(-50%);
  margin: 0;
}
.about-area-two .solution-video .video-btn:hover::after, .about-area-two .solution-video .video-btn:hover::before {
  border: 1px solid transparent;
}
.about-area-two .about-content {
  padding-left: 20px;
}
.about-area-two .about-text {
  margin-bottom: 20px;
}
.about-area-two .about-text:last-child {
  margin-bottom: 0;
}
.about-area-two .about-text h4 {
  font-size: 20px;
  font-weight: bold;
}

.works-area .container-fluid {
  padding-left: 30px;
  padding-right: 30px;
  max-width: 1920px;
}

.work-slider .work-card {
  margin-bottom: 0;
}
.work-slider.owl-theme .owl-nav {
  margin-top: 0;
}
.work-slider.owl-theme .owl-nav button.owl-prev {
  position: absolute;
  left: 5px;
  top: 5px;
  width: 30px;
  background: #fff;
  height: 30px;
  margin: 0;
  border-radius: 0;
  line-height: 30px;
}
.work-slider.owl-theme .owl-nav button.owl-prev:hover {
  background-color: var(--mainColor);
}
.work-slider.owl-theme .owl-nav button.owl-next {
  position: absolute;
  right: 5px;
  top: 5px;
  width: 30px;
  background: #fff;
  height: 30px;
  margin: 0;
  border-radius: 0;
  line-height: 30px;
}
.work-slider.owl-theme .owl-nav button.owl-next:hover {
  background-color: var(--mainColor);
}

.choose-area-two .section-title {
  margin-bottom: 30px;
}
.choose-area-two .section-title h2 {
  font-size: 36px;
}
.choose-area-two .choose-text {
  position: relative;
  padding-left: 40px;
  margin-bottom: 25px;
}
.choose-area-two .choose-text:last-child {
  margin-bottom: 0;
}
.choose-area-two .choose-text i {
  position: absolute;
  font-size: 30px;
  color: var(--mainColor);
  left: 0;
  top: 0;
}
.choose-area-two .choose-text h4 {
  font-size: 20px;
  font-weight: bold;
}

.features-area .tabs_item.bg-white {
  padding: 20px;
  border: 1px solid #f7f7f7;
}

.red {
  color: red !important;
}

.seo-analysis-section .section-title {
  max-width: 100%;
  margin-bottom: 30px;
}
.seo-analysis-section .analysis-img {
  text-align: center;
}

.analysis-form .form-group {
  margin-bottom: 25px;
}
.analysis-form .form-control {
  background-color: #f6f6f6;
  border-radius: 5px;
  padding-left: 20px;
  font-size: 15px;
  color: #9d9fad;
  line-height: 30px;
  height: 56px;
}
.analysis-form button.default-btn {
  margin-top: 10px;
}

/*================================================
End SEO Startup Page CSS
=================================================*/
/*================================================
SaaS Startup Page CSS
=================================================*/
.default-btn-two {
  border: none;
  position: relative;
  display: inline-block;
  text-align: center;
  overflow: hidden;
  z-index: 1;
  color: #ffffff;
  text-transform: uppercase;
  background-color: var(--optionalColor);
  transition: 0.5s;
  border-radius: 5px;
  font-weight: 600;
  font-size: 15px;
  padding-left: 35px;
  padding-right: 35px;
  padding-top: 17px;
  padding-bottom: 13px;
}
.default-btn-two span {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: var(--mainColor);
  transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
  transform: translate(-50%, -50%);
  z-index: -1;
  border-radius: 5px;
}
.default-btn-two:hover, .default-btn-two:focus {
  color: #ffffff;
  box-shadow: 0px 10px 13px -6px rgba(0, 0, 0, 0.25);
  transform: translateY(-4px);
}
.default-btn-two:hover span, .default-btn-two:focus span {
  width: 225%;
  height: 562.5px;
}

.saas-banner-two {
  height: 100vh;
  position: relative;
  overflow: hidden;
  background-color: #f1ece4;
  z-index: 0;
}
.saas-banner-two .container.mt-50 {
  margin-top: 80px;
}
.saas-banner-two .banner-btn {
  margin-top: 30px;
}
.saas-banner-two .banner-btn a {
  display: inline-flex;
}
.saas-banner-two .saas-banner-image {
  text-align: center;
  position: relative;
}
.saas-banner-two .saas-banner-image img {
  border-radius: 10px;
}
.saas-banner-two .saas-banner-image.animate-tb {
  animation: moveBounce 5s linear infinite;
}
.saas-banner-two .saas-banner-image .solution-video {
  text-align: center;
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  transform: translateY(-50%);
  margin: 0;
}
.saas-banner-two .saas-banner-image .solution-video .video-btn {
  background-color: var(--mainColor);
  color: #ffffff;
}
.saas-banner-two .saas-banner-image .solution-video .video-btn:hover::after, .saas-banner-two .saas-banner-image .solution-video .video-btn:hover::before {
  border: 1px solid transparent;
}
.saas-banner-two .saas-banner-image .solution-video .video-btn::after, .saas-banner-two .saas-banner-image .solution-video .video-btn::before {
  border: 1px solid var(--mainColor);
}

.service-card-one .icon .number {
  background-color: var(--mainColor);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  color: #fff;
  display: inline-block;
  font-size: 10px;
  line-height: 22px;
  position: absolute;
  margin: 50px 0 0 -25px;
}

.bg-f2f2f7 {
  background-color: #f2f2f7;
}

.fun-fact-card {
  margin-bottom: 30px;
  text-align: center;
  background: #fff;
  padding: 30px 10px;
  border-radius: 10px;
  transition: 0.5s;
}
.fun-fact-card i {
  background-color: #ececff;
  color: var(--mainColor);
  font-size: 35px;
  width: 65px;
  height: 65px;
  line-height: 65px;
  border-radius: 50%;
  margin-bottom: 20px;
}
.fun-fact-card h3 {
  font-size: 40px;
  font-weight: 800;
}
.fun-fact-card:hover {
  transform: translateY(-5px);
}

/*================================================
End SEO Startup Page CSS
=================================================*/
/*================================================
AI & Machine Learning Page CSS
=================================================*/
.navbar-area-two .aronix-nav .navbar .navbar-nav .nav-item a {
  color: #ffffff;
}
.navbar-area-two .aronix-nav .navbar .navbar-nav .nav-item a:hover {
  color: var(--optionalColor);
}
.navbar-area-two .aronix-nav .navbar .others-options .cart-items {
  color: #ffffff;
}
.navbar-area-two .aronix-nav .navbar .others-options .cart-items a {
  color: #ffffff;
}
.navbar-area-two .aronix-nav .navbar .others-options .cart-items a:hover {
  color: #ffffff;
}
.navbar-area-two .aronix-nav .navbar .others-options .cart-link i {
  color: #ffffff;
}
.navbar-area-two .aronix-nav .navbar .others-options .cart-link span {
  background: #ff3547;
}
.navbar-area-two .aronix-nav .navbar .others-options .option-item .search-btn {
  color: #ffffff;
}
.navbar-area-two .aronix-nav .navbar .others-options .burger-menu span {
  background: #ffffff;
}
.navbar-area-two .aronix-nav .navbar-brand h2 {
  color: #ffffff;
}
.navbar-area-two.is-sticky .aronix-nav .navbar .navbar-nav .nav-item a {
  color: #5b5b98;
}
.navbar-area-two.is-sticky .aronix-nav .navbar .navbar-nav .nav-item a:hover {
  color: var(--mainColor);
}
.navbar-area-two.is-sticky .aronix-nav .navbar .others-options .cart-items {
  color: #5b5b98;
}
.navbar-area-two.is-sticky .aronix-nav .navbar .others-options .cart-items a {
  color: #5b5b98;
}
.navbar-area-two.is-sticky .aronix-nav .navbar .others-options .cart-items a:hover {
  color: var(--mainColor);
}
.navbar-area-two.is-sticky .aronix-nav .navbar .others-options .cart-link i {
  color: #5b5b98;
}
.navbar-area-two.is-sticky .aronix-nav .navbar .others-options .cart-link span {
  background: #ff3547;
}
.navbar-area-two.is-sticky .aronix-nav .navbar .others-options .option-item .search-btn {
  color: #5b5b98;
}
.navbar-area-two.is-sticky .aronix-nav .navbar .others-options .burger-menu span {
  background: #5b5b98;
}
.navbar-area-two.is-sticky .aronix-nav .navbar-brand h2 {
  color: #212529;
}

@media only screen and (min-width: 992px) {
  .navbar-area-two .navbar-brand .black-logo {
    display: none;
  }
  .navbar-area-two.is-sticky .black-logo {
    display: block;
  }
  .navbar-area-two.is-sticky .white-logo {
    display: none;
  }
}
.machine-learning-banner {
  height: 100vh;
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-size: cover;
  background-position: center center;
}
.machine-learning-banner .container.mt-80 {
  margin-top: 80px;
}
.machine-learning-banner .banner-content h1 {
  color: #ffffff;
}
.machine-learning-banner .banner-content p {
  color: #ffffff;
}
.machine-learning-banner .banner-btn {
  margin-top: 30px;
}
.machine-learning-banner .banner-btn a {
  display: inline-flex;
}
.machine-learning-banner .ml-video {
  position: relative;
  text-align: center;
}
.machine-learning-banner .solution-video {
  text-align: center;
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  transform: translateY(-50%);
  margin: 0;
}
.machine-learning-banner .solution-video .video-btn {
  background-color: #ffffff;
  color: var(--mainColor);
}
.machine-learning-banner .solution-video .video-btn:hover {
  background-color: var(--optionalColor);
  color: #ffffff;
}
.machine-learning-banner .solution-video .video-btn:hover::after, .machine-learning-banner .solution-video .video-btn:hover::before {
  border: 1px solid transparent;
}
.machine-learning-banner .solution-video .video-btn::after, .machine-learning-banner .solution-video .video-btn::before {
  border: 1px solid #ffffff;
}

.ml-bg1 {
  background-image: url("../img/machine-learning/slider/ml-slider1.jpg");
}

.ml-bg2 {
  background-image: url("../img/machine-learning/slider/ml-slider2.jpg");
}

.ml-bg3 {
  background-image: url("../img/machine-learning/slider/ml-slider3.jpg");
}

.machine-learning-slider .owl-item img {
  display: inline-block;
  width: auto;
}
.machine-learning-slider.owl-theme .owl-nav {
  margin: 0;
}
.machine-learning-slider.owl-theme .owl-nav .owl-prev {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #ffffff;
  width: 40px;
  height: 40px;
  margin: 0;
  color: var(--mainColor);
  padding: 0;
  border-radius: 0;
}
.machine-learning-slider.owl-theme .owl-nav .owl-next {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #ffffff;
  width: 40px;
  height: 40px;
  margin: 0;
  color: var(--mainColor);
  padding: 0;
  border-radius: 0;
}
.machine-learning-slider.owl-theme .owl-nav .owl-prev:hover, .machine-learning-slider.owl-theme .owl-nav .owl-next:hover {
  background-color: var(--mainColor);
  color: #ffffff;
}
.machine-learning-slider.owl-theme .owl-dots {
  position: absolute;
  bottom: 15px;
  left: 60px;
  right: 60px;
}
.machine-learning-slider.owl-theme .owl-dots .owl-dot.active span, .machine-learning-slider.owl-theme .owl-dots .owl-dot:hover span {
  background-color: var(--mainColor);
}

.featured-solution-card {
  box-shadow: 0px 5px 20px 0px rgba(105, 146, 234, 0.14);
  transition: 0.5s;
  padding: 30px 25px;
  margin-bottom: 30px;
}
.featured-solution-card i {
  color: var(--mainColor);
  font-size: 35px;
  display: inline-block;
  margin-bottom: 20px;
}
.featured-solution-card h3 {
  font-size: 19px;
  line-height: 1.3;
  font-weight: bold;
}
.featured-solution-card h3 a {
  color: #212529;
}
.featured-solution-card h3 a:hover {
  color: var(--mainColor);
}
.featured-solution-card p {
  margin: 0;
  font-size: 15px;
}
.featured-solution-card .read-more {
  color: var(--mainColor);
  font-size: 14.5px;
  margin-top: 15px;
  position: relative;
  font-weight: 600;
  display: inline-block;
}
.featured-solution-card .read-more::after {
  content: "";
  background-color: var(--mainColor);
  height: 1px;
  width: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: 0.5s;
}
.featured-solution-card .read-more:hover::after {
  width: 100%;
}

.ml-services-area .section-title {
  max-width: 100%;
}
.ml-services-area .section-title h2 {
  max-width: 100%;
}
.ml-services-area .section-title p {
  max-width: 600px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.ml-service {
  margin-bottom: 30px;
  background: #fff;
  text-align: center;
  padding: 30px;
  overflow: hidden;
  position: relative;
  transition: 0.5s;
}
.ml-service .image {
  margin-bottom: 30px;
}
.ml-service h3 {
  font-size: 22px;
  margin-bottom: 10px;
  font-weight: bold;
}
.ml-service h3 a {
  color: #212529;
}
.ml-service h3 a:hover {
  color: var(--mainColor);
}
.ml-service p {
  margin: 0;
  font-size: 15px;
}
.ml-service .read-more {
  color: var(--mainColor);
  font-size: 15px;
  margin-top: 15px;
  position: relative;
  font-weight: 600;
  display: inline-block;
}
.ml-service .read-more::after {
  content: "";
  background-color: var(--mainColor);
  height: 1px;
  width: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: 0.5s;
}
.ml-service .read-more:hover::after {
  width: 100%;
}
.ml-service::before {
  content: "";
  background-color: var(--mainColor);
  position: absolute;
  top: -100%;
  left: -100%;
  width: 90px;
  height: 50px;
  transform: rotate(135deg);
  transition: 0.5s;
}
.ml-service:hover {
  transition: 0.5s;
}
.ml-service:hover::before {
  top: -32px;
  left: -34px;
}

.free-trial-area .subscribe-content .sub-title {
  color: var(--mainColor);
}
.free-trial-area .subscribe-content h2 {
  color: #212529;
}
.free-trial-area .subscribe-content .help-text {
  font-size: 15px;
  margin: 15px 0 0;
  font-style: italic;
}
.free-trial-area .subscribe-content .validation-danger {
  color: red !important;
  font-size: 15px;
}
.free-trial-area .subscribe-content .mchimp-errmessage, .free-trial-area .subscribe-content .mchimp-sucmessage {
  color: #212529;
}

/*================================================
End AI & Machine Learning Page CSS
=================================================*/
/*================================================
Portfolio Agency Page CSS
=================================================*/
.portfolio-agency-banner {
  height: 100vh;
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-size: cover;
  background-position: center center;
}
.portfolio-agency-banner::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.7);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.portfolio-agency-banner .container.mt-80 {
  margin-top: 80px;
}
.portfolio-agency-banner .banner-content {
  position: relative;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.portfolio-agency-banner .banner-content h1 {
  color: #ffffff;
}
.portfolio-agency-banner .banner-content p {
  color: #ffffff;
}
.portfolio-agency-banner .banner-btn {
  margin-top: 30px;
}
.portfolio-agency-banner .banner-btn a {
  display: inline-flex;
}

.pa-bg1 {
  background-image: url("../img/portfolio-agency/pa-slider1.jpg");
}

/*================================================
End Portfolio Agency Learning Page CSS
=================================================*/
.team-area .max-w-1700 {
  max-width: 1700px;
  padding-left: 30px;
  padding-right: 30px;
}

/*================================================
Blog CSS
=================================================*/
.blog-area {
  position: relative;
  z-index: 1;
  padding-bottom: 70px;
}
.blog-area .pagination-area {
  margin-bottom: 30px;
}

.single-blog-post {
  margin-bottom: 30px;
  background-color: #ffffff;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.2);
}
.single-blog-post .post-image {
  overflow: hidden;
}
.single-blog-post .post-image a {
  display: block;
}
.single-blog-post .post-image a img {
  transition: 0.5s;
  width: 100%;
}
.single-blog-post .post-content {
  padding: 25px;
  position: relative;
  z-index: 1;
}
.single-blog-post .post-content .post-meta {
  transition: 0.5s;
  margin-bottom: 10px;
}
.single-blog-post .post-content .post-meta ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
.single-blog-post .post-content .post-meta ul li {
  display: inline-block;
  margin-right: 15px;
  font-size: 15px;
  color: #737b9a;
  position: relative;
}
.single-blog-post .post-content .post-meta ul li::before {
  position: absolute;
  right: -11px;
  top: 3px;
  width: 1px;
  height: 13px;
  background-color: #737b9a;
  content: "";
  transform: rotate(10deg);
}
.single-blog-post .post-content .post-meta ul li a {
  display: inline-block;
  text-transform: capitalize;
}
.single-blog-post .post-content .post-meta ul li:last-child {
  margin-right: 0;
}
.single-blog-post .post-content .post-meta ul li:last-child::before {
  display: none;
}
.single-blog-post .post-content h3 {
  transition: 0.5s;
  margin-bottom: 8px;
  line-height: 1.4;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
  font-size: 24px;
  font-weight: 700;
}
.single-blog-post .post-content p {
  transition: 0.5s;
  margin-bottom: 0;
}
.single-blog-post .post-content .read-more-btn {
  display: inline-block;
  position: absolute;
  bottom: 15px;
  left: 25px;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  font-size: 16px;
  font-weight: 400;
}
.single-blog-post .post-content .read-more-btn::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 1px;
  width: 0;
  transition: 0.5s;
  height: 1px;
}
.single-blog-post .post-content .read-more-btn i {
  font-size: 14px;
}
.single-blog-post .post-content .read-more-btn:hover::before {
  width: 100%;
}
.single-blog-post:hover .post-image a img {
  transform: scale(1.2) rotate(4deg);
}
.single-blog-post:hover .post-content .post-meta {
  transform: translateY(-35px);
  opacity: 0;
  visibility: hidden;
}
.single-blog-post:hover .post-content h3 {
  transform: translateY(-35px);
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}
.single-blog-post:hover .post-content P {
  transform: translateY(-35px);
}
.single-blog-post:hover .post-content .read-more-btn {
  opacity: 1;
  visibility: visible;
  bottom: 23px;
}

.home-post .post-content h3 {
  font-size: 22px;
}

.blog-section {
  padding-bottom: 90px;
}

.single-blog-card {
  position: relative;
  margin-bottom: 30px;
}
.single-blog-card::before {
  opacity: 0.8;
  background: #212529;
  content: "";
  height: 100%;
  bottom: 0;
  left: 0;
  z-index: 1;
  right: 0;
  position: absolute;
  width: 100%;
}
.single-blog-card .post-tag {
  position: absolute;
  right: 0;
  top: 30px;
  transition: 0.5s;
  z-index: 2;
}
.single-blog-card .post-tag a {
  color: #ffffff;
  padding: 9px 28px;
}
.single-blog-card .blog-post-content {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 20px 30px 0;
  transition: 0.5s;
  z-index: 2;
}
.single-blog-card .blog-post-content h3 {
  font-size: 22px;
  margin-bottom: 15px;
  line-height: 28px;
}
.single-blog-card .blog-post-content p {
  color: #ffffff;
  opacity: 0.77;
}
.single-blog-card .blog-post-content .read-more-btn {
  position: relative;
  opacity: 0;
  visibility: hidden;
  font-weight: 600;
}
.single-blog-card .blog-post-content .read-more-btn:hover {
  letter-spacing: 1px;
}
.single-blog-card .blog-post-content ul.entry-meta li {
  color: #fff;
}
.single-blog-card .blog-post-content ul.entry-meta li a {
  color: #fff;
}
.single-blog-card:hover .post-tag, .single-blog-card:focus .post-tag {
  top: 40px;
}
.single-blog-card:hover .blog-post-content, .single-blog-card:focus .blog-post-content {
  padding-bottom: 30px;
}
.single-blog-card:hover .blog-post-content .read-more-btn, .single-blog-card:focus .blog-post-content .read-more-btn {
  opacity: 1;
  visibility: visible;
}

/* Sticky Post */
.sticky .single-blog-post {
  padding-left: 33px;
  border: 1px solid #212529;
  background-color: #212529;
}
.sticky .single-blog-post .read-more-btn {
  color: #fff !important;
}
.sticky .single-blog-post .read-more-btn::before {
  background: #fff;
}
.sticky .single-blog-post h3 {
  color: #fff;
  position: relative;
}
.sticky .single-blog-post h3::before {
  font-family: "Font Awesome 5 Free";
  content: "\f08d";
  position: absolute;
  left: -30px;
  top: 3px;
  font-size: 22px;
  font-weight: 900;
}
.sticky .single-blog-post h3 a {
  color: #fff;
}
.sticky .single-blog-post p {
  color: #fff;
}
.sticky .single-blog-post .post-meta ul li {
  color: #fff;
}
.sticky .single-blog-post .post-meta ul li i {
  color: #fff !important;
}
.sticky .single-blog-post .post-meta ul li a {
  color: #fff !important;
  transition: 0.4s;
}
.sticky .single-blog-post .post-meta ul li a:hover {
  text-decoration: underline;
}

/* End Sticky Post */
/* Entry meta */
ul.entry-meta {
  list-style-type: none;
  padding: 0;
  margin: 0 0 5px;
  line-height: 1;
}
ul.entry-meta li {
  display: inline-block;
  font-size: 13.5px;
  color: #737b9a;
  line-height: 1;
  margin-right: 15px;
  margin-bottom: 10px;
  font-weight: 300;
}
ul.entry-meta li:last-child {
  margin-right: 0;
}
ul.entry-meta li a {
  color: #737b9a;
  text-decoration: none;
  display: inline-block;
  text-transform: capitalize;
}
ul.entry-meta li i {
  padding-right: 5px;
  font-style: normal;
}

/* End Entry meta */
/* Widget sidebar */
.sidebar {
  padding-left: 15px;
}
.sidebar .widget {
  margin-top: 30px;
}
.sidebar .widget:first-child {
  margin-top: 0;
}
.sidebar .widget {
  border: 1px solid #eee;
  padding: 30px;
  background-color: #fff;
}
.sidebar .widget .widget-title {
  font-weight: bold;
  font-size: 20px;
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 10px;
  margin-bottom: 20px;
  text-transform: capitalize;
  position: relative;
}
.sidebar .widget .widget-title::before {
  content: "";
  height: 20px;
  width: 2px;
  left: -30px;
  position: absolute;
}
.sidebar .widget ul {
  padding-left: 17px;
  list-style-type: none;
  margin: 0;
}
.sidebar .widget ul li {
  position: relative;
  margin-bottom: 8px;
  line-height: 1.8;
  font-size: 15.5px;
  font-weight: 600;
  color: #737b9a;
}
.sidebar .widget ul li:last-child {
  margin-bottom: 0;
}
.sidebar .widget ul li::before {
  height: 7px;
  width: 7px;
  content: "";
  left: -17px;
  top: 8px;
  position: absolute;
}
.sidebar .widget ul li a {
  font-size: 15.5px;
  font-weight: 600;
}
.sidebar .widget ul li a:hover .post_count {
  border: 1px solid;
}
.sidebar .widget ul li a .post_count {
  position: absolute;
  right: 0;
  border: 1px solid #eee;
  width: 25px;
  text-align: center;
  height: 25px;
  line-height: 25px;
  font-size: 13px;
}
.sidebar .widget_search {
  box-shadow: 0px 0px 29px 0px rgba(102, 102, 102, 0.1);
  background-color: #ffffff;
}
.sidebar .widget_search form {
  position: relative;
}
.sidebar .widget_search form label {
  display: block;
  margin-bottom: 0;
}
.sidebar .widget_search form .screen-reader-text {
  display: none;
}
.sidebar .widget_search form .search-field {
  background-color: transparent;
  height: 50px;
  padding: 6px 15px;
  border: 1px solid #eeeeee;
  width: 100%;
  display: block;
  outline: 0;
  transition: 0.5s;
}
.sidebar .widget_search form button {
  position: absolute;
  right: 0;
  bottom: 0;
  color: #fff;
  height: 50px;
  width: 50px;
  z-index: 1;
  border: none;
  background-color: transparent;
  transition: 0.5s;
}
.sidebar .widget_search form button::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  top: 0;
  transition: 0.5s;
}
.sidebar .widget_search form button::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  top: 0;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
}
.sidebar .widget_search form button:hover::before {
  opacity: 0;
  visibility: hidden;
}
.sidebar .widget_search form button:hover::after {
  opacity: 1;
  visibility: visible;
}
.sidebar select {
  height: 45px;
  border: 1px solid #eee;
  width: 100%;
  color: #737b9a;
  font-size: 13.5px;
  padding: 8px 15px;
}
.sidebar .nice-select {
  float: unset;
  word-break: break-word;
  width: 100%;
  white-space: inherit;
  font-size: 15.5px;
}
.sidebar .nice-select .option {
  padding-top: 8px;
  padding-bottom: 5px;
}
.sidebar .nice-select ul li::before {
  display: none;
}
.sidebar .nice-select ul {
  padding-top: 12px;
}
.sidebar .nice-select ul li {
  margin-bottom: 0px;
}
.sidebar .nice-select .option.selected.focus {
  display: none;
}
.sidebar .nice-select .list {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
.sidebar .widget_categories ul li {
  font-weight: 600;
}
.sidebar .widget_categories ul li a {
  text-transform: capitalize;
}
.sidebar .widget_categories ul li .children {
  margin-top: 10px;
}
.sidebar .widget_pages ul li.page_item_has_children > a {
  margin-bottom: 10px;
  display: inline-block;
}
.sidebar .widget_pages ul li a {
  text-transform: capitalize;
}
.sidebar .widget_rss ul li {
  margin-bottom: 20px;
}
.sidebar .widget_rss ul li::before {
  top: 10px;
}
.sidebar .widget_rss ul li:last-child {
  margin-bottom: 0;
}
.sidebar .widget_rss ul li .rsswidget {
  display: block;
  color: #222222;
  font-weight: 700;
  font-size: 15.5px;
}
.sidebar .widget_rss ul li .rss-date {
  font-size: 13px;
  margin: 3px 0 10px;
  display: block;
}
.sidebar .widget_rss ul li .rssSummary {
  color: #737b9a;
  line-height: 25px;
  font-size: 14px;
}
.sidebar .widget_rss ul li cite {
  font-weight: 400;
  display: block;
  margin-top: 10px;
  font-style: normal;
  color: #222;
  font-size: 13.5px;
}
.sidebar .tagcloud a {
  border: 1px solid #eee;
  padding: 6px 12px;
  font-size: 14px !important;
  margin-top: 4px;
  margin-bottom: 4px;
  display: inline-block;
  margin-right: 4px;
  text-transform: capitalize;
}
.sidebar .tagcloud a:hover {
  color: #fff;
}
.sidebar .widget_text p img {
  margin: 10px 0;
}
.sidebar .widget_text .wp-caption-text {
  border: none;
  text-align: center;
  font-size: 13px;
}
.sidebar .calendar_wrap table {
  margin: 0;
  text-align: center;
}
.sidebar .calendar_wrap table th, .sidebar .calendar_wrap table td {
  font-size: 14px;
  padding: 8px 5px;
}
.sidebar .calendar_wrap table th a, .sidebar .calendar_wrap table td a {
  text-decoration: none;
}
.sidebar .calendar_wrap table #today {
  background-color: #eee;
  font-weight: 500;
}
.sidebar .calendar_wrap caption {
  padding-top: 0;
  color: #393d40;
  caption-side: top;
  font-weight: 600;
}
.sidebar .widget_nav_menu .sub-menu {
  margin-top: 8px;
}
.sidebar .widget_recent_comments .recentcomments .comment-author-link {
  font-weight: 400;
  font-size: 14px;
}
.sidebar .widget_recent_comments .recentcomments a {
  font-weight: 600;
}
.sidebar .widget_media_gallery .gallery {
  margin: 0;
}
.sidebar .widget_media_gallery .gallery .gallery-item {
  margin: 0;
}
.sidebar .widget_recent_entries ul li a {
  font-weight: 600;
  font-size: 15.5px;
}
.sidebar .widget_recent_entries ul li .post-date {
  display: block;
  font-size: 13px;
  color: #767676;
}
.sidebar p {
  font-size: 14px;
}
.sidebar span.post-count {
  float: right;
}

/* Post search not found form */
.no-results {
  box-shadow: 0px 0px 29px 0px rgba(102, 102, 102, 0.1);
  background-color: #ffffff;
  padding: 35px;
}
.no-results h1.page-title {
  font-size: 25px;
  font-weight: 500;
}
.no-results form {
  position: relative;
}
.no-results form label {
  display: block;
  margin-bottom: 0;
}
.no-results form .screen-reader-text {
  display: none;
}
.no-results form .search-field {
  background-color: #f6f4f7;
  height: 50px;
  padding: 6px 15px;
  border: 1px solid #f6f4f7;
  width: 100%;
  display: block;
  outline: 0;
  transition: 0.5s;
}
.no-results form button {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 50px;
  width: 50px;
  z-index: 1;
  border: none;
  color: #ffffff;
  background-color: transparent;
  transition: 0.4s;
}
.no-results form button::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  top: 0;
  transition: 0.5s;
}
.no-results form button::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  top: 0;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
}
.no-results form button:hover::before {
  opacity: 0;
  visibility: hidden;
}
.no-results form button:hover::after {
  opacity: 1;
  visibility: visible;
}

/* End Post search not found form */
/*================================================
Blog Details CSS
=================================================*/
.blog-details .blog-meta ul {
  list-style-type: none;
  padding: 0 !important;
  margin: 0 0 10px !important;
  line-height: 1;
}
.blog-details .blog-meta ul li {
  display: inline-block;
  font-size: 14px;
  color: #737b9a;
  line-height: 1 !important;
  margin-right: 15px;
  margin-bottom: 10px !important;
}
.blog-details .blog-meta ul li:last-child {
  margin-right: 0;
}
.blog-details .blog-meta ul li a {
  color: #737b9a !important;
  text-decoration: none !important;
  text-transform: capitalize;
  display: inline-block;
}
.blog-details .blog-meta ul li i {
  padding-right: 5px;
  font-style: normal;
}

.post-tag-media {
  background-color: #fafafa;
  clear: both;
  margin-top: 20px;
  padding: 10px 25px;
}
.post-tag-media ul {
  padding: 0 !important;
  margin: 0 !important;
}
.post-tag-media ul li {
  display: inline-block;
  margin: 5px 0;
}
.post-tag-media ul li span {
  font-weight: 600;
  margin-right: 5px;
  display: inline-block;
}
.post-tag-media ul li a {
  color: #737b9a !important;
  margin-left: 5px;
  text-transform: uppercase;
  font-size: 13px;
  border: 1px solid #ececec;
  padding: 3px 15px;
  display: inline-block;
  text-decoration: none !important;
  background-color: #fff;
  border-radius: 30px;
}
.post-tag-media ul li a:hover {
  color: #fff !important;
}
.post-tag-media ul.social-share {
  text-align: right;
}

/* HTML Tags and Formatting */
.blog-details .blog-details-content {
  padding: 30px;
  overflow: hidden;
  border: 1px solid #eee;
  background-color: #fff;
}
.blog-details .blog-details-content .entry-meta {
  margin-top: 10px;
}
.blog-details .blog-details-content .nice-select {
  width: 100%;
  margin-bottom: 10px;
}
.blog-details .blog-details-content .nice-select ul {
  padding-left: 0;
  margin-top: 10px;
}
.blog-details .blog-details-content .nice-select ul li {
  list-style-type: none;
  padding-top: 8px;
  padding-left: 20px;
}
.blog-details .blog-details-content h1 {
  font-size: 40px;
  margin-bottom: 15px;
}
.blog-details .blog-details-content h2 {
  font-size: 35px;
  margin-bottom: 15px;
}
.blog-details .blog-details-content h3 {
  font-size: 30px;
  margin-bottom: 15px;
}
.blog-details .blog-details-content h4 {
  font-size: 25px;
  margin-bottom: 15px;
}
.blog-details .blog-details-content h5 {
  font-size: 20px;
  margin-bottom: 15px;
}
.blog-details .blog-details-content h6 {
  font-size: 18px;
  margin-bottom: 15px;
}
.blog-details .blog-details-content p a {
  text-decoration: underline;
}
.blog-details .blog-details-content p a:hover {
  text-decoration: none;
}
.blog-details .blog-details-content .entry-content a {
  text-decoration: underline;
}
.blog-details .blog-details-content .entry-content a:hover {
  text-decoration: none;
}
.blog-details .blog-details-content dl, .blog-details .blog-details-content ol, .blog-details .blog-details-content ul {
  margin-top: 20px;
  margin-bottom: 20px;
}
.blog-details .blog-details-content dt {
  margin-bottom: 5px;
  color: #0d1028;
}
.blog-details .blog-details-content dd {
  margin: 0 1rem 1rem;
  font-size: 15px;
  line-height: 26px;
}
.blog-details .blog-details-content dd a {
  text-decoration: underline;
}
.blog-details .blog-details-content dd a:hover {
  text-decoration: none;
}
.blog-details .blog-details-content ul {
  list-style: disc;
  padding-left: 20px;
}
.blog-details .blog-details-content ul li {
  list-style: disc;
  line-height: 1.8;
  margin-bottom: 5px;
  color: #737b9a;
}
.blog-details .blog-details-content ul li a {
  text-decoration: underline;
}
.blog-details .blog-details-content ul li a:hover {
  text-decoration: none;
}
.blog-details .blog-details-content ul li ol {
  margin: 5px 0 0;
  list-style-type: decimal;
}
.blog-details .blog-details-content ul li ol li {
  list-style-type: decimal;
}
.blog-details .blog-details-content ul li ul {
  margin: 5px 0 0;
  list-style-type: circle;
}
.blog-details .blog-details-content ul li ul li {
  list-style-type: circle;
}
.blog-details .blog-details-content ul li ul li ol {
  list-style-type: decimal;
}
.blog-details .blog-details-content ul li ul li ol li {
  list-style-type: decimal;
}
.blog-details .blog-details-content ol {
  padding-left: 20px;
}
.blog-details .blog-details-content ol li {
  line-height: 1.8;
  margin-bottom: 5px;
  color: #737b9a;
}
.blog-details .blog-details-content ol li a {
  text-decoration: underline;
}
.blog-details .blog-details-content ol li a:hover {
  text-decoration: none;
}
.blog-details .blog-details-content ol li ol, .blog-details .blog-details-content ol li ul {
  margin: 5px 0 0;
}
.blog-details .blog-details-content b, .blog-details .blog-details-content strong {
  font-weight: 500;
}
.blog-details .blog-details-content dfn, .blog-details .blog-details-content cite, .blog-details .blog-details-content em, .blog-details .blog-details-content i {
  font-style: italic;
}
.blog-details .blog-details-content code, .blog-details .blog-details-content kbd, .blog-details .blog-details-content tt, .blog-details .blog-details-content var {
  font-size: 0.88889em;
  font-family: Menlo, monaco, Consolas, Lucida Console, monospace;
}
.blog-details .blog-details-content kbd {
  background-color: #676767;
}
.blog-details .blog-details-content mark, .blog-details .blog-details-content ins {
  background: #fff9c0;
  text-decoration: none;
}
.blog-details .blog-details-content pre {
  font-size: 0.88889em;
  font-family: "Courier 10 Pitch", Courier, monospace;
  line-height: 1.8;
  overflow: auto;
}
.blog-details .blog-details-content abbr, .blog-details .blog-details-content acronym {
  border-bottom: 1px dotted #484848;
  cursor: help;
}
.blog-details .blocks-gallery-caption {
  margin-bottom: 8px;
}
.blog-details .wp-block-group__inner-container {
  padding: 30px;
}
.blog-details .wp-block-archives-list li span.post-count {
  padding-left: 8px;
  float: right;
}
.blog-details .wp-block-categories-dropdown {
  margin-bottom: 20px;
}
.blog-details .wp-block-categories-dropdown select {
  height: 45px;
  border: 1px solid #eee;
  width: 100%;
  font-size: 14px;
  padding: 8px 15px;
  color: #555;
}
.blog-details .wp-block-tag-cloud a {
  display: inline-block;
  text-transform: capitalize;
  font-weight: 500;
  font-size: 13.5px !important;
  padding: 6px 13px;
  border: 1px dashed #eeeeee;
  position: relative;
  color: #393953 !important;
  text-decoration: none !important;
  margin-top: 8px;
  margin-right: 4px;
}
.blog-details .wp-block-tag-cloud a:hover, .blog-details .wp-block-tag-cloud a:focus {
  color: #ffffff !important;
}
.blog-details .wp-block-search {
  margin-bottom: 30px;
  position: relative;
}
.blog-details .wp-block-search label {
  display: block;
  margin-bottom: 10px;
}
.blog-details .wp-block-search .screen-reader-text {
  display: none;
}
.blog-details .wp-block-search .wp-block-search__input {
  background-color: #ffffff;
  height: 50px;
  padding: 6px 15px;
  border: 1px solid #eeeeee;
  width: 100%;
  display: block;
  outline: 0;
  transition: 0.5s;
}
.blog-details .wp-block-search button {
  position: absolute;
  right: 0;
  outline: 0;
  bottom: 0;
  height: 50px;
  width: 80px;
  z-index: 1;
  border: none;
  color: #ffffff;
}
.blog-details .wp-block-search button:hover {
  color: #ffffff;
  background: #393953 !important;
}

/* End HTML Tags and Formatting */
/* Template: Comments */
.comments-area {
  background-color: #ffffff;
  padding: 25px;
}
.comments-area .comments-title {
  position: relative;
  margin-bottom: 30px;
  font-size: 22px;
  font-weight: bold;
}
.comments-area .comments-title::before {
  content: "";
  height: 25px;
  width: 3px;
  left: -25px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.comments-area ol, .comments-area ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.comments-area .comment-list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.comments-area .children {
  margin-left: 20px;
}
.comments-area .comment-body {
  border-bottom: 1px solid #eeeeee;
  padding-left: 0;
  color: #212529;
  font-size: 14px;
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.comments-area .comment-body .reply {
  margin-top: 15px;
}
.comments-area .comment-body .reply a {
  display: inline-block;
  border: 1px solid;
  padding: 5px 20px;
  border-radius: 30px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
}
.comments-area .comment-body .reply a:hover {
  color: #ffffff;
}
.comments-area .comment-meta {
  margin-bottom: 0.8em;
}
.comments-area .comment-author {
  font-size: 15px;
  margin-bottom: 0.4em;
  position: relative;
  z-index: 2;
}
.comments-area .comment-author .avatar {
  height: 50px;
  left: -65px;
  position: absolute;
  width: 50px;
}
.comments-area .comment-author .fn {
  font-weight: 600;
}
.comments-area .comment-author .says {
  display: none;
}
.comments-area .comment-metadata {
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 600;
}
.comments-area .comment-content p {
  font-size: 14px;
}
.comments-area .comment-respond .comment-reply-title {
  margin: 0;
  position: relative;
  font-size: 19px;
  font-weight: 600;
}
.comments-area .comment-respond .comment-reply-title::before {
  content: "";
  height: 20px;
  width: 2px;
  left: -30px;
  position: absolute;
  top: 2px;
}
.comments-area .comment-respond .comment-reply-title #cancel-comment-reply-link {
  font-size: 15px;
  display: inline-block;
}
.comments-area .comment-respond .comment-form {
  overflow: hidden;
}
.comments-area .comment-respond .comment-notes {
  margin-bottom: 0;
  margin-top: 15px;
}
.comments-area .comment-respond .comment-notes .required {
  color: red;
}
.comments-area .comment-respond .comment-form-comment {
  margin-top: 15px;
  float: left;
  width: 100%;
}
.comments-area .comment-respond label {
  display: block;
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 14px;
  color: #212529;
}
.comments-area .comment-respond input[type=date], .comments-area .comment-respond input[type=time], .comments-area .comment-respond input[type=datetime-local], .comments-area .comment-respond input[type=week], .comments-area .comment-respond input[type=month], .comments-area .comment-respond input[type=text], .comments-area .comment-respond input[type=email], .comments-area .comment-respond input[type=url], .comments-area .comment-respond input[type=password], .comments-area .comment-respond input[type=search], .comments-area .comment-respond input[type=tel], .comments-area .comment-respond input[type=number], .comments-area .comment-respond textarea {
  display: block;
  width: 100%;
  background-color: #ffffff;
  border: 1px solid #eeeeee;
  padding: 0.625em 0.7375em;
  outline: 0;
  transition: 0.5s;
}
.comments-area .comment-respond .comment-form-author {
  float: left;
  width: 50%;
  padding-right: 10px;
}
.comments-area .comment-respond .comment-form-email {
  float: left;
  width: 50%;
  padding-left: 12px;
}
.comments-area .comment-respond .comment-form-url {
  float: left;
  width: 100%;
}
.comments-area .comment-respond .comment-form-cookies-consent {
  width: 100%;
  float: left;
  position: relative;
  padding-left: 20px;
  margin-bottom: 20px;
}
.comments-area .comment-respond .comment-form-cookies-consent input {
  position: absolute;
  left: 0;
  top: 2px;
}
.comments-area .comment-respond .comment-form-cookies-consent label {
  display: inline-block;
  margin: 0;
  font-weight: normal;
}
.comments-area .comment-respond .form-submit {
  float: left;
  width: 100%;
}
.comments-area .comment-respond .form-submit input {
  border: none;
  padding: 15px 25px;
  display: inline-block;
  cursor: pointer;
  outline: 0;
  border-radius: 0;
  text-transform: uppercase;
  transition: 0.5s;
  font-weight: 600;
  font-size: 13px;
}
.comments-area .comment-respond .form-submit input:hover, .comments-area .comment-respond .form-submit input:focus {
  color: #ffffff;
  border: none;
}

.comments-area .comments-title {
  margin-bottom: 25px;
  font-size: 22px;
  font-weight: bold;
  border-bottom: 1px solid #eee;
  position: relative;
  padding-bottom: 10px;
}
.comments-area .comments-title::before {
  content: "";
  height: 24px;
  width: 3px;
  left: -32px;
  position: absolute;
}
.comments-area .comment-content h1 {
  font-size: 35px;
  margin-bottom: 15px;
}
.comments-area .comment-content h2 {
  font-size: 30px;
  margin-bottom: 15px;
}
.comments-area .comment-content h3 {
  font-size: 26px;
  margin-bottom: 15px;
}
.comments-area .comment-content h4 {
  font-size: 22px;
  margin-bottom: 15px;
}
.comments-area .comment-content h5 {
  font-size: 20px;
  margin-bottom: 15px;
}
.comments-area .comment-content h6 {
  font-size: 18px;
  margin-bottom: 15px;
}
.comments-area .comment-content p {
  margin-bottom: 10px;
  font-size: 14px;
}
.comments-area .comment-content p:last-child {
  margin-bottom: 0;
}
.comments-area .comment-content p a {
  text-decoration: underline;
}
.comments-area .comment-content p a:hover {
  text-decoration: none;
}
.comments-area .comment-content .entry-content a {
  text-decoration: underline;
}
.comments-area .comment-content .entry-content a:hover {
  text-decoration: none;
}
.comments-area .comment-content dl, .comments-area .comment-content ol, .comments-area .comment-content ul {
  margin-top: 20px;
  margin-bottom: 20px;
}
.comments-area .comment-content dt {
  margin-bottom: 5px;
  color: #0d1028;
}
.comments-area .comment-content dd {
  margin: 0 1rem 1rem;
  font-size: 15px;
  line-height: 26px;
}
.comments-area .comment-content dd a {
  text-decoration: underline;
}
.comments-area .comment-content dd a:hover {
  text-decoration: none;
}
.comments-area .comment-content ul {
  list-style: disc;
  padding-left: 20px;
}
.comments-area .comment-content ul li {
  list-style: disc;
  line-height: 1.8;
  margin-bottom: 5px;
}
.comments-area .comment-content ul li ul {
  margin: 5px 0 0;
  list-style-type: circle;
}
.comments-area .comment-content ul li ul li {
  list-style-type: circle;
}
.comments-area .comment-content ol {
  padding-left: 20px;
}
.comments-area .comment-content ol li {
  line-height: 1.8;
  margin-bottom: 5px;
  list-style-type: decimal;
}
.comments-area .comment-content ol li ol {
  margin: 5px 0 0;
}
.comments-area .comment-content b, .comments-area .comment-content strong {
  font-weight: 600;
  color: #212529;
}
.comments-area .comment-content dfn, .comments-area .comment-content cite, .comments-area .comment-content em, .comments-area .comment-content i {
  font-style: italic;
}
.comments-area .comment-content code, .comments-area .comment-content kbd, .comments-area .comment-content tt, .comments-area .comment-content var {
  font-size: 0.88889em;
  font-family: Menlo, monaco, Consolas, Lucida Console, monospace;
}
.comments-area .comment-content kbd {
  background-color: #676767;
}
.comments-area .comment-content mark, .comments-area .comment-content ins {
  background: #fff9c0;
  text-decoration: none;
}
.comments-area .comment-content pre {
  font-size: 0.88889em;
  font-family: "Courier 10 Pitch", Courier, monospace;
  line-height: 1.8;
  overflow: auto;
  background: #fafafa;
}
.comments-area .comment-content abbr, .comments-area .comment-content acronym {
  border-bottom: 1px dotted #484848;
  cursor: help;
}
.comments-area blockquote {
  background-color: #fff;
  border-bottom: 1px solid #eee;
  border-top: 1px solid #eee;
  border-right: 1px solid #eee;
}

/* End Template: Comments */
/* Comments list style */
#comments {
  clear: both;
  padding: 30px;
  margin-top: 30px;
  list-style: none;
  background-color: #fff;
  border: 1px solid #eee;
}
#comments .comment-list {
  margin: 0 0 30px;
  padding: 0;
  list-style-type: none;
}
#comments .comment-list .children {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
#comments .comment-list:before {
  display: none;
}
#comments .comment-list .comment-body {
  border-bottom: 1px solid #eee;
  margin-left: 65px;
  font-size: 14px;
  margin-bottom: 20px;
  padding-bottom: 20px;
}
#comments .comment-list .comment-body .comment-content img {
  margin: 7px 0;
}
#comments .comment-list .comment-body .reply {
  margin-top: 15px;
}
#comments .comment-list .comment-body .reply a {
  border: 1px solid;
  display: inline-flex;
  padding: 7px 15px;
  line-height: 1;
  border-radius: 30px;
  font-size: 11px;
  text-decoration: none;
}
#comments .comment-list .comment-body .reply a:hover {
  color: #fff;
}
#comments .comment-author {
  font-size: 15px;
  margin-bottom: 0.4em;
  position: relative;
  text-transform: capitalize;
  z-index: 2;
}
#comments .comment-author .avatar {
  height: 50px;
  left: -65px;
  position: absolute;
  width: 50px;
}
#comments .comment-author .says {
  display: none;
}
#comments .comment-author b.fn {
  font-weight: 600;
}
#comments .comment-meta {
  margin-bottom: 1em;
}
#comments .comment-metadata {
  color: #615b5b;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}
#comments .comment-metadata a {
  color: #615b5b;
}
#comments .comment-metadata a.comment-edit-link {
  color: #222;
  margin-left: 1em;
}
#comments .comment-reply-link {
  font-weight: 600;
  position: relative;
}
#comments .comment-reply-link .icon {
  color: #222;
  left: -2em;
  height: 1em;
  position: absolute;
  top: 0;
  width: 1em;
}
#comments .children {
  padding-left: 10px !important;
}
#comments .children .comment-author .avatar {
  height: 30px;
  left: -45px;
  width: 30px;
}
#comments .bypostauthor > .comment-body > .comment-meta > .comment-author .avatar {
  border: 1px solid #575757;
  padding: 2px;
}
#comments .no-comments,
#comments .comment-awaiting-moderation {
  color: #767676;
  font-size: 14px;
  font-size: 0.875rem;
  font-style: italic;
}
#comments .comments-pagination {
  margin: 2em 0 3em;
}

.comments-area .comment-list .comment .comment-respond {
  margin-bottom: 30px;
}

/* End Comments list style */
/* Comment form */
.comment-respond .comment-reply-title {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 600;
  border-bottom: 1px solid #eee;
  position: relative;
  padding-bottom: 10px;
}
.comment-respond .comment-reply-title::before {
  content: "";
  height: 24px;
  width: 3px;
  left: -32px;
  position: absolute;
}
.comment-respond form {
  overflow: hidden;
}
.comment-respond form label {
  display: block;
  font-weight: 500;
  color: #444967;
  margin-bottom: 10px;
}
.comment-respond input[type=date], .comment-respond input[type=time], .comment-respond input[type=datetime-local], .comment-respond input[type=week], .comment-respond input[type=month], .comment-respond input[type=text], .comment-respond input[type=email], .comment-respond input[type=url], .comment-respond input[type=password], .comment-respond input[type=search], .comment-respond input[type=tel], .comment-respond input[type=number], .comment-respond textarea {
  background-image: none;
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 0;
  color: #686868;
  padding: 0.625em 0.4375em;
  width: 100%;
  height: 45px;
}
.comment-respond textarea {
  height: auto !important;
}
.comment-respond .form-submit {
  text-align: left;
  margin-top: 0;
}
.comment-respond .form-submit input {
  border: 1px solid;
  color: #fff;
  padding: 15px 25px;
  display: inline-block;
  font-weight: 500;
  cursor: pointer;
  font-size: 12px;
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: 0.5s;
  -webkit-transition: 0.5s;
}
.comment-respond .form-submit input:hover {
  background-color: #000;
  border: 1px solid #000;
  color: #fff;
}
.comment-respond input:focus, .comment-respond textarea:focus {
  outline: 0;
  border: 1px solid;
}
.comment-respond p {
  line-height: 1;
  margin-bottom: 0;
  margin-top: 25px;
}
.comment-respond .comment-form-cookies-consent label {
  display: inline-block;
  margin: 0;
  line-height: 20px;
  font-weight: normal;
  font-size: 14px;
}
.comment-respond p.comment-notes {
  line-height: 25px;
  font-size: 14px;
  margin-top: 5px;
}
.comment-respond p.comment-form-comment {
  float: left;
  width: 100%;
  margin-bottom: 0;
}
.comment-respond p.comment-form-author {
  width: 50%;
  float: left;
  padding-right: 12px;
  margin-bottom: 0;
}
.comment-respond p.comment-form-email {
  width: 50%;
  float: left;
  padding-left: 12px;
  margin-bottom: 0;
}
.comment-respond p.comment-form-url {
  float: left;
  width: 100%;
  margin-bottom: 0;
}
.comment-respond p.comment-form-cookies-consent {
  width: 100%;
  float: left;
  position: relative;
  padding-left: 20px;
}
.comment-respond p.comment-form-cookies-consent input {
  position: absolute;
  left: 0;
  top: 3px;
}
.comment-respond p.form-submit {
  float: left;
  width: 100%;
}
.comment-respond p.logged-in-as {
  line-height: 26px;
  font-size: 15px;
  margin-top: 15px !important;
  margin-bottom: 10px;
}
.comment-respond p.logged-in-as a {
  text-decoration: underline;
  font-size: 13.5px;
}
.comment-respond p.logged-in-as a:hover {
  text-decoration: none;
}
.comment-respond .required {
  color: red;
}

/* End Comment form */
/* Unit test all post style */
.wp-block-image {
  margin-bottom: 20px;
}
.wp-block-image figcaption {
  font-size: 14px;
  margin-top: 12px;
  text-align: center;
  color: #737b9a;
}
.wp-block-image figcaption a {
  text-decoration: underline;
}
.wp-block-image figcaption a:hover {
  text-decoration: none;
}

.wp-block-button {
  margin: 20px 0;
  clear: both;
}
.wp-block-button .wp-block-button__link {
  font-size: 16px;
  border-radius: 5px;
}
.wp-block-button .wp-block-button__link br {
  display: none;
}
.wp-block-button .wp-block-button__link:hover {
  background-color: #222;
  color: #fff;
}

.is-style-outline .wp-block-button__link {
  background-color: transparent !important;
  font-size: 16px;
  border-radius: 5px;
}
.is-style-outline .wp-block-button__link:hover {
  background-color: transparent;
}

pre.wp-block-code {
  border: 1px solid #eee;
  padding: 10px 15px;
}

pre.wp-block-preformatted {
  background-color: #fafafa;
  padding: 20px;
  margin: 20px 0;
}

.wp-block-pullquote {
  border-top: 4px solid #555d66;
  border-bottom: 4px solid #555d66;
  color: #40464d;
  border-color: transparent;
  border-width: 2px;
  padding: 0;
}
.wp-block-pullquote blockquote {
  color: #737b9a;
  border: none;
  margin-right: 0;
  padding-left: 0;
}
.wp-block-pullquote blockquote p {
  font-size: 2.25em;
  font-style: italic;
}
.wp-block-pullquote blockquote cite {
  display: inline-block;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  line-height: 1.6;
  text-transform: none;
  color: #767676;
  font-size: 15px;
  font-style: normal;
}

.wp-block-table.is-style-stripes td {
  border-color: #eaeaea;
}

.wp-block-verse {
  font-family: "Poppins", sans-serif !important;
  font-size: 16px !important;
}

.wp-block-columns {
  margin-top: 20px;
  margin-bottom: 20px;
}

.wp-block-media-text {
  margin-top: 30px;
  margin-bottom: 30px;
}
.wp-block-media-text .has-large-font-size {
  font-size: 25px;
  margin-top: 0 !important;
}

.page-links {
  margin-top: 20px;
  margin-bottom: 20px;
  clear: both;
}
.page-links span.page-links-title {
  font-weight: 500;
  font-size: 20px;
  padding-right: 10px;
}
.page-links .post-page-numbers {
  width: 35px;
  height: 35px;
  border-radius: 25px;
  background-color: #ffffff;
  border: 1px solid #eee;
  font-size: 15px;
  line-height: 35px;
  color: #0a0c19;
  text-align: center;
  display: inline-block;
  margin-left: 5px;
  text-decoration: none !important;
}
.page-links .post-page-numbers:hover {
  color: #ffffff;
}
.page-links .current {
  color: #ffffff;
}

.wp-block-archives-list {
  padding: 0 !important;
}
.wp-block-archives-list li {
  list-style: none !important;
}
.wp-block-archives-list li a:hover {
  text-decoration: underline;
}

.wp-block-categories-list {
  padding: 0 !important;
}
.wp-block-categories-list li {
  list-style: none !important;
}
.wp-block-categories-list li a {
  text-transform: capitalize;
}
.wp-block-categories-list li a:hover {
  text-decoration: underline;
}
.wp-block-categories-list li span.post-count {
  padding-left: 8px;
}
.wp-block-categories-list li .children li a {
  position: relative;
}
.wp-block-categories-list li .children li a::before {
  content: "-";
  position: absolute;
  left: -13px;
  top: -2px;
}

.wp-block-archives-dropdown {
  margin-bottom: 20px;
}
.wp-block-archives-dropdown select {
  height: 45px;
  border: 1px solid #eee;
  width: 100%;
  font-size: 14px;
  padding: 8px 15px;
  color: #737b9a;
}

.wp-block-latest-comments {
  padding: 0 !important;
}
.wp-block-latest-comments .wp-block-latest-comments__comment-meta a {
  font-weight: 500;
  text-decoration: underline;
}
.wp-block-latest-comments .wp-block-latest-comments__comment-meta a:hover {
  text-decoration: none;
}

.wp-block-latest-posts li a {
  font-weight: 500;
}

.blog-details-area {
  background: #F6F4F7;
}
.blog-details-area iframe, .blog-details-area video {
  width: 100%;
}

.wp-block-gallery {
  padding: 0 !important;
  margin-bottom: 5px !important;
}
.wp-block-gallery .blocks-gallery-item {
  margin-bottom: 15px !important;
}
.wp-block-gallery .blocks-gallery-grid {
  padding: 0 !important;
  margin-top: 10px !important;
  margin-bottom: 5px !important;
}

.wp-block-cover {
  margin-top: 30px;
  margin-bottom: 30px;
}
.wp-block-cover p.wp-block-cover-text {
  font-weight: 400;
  margin-bottom: 20px !important;
  font-size: 30px !important;
  line-height: 1.5;
  color: #fff;
}
.wp-block-cover p.wp-block-cover-text strong {
  color: #fff;
}

.wp-block-cover.has-background-dim.alignleft {
  margin-top: 0;
}

.wp-block-cover.has-background-dim-60.has-background-dim .wp-block-cover-text a {
  color: #fff;
}

.wp-block-file a {
  text-decoration: underline;
  font-size: 15px;
}
.wp-block-file a:hover {
  text-decoration: none;
}
.wp-block-file .wp-block-file__button {
  border-radius: 4px !important;
  font-size: 14px !important;
  font-weight: 500;
  display: table;
  margin: 15px 0 0;
}
.wp-block-file .wp-block-file__button:hover {
  background-color: #000 !important;
  color: #fff;
}

.wp-block-quote.is-style-large {
  border: none;
  padding-left: 0;
  margin: 20px 0;
}

.has-cyan-bluish-gray-background-color.has-cyan-bluish-gray-background-color p {
  color: #fff;
}
.has-cyan-bluish-gray-background-color.has-cyan-bluish-gray-background-color cite {
  color: #fff;
  font-style: normal;
}
.has-cyan-bluish-gray-background-color.has-cyan-bluish-gray-background-color blockquote {
  max-width: 80%;
  background: transparent;
}

.wp-block-gallery.alignwide {
  width: 100%;
}

.wp-caption .wp-caption-text {
  font-size: 14px;
  line-height: 20px;
  margin: 0;
  text-align: center;
  padding: 15px 0 0;
  color: #737b9a;
}
.wp-caption .wp-caption-text a {
  text-decoration: underline;
}
.wp-caption .wp-caption-text a:hover {
  text-decoration: none;
}

.has-very-light-gray-color.has-very-light-gray-color {
  color: #fff;
}

/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  background-color: #eee;
  clip: auto !important;
  -webkit-clip-path: none;
          clip-path: none;
  color: #444;
  display: block;
  font-size: 1em;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}

.gallery-caption {
  z-index: 99990;
}

.bypostauthor {
  z-index: 99990;
}

/* End Unit test all post style */
/* Post Format: Gallery */
.gallery {
  margin: 30px -1.1666667% 0;
}

.gallery-item {
  display: inline-block;
  max-width: 33.33%;
  padding: 0 1.1400652% 2.2801304%;
  text-align: center;
  vertical-align: top;
  width: 100%;
}

.gallery-columns-1 .gallery-item {
  max-width: 100%;
}

.gallery-columns-2 .gallery-item {
  max-width: 50%;
}

.gallery-columns-4 .gallery-item {
  max-width: 25%;
}

.gallery-columns-5 .gallery-item {
  max-width: 20%;
}

.gallery-columns-6 .gallery-item {
  max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
  max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
  max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
  max-width: 11.11%;
}

.gallery-icon img {
  margin: 0 auto;
}

.gallery-caption {
  display: block;
  font-size: 13px;
  font-style: italic;
  line-height: 1.6153846154;
  padding-top: 10px;
  color: #737b9a;
}

.gallery-columns-6 .gallery-caption,
.gallery-columns-7 .gallery-caption,
.gallery-columns-8 .gallery-caption,
.gallery-columns-9 .gallery-caption {
  display: none;
}

/* End Post Format: Gallery */
/* Pingback style */
.comments-area .comment-list .trackback .comment-body {
  margin-left: 0 !important;
  font-size: 15px !important;
}
.comments-area .comment-list .trackback .comment-body a {
  text-decoration: underline;
  color: red;
}
.comments-area .comment-list .trackback .comment-body a:hover {
  text-decoration: none;
}
.comments-area .comment-list .trackback a.url {
  margin-top: 5px;
  font-size: 14px;
}
.comments-area .comment-list .pingback .comment-body {
  margin-left: 0 !important;
  font-size: 15px !important;
}
.comments-area .comment-list .pingback .comment-body a {
  color: red;
  text-decoration: underline;
}
.comments-area .comment-list .pingback .comment-body a:hover {
  text-decoration: none;
}
.comments-area .comment-list .pingback a.url {
  margin-top: 5px;
  font-size: 14px;
}

/* End Pingback style */
/* Post password form style */
.post-password-form label {
  font-weight: 600;
  font-size: 15px;
}
.post-password-form label input {
  border: 1px solid #ccc;
  height: 45px;
  margin: 0 10px;
  padding: 6px 15px;
}
.post-password-form label input:focus {
  outline: 0;
}
.post-password-form input[type=submit] {
  border: 1px solid;
  color: #fff;
  height: 45px;
  padding: 5px 20px;
  font-weight: 600;
  transition: 0.4s;
  cursor: pointer;
}
.post-password-form input[type=submit]:hover {
  border: 1px solid;
  color: #fff;
}

/* End Post password form style */
/* Comment navigation */
.comment-navigation .nav-links {
  overflow: hidden;
  margin-bottom: 25px;
}
.comment-navigation .nav-links .nav-previous {
  float: left;
}
.comment-navigation .nav-links .nav-previous a {
  border: 1px solid #eee;
  background: #fff;
  padding: 8px 18px;
  font-size: 15px;
  display: inline-block;
  padding-top: 11px;
}
.comment-navigation .nav-links .nav-previous a:hover {
  color: #fff;
}
.comment-navigation .nav-links .nav-next {
  float: right;
}
.comment-navigation .nav-links .nav-next a {
  border: 1px solid #eee;
  background: #fff;
  padding: 7px 18px;
  font-size: 15px;
  display: inline-block;
  padding-top: 11px;
}
.comment-navigation .nav-links .nav-next a:hover {
  color: #fff;
}

/* End Comment navigation */
/* Post search not found form */
.no-results h1.page-title {
  font-size: 25px;
}
.no-results form {
  position: relative;
}
.no-results form .search-submit {
  position: absolute;
  cursor: pointer;
  top: 0;
  right: 0;
  border: none;
  color: #fff;
  font-size: 15px;
  height: 50px;
  padding: 5px 15px;
}
.no-results form .search-submit:hover {
  background-color: #222;
  color: #fff;
}

/* End Post search not found form */
/* Resent posts with thumb */
.widget_varn_posts_thumbs .item {
  margin-bottom: 15px;
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
  position: relative;
  overflow: hidden;
}
.widget_varn_posts_thumbs .item:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.widget_varn_posts_thumbs .item .thumb {
  float: left;
  height: 80px;
  overflow: hidden;
  position: relative;
  width: 80px;
  margin-right: 15px;
}
.widget_varn_posts_thumbs .item .thumb .fullimage {
  width: 80px;
  height: 80px;
  display: inline-block;
  background-size: cover !important;
  background-position: center center !important;
}
.widget_varn_posts_thumbs .item .info {
  overflow: hidden;
}
.widget_varn_posts_thumbs .item .info .title {
  font-size: 13px;
  margin: 0;
  line-height: 1.5;
  font-weight: bold;
}
.widget_varn_posts_thumbs .item .info .title a {
  color: #212529;
}
.widget_varn_posts_thumbs .item .info time {
  display: block;
  font-size: 12px;
  color: #767676;
  text-transform: capitalize;
  margin-top: 5px;
  margin-bottom: 3px;
}
.widget_varn_posts_thumbs .no-thumb .info time {
  margin-top: 0;
}

/* End Resent posts with thumb */
/* Unit test pages style 
====================================================================*/
/* WP core style */
.alignnone {
  display: block;
  margin-bottom: 15px;
}

.aligncenter, div.aligncenter {
  display: block;
  margin: 15px auto 15px auto;
}

.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

a img.alignnone {
  margin: 5px 20px 20px 0;
}

a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption {
  max-width: 100%;
}

.wp-caption.alignnone {
  margin: 15px auto 10px;
}

.wp-caption.alignleft {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
  margin: 5px 0 20px 20px;
}

.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 100%;
  padding: 0;
  width: auto;
}

.wp-caption p.wp-caption-text {
  font-size: 13px;
  line-height: 17px;
  margin: 0;
  padding: 0 4px 5px;
}

.screen-reader-text {
  display: none;
}

/* End WP core style */
/* Page Markup And Formatting */
.page-main-content {
  padding-top: 70px;
  padding-bottom: 70px;
  overflow: hidden;
}
.page-main-content h1 {
  font-size: 35px;
  margin-bottom: 15px;
  font-weight: bold;
}
.page-main-content h2 {
  font-size: 30px;
  margin-bottom: 15px;
  font-weight: bold;
}
.page-main-content h3 {
  font-size: 25px;
  margin-bottom: 15px;
  font-weight: bold;
}
.page-main-content h4 {
  font-size: 20px;
  margin-bottom: 15px;
}
.page-main-content h5 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: bold;
}
.page-main-content h6 {
  font-size: 15px;
  margin-bottom: 15px;
  font-weight: bold;
}
.page-main-content p {
  margin-top: 20px;
  margin-bottom: 20px;
}
.page-main-content p:first-child {
  margin-top: 0;
}
.page-main-content p img.size-full.wp-image-904.alignright {
  margin: 15px 0 20px 20px;
}
.page-main-content .entry-content a {
  text-decoration: underline;
}
.page-main-content .entry-content a:hover {
  text-decoration: none;
}
.page-main-content footer.entry-footer {
  clear: both;
}
.page-main-content footer.entry-footer .edit-link {
  margin-top: 10px;
  margin-bottom: 10px;
  display: block;
}
.page-main-content dl, .page-main-content ol, .page-main-content ul {
  margin-top: 20px;
  margin-bottom: 20px;
}
.page-main-content dt {
  margin-bottom: 5px;
  color: #0d1028;
}
.page-main-content dd {
  margin: 0 1rem 1rem;
  font-size: 15px;
  line-height: 26px;
}
.page-main-content ul {
  list-style: disc;
  padding-left: 20px;
}
.page-main-content ul li {
  list-style: disc;
  line-height: 1.8;
  margin-bottom: 5px;
}
.page-main-content ul li ul {
  margin: 5px 0 0;
  list-style-type: circle;
}
.page-main-content ul li ul li {
  list-style-type: circle;
}
.page-main-content ol {
  padding-left: 20px;
}
.page-main-content ol li {
  line-height: 1.8;
  margin-bottom: 5px;
}
.page-main-content ol li ol {
  margin: 5px 0 0;
}
.page-main-content b, .page-main-content strong {
  color: #212529;
}
.page-main-content dfn, .page-main-content cite, .page-main-content em, .page-main-content i {
  font-style: italic;
}
.page-main-content code, .page-main-content kbd, .page-main-content tt, .page-main-content var {
  font-size: 0.88889em;
  font-family: Menlo, monaco, Consolas, Lucida Console, monospace;
}
.page-main-content kbd {
  background-color: #616161;
}
.page-main-content mark, .page-main-content ins {
  background: #fff9c0;
  text-decoration: none;
}
.page-main-content pre {
  font-size: 0.88889em;
  font-family: "Courier 10 Pitch", Courier, monospace;
  line-height: 1.8;
  background: #f1f1f1;
  overflow: auto;
}
.page-main-content abbr, .page-main-content acronym {
  border-bottom: 1px dotted #484848;
  cursor: help;
}

address {
  margin: 20px 0;
  font-style: italic;
  line-height: 30px;
}

table {
  margin: 0 0 2rem;
  border-collapse: collapse;
  width: 100%;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
}
table td, table th {
  padding: 12px 10px;
  border: 1px solid #eaeaea;
}
table td a {
  font-weight: 600;
  text-decoration: underline;
}
table td a:hover {
  text-decoration: none;
}
table th a {
  text-decoration: underline;
}
table th a:hover {
  text-decoration: none;
}
table tbody tr th {
  font-weight: 500;
}

.varn-single-blank-page {
  height: 320px;
}

/* End Page Markup And Formatting */
/* Single footer widget  */
.footer-area .single-footer-widget {
  margin-bottom: 30px;
}
.footer-area .single-footer-widget img.alignnone.size-full {
  margin: 15px 0 30px;
}
.footer-area .single-footer-widget h3 {
  margin-bottom: 35px;
  position: relative;
  padding-bottom: 8px;
  border-bottom: 1px solid #4e5e6a;
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
}
.footer-area .single-footer-widget h3::before {
  bottom: -1px;
  left: 0;
  width: 55px;
  height: 1px;
  background-color: #ffffff;
  content: "";
  position: absolute;
}
.footer-area .single-footer-widget h3 a {
  color: #e4e4e4 !important;
}
.footer-area .single-footer-widget p {
  color: #e4e4e4 !important;
}
.footer-area .single-footer-widget ul {
  padding-left: 17px;
  list-style-type: none;
  margin: 0;
}
.footer-area .single-footer-widget ul li {
  position: relative;
  margin-bottom: 8px;
  line-height: 1.8;
  font-weight: 300;
  color: #e4e4e4 !important;
}
.footer-area .single-footer-widget ul li:last-child {
  margin-bottom: 0;
}
.footer-area .single-footer-widget ul li::before {
  height: 7px;
  width: 7px;
  content: "";
  background: #e4e4e4;
  left: -17px;
  top: 8px;
  position: absolute;
}
.footer-area .single-footer-widget ul li a {
  color: #e4e4e4;
  transition: prop time;
}
.footer-area .single-footer-widget .item .info time {
  color: #d3d3d3;
}
.footer-area .widget_search form {
  position: relative;
}
.footer-area .widget_search form label {
  display: block;
  margin-bottom: 0;
}
.footer-area .widget_search form .screen-reader-text {
  display: none;
}
.footer-area .widget_search form .search-field {
  background-color: white;
  height: 50px;
  padding: 6px 15px;
  border: 1px solid #eeeeee;
  width: 100%;
  display: block;
  outline: 0;
  transition: 0.5s;
}
.footer-area .widget_search form button {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 50px;
  width: 50px;
  color: #fff;
  z-index: 1;
  border: none;
  background-color: transparent;
}
.footer-area .widget_search form button::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  top: 0;
  transition: 0.5s;
}
.footer-area .widget_search form button::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  top: 0;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
}
.footer-area .widget_search form button:hover::before {
  opacity: 0;
  visibility: hidden;
}
.footer-area .widget_search form button:hover::after {
  opacity: 1;
  visibility: visible;
}
.footer-area select {
  height: 45px;
  border: 1px solid #fff;
  width: 100%;
  color: #fff;
  font-size: 15px;
  padding: 8px 15px;
}
.footer-area .nice-select {
  float: unset;
  word-break: break-word;
  width: 100%;
  white-space: inherit;
}
.footer-area .nice-select .option {
  padding-top: 8px;
  padding-bottom: 5px;
}
.footer-area .nice-select ul li::before {
  display: none;
}
.footer-area .nice-select ul {
  padding-top: 12px;
}
.footer-area .nice-select ul li {
  margin-bottom: 0px;
}
.footer-area .nice-select .option.selected.focus {
  display: none;
}
.footer-area .nice-select .list {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
.footer-area .widget_categories ul li a {
  display: inline-block;
  text-transform: capitalize;
}
.footer-area .widget_categories ul li .children {
  margin-top: 10px;
}
.footer-area .widget_pages ul li.page_item_has_children > a {
  margin-bottom: 10px;
  display: inline-block;
}
.footer-area .widget_pages ul li a {
  text-transform: capitalize;
}
.footer-area .widget_rss ul li {
  margin-bottom: 20px;
}
.footer-area .widget_rss ul li::before {
  top: 10px;
}
.footer-area .widget_rss ul li:last-child {
  margin-bottom: 0;
}
.footer-area .widget_rss ul li .rsswidget {
  display: block;
  font-weight: 500;
  font-size: 17px;
  color: #e4e4e4;
  transition: prop time;
}
.footer-area .widget_rss ul li .rss-date {
  font-size: 12px;
  margin: 7px 0 10px;
  display: block;
  text-transform: capitalize;
  letter-spacing: 1px;
  color: #e4e4e4 !important;
}
.footer-area .widget_rss ul li cite {
  color: #e4e4e4 !important;
  display: block;
  margin-top: 10px;
  font-style: normal;
}
.footer-area .widget_rss ul li .rssSummary {
  color: #e4e4e4 !important;
}
.footer-area .tagcloud a {
  border: 1px solid #eee;
  display: inline-block;
  padding: 5px 10px;
  font-size: 14px !important;
  margin: 5px 5px 5px 0;
  text-transform: capitalize;
  background: #fff;
}
.footer-area .tagcloud a:hover {
  color: #fff;
}
.footer-area .widget_text p {
  margin-top: 5px;
}
.footer-area .widget_text p:first-child {
  margin-top: 0;
}
.footer-area .widget_text p strong {
  font-size: 14px;
}
.footer-area .widget_text p img {
  margin: 10px 0;
  max-width: 100%;
  width: auto;
}
.footer-area .calendar_wrap table {
  text-align: center;
  margin: 0;
  background: #fff;
}
.footer-area .calendar_wrap table caption {
  color: #fff;
}
.footer-area .calendar_wrap table th, .footer-area .calendar_wrap table td {
  font-size: 14px;
  padding: 8px 5px;
}
.footer-area .calendar_wrap table th a, .footer-area .calendar_wrap table td a {
  text-decoration: none;
}
.footer-area .calendar_wrap table #today {
  text-decoration: none;
  font-weight: 400;
}
.footer-area .calendar_wrap table #today a {
  text-decoration: none;
}
.footer-area .calendar_wrap table #prev, .footer-area .calendar_wrap table #next {
  font-size: 14px;
}
.footer-area .calendar_wrap table #prev a, .footer-area .calendar_wrap table #next a {
  text-decoration: none;
}
.footer-area .calendar_wrap caption {
  caption-side: top;
  font-weight: 600;
  padding: 0 0 15px;
  line-height: 1;
  color: #e4e4e4;
}
.footer-area .widget_nav_menu .sub-menu {
  margin-top: 8px;
}
.footer-area .widget_recent_comments .recentcomments .comment-author-link {
  font-weight: 500;
  font-size: 14px;
}
.footer-area .widget_recent_comments .recentcomments a {
  color: #e4e4e4 !important;
}
.footer-area .widget_media_gallery .gallery {
  margin: 0;
}
.footer-area .widget_media_gallery .gallery .gallery-item {
  margin: 0;
}
.footer-area .widget_recent_entries ul li {
  line-height: 1.5;
}
.footer-area .widget_recent_entries ul li a {
  font-weight: 600;
  font-size: 15.5px;
  color: #e4e4e4 !important;
}
.footer-area .widget_recent_entries ul li .post-date {
  display: block;
  font-size: 13px;
  color: #fff;
  text-transform: uppercase;
  margin-top: 5px;
}
.footer-area span.post-count {
  float: right;
  color: #e4e4e4 !important;
}
.footer-area img.rss-widget-icon {
  margin-top: -5px;
}
.footer-area .nice-select .current {
  display: block;
  padding-top: 1px;
}
.footer-area .nice-select ul li {
  color: #0c0c0c !important;
  text-transform: capitalize;
}

.is-style-squared .wp-block-button__link {
  border-radius: 0;
}

.navbar-area.navbar-style-two .luvion-responsive-nav .logo a .main-logo {
  display: none !important;
}

/* End Single footer widget */
.wpcf7-list-item-label {
  position: relative;
  top: -2px;
  font-size: 13px;
}
.wpcf7-list-item-label a {
  display: inline-block;
}
.wpcf7-list-item-label a:hover {
  text-decoration: underline;
}

span.wpcf7-list-item {
  margin-left: 0;
}
span.wpcf7-list-item label {
  margin-bottom: 20px;
}

span.wpcf7-not-valid-tip {
  font-size: 13px;
  margin-top: 10px;
}

div.wpcf7-mail-sent-ok {
  border: 2px solid #398f14 !important;
}

div.wpcf7-response-output {
  margin: 30px 0 0;
  padding: 15px;
  text-align: center;
}

.saas-features .elementor-column-gap-extended > .elementor-row > .elementor-column > .elementor-element-populated {
  padding: 0 15px !important;
}

ul.wp-block-gallery.alignleft.columns-2.is-cropped {
  margin-top: 8px;
}

/* Yoast breadcrumb */
.varn-seo-breadcrumbs {
  margin-top: 10px;
}

.et-demo-options-toolbar {
  position: fixed;
  top: 50%;
  width: 40px;
  right: 0;
  line-height: 60px;
  border: 1px solid #eee;
  border-right: 0;
  border-radius: 5px 0 0 5px;
  z-index: 99999;
  background: #fff;
  text-align: center;
  box-shadow: -3px 0 10px -2px rgba(0, 0, 0, 0.1);
}
.et-demo-options-toolbar a {
  display: block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  color: #111;
}
.et-demo-options-toolbar a:focus, .et-demo-options-toolbar a:hover {
  color: #111 !important;
}

[class*=hint--] {
  position: relative;
  display: inline-block;
}

[class*=hint--]:before,
[class*=hint--]:after {
  position: absolute;
  transform: translate3d(0, 0, 0);
  visibility: hidden;
  opacity: 0;
  z-index: 1000000;
  pointer-events: none;
  transition: 0.3s ease;
  transition-delay: 0ms;
}

[class*=hint--]:hover:before,
[class*=hint--]:hover:after {
  visibility: visible;
  opacity: 1;
}

[class*=hint--]:hover:before,
[class*=hint--]:hover:after {
  transition-delay: 0.1s;
}

[class*=hint--]:before {
  content: "";
  position: absolute;
  background: 0 0;
  border: 7px solid transparent;
  z-index: 1000001;
}

[class*=hint--]:after {
  background: #000;
  color: #fff;
  padding: 8px 10px;
  font-size: 14px;
  line-height: 15px;
  white-space: nowrap;
  border-radius: 5px;
}

[class*=hint--][aria-label]:after {
  content: attr(aria-label);
}

[class*=hint--][data-hint]:after {
  content: attr(data-hint);
}

[aria-label=""]:before,
[aria-label=""]:after,
[data-hint=""]:before,
[data-hint=""]:after {
  display: none !important;
}

.hint--top-left:before {
  border-top-color: #000;
}

.hint--top-right:before {
  border-top-color: #000;
}

.hint--top:before {
  border-top-color: #000;
}

.hint--bottom-left:before {
  border-bottom-color: #000;
}

.hint--bottom-right:before {
  border-bottom-color: #000;
}

.hint--bottom:before {
  border-bottom-color: #000;
}

.hint--left:before {
  border-left-color: #000;
}

.hint--right:before {
  border-right-color: #000;
}

.hint--top:before {
  margin-bottom: -13px;
}

.hint--top:before,
.hint--top:after {
  bottom: 100%;
  left: 50%;
}

.hint--top:before {
  left: calc(50% - 7px);
}

.hint--top:after {
  transform: translateX(-50%);
}

.hint--top:hover:before {
  transform: translateY(-8px);
}

.hint--top:hover:after {
  transform: translateX(-50%) translateY(-8px);
}

.hint--bottom:before {
  margin-top: -13px;
}

.hint--bottom:before,
.hint--bottom:after {
  top: 100%;
  left: 50%;
}

.hint--bottom:before {
  left: calc(50% - 7px);
}

.hint--bottom:after {
  transform: translateX(-50%);
}

.hint--bottom:hover:before {
  transform: translateY(8px);
}

.hint--bottom:hover:after {
  transform: translateX(-50%) translateY(8px);
}

.hint--right:before {
  margin-left: -13px;
  margin-bottom: -7px;
}

.hint--right:after {
  margin-bottom: -15px;
}

.hint--right:before,
.hint--right:after {
  left: 100%;
  bottom: 50%;
}

.hint--right:hover:before {
  transform: translateX(8px);
}

.hint--right:hover:after {
  transform: translateX(8px);
}

.hint--left:before {
  margin-right: -13px;
  margin-bottom: -7px;
}

.hint--left:after {
  margin-bottom: -15px;
}

.hint--left:before,
.hint--left:after {
  right: 100%;
  bottom: 50%;
}

.hint--left:hover:before {
  transform: translateX(-8px);
}

.hint--left:hover:after {
  transform: translateX(-8px);
}

.hint--top-left:before {
  margin-bottom: -13px;
}

.hint--top-left:before,
.hint--top-left:after {
  bottom: 100%;
  left: 50%;
}

.hint--top-left:before {
  left: calc(50% - 7px);
}

.hint--top-left:after {
  transform: translateX(-100%);
}

.hint--top-left:after {
  margin-left: 14px;
}

.hint--top-left:hover:before {
  transform: translateY(-8px);
}

.hint--top-left:hover:after {
  transform: translateX(-100%) translateY(-8px);
}

.hint--top-right:before {
  margin-bottom: -13px;
}

.hint--top-right:before,
.hint--top-right:after {
  bottom: 100%;
  left: 50%;
}

.hint--top-right:before {
  left: calc(50% - 7px);
}

.hint--top-right:after {
  transform: translateX(0);
}

.hint--top-right:after {
  margin-left: -14px;
}

.hint--top-right:hover:before {
  transform: translateY(-8px);
}

.hint--top-right:hover:after {
  transform: translateY(-8px);
}

.hint--bottom-left:before {
  margin-top: -13px;
}

.hint--bottom-left:before,
.hint--bottom-left:after {
  top: 100%;
  left: 50%;
}

.hint--bottom-left:before {
  left: calc(50% - 7px);
}

.hint--bottom-left:after {
  transform: translateX(-100%);
}

.hint--bottom-left:after {
  margin-left: 14px;
}

.hint--bottom-left:hover:before {
  transform: translateY(8px);
}

.hint--bottom-left:hover:after {
  transform: translateX(-100%) translateY(8px);
}

.hint--bottom-right:before {
  margin-top: -13px;
}

.hint--bottom-right:before,
.hint--bottom-right:after {
  top: 100%;
  left: 50%;
}

.hint--bottom-right:before {
  left: calc(50% - 7px);
}

.hint--bottom-right:after {
  transform: translateX(0);
}

.hint--bottom-right:after {
  margin-left: -14px;
}

.hint--bottom-right:hover:before {
  transform: translateY(8px);
}

.hint--bottom-right:hover:after {
  transform: translateY(8px);
}

[class*=hint--]:after {
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3);
}

.hint--white:after {
  color: #111;
  background-color: #fff;
  text-shadow: 0 -1px 0px #bfbfbf;
}

.hint--white.hint--top-left:before {
  border-top-color: #fff;
}

.hint--white.hint--top-right:before {
  border-top-color: #fff;
}

.hint--white.hint--top:before {
  border-top-color: #fff;
}

.hint--white.hint--bottom-left:before {
  border-bottom-color: #fff;
}

.hint--white.hint--bottom-right:before {
  border-bottom-color: #fff;
}

.hint--white.hint--bottom:before {
  border-bottom-color: #fff;
}

.hint--white.hint--left:before {
  border-left-color: #fff;
}

.hint--white.hint--right:before {
  border-right-color: #fff;
}

.hint--rounded:after {
  border-radius: 4px;
}

.hint--no-animate:before,
.hint--no-animate:after {
  transition-duration: 0ms;
}

.hint--bounce:before,
.hint--bounce:after {
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24);
}

.mean-container a.meanmenu-reveal span {
  margin-top: -3px;
  top: 8px;
  position: relative;
}

.woocommerce .nice-select {
  display: none;
}
.woocommerce select {
  display: block !important;
}

.shop-sidebar .woocommerce ul.cart_list li img, .shop-sidebar .woocommerce ul.product_list_widget li img {
  float: left;
}

.comment-form-rating {
  margin-bottom: 15px;
}

/* Start "Cryptocurrency Demo CSS, "Cyber Security Demo CSS & Big Data Solution Demo CSS" */
.section-title.with-linear-gradient-text {
  max-width: 725px;
}
.section-title.with-linear-gradient-text h2 {
  max-width: 725px;
}
.section-title.with-linear-gradient-text h2 span {
  background: linear-gradient(89.02deg, #3065BA 68.24%, #8459EA 97.09%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-title.with-line-text {
  max-width: 725px;
}
.section-title.with-line-text .sub-title {
  color: #ffffff;
}
.section-title.with-line-text h2 {
  max-width: 725px;
  color: #ffffff;
}
.section-title.with-line-text h2 span {
  position: relative;
  z-index: 1;
  color: #ffffff;
}
.section-title.with-line-text h2 span::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 12px;
  background: linear-gradient(90deg, #D3064E -0.61%, #FE5B67 100%);
  height: 5px;
  width: 100%;
  z-index: -1;
}
.section-title.with-line-text-with-white-color {
  max-width: 725px;
}
.section-title.with-line-text-with-white-color h2 {
  max-width: 725px;
}
.section-title.with-line-text-with-white-color h2 span {
  position: relative;
  z-index: 1;
}
.section-title.with-line-text-with-white-color h2 span::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 12px;
  background: linear-gradient(90deg, #D3064E -0.61%, #FE5B67 100%);
  height: 5px;
  width: 100%;
  z-index: -1;
}

.background-with-black-color {
  background-color: #1F1F22;
}

/*================================================
Topbar Wrap Area CSS
=================================================*/
.topbar-wrap-area {
  background-color: var(--mainColor);
  padding-top: 15px;
  padding-bottom: 15px;
}
.topbar-wrap-area .container-fluid {
  padding-left: 50px;
  padding-right: 50px;
}

.topbar-social-links {
  padding: 0;
  margin-bottom: 0;
  line-height: 1;
}
.topbar-social-links li {
  list-style-type: none;
  display: inline-block;
  margin-right: 10px;
}
.topbar-social-links li:last-child {
  margin-right: 0;
}
.topbar-social-links li a {
  line-height: 1;
}
.topbar-social-links li a i {
  font-size: 20px;
  color: #ffffff;
  transition: 0.5s;
}
.topbar-social-links li a i:hover {
  color: var(--optionalColor);
  transform: translateY(-2px);
}

.topbar-action-list {
  padding: 0;
  margin-bottom: 0;
  text-align: end;
}
.topbar-action-list li {
  list-style-type: none;
  display: inline-block;
  margin-right: 30px;
  color: #ffffff;
  position: relative;
  padding-left: 22px;
}
.topbar-action-list li::before {
  content: "";
  position: absolute;
  top: 1px;
  right: -20px;
  width: 1px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.18);
}
.topbar-action-list li:last-child {
  margin-right: 0;
}
.topbar-action-list li:last-child::before {
  display: none;
}
.topbar-action-list li i {
  position: absolute;
  left: 0;
  top: 2px;
}
.topbar-action-list li a {
  color: #ffffff;
}
.topbar-action-list li a:hover {
  color: var(--optionalColor);
}

/*================================================
Value Trade Area CSS
=================================================*/
.value-trade-area {
  background-color: #F9F9F9;
  padding-top: 10px;
  padding-bottom: 10px;
}
.value-trade-area .container-fluid {
  padding-left: 30px;
  padding-right: 30px;
}

.value-trade-card {
  position: relative;
  padding: 16.8px 15px 15px 45px;
  background-color: #ffffff;
  box-shadow: 0px 4px 20px rgba(47, 143, 232, 0.07);
  border-radius: 5px;
}
.value-trade-card img {
  display: inline-block;
  width: auto !important;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
}
.value-trade-card p {
  font-size: 15.5px;
  font-weight: 400;
  margin-bottom: 0;
  font-weight: 400;
  color: #737b9a;
}
.value-trade-card p b {
  font-weight: 600;
  color: #212529;
}
.value-trade-card p span {
  font-weight: 600;
  color: #76BAAF;
  position: relative;
  margin-left: 15px;
  padding-left: 20px;
}
.value-trade-card p span i {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 18px;
}
.value-trade-card p .color-two {
  color: #FF6C6C;
}
.value-trade-card p .color-two i {
  color: #FF6C6C;
}

/*================================================
Navbar Area CSS
=================================================*/
.navbar-area-with-position-relative {
  position: relative;
  background-color: #ffffff;
  box-shadow: 0px 4px 20px rgba(47, 143, 232, 0.07);
}
.navbar-area-with-position-relative .aronix-nav .container-fluid {
  padding-left: 50px;
  padding-right: 50px;
}
.navbar-area-with-position-relative.with-black-color {
  background-color: #1F1F22;
  box-shadow: unset;
}
.navbar-area-with-position-relative.with-black-color.is-sticky {
  background-color: #1F1F22 !important;
}
.navbar-area-with-position-relative.with-black-color .aronix-nav .navbar .navbar-nav .nav-item a {
  color: #ffffff;
}
.navbar-area-with-position-relative.with-black-color .aronix-nav .navbar .navbar-nav .nav-item a:hover, .navbar-area-with-position-relative.with-black-color .aronix-nav .navbar .navbar-nav .nav-item a:focus, .navbar-area-with-position-relative.with-black-color .aronix-nav .navbar .navbar-nav .nav-item a.active {
  color: var(--mainColor);
}
.navbar-area-with-position-relative.with-black-color .aronix-nav .navbar .navbar-nav .nav-item:hover a, .navbar-area-with-position-relative.with-black-color .aronix-nav .navbar .navbar-nav .nav-item:focus a, .navbar-area-with-position-relative.with-black-color .aronix-nav .navbar .navbar-nav .nav-item.active a {
  color: var(--mainColor);
}
.navbar-area-with-position-relative.with-black-color .aronix-nav .navbar .navbar-nav .nav-item .dropdown-menu li a {
  color: #696997;
}
.navbar-area-with-position-relative.with-black-color .aronix-nav .navbar .navbar-nav .nav-item .dropdown-menu li a:hover, .navbar-area-with-position-relative.with-black-color .aronix-nav .navbar .navbar-nav .nav-item .dropdown-menu li a:focus, .navbar-area-with-position-relative.with-black-color .aronix-nav .navbar .navbar-nav .nav-item .dropdown-menu li a.active {
  color: var(--mainColor);
}
.navbar-area-with-position-relative.with-black-color .aronix-nav .navbar .navbar-nav .nav-item .dropdown-menu li.active a {
  color: var(--mainColor);
}
.navbar-area-with-position-relative.with-black-color .aronix-nav .navbar .others-options .cart-items a {
  color: #ffffff;
}
.navbar-area-with-position-relative.with-black-color .aronix-nav .navbar .others-options .cart-items a:hover {
  color: var(--mainColor);
}
.navbar-area-with-position-relative.with-black-color .aronix-nav .navbar .others-options .option-item {
  color: #ffffff;
}
.navbar-area-with-position-relative.with-black-color .aronix-nav .navbar .others-options .option-item .search-btn {
  color: #ffffff;
}
.navbar-area-with-position-relative.with-black-color .aronix-nav .navbar .others-options .option-item .search-btn:hover {
  color: var(--mainColor);
}
.navbar-area-with-position-relative.with-black-color .aronix-nav .navbar .others-options .option-item .close-btn {
  color: #ffffff;
}
.navbar-area-with-position-relative.with-black-color .aronix-nav .navbar .others-options .option-item .close-btn:hover {
  color: var(--mainColor);
}
.navbar-area-with-position-relative.with-black-color .aronix-nav .navbar .others-options .burger-menu span {
  color: #ffffff;
  background-color: #ffffff;
}
.navbar-area-with-position-relative.with-black-color .aronix-nav .navbar .others-options .burger-menu:hover span {
  background: var(--mainColor);
}
.navbar-area-with-position-relative.hide-adminbar {
  margin-top: 0;
}
.navbar-area-with-position-relative.hide-adminbar.is-sticky {
  margin-top: 32px;
}

/*================================================
Cryptocurrency Banner Area CSS
=================================================*/
.cryptocurrency-banner-section {
  background: #F1F9F9;
  padding-top: 100px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.cryptocurrency-banner-section .container-fluid {
  padding-left: 50px;
  padding-right: 0;
}
.cryptocurrency-banner-section::before {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  height: 100%;
  width: 545px;
  background: #D3E3E7;
  z-index: -1;
}

.cryptocurrency-banner-content {
  max-width: 620px;
  position: relative;
  top: -50px;
}
.cryptocurrency-banner-content .sub-title {
  color: #2B6DEF;
  font-size: 16px;
  font-weight: 500;
  display: block;
  margin-bottom: 15px;
}
.cryptocurrency-banner-content h1 {
  font-size: 66px;
  font-weight: 800;
  margin-bottom: 15px;
}
.cryptocurrency-banner-content h1 span {
  background: linear-gradient(89.36deg, #2C66B8 0.07%, #8859EC 73.8%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cryptocurrency-banner-content p {
  margin-bottom: 0;
}
.cryptocurrency-banner-content .banner-btn {
  padding: 0;
  margin-top: 25px;
  margin-bottom: 0;
}
.cryptocurrency-banner-content .banner-btn li {
  display: inline-flex;
  margin-right: 20px;
}
.cryptocurrency-banner-content .banner-btn li:last-child {
  margin-right: 0;
}
.cryptocurrency-banner-content .banner-btn li .video-btn {
  margin-left: 5px;
  font-size: 15.5px;
  font-weight: 600;
  color: #212529;
}
.cryptocurrency-banner-content .banner-btn li .video-btn i {
  background: rgba(47, 143, 232, 0.07);
  height: 45px;
  width: 45px;
  display: inline-block;
  color: var(--mainColor);
  text-align: center;
  line-height: 45px;
  border-radius: 50%;
  padding-left: 5px;
  margin-right: 8px;
  transition: 0.5s;
}
.cryptocurrency-banner-content .banner-btn li .video-btn:hover i {
  background-color: var(--mainColor);
  color: #ffffff;
}

.cryptocurrency-banner-image {
  position: relative;
  z-index: 1;
}
.cryptocurrency-banner-image .cart1 {
  position: absolute;
  bottom: 12%;
  left: -230px;
  bottom: 10%;
  transform: translateY(-12%);
  z-index: -1;
  animation: moveLeftBounce 5s linear infinite;
}
.cryptocurrency-banner-image .cart2 {
  position: absolute;
  top: 5%;
  right: 20%;
  transform: translateY(-5%) translateX(-20%);
  z-index: -1;
  animation: moveLeftBounce 8s linear infinite;
}
.cryptocurrency-banner-image .graph {
  position: absolute;
  left: -70px;
  top: 38%;
  transform: translateY(-38%);
  z-index: -11;
  animation: moveLeftBounce 8s linear infinite;
}

.cryptocurrency-shape-1 {
  position: absolute;
  left: 10%;
  top: -20px;
  transform: translateX(-10%);
  z-index: -1;
  animation: moveLeftBounce 5s linear infinite;
}

.cryptocurrency-shape-2 {
  position: absolute;
  left: 40%;
  top: 100px;
  transform: translateX(-40%);
  z-index: -1;
}
.cryptocurrency-shape-2 img {
  animation-name: rotateMe;
  animation-duration: 20s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

.cryptocurrency-shape-3 {
  position: absolute;
  bottom: 15%;
  left: 2%;
  transform: translateY(-15%) translateX(-2%);
  z-index: -1;
  animation: moveBounce 5s linear infinite;
}

.cryptocurrency-shape-4 {
  position: absolute;
  bottom: 45%;
  right: 5%;
  z-index: -1;
  transform: translateY(-45%) translateX(-5%);
}
.cryptocurrency-shape-4 img {
  animation-name: rotateMe;
  animation-duration: 10s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

/*================================================
Stats Area CSS
=================================================*/
.stats-fun-fact-box {
  margin-bottom: 30px;
  transition: 0.5s;
}
.stats-fun-fact-box .stats-image {
  margin-bottom: 28px;
}
.stats-fun-fact-box h3 {
  font-size: 30px;
  margin-bottom: 0;
}
.stats-fun-fact-box span {
  font-size: 16px;
  font-weight: bold;
  color: #737b9a;
  display: inline-block;
  margin-top: 10px;
}
.stats-fun-fact-box:hover {
  transform: translateY(-5px);
}

/*================================================
Crypto About Area CSS
=================================================*/
.crypto-about-content {
  padding-left: 25px;
}
.crypto-about-content .sub-title {
  color: var(--mainColor);
  font-size: 15px;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 15px;
}
.crypto-about-content h3 {
  font-size: 40px;
  margin-bottom: 15px;
  line-height: 1.4;
}
.crypto-about-content h3 span {
  background: linear-gradient(89.21deg, #2F66B9 21.64%, #8659EB 71.02%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.crypto-about-content p {
  margin-bottom: 0;
}
.crypto-about-content .list {
  padding: 0;
  margin-top: 20px;
  margin-bottom: 0;
}
.crypto-about-content .list li {
  list-style-type: none;
  font-size: 16.5px;
  font-weight: bold;
  color: #737b9a;
  margin-bottom: 15px;
  position: relative;
  padding-left: 25px;
}
.crypto-about-content .list li:last-child {
  margin-bottom: 0;
}
.crypto-about-content .list li i {
  position: absolute;
  left: 0;
  top: 2px;
  color: #76BAAF;
  font-size: 16.5px;
}
.crypto-about-content .list li span {
  color: #29A9E1;
  border-bottom: 1px solid #29A9E1;
}
.crypto-about-content .about-btn {
  margin-top: 28px;
}

/*================================================
Earning Platform Area CSS
=================================================*/
.earning-platform-area {
  background: #F4FAFD;
}
.earning-platform-area .section-title {
  max-width: 725px;
}
.earning-platform-area .section-title h2 {
  max-width: 725px;
}

.earning-platform-card {
  margin-bottom: 30px;
  background-color: #ffffff;
  box-shadow: 0px 6px 20px rgba(26, 137, 185, 0.07);
  padding: 30px;
  border-radius: 5px;
  transition: 0.5s;
}
.earning-platform-card .earning-image {
  display: inline-block;
  height: 100px;
  width: 100px;
  line-height: 100px;
  background-color: #ffffff;
  text-align: center;
  border-radius: 50px;
  box-shadow: 0px 4px 20px rgba(26, 137, 185, 0.09);
  margin-bottom: 28px;
  transition: 0.5s;
}
.earning-platform-card h3 {
  font-size: 22px;
  margin-bottom: 14px;
}
.earning-platform-card:hover {
  transform: translateY(-5px);
}

/*================================================
Crypto Get Strated Area CSS
=================================================*/
.crypto-get-strated-area {
  background: linear-gradient(to right, #3565bd, #4365cb, #5663d7, #6b60e1, #835ae9);
  padding-top: 100px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.crypto-get-strated-content {
  padding-left: 25px;
  position: relative;
  top: -50px;
}
.crypto-get-strated-content .content {
  max-width: 650px;
}
.crypto-get-strated-content .content span {
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 15px;
}
.crypto-get-strated-content .content h3 {
  font-size: 40px;
  margin-bottom: 0;
  line-height: 1.4;
  color: #ffffff;
}
.crypto-get-strated-content .crypto-get-strated-card {
  margin-top: 30px;
  margin-left: 5px;
}
.crypto-get-strated-content .crypto-get-strated-card .get-image {
  margin-bottom: 30px;
}
.crypto-get-strated-content .crypto-get-strated-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
  color: #ffffff;
}
.crypto-get-strated-content .crypto-get-strated-card p {
  color: #ffffff;
  margin-bottom: 0;
}

.crypto-get-strated-shape {
  position: absolute;
  top: 10%;
  right: 10%;
  transform: translateY(-10%) translateX(-10%);
  animation: moveBounce 5s linear infinite;
  z-index: -1;
}

/*================================================
Key Features Area CSS
=================================================*/
.key-features-area {
  background: #F4FAFD;
}

.key-features-card {
  margin-bottom: 30px;
}
.key-features-card .key-content {
  border-radius: 5px;
  position: relative;
  background-color: #ffffff;
  box-shadow: 0px 6px 20px rgba(26, 137, 185, 0.07);
  padding: 30px 30px 30px 125px;
  transition: 0.5s;
  margin-bottom: 30px;
}
.key-features-card .key-content:last-child {
  margin-bottom: 0;
}
.key-features-card .key-content.right-gap {
  position: relative;
  right: 30px;
}
.key-features-card .key-content.left-gap {
  position: relative;
  left: 30px;
}
.key-features-card .key-content .icon-image {
  display: inline-block;
  height: 80px;
  width: 80px;
  line-height: 80px;
  background-color: #ffffff;
  text-align: center;
  border-radius: 50px;
  box-shadow: 0px 4px 20px rgba(26, 137, 185, 0.09);
  transition: 0.5s;
  position: absolute;
  left: 25px;
  top: 30px;
}
.key-features-card .key-content .icon-image img {
  max-width: 40px;
}
.key-features-card .key-content h3 {
  font-size: 22px;
  margin-bottom: 12px;
}
.key-features-card .key-content p {
  margin-bottom: 0;
}
.key-features-card .key-content:hover {
  transform: translateY(-5px);
}

/*================================================
Mining Area CSS
=================================================*/
.mining-content {
  padding-left: 50px;
}
.mining-content .sub-title {
  color: var(--mainColor);
  font-size: 15px;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 15px;
}
.mining-content h3 {
  font-size: 40px;
  margin-bottom: 15px;
  line-height: 1.4;
}
.mining-content h3 span {
  background: linear-gradient(89.21deg, #2F66B9 21.64%, #8659EB 71.02%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.mining-content p {
  margin-bottom: 0;
}
.mining-content .mining-btn {
  padding: 0;
  margin-top: 25px;
  margin-bottom: 0;
}
.mining-content .mining-btn li {
  display: inline-flex;
  margin-right: 20px;
}
.mining-content .mining-btn li:last-child {
  margin-right: 0;
}
.mining-content .mining-btn li .video-btn {
  margin-left: 5px;
  font-size: 15.5px;
  font-weight: 600;
  color: #212529;
}
.mining-content .mining-btn li .video-btn i {
  background: rgba(47, 143, 232, 0.07);
  height: 45px;
  width: 45px;
  display: inline-block;
  color: var(--mainColor);
  text-align: center;
  line-height: 45px;
  border-radius: 50%;
  padding-left: 5px;
  margin-right: 8px;
  transition: 0.5s;
}
.mining-content .mining-btn li .video-btn:hover i {
  background-color: var(--mainColor);
  color: #ffffff;
}

/*================================================
Trade Over Area CSS
=================================================*/
.trade-over-inner-box {
  background-color: #ffffff;
  box-shadow: 0px 3px 20px rgba(36, 157, 210, 0.12);
  border-radius: 5px;
  padding-left: 50px;
  padding-right: 50px;
}

.trade-over-card {
  margin-bottom: 30px;
  position: relative;
  padding-left: 65px;
}
.trade-over-card .over-image {
  position: absolute;
  left: 0;
  top: 0;
}
.trade-over-card p {
  font-size: 15.5px;
  font-weight: 400;
  margin-bottom: 20px;
  font-weight: 400;
  color: #737b9a;
}
.trade-over-card p b {
  font-weight: 600;
  color: #212529;
}
.trade-over-card p span {
  font-weight: 500;
  color: #ffffff;
  display: inline-block;
  padding: 8px 10px 5px;
  background: #76BAAF;
  box-shadow: -2px 6px 20px rgba(255, 109, 52, 0.07);
  border-radius: 5px;
  font-size: 14.5px;
  margin-left: 10px;
  line-height: 1;
}
.trade-over-card p .color-two {
  background-color: #FF6C6C;
}
.trade-over-card h3 {
  font-size: 30px;
  margin-bottom: 8px;
}
.trade-over-card span {
  color: #737b9a;
}
.trade-over-card .over-shape {
  position: absolute;
  right: 0;
  top: 0;
}

/*================================================
Why Choose Us Area CSS
=================================================*/
.why-choose-us-area {
  background-color: #F4FAFD;
}

.why-choose-us-content {
  max-width: 550px;
}
.why-choose-us-content .sub-title {
  color: var(--mainColor);
  font-size: 15px;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 15px;
}
.why-choose-us-content h3 {
  font-size: 40px;
  margin-bottom: 12px;
  line-height: 1.4;
}
.why-choose-us-content h3 span {
  background: linear-gradient(89.21deg, #2F66B9 21.64%, #8659EB 71.02%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.why-choose-us-content p {
  margin-bottom: 0;
}
.why-choose-us-content .choose-list {
  padding: 0;
  margin-top: 25px;
  margin-bottom: 0;
}
.why-choose-us-content .choose-list li {
  list-style-type: none;
  background-color: #ffffff;
  box-shadow: 0px 6px 20px rgba(26, 137, 185, 0.07);
  position: relative;
  margin-bottom: 20px;
  padding: 15px 15px 15px 40px;
  border-radius: 5px;
  font-size: 16.5px;
  font-weight: bold;
  color: #737b9a;
  transition: 0.5s;
}
.why-choose-us-content .choose-list li:last-child {
  margin-bottom: 0;
}
.why-choose-us-content .choose-list li::before {
  position: absolute;
  content: "";
  display: inline-block;
  height: 10px;
  width: 10px;
  background-color: #76BAAF;
  border-radius: 50px;
  left: 20px;
  top: 19.5px;
}
.why-choose-us-content .choose-list li:hover {
  transform: translateY(-2px);
}

.why-choose-us-card {
  background-color: #ffffff;
  border: 1px solid #EBD7D3;
  padding: 30px;
  border-radius: 5px;
  transition: 0.5s;
}
.why-choose-us-card .image {
  display: inline-block;
  height: 80px;
  width: 80px;
  line-height: 80px;
  background-color: #ffffff;
  text-align: center;
  border-radius: 50px;
  box-shadow: 0px 4px 20px rgba(26, 137, 185, 0.09);
  margin-bottom: 28px;
  transition: 0.5s;
}
.why-choose-us-card h3 {
  font-size: 22px;
  margin-bottom: 14px;
}
.why-choose-us-card:hover {
  transform: translateY(-5px);
  border: 1px solid var(--mainColor);
}

.choose-with-box-style .col-lg-6:nth-child(2) .why-choose-us-card {
  margin-bottom: 25px;
}

/*================================================
Unique Feedback Area CSS
=================================================*/
.unique-feedback-area {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.unique-feedback-area .section-title .sub-title {
  color: #ffffff;
}
.unique-feedback-area .section-title h2 {
  color: #ffffff;
}
.unique-feedback-area::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  bottom: 0;
  height: 150px;
  width: 100%;
  background-color: #F4FAFD;
  z-index: -1;
}
.unique-feedback-area.wrap-with-black-color {
  background-image: unset;
}
.unique-feedback-area.wrap-with-black-color::before {
  display: none;
}
.unique-feedback-area.with-linear-gradient-color {
  background-image: unset;
  background: linear-gradient(86.42deg, #2E66B9 0%, #8859EC 101.05%);
}
.unique-feedback-area.with-linear-gradient-color::before {
  background-color: #ffffff;
}

.with-linear-gradient-color .unique-feedback-area {
  background-image: unset;
  background: linear-gradient(86.42deg, #2E66B9 0%, #8859EC 101.05%);
}
.with-linear-gradient-color .unique-feedback-area::before {
  background-color: #ffffff;
}

.unique-single-feedback {
  background-color: #ffffff;
  box-shadow: 0px 6px 20px rgba(26, 137, 185, 0.07);
  padding: 40px 45px;
  border: 1px solid #F9F9F9;
  border-radius: 5px;
  transition: 0.5s;
  position: relative;
  z-index: 1;
}
.unique-single-feedback .rating {
  padding: 0;
  margin-bottom: 15px;
}
.unique-single-feedback .rating li {
  list-style-type: none;
  display: inline-block;
  margin-right: 5px;
}
.unique-single-feedback .rating li:last-child {
  margin-right: 0;
}
.unique-single-feedback .rating li i {
  font-size: 18px;
  color: #FFB820;
}
.unique-single-feedback .client-info {
  margin-top: 30px;
  position: relative;
  padding-left: 70px;
}
.unique-single-feedback .client-info img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.unique-single-feedback .client-info h3 {
  margin-bottom: 0;
  color: var(--mainColor);
  font-size: 20px;
}
.unique-single-feedback .client-info span {
  display: block;
  color: #737b9a;
  margin-top: 10px;
  font-size: 15px;
}
.unique-single-feedback .quote {
  position: absolute;
  right: 45px;
  top: 55px;
  z-index: -1;
}
.unique-single-feedback:hover {
  border: 1px solid var(--mainColor);
}
.unique-single-feedback.with-black-color {
  background-color: #161618;
  border: 1px solid #161618;
}
.unique-single-feedback.with-black-color p {
  color: #F4F5F8;
}
.unique-single-feedback.with-black-color .client-info h3 {
  color: #F4F5F8;
}
.unique-single-feedback.with-black-color .client-info span {
  color: #F4F5F8;
}
.unique-single-feedback.with-black-color .quote {
  top: unset;
  bottom: 35px;
}
.unique-single-feedback.with-black-color .quote i {
  color: var(--mainColor);
  font-size: 45px;
}
.unique-single-feedback.with-black-color:hover {
  border: 1px solid var(--mainColor);
}

.unique-feedback-slides.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 30px;
}
.unique-feedback-slides.owl-theme .owl-dots .owl-dot span {
  width: 20px;
  height: 10px;
  margin: 0 5px;
  background: #E1E1FA;
  display: block;
  transition: 0.5s;
  border-radius: 10px;
  display: inline-block;
}
.unique-feedback-slides.owl-theme .owl-dots .owl-dot:hover span, .unique-feedback-slides.owl-theme .owl-dots .owl-dot.active span {
  background-color: var(--mainColor);
  width: 30px;
}

.unique-feedback-line-bg {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
}

/*================================================
Mobile App Area CSS
=================================================*/
.mobile-app-area {
  background-color: #F4FAFD;
}

.mobile-app-content {
  padding-left: 90px;
}
.mobile-app-content h3 {
  font-size: 40px;
  margin-bottom: 12px;
  line-height: 1.4;
}
.mobile-app-content h3 span {
  background: linear-gradient(89.21deg, #2F66B9 21.64%, #8659EB 71.02%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.mobile-app-content p {
  margin-bottom: 0;
}
.mobile-app-content .app-btn-box {
  margin-top: 25px;
}
.mobile-app-content .app-btn-box .playstore-btn {
  position: relative;
  border-radius: 5px;
  margin-right: 15px;
  display: inline-block;
  color: #737b9a;
  background-color: #ffffff;
  box-shadow: 0 7px 18px 0 rgba(107, 124, 147, 0.15);
  font-size: 14px;
  font-weight: 500;
  padding-top: 12px;
  padding-left: 70px;
  padding-right: 25px;
  padding-bottom: 12px;
}
.mobile-app-content .app-btn-box .playstore-btn span {
  display: block;
  margin-top: 5px;
  color: #212529;
  transition: 0.5s;
  font-size: 17.5px;
  font-weight: 700;
}
.mobile-app-content .app-btn-box .playstore-btn img {
  transform: translateY(-50%);
  position: absolute;
  left: 20px;
  top: 50%;
}
.mobile-app-content .app-btn-box .playstore-btn:hover {
  background-color: var(--mainColor);
  transform: translateY(-3px);
  color: #ffffff;
}
.mobile-app-content .app-btn-box .playstore-btn:hover span {
  color: #ffffff;
}
.mobile-app-content .app-btn-box .applestore-btn {
  position: relative;
  border-radius: 5px;
  display: inline-block;
  color: #737b9a;
  background-color: #ffffff;
  box-shadow: 0 7px 18px 0 rgba(107, 124, 147, 0.15);
  font-size: 14px;
  font-weight: 500;
  padding-top: 12px;
  padding-left: 68px;
  padding-right: 25px;
  padding-bottom: 12px;
}
.mobile-app-content .app-btn-box .applestore-btn span {
  display: block;
  margin-top: 5px;
  color: #212529;
  transition: 0.5s;
  font-size: 17.5px;
  font-weight: 700;
}
.mobile-app-content .app-btn-box .applestore-btn img {
  transform: translateY(-50%);
  position: absolute;
  left: 20px;
  top: 50%;
}
.mobile-app-content .app-btn-box .applestore-btn:hover {
  background-color: #212529;
  transform: translateY(-3px);
  color: #ffffff;
}
.mobile-app-content .app-btn-box .applestore-btn:hover span {
  color: #ffffff;
}

/*================================================
Blog Area CSS
=================================================*/
.single-blog-card2 {
  background: #F4FAFD;
  padding: 30px;
  border-radius: 5px;
  border: 1px solid #F4FAFD;
  transition: 0.5s;
  margin-bottom: 30px;
}
.single-blog-card2 .tag {
  position: relative;
  margin-top: -40px;
}
.single-blog-card2 .tag span {
  display: inline-block;
  padding: 10px 25px;
  border-radius: 30px;
  background-color: var(--mainColor);
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
}
.single-blog-card2 .post-meta {
  padding: 0;
  margin-top: 25px;
  margin-bottom: 18px;
}
.single-blog-card2 .post-meta li {
  display: inline-block;
  list-style-type: none;
  font-size: 15px;
  color: #737b9a;
  position: relative;
  margin-right: 20px;
  padding-left: 22px;
}
.single-blog-card2 .post-meta li:last-child {
  margin-right: 0;
}
.single-blog-card2 .post-meta li i {
  color: var(--mainColor);
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 15px;
}
.single-blog-card2 h3 {
  font-size: 24px;
  line-height: 1.4;
  margin-bottom: 12px;
}
.single-blog-card2 h3 a {
  color: #212529;
}
.single-blog-card2 .info {
  margin-top: 20px;
  position: relative;
  padding-left: 70px;
}
.single-blog-card2 .info img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.single-blog-card2 .info h3 {
  margin-bottom: 0;
  font-size: 18px;
}
.single-blog-card2 .info span {
  display: block;
  color: #737b9a;
  margin-top: 10px;
  font-size: 15px;
}
.single-blog-card2:hover {
  border: 1px solid var(--mainColor);
  transform: translateY(-5px);
}
.single-blog-card2:hover h3 a {
  color: var(--mainColor);
}
.single-blog-card2.with-black-color {
  border: 1px solid rgba(203, 220, 221, 0.06);
  background-color: transparent;
}
.single-blog-card2.with-black-color .post-meta li {
  color: #F4F5F8;
}
.single-blog-card2.with-black-color .post-meta li i {
  background: linear-gradient(90deg, #D3064E -0.61%, #FE5B67 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.single-blog-card2.with-black-color h3 a {
  color: #F4F5F8;
}
.single-blog-card2.with-black-color p {
  color: #F4F5F8;
}
.single-blog-card2.with-black-color .info h3 {
  color: #F4F5F8;
}
.single-blog-card2.with-black-color .info span {
  color: #F4F5F8;
}
.single-blog-card2.with-black-color:hover {
  border: 1px solid #161618;
  background-color: #161618;
  transform: translateY(-5px);
}

.background-with-black-color.blog-wrap-area .single-blog-card2 {
  border: 1px solid rgba(203, 220, 221, 0.06);
  background-color: transparent;
}
.background-with-black-color.blog-wrap-area .single-blog-card2 .post-meta li {
  color: #F4F5F8;
}
.background-with-black-color.blog-wrap-area .single-blog-card2 .post-meta li i {
  background: linear-gradient(90deg, #D3064E -0.61%, #FE5B67 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.background-with-black-color.blog-wrap-area .single-blog-card2 h3 a {
  color: #F4F5F8;
}
.background-with-black-color.blog-wrap-area .single-blog-card2 p {
  color: #F4F5F8;
}
.background-with-black-color.blog-wrap-area .single-blog-card2 .info h3 {
  color: #F4F5F8;
}
.background-with-black-color.blog-wrap-area .single-blog-card2 .info span {
  color: #F4F5F8;
}
.background-with-black-color.blog-wrap-area .single-blog-card2:hover {
  border: 1px solid #161618;
  background-color: #161618;
  transform: translateY(-5px);
}

/*================================================
Subscribe Wrap Area CSS
=================================================*/
.subscribe-wrap-area {
  position: relative;
  z-index: 1;
}
.subscribe-wrap-area::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  bottom: 0;
  height: 150px;
  width: 100%;
  background-color: #212529;
  z-index: -1;
}
.subscribe-wrap-area.with-black-color {
  background-color: #1F1F22;
}
.subscribe-wrap-area.with-black-color::before {
  background-color: #161618;
}

.with-black-color .subscribe-wrap-area {
  background-color: #1F1F22;
}
.with-black-color .subscribe-wrap-area::before {
  background-color: #161618;
}

.subscribe-wrap-inner-box {
  background: linear-gradient(86.42deg, #2E66B9 0%, #8859EC 101.05%);
  max-width: 950px;
  margin: auto;
  padding-top: 80px;
  padding-bottom: 80px;
  padding-left: 150px;
  padding-right: 150px;
  border-radius: 5px;
  position: relative;
  z-index: 1;
}
.subscribe-wrap-inner-box .subscribe-content {
  text-align: center;
}
.subscribe-wrap-inner-box .subscribe-content h2 {
  color: #ffffff;
  margin-bottom: 0;
  font-size: 40px;
}
.subscribe-wrap-inner-box .subscribe-content .newsletter-form {
  max-width: 550px;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  margin-top: 35px;
}
.subscribe-wrap-inner-box .subscribe-content .newsletter-form .input-newsletter {
  display: block;
  width: 100%;
  background-color: #ffffff;
  border: none;
  height: 65px;
  padding-left: 25px;
  border-radius: 70px;
  padding-top: 5px;
  outline: 0;
  color: #212529;
}
.subscribe-wrap-inner-box .subscribe-content .newsletter-form .input-newsletter::-moz-placeholder {
  color: #737b9a;
}
.subscribe-wrap-inner-box .subscribe-content .newsletter-form .input-newsletter::placeholder {
  color: #737b9a;
}
.subscribe-wrap-inner-box .subscribe-content .newsletter-form button {
  position: absolute;
  right: 5px;
  top: 5px;
  background-color: var(--mainColor);
  color: #ffffff;
  border: none;
  height: 55px;
  padding: 0 30px;
  border-radius: 70px;
  transition: 0.5s;
  line-height: 60px;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 700;
}
.subscribe-wrap-inner-box .subscribe-content .newsletter-form button:hover {
  background-color: var(--optionalColor);
  color: #ffffff;
}
.subscribe-wrap-inner-box .subscribe-content .newsletter-form #validator-newsletter {
  position: absolute;
  left: 0;
  margin: 0 auto;
  right: 0;
  color: #ffffff;
  bottom: -35px;
}
.subscribe-wrap-inner-box .subscribe-shape-1 {
  position: absolute;
  left: 30px;
  bottom: 30px;
  z-index: -1;
  animation: moveBounce 5s linear infinite;
}
.subscribe-wrap-inner-box .subscribe-shape-2 {
  position: absolute;
  left: 150px;
  top: 50px;
  z-index: -1;
  animation: moveLeftBounce 3s linear infinite;
}
.subscribe-wrap-inner-box .subscribe-shape-3 {
  position: absolute;
  right: 150px;
  top: 50px;
  z-index: -1;
  animation: moveBounce 5s linear infinite;
}

/*================================================
Cyber Security Banner Area CSS
=================================================*/
.cs-banner-section {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-color: #161618;
  padding-top: 150px;
  padding-bottom: 150px;
}
.cs-banner-section::before {
  position: absolute;
  content: "";
  width: 348px;
  height: 100%;
  background-color: #1F1F22;
  left: 0;
  top: 0;
  z-index: -1;
}
.cs-banner-section .container-fluid {
  padding-left: 80px;
  padding-right: 50px;
}

.cs-banner-content .sub-title {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.cs-banner-content .sub-title::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 5px;
  background: linear-gradient(90deg, #D3064E -0.61%, #FE5B67 100%);
  height: 5px;
  width: 100%;
  z-index: -1;
}
.cs-banner-content h1 {
  font-size: 90px;
  font-weight: 800;
  margin-bottom: 15px;
  color: #ffffff;
}
.cs-banner-content p {
  margin-bottom: 0;
  color: #ffffff;
  font-size: 22px;
  font-weight: 500;
}
.cs-banner-content .banner-btn {
  padding: 0;
  margin-top: 30px;
  margin-bottom: 0;
}
.cs-banner-content .banner-btn li {
  display: inline-flex;
  margin-right: 20px;
}
.cs-banner-content .banner-btn li:last-child {
  margin-right: 0;
}
.cs-banner-content .banner-btn li .video-btn {
  margin-left: 5px;
  font-size: 15.5px;
  font-weight: 600;
  color: #ffffff;
}
.cs-banner-content .banner-btn li .video-btn i {
  background: rgba(47, 143, 232, 0.07);
  height: 45px;
  width: 45px;
  display: inline-block;
  color: var(--mainColor);
  text-align: center;
  line-height: 45px;
  border-radius: 50%;
  padding-left: 5px;
  margin-right: 8px;
  transition: 0.5s;
}
.cs-banner-content .banner-btn li .video-btn:hover i {
  background-color: var(--mainColor);
  color: #ffffff;
}

.cs-banner-shape {
  position: absolute;
  left: 30px;
  top: 30px;
  z-index: -1;
}
.cs-banner-shape img {
  animation-name: rotateMe;
  animation-duration: 30s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

.cs-lock {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateY(-10%) translateX(-50%);
  z-index: -1;
  animation: moveBounce 5s linear infinite;
}

/*================================================
Card Area CSS
=================================================*/
.cs-card-area {
  padding-top: 70px;
  padding-bottom: 40px;
}

.cs-card-content {
  margin-bottom: 30px;
}
.cs-card-content h3 {
  font-size: 20px;
  margin-bottom: 0;
  position: relative;
  padding-top: 22px;
  font-weight: 600;
}
.cs-card-content h3 a {
  color: #ffffff;
}
.cs-card-content h3::before {
  position: absolute;
  content: "";
  width: 200px;
  height: 1px;
  left: 0;
  top: 0;
  background: rgba(47, 143, 232, 0.1);
}
.cs-card-content h3::after {
  position: absolute;
  content: "";
  width: 115px;
  height: 1px;
  left: 0;
  top: 0;
  background: rgba(47, 143, 232, 0.4);
}

/*================================================
Features Area CSS
=================================================*/
.cs-features-area {
  overflow: hidden;
}
.cs-features-area .container-fluid {
  padding-left: 0;
  padding-right: 0;
}

.cs-features-item {
  position: relative;
  z-index: 1;
  padding: 80px 70px;
  overflow: hidden;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transition: 0.5s;
}
.cs-features-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(31, 31, 34, 0.96) 0%, rgba(31, 31, 34, 0.9) 58.33%, rgba(22, 22, 24, 0.6) 100%);
  transition: 0.5s;
  z-index: -1;
}
.cs-features-item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(80.77deg, #7906D3 0%, #1377D2 100%);
  transition: 0.5s;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
}
.cs-features-item .content h3 {
  font-size: 24px;
  margin-bottom: 16.8px;
}
.cs-features-item .content h3 a {
  color: #ffffff;
}
.cs-features-item .content p {
  color: #ffffff;
  margin-bottom: 20px;
}
.cs-features-item .content .get-started-btn {
  font-size: 15px;
  font-weight: bold;
  color: #ffffff;
  position: relative;
  z-index: 1;
  padding-left: 10px;
}
.cs-features-item .content .get-started-btn::before {
  position: absolute;
  content: "";
  height: 30px;
  width: 30px;
  background-color: var(--mainColor);
  border-radius: 50px;
  left: 0;
  bottom: -2.5px;
  z-index: -1;
}
.cs-features-item .bg-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 30px;
}
.cs-features-item .bg-icon i {
  font-size: 120px;
  color: #ffffff;
  opacity: 5%;
}
.cs-features-item:hover::before {
  opacity: 0;
  visibility: hidden;
}
.cs-features-item:hover::after {
  opacity: 1;
  visibility: visible;
}

/*================================================
CS Partner Area CSS
=================================================*/
.cs-partner-area .container-fluid {
  padding-left: 50px;
  padding-right: 50px;
}

.cs-partner-item {
  text-align: center;
  margin-bottom: 30px;
}
.cs-partner-item a img {
  display: inline-block !important;
  max-width: 100%;
  width: auto !important;
  margin: auto;
}

/*================================================
CS About Area CSS
=================================================*/
.cs-about-area {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.cs-about-area::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 955px;
  background-color: #161618;
  left: 0;
  top: 0;
  z-index: -1;
}

.cs-about-content {
  padding-left: 35px;
}
.cs-about-content .sub-title {
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 18px;
}
.cs-about-content h3 {
  font-size: 40px;
  color: #ffffff;
  margin-bottom: 15px;
}
.cs-about-content h3 span {
  position: relative;
  z-index: 1;
}
.cs-about-content h3 span::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 12px;
  background: linear-gradient(90deg, #D3064E -0.61%, #FE5B67 100%);
  height: 5px;
  width: 100%;
  z-index: -1;
}
.cs-about-content p {
  color: #F4F5F8;
  margin-bottom: 0;
}
.cs-about-content .cs-about-card {
  margin-top: 30px;
}
.cs-about-content .cs-about-card .icon {
  display: inline-block;
  height: 85px;
  width: 85px;
  line-height: 85px;
  background: #161618;
  box-shadow: 0px 4px 20px rgba(26, 137, 185, 0.09);
  color: #ffffff;
  font-size: 35px;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}
.cs-about-content .cs-about-card .icon::before {
  position: absolute;
  content: "";
  display: inline-block;
  height: 85px;
  width: 85px;
  line-height: 85px;
  left: 0;
  right: 0;
  top: 0;
  background: linear-gradient(80.77deg, #7906D3 0%, #1377D2 100%);
  z-index: -1;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
}
.cs-about-content .cs-about-card .icon i {
  font-weight: 900;
  font-size: 35px;
}
.cs-about-content .cs-about-card h4 {
  color: #ffffff;
  font-size: 20px;
  margin-bottom: 0;
  position: relative;
  padding-bottom: 18px;
  margin-bottom: 18px;
}
.cs-about-content .cs-about-card h4::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  left: 0;
  bottom: 0;
  background: rgba(47, 143, 232, 0.1);
}
.cs-about-content .cs-about-card h4::after {
  position: absolute;
  content: "";
  width: 115px;
  height: 1px;
  left: 0;
  bottom: 0;
  background: rgba(47, 143, 232, 0.4);
}
.cs-about-content .cs-about-card:hover .icon::before {
  opacity: 1;
  visibility: visible;
}
.cs-about-content .about-btn {
  margin-top: 30px;
}

/*================================================
CS Choose Area CSS
=================================================*/
.cs-choose-content {
  padding-right: 25px;
}
.cs-choose-content .sub-title {
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 15px;
}
.cs-choose-content h3 {
  font-size: 40px;
  margin-bottom: 15px;
  line-height: 1.4;
  color: #ffffff;
}
.cs-choose-content h3 span {
  position: relative;
  z-index: 1;
}
.cs-choose-content h3 span::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 12px;
  background: linear-gradient(90deg, #D3064E -0.61%, #FE5B67 100%);
  height: 5px;
  width: 100%;
  z-index: -1;
}
.cs-choose-content p {
  margin-bottom: 0;
  color: #F4F5F8;
}
.cs-choose-content .list {
  padding: 0;
  margin-top: 22px;
  margin-bottom: 0;
}
.cs-choose-content .list li {
  list-style-type: none;
  font-size: 16.5px;
  font-weight: bold;
  color: #F4F5F8;
  margin-bottom: 15px;
  position: relative;
  padding-left: 25px;
}
.cs-choose-content .list li:last-child {
  margin-bottom: 0;
}
.cs-choose-content .list li i {
  position: absolute;
  left: 0;
  top: 2px;
  color: #76BAAF;
  font-size: 16.5px;
}
.cs-choose-content .choose-btn {
  margin-top: 28px;
}

/*================================================
CS Services Area CSS
=================================================*/
.cs-services-card {
  margin-bottom: 30px;
  background: #161618;
  box-shadow: 0px 6px 20px rgba(26, 137, 185, 0.07);
  padding: 30px;
  border-radius: 5px;
  transition: 0.5s;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.cs-services-card::before {
  position: absolute;
  content: "";
  display: inline-block;
  height: 100%;
  width: 100%;
  left: 0;
  right: 0;
  top: 0;
  background: linear-gradient(80.77deg, #7906D3 0%, #1377D2 100%);
  z-index: -1;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
}
.cs-services-card .image {
  display: inline-block;
  height: 100px;
  width: 100px;
  line-height: 100px;
  background: #1F1F22;
  box-shadow: 0px 4px 20px rgba(26, 137, 185, 0.09);
  text-align: center;
  border-radius: 50%;
  margin-bottom: 28px;
  transition: 0.5s;
}
.cs-services-card .image img {
  max-width: 65px;
}
.cs-services-card h3 {
  font-size: 22px;
  margin-bottom: 14px;
}
.cs-services-card h3 a {
  color: #ffffff;
}
.cs-services-card p {
  color: #F4F5F8;
}
.cs-services-card:hover {
  transform: translateY(-5px);
}
.cs-services-card:hover::before {
  opacity: 1;
  visibility: visible;
}

/*================================================
CS Fun Facts Area CSS
=================================================*/
.cs-fun-facts-area {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.cs-fun-facts-area::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 1150px;
  background-color: #161618;
  right: 0;
  top: 0;
  z-index: -1;
}

.cs-single-fun-facts {
  margin-bottom: 30px;
  padding-bottom: 35px;
  position: relative;
}
.cs-single-fun-facts::before {
  position: absolute;
  content: "";
  width: 100px;
  height: 3.2px;
  left: 0;
  bottom: 0;
  background: var(--mainColor);
}
.cs-single-fun-facts .number {
  font-size: 14px;
  color: #737b9a;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 22px;
}
.cs-single-fun-facts h3 {
  position: relative;
  color: #ffffff;
  margin-bottom: 0;
  font-size: 38px;
}
.cs-single-fun-facts h3 .sign-icon {
  display: inline-block;
  font-size: 35px;
  margin-left: 2px;
}
.cs-single-fun-facts p {
  line-height: initial;
  margin-top: 12px;
  color: #F4F5F8;
  font-size: 16.8px;
  font-weight: 500;
}

/*================================================
Leading Technology Area CSS
=================================================*/
.leading-technology-content {
  padding-left: 30px;
}
.leading-technology-content .sub-title {
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 15px;
}
.leading-technology-content h3 {
  font-size: 40px;
  margin-bottom: 15px;
  line-height: 1.4;
  color: #ffffff;
}
.leading-technology-content h3 span {
  position: relative;
  z-index: 1;
}
.leading-technology-content h3 span::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 12px;
  background: linear-gradient(90deg, #D3064E -0.61%, #FE5B67 100%);
  height: 5px;
  width: 100%;
  z-index: -1;
}
.leading-technology-content p {
  margin-bottom: 0;
  color: #F4F5F8;
}
.leading-technology-content .list {
  padding: 0;
  margin-top: 22px;
  margin-bottom: 0;
}
.leading-technology-content .list li {
  border-radius: 5px;
  list-style-type: none;
  font-size: 15.5px;
  font-weight: 600;
  color: #F4F5F8;
  margin-bottom: 15px;
  position: relative;
  border: 1px solid rgba(203, 220, 221, 0.06);
  padding: 10px 10px 10px 38px;
  transition: 0.5s;
}
.leading-technology-content .list li:last-child {
  margin-bottom: 0;
}
.leading-technology-content .list li::before {
  position: absolute;
  content: "";
  height: 10px;
  width: 10px;
  background: linear-gradient(80.77deg, #7906D3 0%, #1377D2 100%);
  border-radius: 50px;
  left: 15px;
  top: 14.5px;
}
.leading-technology-content .list li:hover {
  border: 1px solid var(--optionalColor);
  transform: translateY(-2px);
}

/*================================================
CS Overview Area CSS
=================================================*/
.cs-overview-item {
  margin-bottom: 30px;
  padding: 30px;
  border: 1px solid rgba(203, 220, 221, 0.06);
  border-radius: 5px;
  transition: 0.5s;
}
.cs-overview-item .cs-overview-content h3 {
  font-size: 22px;
  margin-bottom: 20px;
  color: #ffffff;
  line-height: 1.4;
}
.cs-overview-item .cs-overview-content .get-started-btn {
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
  position: relative;
  z-index: 1;
  padding-left: 10px;
}
.cs-overview-item .cs-overview-content .get-started-btn::before {
  position: absolute;
  content: "";
  height: 25px;
  width: 25px;
  background-color: var(--mainColor);
  border-radius: 50px;
  left: 0;
  bottom: 0.5px;
  z-index: -1;
}
.cs-overview-item:hover {
  border: 1px solid var(--mainColor);
  transform: translateY(-5px);
}

/*================================================
Big Data Banner Area CSS
=================================================*/
.bd-banner-section {
  background-color: #F1F9F9;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 50px;
  padding-bottom: 50px;
}
.bd-banner-section .container-fluid {
  padding-left: 50px;
  padding-right: 50px;
}

.bd-banner-content {
  max-width: 650px;
}
.bd-banner-content .sub-title {
  background-color: #ffffff;
  box-shadow: -2px 6px 15px rgba(67, 127, 236, 0.07);
  color: #737b9a;
  font-size: 16px;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 25px;
  border-radius: 5px;
  padding: 8px 15px;
}
.bd-banner-content h1 {
  font-size: 55px;
  font-weight: 800;
  margin-bottom: 15px;
}
.bd-banner-content h1 span {
  position: relative;
  z-index: 1;
}
.bd-banner-content h1 span::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 12px;
  background: linear-gradient(90deg, #D3064E -0.61%, #FE5B67 100%);
  height: 5px;
  width: 100%;
  z-index: -1;
}
.bd-banner-content p {
  margin-bottom: 0;
}
.bd-banner-content .banner-btn {
  padding: 0;
  margin-top: 25px;
  margin-bottom: 0;
}
.bd-banner-content .banner-btn li {
  display: inline-flex;
  margin-right: 20px;
}
.bd-banner-content .banner-btn li:last-child {
  margin-right: 0;
}
.bd-banner-content .banner-btn li .video-btn {
  margin-left: 5px;
  font-size: 15.5px;
  font-weight: 600;
  color: #212529;
}
.bd-banner-content .banner-btn li .video-btn i {
  background: rgba(47, 143, 232, 0.07);
  height: 45px;
  width: 45px;
  display: inline-block;
  color: var(--mainColor);
  text-align: center;
  line-height: 45px;
  border-radius: 50%;
  padding-left: 5px;
  margin-right: 8px;
  transition: 0.5s;
}
.bd-banner-content .banner-btn li .video-btn:hover i {
  background-color: var(--mainColor);
  color: #ffffff;
}

.bd-banner-image {
  position: relative;
  z-index: 1;
  text-align: center;
}
.bd-banner-image .circle-shape {
  width: 865px;
  height: 650px;
  border-radius: 50%;
  background-color: #ffffff;
  z-index: -1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -150px;
}

.bd-banner-shape-1 {
  position: absolute;
  left: 50px;
  top: 50px;
  z-index: -1;
  animation: moveBounce 5s linear infinite;
}

.bd-banner-shape-2 {
  position: absolute;
  top: 5%;
  left: 45%;
  transform: translateY(-5%) translateX(-45%);
  z-index: -1;
  animation: moveBounce 5s linear infinite;
}

.bd-banner-shape-3 {
  position: absolute;
  bottom: 10%;
  left: 30%;
  transform: translateY(-10%) translateX(-30%);
  z-index: -1;
  animation: moveBounce 5s linear infinite;
}

/*================================================
BD Fun Facts Area CSS
=================================================*/
.bd-fun-facts-area {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.bd-fun-facts-area .container-fluid {
  padding-left: 0;
  padding-right: 0;
}
.bd-fun-facts-area::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  height: 70px;
  background: #F1F9F9;
  z-index: -1;
}

.bd-fun-facts-inner-box {
  background: linear-gradient(80.77deg, #7906D3 0%, #1377D2 100%);
  border-radius: 0px 20px 20px 0px;
  max-width: 1320px;
  padding-left: 50px;
  padding-right: 50px;
}

.bd-single-fun-facts {
  margin-bottom: 30px;
  padding-bottom: 28px;
  position: relative;
  padding-left: 100px;
}
.bd-single-fun-facts::before {
  position: absolute;
  content: "";
  width: 100px;
  height: 3.2px;
  bottom: 0;
  background: #FBBDE7;
}
.bd-single-fun-facts .image-icon {
  display: inline-block;
  height: 80px;
  width: 80px;
  line-height: 80px;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0px 4px 20px rgba(26, 137, 185, 0.09);
  text-align: center;
  border-radius: 50%;
  margin-bottom: 28px;
  transition: 0.5s;
  position: absolute;
  left: 0;
  top: 0;
}
.bd-single-fun-facts .image-icon img {
  max-width: 45px;
}
.bd-single-fun-facts h3 {
  position: relative;
  color: #ffffff;
  margin-bottom: 0;
  font-size: 38px;
}
.bd-single-fun-facts h3 .sign-icon {
  display: inline-block;
  font-size: 35px;
  margin-left: 2px;
}
.bd-single-fun-facts p {
  line-height: initial;
  margin-top: 10px;
  color: #F4F5F8;
  font-size: 16.8px;
  font-weight: 500;
}
.bd-single-fun-facts span.odometer-formatting-mark {
  display: none;
}

/*================================================
BD Featured Area CSS
=================================================*/
.bd-featured-area {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.bd-featured-card {
  margin-bottom: 30px;
  background-color: #ffffff;
  box-shadow: 0px 6px 20px rgba(26, 137, 185, 0.07);
  padding: 30px;
  border-radius: 5px;
  transition: 0.5s;
}
.bd-featured-card .featured-image {
  display: inline-block;
  height: 100px;
  width: 100px;
  line-height: 100px;
  background-color: #ffffff;
  text-align: center;
  border-radius: 50px;
  box-shadow: 0px 4px 20px rgba(26, 137, 185, 0.1);
  margin-bottom: 28px;
  transition: 0.5s;
}
.bd-featured-card .featured-image img {
  max-width: 45px;
}
.bd-featured-card h3 {
  font-size: 21px;
  margin-bottom: 14px;
}
.bd-featured-card:hover {
  transform: translateY(-5px);
}

.bd-featured-shape {
  position: absolute;
  top: 5%;
  right: 5%;
  transform: translateY(-5%) translateX(-5%);
  z-index: -1;
  animation: moveBounce 5s linear infinite;
}

/*================================================
BD About Area CSS
=================================================*/
.bd-about-area {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.bd-about-content {
  padding-left: 35px;
}
.bd-about-content .sub-title {
  color: var(--mainColor);
  font-size: 15px;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 18px;
}
.bd-about-content h3 {
  font-size: 40px;
  margin-bottom: 15px;
}
.bd-about-content h3 span {
  position: relative;
  z-index: 1;
}
.bd-about-content h3 span::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 12px;
  background: linear-gradient(90deg, #D3064E -0.61%, #FE5B67 100%);
  height: 5px;
  width: 100%;
  z-index: -1;
}
.bd-about-content p {
  margin-bottom: 0;
}
.bd-about-content .inner-content-card {
  border-radius: 5px;
  background-color: #ffffff;
  box-shadow: 0px 4px 20px rgba(26, 137, 185, 0.07);
  margin-top: 30px;
  position: relative;
  padding: 30px 30px 30px 138px;
  transition: 0.5s;
}
.bd-about-content .inner-content-card .icon-image {
  display: inline-block;
  height: 85px;
  width: 85px;
  line-height: 85px;
  background-color: #ffffff;
  text-align: center;
  border-radius: 50px;
  box-shadow: 0px 4px 20px rgba(26, 137, 185, 0.1);
  transition: 0.5s;
  position: absolute;
  left: 30px;
  top: 30px;
}
.bd-about-content .inner-content-card h4 {
  font-size: 22px;
  margin-bottom: 12.8px;
}
.bd-about-content .inner-content-card:hover {
  transform: translateY(-5px);
}

.bd-about-shape {
  position: absolute;
  top: 5%;
  right: 5%;
  transform: translateY(-5%) translateX(-5%);
  z-index: -1;
  animation: moveBounce 5s linear infinite;
}

/*================================================
BD Services Area CSS
=================================================*/
.bd-services-area {
  background-color: #F4FAFD;
}

.bd-services-card {
  margin-bottom: 30px;
  background-color: #ffffff;
  box-shadow: 0px 6px 20px rgba(26, 137, 185, 0.07);
  padding: 30px;
  border-radius: 5px;
  transition: 0.5s;
}
.bd-services-card .services-image {
  display: inline-block;
  height: 90px;
  width: 90px;
  line-height: 90px;
  background-color: #ffffff;
  text-align: center;
  border-radius: 50px;
  box-shadow: 0px 4px 20px rgba(26, 137, 185, 0.1);
  margin-bottom: 28px;
  transition: 0.5s;
}
.bd-services-card .services-image img {
  max-width: 45px;
}
.bd-services-card h3 {
  font-size: 24px;
  margin-bottom: 14px;
}
.bd-services-card p {
  margin-bottom: 20px;
}
.bd-services-card .get-started-btn {
  font-size: 15px;
  font-weight: bold;
  color: #737b9a;
  position: relative;
  z-index: 1;
  padding-left: 10px;
}
.bd-services-card .get-started-btn::before {
  position: absolute;
  content: "";
  height: 25px;
  width: 25px;
  background-color: #FBB8A9;
  border-radius: 50px;
  left: 0;
  bottom: 0.5px;
  z-index: -1;
  transition: 0.5s;
}
.bd-services-card:hover {
  transform: translateY(-5px);
}
.bd-services-card:hover .get-started-btn {
  color: var(--mainColor);
}
.bd-services-card:hover .get-started-btn::before {
  background-color: var(--optionalColor);
}

/*================================================
BD Choose Area CSS
=================================================*/
.bd-choose-content {
  padding-right: 25px;
}
.bd-choose-content .sub-title {
  color: var(--mainColor);
  font-size: 15px;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 15px;
}
.bd-choose-content h3 {
  font-size: 40px;
  margin-bottom: 15px;
  line-height: 1.4;
}
.bd-choose-content h3 span {
  position: relative;
  z-index: 1;
}
.bd-choose-content h3 span::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 12px;
  background: linear-gradient(90deg, #D3064E -0.61%, #FE5B67 100%);
  height: 5px;
  width: 100%;
  z-index: -1;
}
.bd-choose-content p {
  margin-bottom: 0;
}
.bd-choose-content .list {
  padding: 0;
  margin-top: 22px;
  margin-bottom: 0;
}
.bd-choose-content .list li {
  list-style-type: none;
  font-size: 16.5px;
  font-weight: bold;
  color: #737b9a;
  margin-bottom: 15px;
  position: relative;
  padding-left: 25px;
}
.bd-choose-content .list li:last-child {
  margin-bottom: 0;
}
.bd-choose-content .list li i {
  position: absolute;
  left: 0;
  top: 2px;
  color: #76BAAF;
  font-size: 16.5px;
}
.bd-choose-content .choose-btn {
  margin-top: 28px;
}

/*================================================
BD Choose Area CSS
=================================================*/
.bd-overview-area {
  background-image: url(../../assets/img/big-data-home/overview/overview-bg.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.bd-overview-content {
  max-width: 650px;
  margin-left: auto;
}

.bd-overview-card {
  margin-bottom: 30px;
  background-color: #ffffff;
  box-shadow: 0px 6px 20px rgba(26, 137, 185, 0.07);
  padding: 30px;
  border-radius: 5px;
  transition: 0.5s;
}
.bd-overview-card .overview-image {
  display: inline-block;
  height: 90px;
  width: 90px;
  line-height: 90px;
  background-color: #ffffff;
  text-align: center;
  border-radius: 50px;
  box-shadow: 0px 4px 20px rgba(26, 137, 185, 0.1);
  margin-bottom: 28px;
  transition: 0.5s;
}
.bd-overview-card .overview-image img {
  max-width: 45px;
}
.bd-overview-card h3 {
  font-size: 24px;
  margin-bottom: 14px;
}
.bd-overview-card p {
  margin-bottom: 20px;
}
.bd-overview-card:hover {
  transform: translateY(-5px);
}

/*================================================
Footer Wrap Area CSS
=================================================*/
.footer-wrap-area {
  background-color: #1F102B;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.footer-wrap-area.with-black-color {
  background-color: #161618;
}

.single-footer-card {
  margin-bottom: 30px;
}
.single-footer-card .logo {
  display: inline-block;
  margin-bottom: 25px;
}
.single-footer-card p {
  color: #ffffff;
}
.single-footer-card h3 {
  margin-bottom: 25px;
  font-size: 22px;
  color: #ffffff;
}
.single-footer-card .social-links {
  padding: 0;
  list-style-type: none;
  margin-top: 18px;
  margin-bottom: 0;
}
.single-footer-card .social-links li {
  display: inline-block;
  margin-right: 10px;
}
.single-footer-card .social-links li:last-child {
  margin-right: 0;
}
.single-footer-card .social-links li a i {
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  background: #ffffff;
  color: #737b9a;
  border-radius: 50%;
  font-size: 16px;
  text-align: center;
  transition: 0.5s;
}
.single-footer-card .social-links li a i:hover {
  color: #ffffff;
  background-color: var(--mainColor);
  transform: translateY(-5px);
}
.single-footer-card .footer-quick-links {
  padding: 0;
  margin-bottom: 0;
}
.single-footer-card .footer-quick-links li {
  list-style-type: none;
  margin-bottom: 15.5px;
}
.single-footer-card .footer-quick-links li:last-child {
  margin-bottom: 0;
}
.single-footer-card .footer-quick-links li a {
  color: #ffffff;
  position: relative;
  padding-left: 22px;
  font-size: 16px;
  font-weight: 400;
}
.single-footer-card .footer-quick-links li a i {
  color: var(--optionalColor);
  font-size: 15.5px;
  position: absolute;
  left: 0;
  top: 3.5px;
}
.single-footer-card .footer-quick-links li a:hover {
  color: var(--optionalColor);
}
.single-footer-card .contact-links {
  padding: 0;
  margin-bottom: 0;
}
.single-footer-card .contact-links li {
  color: #ffffff;
  list-style-type: none;
  margin-bottom: 18.5px;
  font-weight: 400;
}
.single-footer-card .contact-links li:last-child {
  margin-bottom: 0;
}
.single-footer-card .contact-links li span {
  font-weight: bold;
}
.single-footer-card .contact-links li a {
  color: #ffffff;
}
.single-footer-card .contact-links li a:hover {
  color: var(--optionalColor);
}

.footer-wrap-line {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.footer-wrap-shape {
  position: absolute;
  top: 10%;
  right: 5%;
  transform: translateY(-10%) translateX(-5%);
  z-index: -1;
}
.footer-wrap-shape img {
  animation-name: rotateMe;
  animation-duration: 30s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

.footer-wrap-shape-2 {
  position: absolute;
  bottom: 10%;
  left: 2%;
  transform: translateY(-10%) translateX(-2%);
  animation: moveBounce 5s linear infinite;
  z-index: -1;
}

/*================================================
Copyright Wrap Area CSS
=================================================*/
.copyright-wrap-area {
  background-color: #11011E;
  padding-top: 25px;
  padding-bottom: 25px;
}
.copyright-wrap-area p {
  color: #ffffff;
  margin-bottom: 0;
}
.copyright-wrap-area p a {
  display: inline-block;
  color: #ffffff;
}
.copyright-wrap-area p a:hover {
  color: var(--optionalColor);
}
.copyright-wrap-area .list {
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
  text-align: right;
}
.copyright-wrap-area .list li {
  display: inline-block;
  margin: 0 10px;
  color: #ffffff;
  position: relative;
}
.copyright-wrap-area .list li a {
  display: inline-block;
  color: #ffffff;
}
.copyright-wrap-area .list li a:hover {
  color: var(--optionalColor);
}
.copyright-wrap-area .list li::before {
  content: "";
  position: absolute;
  right: -12px;
  top: 4px;
  width: 1px;
  height: 14px;
  background-color: #ffffff;
}
.copyright-wrap-area .list li:first-child {
  margin-left: 0;
}
.copyright-wrap-area .list li:last-child {
  margin-right: 0;
}
.copyright-wrap-area .list li:last-child::before {
  display: none;
}
.copyright-wrap-area.with-black-color {
  background-color: #09090A;
}

/* End "Cryptocurrency Demo CSS, "Cyber Security Demo CSS & Big Data Solution Demo CSS" */
.sidebar .wp-block-search__button {
  background: #f7f7f7;
  padding: 11px 21px !important;
  margin-left: 0.625em;
  word-break: normal;
  position: relative !important;
  top: 0;
  right: 0 !important;
  width: auto !important;
  border: none !important;
  color: #fff !important;
  height: auto !important;
  font-size: 16px;
}/*# sourceMappingURL=style.css.map */