/*
@File: Star Pages Template Styles

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

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

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

** - Default CSS
*/
/*================================================
Default CSS
=================================================*/
@import url("37a57935873742d69b866a25f932f387.css");
@import url("css2-montserratitalwght010002000300040005000600070008000900110012001300140015001600170018001900_swap.css");
@import url("css2-opensanswght300400600700800_swap.css");
@import url("css2-oswaldwght200300400500600700_swap.css");

:root {
  --fontFamily: 'Rubik', sans-serif;
  --headingFontFamily: 'Montserrat', sans-serif;
  --openSansFontFamily: 'Open Sans', sans-serif;
  --oswaldFontFamily: 'Oswald', sans-serif;
  --mainColor: #28AAE1;
  --gradientColor: #292664;
  --optionalColor: #666666;
  --whiteColor: #ffffff;
  --blackColor: #222222;
  --fontSize: 16px;
  --transition: .5s;
  --box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
}

body {
  margin: 0;
  padding: 0;
  color: var(--blackColor);
  font-size: var(--fontSize);
  font-family: var(--fontFamily);
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  color: var(--blackColor);
  font-weight: 700;
  font-family: var(--headingFontFamily);
}

a {
  -webkit-transition: var(--transition);
  transition: var(--transition);
  color: var(--blackColor);
  text-decoration: none;
  outline: 0 !important;
}

a:hover {
  color: var(--mainColor);
  text-decoration: none;
}

:focus {
  outline: 0 !important;
}

.d-table {
  width: 100%;
  height: 100%;
}

.d-table-cell {
  vertical-align: middle;
}

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

p {
  color: var(--optionalColor);
  margin-bottom: 15px;
  line-height: 1.8;
  font-size: var(--fontSize);
}

p:last-child {
  margin-bottom: 0;
}

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

.pt-100 {
  padding-top: 100px;
}

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

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

.pt-30 {
  padding-top: 30px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-70 {
  padding-top: 70px;
}

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

.pt-60 {
  padding-top: 60px;
}
.pb-50 {
  padding-bottom: 50px;
}

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

.container {
  max-width: 1180px;
}
.container-top {
  max-width:1330px;
}

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

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

.bg-100f1f {
  background-color: #100f1f;
}

.bg-100f1f .section-title h2 {
  color: var(--whiteColor);
}

.bg-100f1f .section-title p {
  color: var(--whiteColor);
  opacity: .90;
}

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

.bg-242424 .section-title h2 {
  color: var(--whiteColor);
}

.bg-242424 .section-title p {
  color: var(--whiteColor);
  opacity: .90;
}

/*section-title*/
.section-title {
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

.section-step123 {
 display: flex;
}

.section-step123 div {
    flex: 1; /* 这会确保所有子元素都有相同的宽度，并平均分布空间 */
  }
.section-step123 p {
    font-size:20px;
  }
.section-title h2 {
  font-size: 40px;
  margin-bottom: 0;
}

.section-title p {
  margin-top: 12px;
}

.section-title.white-title h2 {
  color: var(--whiteColor);
}

.section-title.white-title p {
  color: var(--whiteColor);
}

/*default-btn*/
.default-btn {
  display: inline-block;
  text-align: center;
  background-color: var(--mainColor);
  color: var(--whiteColor);
  border: none;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  position: relative;
  z-index: 1;
  border-radius: 5px;
  -webkit-box-shadow: 3px 3px #ebebeb;
          box-shadow: 3px 3px #ebebeb;
  padding-top: 14px;
  padding-bottom: 13px;
  padding-left: 58px;
  padding-right: 30px;
  font-size: 15px;
  font-weight: 500;
}

.default-btn i {
  position: absolute;
  left: 30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 20px;
}

.default-btn::before {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  border-radius: 5px;
  bottom: 0;
  background: var(--gradientColor);
  z-index: -1;
  content: '';
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.default-btn:hover {
  color: var(--whiteColor);
  background-color: var(--mainColor);
}

.default-btn:hover::before {
  opacity: 0;
  visibility: hidden;
}

/*================================================
Navbar Area CSS
=================================================*/
.ea-navbar-area {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: auto;
  z-index: 9;
  padding-top: 10px;
  padding-bottom: 10px;
}

.ea-navbar-area.is-sticky {
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  position: fixed;
  background-color: var(--whiteColor) !important;
  -webkit-box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
          box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
          animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  padding-top: 5px;
  padding-bottom: 5px;
}

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

.ea-nav .navbar {
  padding: 0;
}

.ea-nav .navbar .navbar-brand {
  font-size: inherit;
  line-height: 1;
  padding: 0;
}

.ea-nav .navbar ul {
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
}

.ea-nav .navbar .navbar-nav {
  margin-left: auto;
}

.ea-nav .navbar .navbar-nav .nav-item {
  position: relative;
  margin-left: 15px;
  margin-right: 15px;
}

.ea-nav .navbar .navbar-nav .nav-item a {
  position: relative;
  color: var(--blackColor);
  -webkit-transition: var(--transition);
  transition: var(--transition);
  font-size: 14.5px;
  font-weight: 600;
  font-family: var(--headingFontFamily);
  padding-left: 0;
  padding-right: 0;
  padding-top: 25px;
  padding-bottom: 25px;
}

.ea-nav .navbar .navbar-nav .nav-item a:hover, .ea-nav .navbar .navbar-nav .nav-item a:focus, .ea-nav .navbar .navbar-nav .nav-item a.active {
  color: var(--mainColor);
}

.ea-nav .navbar .navbar-nav .nav-item .dropdown-toggle {
  padding-right: 14px;
}

.ea-nav .navbar .navbar-nav .nav-item .dropdown-toggle::after {
  display: none;
}

.ea-nav .navbar .navbar-nav .nav-item .dropdown-toggle::before {
  position: absolute;
  content: "\e9ac";
  line-height: 1;
  right: -8px;
  top: 26px;
  font-family: 'boxicons';
  font-size: 18px;
}

.ea-nav .navbar .navbar-nav .nav-item:last-child {
  margin-right: 0;
}

.ea-nav .navbar .navbar-nav .nav-item:first-child {
  margin-left: 0;
}

.ea-nav .navbar .navbar-nav .nav-item:hover a, 
.ea-nav .navbar .navbar-nav .nav-item.active a {
  color: var(--mainColor);
}

.ea-nav .navbar .navbar-nav .nav-item .dropdown-menu {
  left: 0;
  top: 70px;
  opacity: 0;
  z-index: 99;
  border: none;
  width: 550px;
  margin-top: 0;
  display: block;
  padding: 10px 0;
  border-radius: 0;
  position: absolute;
  visibility: hidden;
  background: var(--whiteColor);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
}

.ea-nav .navbar .navbar-nav .nav-item .dropdown-menu li {
  margin: 0;
  float: left;
  width: 180px;
}

.ea-nav .navbar .navbar-nav .nav-item .dropdown-menu li a {
  display: block;
  padding: 9px 20px;
  position: relative;
  color: var(--blackColor);
  font-size: 14px;
  font-weight: 600;
}

.ea-nav .navbar .navbar-nav .nav-item .dropdown-menu li a i {
  top: 50%;
  margin: 0;
  right: 15px;
  font-size: 15px;
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.ea-nav .navbar .navbar-nav .nav-item .dropdown-menu li a:hover, .ea-nav .navbar .navbar-nav .nav-item .dropdown-menu li a:focus {
  color: var(--mainColor);
  padding-left: 25px;
}

.ea-nav .navbar .navbar-nav .nav-item .dropdown-menu li a.active {
  color: var(--mainColor);
}

.ea-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu {
  top: 45px;
  opacity: 0;
  left: 120px;
  right: 0;
  margin-top: 0;
  visibility: hidden;
}

.ea-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a {
  color: var(--blackColor);
  padding-left: 20px;
}

.ea-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:hover, .ea-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:focus {
  color: var(--mainColor);
  padding-left: 25px;
}

.ea-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a.active {
  color: var(--mainColor);
}

.ea-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu {
  top: 45;
  opacity: 0;
  right: 250px;
  visibility: hidden;
}

.ea-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: var(--blackColor);
  padding-left: 20px;
}

.ea-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover, .ea-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus {
  padding-left: 25px;
  color: var(--mainColor);
}

.ea-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  color: var(--mainColor);
}

.ea-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu {
  top: 0;
  opacity: 0;
  right: 250px;
  visibility: hidden;
}

.ea-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  padding-left: 20px;
  color: var(--blackColor);
}

.ea-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover, .ea-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus {
  color: var(--mainColor);
  padding-left: 25px;
}

.ea-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  color: var(--mainColor);
}

.ea-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li.active a {
  color: var(--mainColor);
}

.ea-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;
}

.ea-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li.active a {
  color: var(--mainColor);
}

.ea-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.ea-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li.active a {
  color: var(--mainColor);
}

.ea-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.ea-nav .navbar .navbar-nav .nav-item .dropdown-menu li.active a {
  color: var(--mainColor);
}

.ea-nav .navbar .navbar-nav .nav-item .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  margin-top: 0;
  visibility: visible;
}

.ea-nav .navbar .navbar-nav .nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.ea-nav .navbar .others-option {
  margin-left: 30px;
}

.ea-nav .navbar .others-option .option-item {
  position: relative;
  margin-left: 30px;
}

.ea-nav .navbar .others-option .option-item:first-child {
  margin-left: 0;
}

.ea-nav .navbar .others-option .option-item .default-btn {
  border-radius: 30px;
  color: var(--mainColor);
  background-color: #e8e9ff;
  -webkit-box-shadow: unset;
          box-shadow: unset;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 11px;
  padding-bottom: 11px;
}

.ea-nav .navbar .others-option .option-item .default-btn::before {
  display: none;
}

.ea-nav .navbar .others-option .option-item .default-btn:hover {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}

.ea-nav .navbar .others-option .option-item .link-btn {
  display: inline-block;
  font-weight: 600;
}

.others-option-for-responsive {
  display: none;
}

.others-option-for-responsive .others-option {
  display: block !important;
}

.others-option-for-responsive .dot-menu {
  top: -52px;
  right: 60px;
  height: 30px;
  z-index: 999;
  padding: 0 10px;
  cursor: pointer;
  position: absolute;
}

@media only screen and (max-width: 299px) { 
  .others-option-for-responsive .dot-menu {
    top: -47px;
  }
}

.others-option-for-responsive .dot-menu .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 30px;
}

.others-option-for-responsive .dot-menu .inner .circle {
  height: 5px;
  width: 5px;
  border-radius: 100%;
  margin: 0 2px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  background-color: var(--blackColor);
}

.others-option-for-responsive .dot-menu:hover .inner .circle {
  background-color: var(--mainColor);
}

.others-option-for-responsive .container .container-top{
  position: relative;
}

.others-option-for-responsive .container .container {
  right: 0;
  top: 15px;
  opacity: 0;
  z-index: 2;
  max-width: 200px;
  margin-left: auto;
  visibility: hidden;
  position: absolute;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: var(--transition);
  transition: var(--transition);
  padding-left: 15px;
  padding-right: 15px;
}

.others-option-for-responsive .container .container.active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.others-option-for-responsive .option-inner {
  padding: 15px 0px;
  -webkit-box-shadow: 0 15px 40px rgba(0, 0, 0, 0.09);
          box-shadow: 0 15px 40px rgba(0, 0, 0, 0.09);
  background-color: var(--whiteColor);
  text-align: center;
}

.others-option-for-responsive .option-inner .others-option .option-item {
  position: relative;
}

.others-option-for-responsive .option-inner .others-option .option-item .default-btn {
  border-radius: 20px;
  color: var(--mainColor);
  background-color: #e8e9ff;
  -webkit-box-shadow: unset;
          box-shadow: unset;
  padding-left: 25px;
  padding-right: 25px;
  padding-top: 11px;
  padding-bottom: 11px;
}

.others-option-for-responsive .option-inner .others-option .option-item .default-btn::before {
  display: none;
}

.others-option-for-responsive .option-inner .others-option .option-item .default-btn:hover {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}

.others-option-for-responsive .option-inner .others-option .option-item .link-btn {
  display: inline-block;
  font-weight: 600;
}

@media only screen and (max-width: 991px) {
  .ea-navbar-area {
    border-bottom: 1px solid #e8e8e8;
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .ea-navbar-area.bg-white {
    border: none;
  }
  .ea-navbar-area.is-sticky {
    border-bottom: none;
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .ea-responsive-nav {
    display: block;
  }
  .ea-responsive-nav .ea-responsive-menu {
    position: relative;
  }
  .ea-responsive-nav .ea-responsive-menu.mean-container .mean-nav {
    margin-top: 73px;
    background-color: var(--whiteColor);
  }
  .ea-responsive-nav .ea-responsive-menu.mean-container .mean-nav ul {
    font-size: 14px;
    border: none !important;
  }
  .ea-responsive-nav .ea-responsive-menu.mean-container .mean-nav ul li a {
    color: var(--blackColor);
    border-top-color: #DBEEFD;
    text-transform: unset;
    font-weight: 500;
  }
  .ea-responsive-nav .ea-responsive-menu.mean-container .mean-nav ul li a i {
    display: none;
  }
  .ea-responsive-nav .ea-responsive-menu.mean-container .mean-nav ul li a.mean-expand {
    width: 50%;
    height: 28px;
    text-align: right;
    padding: 11px !important;
    background: transparent !important;
    border-left: none !important;
    border-bottom: none !important;
  }
  .ea-responsive-nav .ea-responsive-menu.mean-container .mean-nav ul li a.active {
    color: var(--startupMainColor);
  }
  .ea-responsive-nav .ea-responsive-menu.mean-container .mean-nav ul li li a {
    font-size: 14px;
  }
  .ea-responsive-nav .ea-responsive-menu.mean-container .navbar-nav {
    height: 301px;
    overflow-y: scroll;
    -webkit-box-shadow: 0 7px 13px 0 rgba(0, 0, 0, 0.1);
            box-shadow: 0 7px 13px 0 rgba(0, 0, 0, 0.1);
  }
  .ea-responsive-nav .mean-container a.meanmenu-reveal {
    top: 0;
    padding: 0;
    width: 35px;
    height: 30px;
    padding-top: 13px;
    color: var(--blackColor);
    font-family: var(--fontFamily);
    font-weight: 500;
  }
  .ea-responsive-nav .mean-container a.meanmenu-reveal span {
    background: var(--blackColor);
    height: 4px;
    margin-top: -6px;
    border-radius: 3px;
    position: relative;
    top: 8px;
  }
  .ea-responsive-nav .mean-container .mean-bar {
    background: transparent;
    position: absolute;
    z-index: 999;
    padding: 0;
  }
  .ea-responsive-nav .dropdown-toggle::after {
    display: none !important;
  }
  .ea-responsive-nav .others-option {
    display: none !important;
    position: absolute;
    right: 60px;
    top: 16px;
  }
  .ea-responsive-nav .others-option .option-item {
    position: relative;
    margin-left: 20px;
    display: inline-block;
  }
  .ea-responsive-nav .others-option .option-item:first-child {
    margin-left: 0;
  }
  .ea-responsive-nav .others-option .option-item .search-icon {
    line-height: 1;
    font-size: 18px;
    cursor: pointer;
    display: inline-block;
    color: var(--blackColor);
    -webkit-transition: var(--transition);
    transition: var(--transition);
    border-right: 1px solid rgba(0, 0, 0, 0.2);
    padding-right: 20px;
  }
  .ea-responsive-nav .others-option .option-item .search-icon:hover {
    color: var(--startupMainColor);
  }
  .ea-responsive-nav .others-option .option-item .social-links {
    position: relative;
    top: -1px;
  }
  .ea-responsive-nav .others-option .option-item .social-links span {
    display: inline-block;
    margin-left: 15px;
    line-height: 1;
  }
  .ea-responsive-nav .others-option .option-item .social-links span a {
    font-size: 17px;
    display: block;
  }
  .ea-responsive-nav .others-option .option-item .social-links span a:hover {
    color: var(--startupMainColor);
  }
  .ea-responsive-nav .others-option .option-item .social-links span:first-child {
    margin-left: 0;
  }
  .ea-responsive-nav .logo {
    position: relative;
    width: 50%;
    z-index: 999;
  }
  .ea-nav {
    display: none;
  }
  .others-option-for-responsive {
    display: block;
  }
}

/*================================================
Banner Area CSS
=================================================*/
.banner-area {
  padding-top: 70px;
  padding-bottom: 30px;
  background-image: url(../images/banner-bg.jpg);
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
}

.banner-area .container {
  max-width: 1370px;
}

.banner-content {
  margin-left: auto;
  max-width: 555px;
}

.banner-content h1 {
  margin-bottom: 12px;
  font-size: 55px;
}

.banner-content h6 {
  margin-bottom: 0;
  line-height: 1.4;
  font-size: 25px;
  font-weight: 400;
}

.banner-content h6 span {
  font-weight: 500;
  color: var(--mainColor);
}

.banner-content .btn-box {
  margin-top: 30px;
}

.banner-content .btn-box .default-btn {
  margin-left: 8px;
  margin-right: 8px;
}

.banner-content .btn-box .default-btn:nth-child(2) {
  -webkit-box-shadow: 3px 3px #dbdae2;
          box-shadow: 3px 3px #dbdae2;
  background-color: var(--whiteColor);
  color: var(--mainColor);
}

.banner-content .btn-box .default-btn:nth-child(2)::before {
  display: none;
}

.banner-content .btn-box .default-btn:nth-child(2):hover {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}

.banner-content .btn-box .default-btn:last-child {
  margin-right: 0;
}

.banner-content .btn-box .default-btn:first-child {
  margin-left: 0;
}

.banner-image {
  text-align: center;
  margin-top: 50px;
}

/*================================================
Intro Area CSS
=================================================*/
.intro-video-box {
  text-align: center;
  max-width: 720px;
  border-radius: 5px;
  position: relative;
  z-index: 1;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 60px;
  margin-top: -30px;
  padding-top: 30px;
  padding-bottom: 40px;
}

.intro-video-box img {
  border: 10px solid var(--whiteColor);
  -webkit-box-shadow: 0px 20px 70px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 20px 70px 0px rgba(0, 0, 0, 0.1);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.intro-video-box .video-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 70px;
  display: inline-block;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: var(--whiteColor);
  color: var(--mainColor);
}

.intro-video-box .video-btn i {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.intro-video-box .video-btn:hover {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}

.intro-video-box::before {
  content: '';
  position: absolute;
  left: 0;
  right: -50px;
  top: 0;
  bottom: 0;
  z-index: -1;
  background-image: url(../images/shape1.png);
  background-position: right center;
  background-repeat: no-repeat;
  background-size: contain;
}

.intro-video-box:hover img {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}

.single-intro-box {
  margin-bottom: 30px;
}

.single-intro-box .icon {
  display: inline-block;
  width: 70px;
  height: 70px;
  border-radius: 5px;
  background-color: var(--whiteColor);
  -webkit-transition: var(--transition);
  transition: var(--transition);
  -webkit-box-shadow: 0px 20px 70px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 20px 70px 0px rgba(0, 0, 0, 0.1);
  text-align: center;
  line-height: 70px;
  font-size: 35px;
  color: var(--mainColor);
  margin-bottom: 25px;
  text-shadow: 3px 6px #ebebeb;
}

.single-intro-box h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.single-intro-box p {
  font-size: 15px;
}

.single-intro-box:hover .icon {
  border-radius: 50%;
  color: var(--whiteColor);
  background-color: var(--mainColor);
  text-shadow: unset;
}

/*================================================
Elements Area CSS
=================================================*/
.ea-single-example-box {
  margin-bottom: 30px;
  background-color: var(--whiteColor);
  border-radius: 5px;
  text-align: center;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  padding: 25px 20px;
  position: relative;
}

.ea-single-example-box .icon {
  margin-bottom: 10px;
  position: relative;
  font-size: 50px;
  color: var(--mainColor);
}

.ea-single-example-box .icon i {
  line-height: 1;
  position: absolute;
  left: 0;
  right: 0;
  top: 60%;
  -webkit-transform: translateY(-60%);
          transform: translateY(-60%);
  text-shadow: 2px 4px #caebce;
}

.ea-single-example-box .link-btn {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: block;
}

.ea-single-example-box h3 {
  margin-bottom: 0;
  font-size: 18px;
}

.ea-single-example-box:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-box-shadow: 0px 20px 70px 0px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 20px 70px 0px rgba(0, 0, 0, 0.15);
}

.ea-single-example-box.with-box-shadow {
  -webkit-box-shadow: 0px 20px 70px 0px rgba(0, 0, 0, 0.06);
          box-shadow: 0px 20px 70px 0px rgba(0, 0, 0, 0.06);
}

.btn-extra-box {
  text-align: center;
  margin-top: 20px;
}

/*================================================
Feedback Area CSS
=================================================*/
.ea-feedback-area.bg-shape {
  position: relative;
  z-index: 1;
}

.ea-feedback-area.bg-shape::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -100px;
  height: 100px;
  z-index: -1;
  background-image: url(../images/shape4.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.ea-feedback-section-title .sub-title {
  display: block;
  margin-bottom: 12px;
  font-size: var(--fontSize);
  font-weight: 600;
}

.ea-feedback-section-title h2 {
  font-size: 36px;
  margin-bottom: 12px;
}

.ea-feedback-section-title .custom-owl-nav {
  margin-top: 25px;
}

.ea-feedback-section-title .custom-owl-nav [class*=owl-] {
  background-color: var(--whiteColor);
  border-radius: 4px;
  -webkit-box-shadow: 3px 3px #ebebeb;
          box-shadow: 3px 3px #ebebeb;
  color: var(--mainColor);
  margin: 0;
  border: none;
  position: relative;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  padding-left: 35px;
  padding-right: 20px;
  padding-top: 8px;
  padding-bottom: 8px;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--headingFontFamily);
}

.ea-feedback-section-title .custom-owl-nav [class*=owl-] i {
  position: absolute;
  left: 13px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  line-height: 1;
  font-size: 22px;
}

.ea-feedback-section-title .custom-owl-nav [class*=owl-].custom-owl-next {
  margin-left: 10px;
  padding-left: 20px;
  padding-right: 35px;
}

.ea-feedback-section-title .custom-owl-nav [class*=owl-].custom-owl-next i {
  left: auto;
  right: 13px;
}

.ea-feedback-section-title .custom-owl-nav [class*=owl-]:hover {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}

.ea-feedback-slides {
  z-index: 1;
  position: relative;
}

.ea-feedback-slides::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 50%;
  background: var(--gradientColor);
  border-radius: 5px;
  z-index: -1;
}

.ea-feedback-slides .owl-stage-outer {
  right: -70px;
}

.ea-feedback-slides .ea-single-feedback-box {
  margin-top: 70px;
  margin-right: 70px;
  margin-bottom: 70px;
}

.ea-single-feedback-box {
  padding: 40px;
  border-radius: 5px;
  text-align: center;
  background-color: var(--whiteColor);
  -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.06);
          box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.06);
}

.ea-single-feedback-box i {
  line-height: 1;
  color: #c7c7e2;
  font-size: 80px;
  display: inline-block;
  margin-top: -15px;
  margin-bottom: 10px;
}

.ea-single-feedback-box p {
  font-size: 18px;
}

.ea-single-feedback-box .client-info {
  margin-top: 20px;
}

.ea-single-feedback-box .client-info img {
  width: 60px;
  height: 60px;
  display: inline-block;
  border-radius: 50%;
  margin-right: 7px;
}

.ea-single-feedback-box .client-info .title {
  text-align: left;
  margin-left: 7px;
}

.ea-single-feedback-box .client-info .title h3 {
  font-size: 18px;
  margin-bottom: 5px;
}

.ea-single-feedback-box .client-info .title span {
  color: var(--optionalColor);
  display: block;
  font-size: 14.5px;
}

/*================================================
Call To Action Area CSS
=================================================*/
.call-to-action-area {
  background-image: url(../images/bg1.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.call-to-action-content {
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.call-to-action-content h2 {
  margin-bottom: 15px;
  font-size: 36px;
}

.call-to-action-content .btn-box {
  margin-top: 30px;
}

.call-to-action-content .btn-box .default-btn {
  margin-left: 8px;
  margin-right: 8px;
}

.call-to-action-content .btn-box .default-btn:nth-child(2) {
  background-color: var(--whiteColor);
  color: var(--mainColor);
}

.call-to-action-content .btn-box .default-btn:nth-child(2)::before {
  display: none;
}

.call-to-action-content .btn-box .default-btn:nth-child(2):hover {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}

.call-to-action-content .btn-box .default-btn:last-child {
  margin-right: 0;
}

.call-to-action-content .btn-box .default-btn:first-child {
  margin-left: 0;
}

/*================================================
Get Started Area CSS
=================================================*/
.get-started-area.bg-shape {
  position: relative;
  z-index: 1;
}

.get-started-area.bg-shape::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: -100px;
  height: 100px;
  z-index: -1;
  background-image: url(../images/shape5.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.get-started-image {
  text-align: center;
  padding-right: 15px;
}

.get-started-content {
  padding-left: 15px;
}

.get-started-content .sub-title {
  display: block;
  margin-bottom: 12px;
  font-size: var(--fontSize);
  font-weight: 600;
}

.get-started-content h2 {
  font-size: 36px;
  margin-bottom: 12px;
}

.get-started-content .default-btn {
  margin-top: 10px;
}

/*================================================
Page Banner Area CSS
=================================================*/
.ea-page-banner-area {
  z-index: 1;
  position: relative;
  background-color: var(--mainColor);
  padding-top: 225px;
  padding-bottom: 160px;
}
.ea-page-banner-area-home {
  position: relative;
  background-image: url(../images/banner.png);
  background-size: cover;
  padding-top: 100px;
  padding-bottom: 200px;
}
.ea-page-banner-area-product {
  position: relative;
  background-image: url(../images/product-bg.png);
  background-size: cover;
  padding-top: 100px;
  padding-bottom: 110px;
}

.ea-page-banner-area::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: -1;
  content: '';
  position: absolute;
  background-color: var(--whiteColor);
  -webkit-clip-path: polygon(0 100%, 100% 53.5%, 100% 100%, 0% 100%);
          clip-path: polygon(0 100%, 100% 53.5%, 100% 100%, 0% 100%);
}

.ea-page-banner-area.bg1 {
  background: -webkit-gradient(linear, left top, right top, from(#cd408f), color-stop(#b63ea0), color-stop(#9743af), color-stop(#6b49bb), to(#094fc3));
  background: linear-gradient(to right, #cd408f, #b63ea0, #9743af, #6b49bb, #094fc3);
}

.ea-page-banner-area.bg2 {
  background: -webkit-gradient(linear, left top, right top, from(#0c15fa), color-stop(#3135fc), color-stop(#484cfd), color-stop(#5b60fc), to(#6d72fb));
  background: linear-gradient(to right, #0c15fa, #3135fc, #484cfd, #5b60fc, #6d72fb);
}

.ea-page-banner-area.bg3 {
  background: -webkit-gradient(linear, right top, left top, from(#ffab96), color-stop(#ff917d), color-stop(#ff7467), color-stop(#ff5155), to(#ff0f47));
  background: linear-gradient(to left, #ffab96, #ff917d, #ff7467, #ff5155, #ff0f47);
}

.ea-page-banner-area.bg5 {
  background: -webkit-gradient(linear, left top, right top, from(#323177), color-stop(#823b70), color-stop(#ac5764), color-stop(#be8164), to(#c2ac7b));
  background: linear-gradient(to right, #323177, #823b70, #ac5764, #be8164, #c2ac7b);
}

.ea-page-banner-area.bg6 {
  background: -webkit-gradient(linear, left top, right top, from(#80caf1), color-stop(#62bcf9), color-stop(#4eadff), color-stop(#4f9bff), color-stop(#6486ff), color-stop(#a279f2), color-stop(#cd6bdc), color-stop(#ec5dc1), color-stop(#ff739f), color-stop(#ff948d), color-stop(#feb48f), to(#f3d1a6));
  background: linear-gradient(to right, #80caf1, #62bcf9, #4eadff, #4f9bff, #6486ff, #a279f2, #cd6bdc, #ec5dc1, #ff739f, #ff948d, #feb48f, #f3d1a6);
}

.ea-page-banner-area.bg7 {
  background: -webkit-gradient(linear, left top, right top, from(#c65d96), color-stop(#c45d9a), color-stop(#c25e9e), color-stop(#bf5ea3), color-stop(#bc5fa7), color-stop(#b867b2), color-stop(#b470bd), color-stop(#af78c7), color-stop(#a789d8), color-stop(#9e9ae6), color-stop(#97a9f1), to(#92b8f9));
  background: linear-gradient(to right, #c65d96, #c45d9a, #c25e9e, #bf5ea3, #bc5fa7, #b867b2, #b470bd, #af78c7, #a789d8, #9e9ae6, #97a9f1, #92b8f9);
}

.ea-page-banner-area.bg8 {
  background: -webkit-gradient(linear, left top, right bottom, from(#209cff), color-stop(#00b2fe), color-stop(#00c5f2), color-stop(#00d4e0), to(#68e0cf));
  background: linear-gradient(to right bottom, #209cff, #00b2fe, #00c5f2, #00d4e0, #68e0cf);
}

.ea-page-banner-area.bg9 {
  background: #8061e5;
  background: linear-gradient(280deg, #8061e5 0%, #4bb6f1 35%, #175ffb 100%);
}

.ea-page-banner-area.bg10 {
  background: linear-gradient(77deg, #8061e5 0%, #e224e5 35%, #9929ea 100%);
}

.ea-page-banner-area.bg11 {
  background: linear-gradient(45deg, #4776e6 0%, #8e54e9 100%);
}

.ea-page-banner-area.bg12 {
  background: linear-gradient(45deg, #6c4cc8, #d78c98, #5c9d93, #75c6c1, #6bcfc6, #b867b2, #b2d54f, #af78c7, #e180a1, #9e9ae6, #97a9f1, #53d4d4);
}

.ea-page-banner-area.bg13 {
  background: linear-gradient(45deg, #c165dd 0%, #0c27fe 100%);
}

.ea-page-banner-area.bg14 {
  background: linear-gradient(45deg, #b25de5 0%, #ff9762 100%);
}

.ea-page-banner-area.bg15 {
  background: linear-gradient(45deg, #009efd 0%, #2af598 100%);
}

.ea-page-banner-area.bg16 {
  background: -webkit-gradient(linear, left top, right top, from(#ea5b6f), to(#fccf3a));
  background: linear-gradient(to right, #ea5b6f, #fccf3a);
}

.ea-page-banner-area.bg17 {
  background: -webkit-gradient(linear, left top, right top, from(#ffcb52), to(#ff7b02));
  background: linear-gradient(to right, #ffcb52, #ff7b02);
}

.ea-page-banner-area.bg18 {
  background: -webkit-gradient(linear, left top, right top, from(#02a1f9), to(#29f19c));
  background: linear-gradient(to right, #02a1f9, #29f19c);
}

.ea-page-banner-area.bg19 {
  background: -webkit-gradient(linear, left top, right top, from(#9929ea), to(#5808fb));
  background: linear-gradient(to right, #9929ea, #5808fb);
}

.ea-page-banner-area.bg20 {
  background: -webkit-gradient(linear, left top, right top, from(#ee2776), to(#ff6841));
  background: linear-gradient(to right, #ee2776, #ff6841);
}

.ea-page-banner-area.bg21 {
  background: linear-gradient(77deg, #8061e5 0%, #e224e5 35%, #9929ea 100%);
}

.ea-page-banner-area.bg22 {
  background: -webkit-gradient(linear, left top, left bottom, from(#5b0ddd), to(#ee4f73));
  background: linear-gradient(to bottom, #5b0ddd, #ee4f73);
}

.ea-page-banner-area.bg23 {
  background: linear-gradient(45deg, #ff0f47, #663ce6, #ff7467, #00eee9);
}

.ea-page-banner-area.bg24 {
  background: -webkit-gradient(linear, left top, left bottom, from(#ff0b53), to(#ffb364));
  background: linear-gradient(to bottom, #ff0b53, #ffb364);
}

.ea-page-banner-area.bg25 {
  background: -webkit-gradient(linear, left top, right top, from(#13A0EE), to(#7BCA63));
  background: linear-gradient(to right, #13A0EE, #7BCA63);
}

.ea-page-banner-area.bg26 {
  background: -webkit-gradient(linear, left top, right top, from(#80caf1), color-stop(#62bcf9), color-stop(#4eadff), color-stop(#4f9bff), color-stop(#6486ff), color-stop(#a279f2), color-stop(#cd6bdc), color-stop(#ec5dc1), color-stop(#ff739f), color-stop(#ff948d), color-stop(#feb48f), to(#f3d1a6));
  background: linear-gradient(to right, #80caf1, #62bcf9, #4eadff, #4f9bff, #6486ff, #a279f2, #cd6bdc, #ec5dc1, #ff739f, #ff948d, #feb48f, #f3d1a6);
}

.ea-page-banner-content {
  position: relative;
  top: -30px;
}

.ea-page-banner-content h1 {
  color: #416ee9;
  margin-bottom: 12px;
  font-size: 50px;
}

.ea-page-banner-content p {
  font-size: 19px;
  line-height: initial;
  color: #11355f;
}
.ea-page-banner-content .t1 {
  font-size: 15px;
  line-height: initial;
  color: #4c5055;
}
.ea-page-banner-content .default-btn {
  margin-top: 12px;
  -webkit-box-shadow: unset;
          box-shadow: unset;
  background-color: var(--whiteColor);
  color: var(--mainColor);
}

.ea-page-banner-content .default-btn::before {
  display: none;
}

.ea-page-banner-content .default-btn:hover {
  background-color: var(--blackColor);
  color: var(--whiteColor);
}

.ea-page-banner-image {
  text-align: center;
  border: 10px solid var(--whiteColor);
  border-radius: 5px;
  position: relative;
  -webkit-box-shadow: 0px 20px 70px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 20px 70px 0px rgba(0, 0, 0, 0.1);
}

.ea-page-banner-image img {
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.ea-page-banner-image .video-btn {
  position: absolute;
  top: 40%;
  left: 50%;
  -webkit-transform: translate(-50%, -40%);
          transform: translate(-50%, -40%);
  font-size: 70px;
  display: inline-block;
  width: 85px;
  height: 85px;
  border-radius: 50%;
  background-color: var(--whiteColor);
  color: var(--mainColor);
}

.ea-page-banner-image .video-btn i {
  left: 10px;
  right: 0;
  top: 50%;
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.ea-page-banner-image .video-btn:hover {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}

.ea-page-banner-image span {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 40px;
  text-shadow: 2px 4px #d2d2d2;
  font-size: 25px;
  font-weight: 700;
  font-family: var(--headingFontFamily);
}

.ea-page-banner-image.ea-style-two {
  background-color: #f5f5f5;
}

.ea-page-banner-image.ea-style-two .video-btn {
  top: 50%;
}

.ea-page-banner-image:hover img {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}

/*================================================
Info Box Area CSS
=================================================*/
.ea-info-box-area.bg-shape {
  position: relative;
  z-index: 1;
}

.ea-info-box-area.bg-shape::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -100px;
  height: 100px;
  z-index: -1;
  background-image: url(../images/shape4.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.ea-info-box-section-title.section-title {
  text-align: left;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 0;
}

.ea-single-info-box.style-one {
  padding: 30px;
  margin-bottom: 30px;
  border-radius: 5px;
  border: 1px solid #dadce0;
}

.ea-single-info-box.style-one .icon {
  width: 90px;
  height: 90px;
  color: #e3354b;
  background-color: #f8f9fa;
  position: relative;
  text-align: center;
  border-radius: 50%;
  font-size: 45px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  margin-bottom: 25px;
}

.ea-single-info-box.style-one .icon i {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.ea-single-info-box.style-one h3 {
  margin-bottom: 12px;
  font-size: 22px;
  font-weight: 700;
}

.ea-single-info-box.style-one .link-btn {
  display: inline-block;
  color: #1a73e8;
  font-size: 15px;
  font-weight: 500;
}

.ea-single-info-box.style-one .link-btn:hover {
  color: #e3354b;
}

.ea-single-info-box.style-one:hover .icon {
  background-color: #e3354b;
  color: var(--whiteColor);
}

.ea-single-info-box.style-two {
  padding: 30px;
  margin-bottom: 30px;
  border-radius: 5px;
  text-align: center;
  background-color: var(--whiteColor);
}

.ea-single-info-box.style-two .icon {
  width: 90px;
  height: 90px;
  color: #e3354b;
  background-color: #f8f9fa;
  position: relative;
  text-align: center;
  border-radius: 50%;
  font-size: 45px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 25px;
}

.ea-single-info-box.style-two .icon i {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.ea-single-info-box.style-two h3 {
  margin-bottom: 12px;
  font-size: 22px;
  font-weight: 700;
}

.ea-single-info-box.style-two .link-btn {
  display: inline-block;
  color: #1a73e8;
  font-size: 15px;
  font-weight: 500;
}

.ea-single-info-box.style-two .link-btn:hover {
  color: #e3354b;
}

.ea-single-info-box.style-two:hover .icon {
  background-color: #e3354b;
  color: var(--whiteColor);
}

.ea-single-info-box.style-three {
  position: relative;
  margin-bottom: 40px;
  padding-left: 90px;
}

.ea-single-info-box.style-three .icon {
  width: 70px;
  height: 70px;
  color: #e3354b;
  background-color: #f8f9fa;
  position: relative;
  text-align: center;
  border-radius: 5px;
  font-size: 35px;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.ea-single-info-box.style-three .icon i {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.ea-single-info-box.style-three h3 {
  margin-bottom: 12px;
  font-size: 22px;
  font-weight: 700;
}

.ea-single-info-box.style-three .link-btn {
  display: inline-block;
  color: #1a73e8;
  font-size: 15px;
  font-weight: 500;
}

.ea-single-info-box.style-three .link-btn:hover {
  color: #e3354b;
}

.ea-single-info-box.style-three:hover .icon {
  background-color: #e3354b;
  color: var(--whiteColor);
}

.ea-single-info-box.style-four {
  z-index: 1;
  padding: 45px;
  overflow: hidden;
  position: relative;
  border-radius: 5px;
  margin-bottom: 30px;
  background-color: #f6f6f6;
}

.ea-single-info-box.style-four .icon {
  width: 65px;
  height: 65px;
  font-size: 40px;
  color: #d80650;
  border-radius: 3px;
  text-align: center;
  position: relative;
  margin-bottom: 30px;
  border: 1px solid #d80650;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  background-color: var(--whiteColor);
}

.ea-single-info-box.style-four .icon i {
  left: 0;
  right: 0;
  top: 50%;
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.ea-single-info-box.style-four h3 {
  margin-bottom: 15px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  font-size: 22px;
  font-weight: 700;
}

.ea-single-info-box.style-four .link-btn {
  display: inline-block;
  color: #1a73e8;
  font-size: 15px;
  font-weight: 500;
}

.ea-single-info-box.style-four .link-btn:hover {
  color: #e3354b;
}

.ea-single-info-box.style-four p {
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.ea-single-info-box.style-four::before {
  left: 0;
  bottom: 0;
  content: '';
  z-index: -1;
  width: 50px;
  height: 50px;
  -webkit-transition: .2s;
  transition: .2s;
  position: absolute;
  background-color: #e01a33;
  border-radius: 0 100% 0 5px;
}

.ea-single-info-box.style-four .back-icon {
  top: 0;
  right: 0;
  z-index: -1;
  opacity: 0.40;
  line-height: 1;
  color: #dbdcdf;
  font-size: 140px;
  position: absolute;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.ea-single-info-box.style-four:hover .icon, .ea-single-info-box.style-four.active .icon {
  border-color: var(--whiteColor);
}

.ea-single-info-box.style-four:hover h3, .ea-single-info-box.style-four.active h3 {
  color: var(--whiteColor);
}

.ea-single-info-box.style-four:hover p, .ea-single-info-box.style-four.active p {
  color: var(--whiteColor);
  opacity: 0.9;
}

.ea-single-info-box.style-four:hover .link-btn, .ea-single-info-box.style-four.active .link-btn {
  color: var(--whiteColor);
}

.ea-single-info-box.style-four:hover .back-icon, .ea-single-info-box.style-four.active .back-icon {
  opacity: .15;
}

.ea-single-info-box.style-four:hover::before, .ea-single-info-box.style-four.active::before {
  width: 100%;
  height: 100%;
  border-radius: 5px;
}

.ea-single-info-box.style-five {
  padding: 30px;
  margin-bottom: 30px;
  border-radius: 5px;
  background-color: var(--whiteColor);
  -webkit-box-shadow: 3px 5px 25px 0 rgba(0, 0, 0, 0.05);
          box-shadow: 3px 5px 25px 0 rgba(0, 0, 0, 0.05);
}

.ea-single-info-box.style-five .icon {
  width: 60px;
  height: 60px;
  color: #28ffff;
  background-color: #e9ffff;
  position: relative;
  text-align: center;
  border-radius: 5px;
  font-size: 30px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  margin-bottom: 25px;
}

.ea-single-info-box.style-five .icon i {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.ea-single-info-box.style-five .icon.bg-ffd18d {
  background-color: #fff5e6;
  color: #ffd18d;
}

.ea-single-info-box.style-five .icon.bg-ffc2d3 {
  background-color: #ffeef3;
  color: #ffc2d3;
}

.ea-single-info-box.style-five h3 {
  margin-bottom: 12px;
  font-size: 22px;
  font-weight: 700;
}

.ea-single-info-box.style-five .link-btn {
  display: inline-block;
  color: #1a73e8;
  font-size: 15px;
  font-weight: 500;
}

.ea-single-info-box.style-five .link-btn:hover {
  color: #e3354b;
}

.ea-single-info-box.style-six {
  z-index: 1;
  padding: 40px 20px;
  border-radius: 5px;
  position: relative;
  text-align: center;
  margin-bottom: 30px;
  background-color: var(--whiteColor);
  -webkit-box-shadow: 0px 8px 16px 0px rgba(146, 184, 255, 0.2);
          box-shadow: 0px 8px 16px 0px rgba(146, 184, 255, 0.2);
}

.ea-single-info-box.style-six .icon {
  line-height: 1;
  font-size: 60px;
  color: #45A393;
  margin-bottom: 17px;
}

.ea-single-info-box.style-six h3 {
  margin-bottom: 15px;
  font-size: 22px;
  font-weight: 700;
}

.ea-single-info-box.style-six .link-btn {
  -webkit-transition: var(--transition);
  transition: var(--transition);
  display: inline-block;
  color: #1a73e8;
  font-size: 15px;
  font-weight: 500;
}

.ea-single-info-box.style-six .shape {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

.ea-single-info-box.style-seven {
  padding: 30px;
  border-radius: 5px;
  text-align: center;
  margin-bottom: 30px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  border: 1px dashed #6ba292;
}

.ea-single-info-box.style-seven .icon {
  width: 100px;
  height: 100px;
  font-size: 55px;
  color: #6ba292;
  position: relative;
  background-color: #f9f9f9;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 25px;
}

.ea-single-info-box.style-seven .icon i {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.ea-single-info-box.style-seven h3 {
  margin-bottom: 12px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  font-size: 20px;
  font-weight: 700;
}

.ea-single-info-box.style-seven p {
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.ea-single-info-box.style-seven .link-btn {
  -webkit-transition: var(--transition);
  transition: var(--transition);
  display: inline-block;
  color: #1a73e8;
  font-size: 15px;
  font-weight: 500;
}

.ea-single-info-box.style-seven:hover {
  background-color: #6ba292;
  color: var(--whiteColor);
}

.ea-single-info-box.style-seven:hover h3 {
  color: var(--whiteColor);
}

.ea-single-info-box.style-seven:hover p {
  color: var(--whiteColor);
  opacity: .90;
}

.ea-single-info-box.style-seven:hover .link-btn {
  color: var(--whiteColor);
}

.ea-single-info-box.style-eight {
  -webkit-transition: var(--transition);
  transition: var(--transition);
  margin-bottom: 30px;
  border-radius: 10px;
  position: relative;
  padding: 25px;
  z-index: 1;
}

.ea-single-info-box.style-eight .icon {
  display: block;
  line-height: 1;
  font-size: 45px;
  color: #ff4a17;
  margin-right: 15px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.ea-single-info-box.style-eight h3 {
  -webkit-transition: var(--transition);
  transition: var(--transition);
  position: relative;
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 700;
}

.ea-single-info-box.style-eight p {
  -webkit-transition: var(--transition);
  transition: var(--transition);
  margin-top: 12px;
}

.ea-single-info-box.style-eight::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  content: '';
  opacity: .06;
  position: absolute;
  border-radius: 10px;
  background-color: #ff4a17;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.ea-single-info-box.style-eight.bg-ff9f07 .icon {
  color: #ff9f07;
}

.ea-single-info-box.style-eight.bg-ff9f07::before {
  background-color: #ff9f07;
}

.ea-single-info-box.style-eight.bg-2ea7ff .icon {
  color: #2ea7ff;
}

.ea-single-info-box.style-eight.bg-2ea7ff::before {
  background-color: #2ea7ff;
}

.ea-single-info-box.style-eight:hover::before {
  opacity: 1;
}

.ea-single-info-box.style-eight:hover p {
  color: var(--whiteColor);
}

.ea-single-info-box.style-eight:hover h3 {
  color: var(--whiteColor);
}

.ea-single-info-box.style-eight:hover .icon {
  color: var(--whiteColor);
}

/*================================================
Card Area CSS
=================================================*/
.ea-card-area.bg-shape {
  position: relative;
  z-index: 1;
}

.ea-card-area.bg-shape::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -100px;
  height: 100px;
  z-index: -1;
  background-image: url(../images/shape4.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.ea-card-area.bg-image {
  background-image: url(../images/bg4.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.ea-single-card-box.style-one {
  margin-bottom: 30px;
  position: relative;
  border-radius: 5px;
  overflow: hidden;
}

.ea-single-card-box.style-one img {
  -webkit-transition: var(--transition);
  transition: var(--transition);
  border-radius: 5px;
}

.ea-single-card-box.style-one .content {
  left: 0;
  top: 50%;
  right: 0;
  z-index: 1;
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  padding-left: 30px;
  padding-right: 30px;
}

.ea-single-card-box.style-one .content h3 {
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 700;
}

.ea-single-card-box.style-one .content p {
  line-height: initial;
}

.ea-single-card-box.style-one .content .link-btn {
  display: inline-block;
  margin-top: 50px;
  color: #1a73e8;
  font-size: 15px;
  font-weight: 500;
}

.ea-single-card-box.style-one .content .link-btn:hover {
  color: #e3354b;
}

.ea-single-card-box.style-one:hover img {
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
}

.ea-single-card-box.style-two {
  text-align: center;
  margin-bottom: 30px;
  background-color: var(--whiteColor);
  border-radius: 5px;
}

.ea-single-card-box.style-two img {
  border-radius: 5px 5px 0 0;
}

.ea-single-card-box.style-two .content {
  padding: 65px 20px 30px;
  position: relative;
}

.ea-single-card-box.style-two .content .price {
  width: 70px;
  height: 70px;
  line-height: 70px;
  border-radius: 50%;
  border: 1px solid #e01a33;
  color: #e01a33;
  display: inline-block;
  position: absolute;
  left: 0;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  right: 0;
  top: -35px;
  background-color: #f8f9fa;
  font-size: 15px;
  font-weight: 600;
  margin-left: auto;
  margin-right: auto;
}

.ea-single-card-box.style-two .content h3 {
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 600;
}

.ea-single-card-box.style-two .content .link-btn {
  -webkit-transition: var(--transition);
  transition: var(--transition);
  display: inline-block;
  color: #1a73e8;
  font-size: 15px;
  font-weight: 500;
}

.ea-single-card-box.style-two .content .link-btn:hover {
  letter-eaacing: 1px;
}

.ea-single-card-box.style-two:hover .content .price {
  background-color: #e01a33;
  color: var(--whiteColor);
}

.ea-single-card-box.style-three {
  margin-bottom: 30px;
  border-radius: 10px;
  background-color: #f5f5f5;
}

.ea-single-card-box.style-three .content {
  padding: 30px;
}

.ea-single-card-box.style-three .content .price {
  background-color: var(--whiteColor);
  display: inline-block;
  padding: 5px 20px 4px;
  border-radius: 30px;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 500;
}

.ea-single-card-box.style-three .content h3 {
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 600;
}

.ea-single-card-box.style-three .content .link-btn {
  background-color: #1a73e8;
  color: var(--whiteColor);
  display: inline-block;
  padding: 10px 35px;
  border-radius: 5px;
  margin-top: 5px;
  font-size: 15px;
  font-weight: 500;
}

.ea-single-card-box.style-three .content .link-btn:hover {
  color: var(--whiteColor);
  background-color: var(--blackColor);
}

.ea-single-card-box.style-three .image {
  height: 100%;
  border-radius: 10px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.ea-single-card-box.style-three .image img {
  border-radius: 10px;
  display: none;
}

.ea-single-card-box.style-three .image.bg1 {
  background-image: url(../images/card-img7.jpg);
}

.ea-single-card-box.style-three .image.bg2 {
  background-image: url(../images/card-img8.jpg);
}

.ea-single-card-box.style-four {
  border-radius: 5px;
  margin-bottom: 30px;
  background-color: var(--whiteColor);
}

.ea-single-card-box.style-four img {
  border-radius: 5px 5px 00;
}

.ea-single-card-box.style-four .content {
  padding: 40px 30px 30px;
  position: relative;
}

.ea-single-card-box.style-four .content .price {
  display: inline-block;
  background-color: #f8f9fa;
  color: #e01a33;
  border: 1px solid #e01a33;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  border-radius: 30px;
  padding: 5px 17px 4px;
  position: absolute;
  left: 30px;
  top: -16px;
  font-size: 14px;
  font-weight: 500;
}

.ea-single-card-box.style-four .content h3 {
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 600;
}

.ea-single-card-box.style-four .content .link-btn {
  border: 1px solid #1a73e8;
  color: #1a73e8;
  display: inline-block;
  padding: 10px 22px;
  border-radius: 5px;
  margin-top: 5px;
  font-size: 15px;
  font-weight: 500;
}

.ea-single-card-box.style-four .content .link-btn:hover {
  color: var(--whiteColor);
  background-color: #1a73e8;
}

.ea-single-card-box.style-four:hover .content .price {
  background-color: #e01a33;
  color: var(--whiteColor);
}

.ea-single-card-box.style-five {
  margin-bottom: 30px;
  position: relative;
  padding-left: 88px;
}

.ea-single-card-box.style-five .content {
  position: absolute;
  max-width: 230px;
  bottom: 50px;
  left: 0;
}

.ea-single-card-box.style-five .content h3 {
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 700;
}

.ea-single-card-box.style-five .content .link-btn {
  -webkit-transition: var(--transition);
  transition: var(--transition);
  display: inline-block;
  color: #1a73e8;
  font-size: 15px;
  font-weight: 500;
}

.ea-single-card-box.style-five .content.style-two {
  bottom: auto;
  top: 50px;
}

.ea-single-card-box.style-six {
  margin-bottom: 30px;
}

.ea-single-card-box.style-six .content {
  margin-top: 20px;
  position: relative;
}

.ea-single-card-box.style-six .content h6 {
  color: var(--optionalColor);
  margin-bottom: 10px;
  font-family: var(--headingFontFamily);
  font-size: var(--fontSize);
  font-weight: 500;
}

.ea-single-card-box.style-six .content span {
  display: block;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  font-family: var(--headingFontFamily);
  font-size: var(--fontSize);
  font-weight: 600;
}

.ea-single-card-box.style-six .content .link-btn {
  -webkit-transition: var(--transition);
  transition: var(--transition);
  color: var(--blackColor);
  display: inline-block;
  position: relative;
  line-height: 1.3;
  position: absolute;
  left: 0;
  bottom: 4px;
  opacity: 0;
  visibility: hidden;
  font-family: var(--headingFontFamily);
  font-size: var(--fontSize);
  font-weight: 600;
}

.ea-single-card-box.style-six .content .link-btn::before {
  left: 0;
  bottom: 0;
  content: '';
  width: 100%;
  height: 1px;
  position: absolute;
  background-color: var(--blackColor);
}

.ea-single-card-box.style-six:hover .content span {
  opacity: 0;
  visibility: hidden;
}

.ea-single-card-box.style-six:hover .content .link-btn {
  opacity: 1;
  visibility: visible;
}

.ea-single-card-box.style-seven {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.ea-single-card-box.style-seven img {
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.ea-single-card-box.style-seven h3 {
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 12px;
  margin-bottom: 0;
  position: absolute;
  background-color: rgba(255, 255, 255, 0.5);
  font-size: var(--fontSize);
  font-weight: 500;
}

.ea-single-card-box.style-seven:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.row .col-lg-6:nth-child(1) .single-card-box.style-five {
  padding-right: 10px;
}

.row .col-lg-6:nth-child(2) .single-card-box.style-five {
  margin-left: 10px;
}

/*================================================
Flip Box Area CSS
=================================================*/
.ea-flip-box-area.bg-shape {
  position: relative;
  z-index: 1;
}

.ea-flip-box-area.bg-shape::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -100px;
  height: 100px;
  z-index: -1;
  background-image: url(../images/shape4.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.ea-flip-box-area.bg-gradient-color {
  background: -webkit-gradient(linear, left top, right bottom, from(#3bd8d7), color-stop(#41d6ea), color-stop(#5cd3f8), color-stop(#7dceff), color-stop(#9cc9ff), color-stop(#b3c5ff), color-stop(#cac0fb), color-stop(#debcf3), color-stop(#ecb9e7), color-stop(#f7b8db), color-stop(#fdb8cf), to(#ffbac3));
  background: linear-gradient(to right bottom, #3bd8d7, #41d6ea, #5cd3f8, #7dceff, #9cc9ff, #b3c5ff, #cac0fb, #debcf3, #ecb9e7, #f7b8db, #fdb8cf, #ffbac3);
}

.ea-flip-box-area.bg-gradient-color .section-title h2 {
  color: var(--whiteColor);
}

.ea-flip-box-area.bg-gradient-color .section-title p {
  color: var(--whiteColor);
  opacity: 0.9;
}

.ea-flip-box-area.bg-image {
  background-image: url(../images/bg5.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.ea-single-flip-box.style-one {
  position: relative;
  text-align: center;
  border-radius: 5px;
  margin-bottom: 30px;
  -webkit-pereaective: 1000px;
          pereaective: 1000px;
}

.ea-single-flip-box.style-one .ea-flip-box-front-part {
  padding: 40px 30px;
  border-radius: 5px;
  -webkit-transform: rotateX(0deg);
          transform: rotateX(0deg);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  background: -webkit-gradient(linear, left bottom, left top, from(#f77062), color-stop(#fc676d), color-stop(#ff5e79), color-stop(#ff5787), to(#fe5196));
  background: linear-gradient(to top, #f77062, #fc676d, #ff5e79, #ff5787, #fe5196);
  -webkit-transition-duration: 500ms;
          transition-duration: 500ms;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
}

.ea-single-flip-box.style-one .ea-flip-box-front-part h3 {
  color: var(--whiteColor);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 0;
  margin-top: 15px;
}

.ea-single-flip-box.style-one .ea-flip-box-back-part {
  top: 0;
  left: 0;
  width: 100%;
  border-radius: 5px;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  height: 100%;
  position: absolute;
  -webkit-transform: rotateX(-180deg);
          transform: rotateX(-180deg);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  padding: 40px 30px;
  background: -webkit-gradient(linear, left bottom, left top, from(#f77062), color-stop(#fc676d), color-stop(#ff5e79), color-stop(#ff5787), to(#fe5196));
  background: linear-gradient(to top, #f77062, #fc676d, #ff5e79, #ff5787, #fe5196);
  -webkit-transition-duration: 500ms;
          transition-duration: 500ms;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
}

.ea-single-flip-box.style-one .ea-flip-box-back-part h3 {
  margin-bottom: 12px;
  color: var(--whiteColor);
  font-size: 22px;
  font-weight: 600;
}

.ea-single-flip-box.style-one .ea-flip-box-back-part p {
  color: var(--whiteColor);
  opacity: 0.9;
}

.ea-single-flip-box.style-one:hover .ea-flip-box-front-part {
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg);
}

.ea-single-flip-box.style-one:hover .ea-flip-box-back-part {
  -webkit-transform: rotateX(0deg);
          transform: rotateX(0deg);
}

.ea-single-flip-box.style-one.bg2 .ea-flip-box-front-part {
  background: -webkit-gradient(linear, left bottom, left top, from(#9be15d), color-stop(#81e372), color-stop(#65e486), color-stop(#43e49a), to(#00e3ae));
  background: linear-gradient(to top, #9be15d, #81e372, #65e486, #43e49a, #00e3ae);
}

.ea-single-flip-box.style-one.bg2 .ea-flip-box-back-part {
  background: -webkit-gradient(linear, left bottom, left top, from(#9be15d), color-stop(#81e372), color-stop(#65e486), color-stop(#43e49a), to(#00e3ae));
  background: linear-gradient(to top, #9be15d, #81e372, #65e486, #43e49a, #00e3ae);
}

.ea-single-flip-box.style-one.bg3 .ea-flip-box-front-part {
  background: -webkit-gradient(linear, left top, right top, from(#4facfe), color-stop(#0bbfff), color-stop(#00d1ff), color-stop(#00e2ff), to(#00f2fe));
  background: linear-gradient(to right, #4facfe, #0bbfff, #00d1ff, #00e2ff, #00f2fe);
}

.ea-single-flip-box.style-one.bg3 .ea-flip-box-back-part {
  background: -webkit-gradient(linear, left top, right top, from(#4facfe), color-stop(#0bbfff), color-stop(#00d1ff), color-stop(#00e2ff), to(#00f2fe));
  background: linear-gradient(to right, #4facfe, #0bbfff, #00d1ff, #00e2ff, #00f2fe);
}

.ea-single-flip-box.style-two {
  position: relative;
  text-align: center;
  border-radius: 10px;
  margin-bottom: 30px;
  -webkit-pereaective: 1000px;
          pereaective: 1000px;
}

.ea-single-flip-box.style-two .ea-flip-box-front-part {
  padding: 80px 30px;
  border-radius: 10px;
  -webkit-transform: rotateY(0deg);
          transform: rotateY(0deg);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  background: var(--whiteColor);
  transition: transform .75s ease-in-out,-webkit-transform .75s ease-in-out;
}

.ea-single-flip-box.style-two .ea-flip-box-front-part h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 0;
  margin-top: 25px;
}

.ea-single-flip-box.style-two .ea-flip-box-back-part {
  top: 0;
  left: 0;
  width: 100%;
  border-radius: 10px;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  height: 100%;
  position: absolute;
  -webkit-transform: rotateY(-180deg);
          transform: rotateY(-180deg);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  padding: 30px 20px;
  background: -webkit-gradient(linear, right bottom, left top, from(#ac32e4), color-stop(#9c24ea), color-stop(#8817f1), color-stop(#6f09f8), to(#4801ff));
  background: linear-gradient(to left top, #ac32e4, #9c24ea, #8817f1, #6f09f8, #4801ff);
  transition: transform .75s ease-in-out,-webkit-transform .75s ease-in-out;
}

.ea-single-flip-box.style-two .ea-flip-box-back-part p {
  color: var(--whiteColor);
}

.ea-single-flip-box.style-two .ea-flip-box-back-part .link-btn {
  display: inline-block;
  color: var(--whiteColor);
  position: relative;
  line-height: 1.2;
  margin-top: 5px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  font-size: 15px;
  font-weight: 500;
}

.ea-single-flip-box.style-two .ea-flip-box-back-part .link-btn::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background-color: var(--whiteColor);
  opacity: 0.8;
}

.ea-single-flip-box.style-two:hover .ea-flip-box-front-part {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}

.ea-single-flip-box.style-two:hover .ea-flip-box-back-part {
  -webkit-transform: rotateY(0deg);
          transform: rotateY(0deg);
}

.ea-single-flip-box.style-three {
  position: relative;
  border-radius: 7px;
  margin-bottom: 30px;
  -webkit-pereaective: 1000px;
          pereaective: 1000px;
}

.ea-single-flip-box.style-three .ea-flip-box-front-part {
  border-radius: 7px;
  background: -webkit-gradient(linear, right bottom, left top, from(#e9defa), color-stop(#ffdfef), color-stop(#ffe4e0), color-stop(#ffefd7), to(#fbfcdb));
  background: linear-gradient(to left top, #e9defa, #ffdfef, #ffe4e0, #ffefd7, #fbfcdb);
  -webkit-transform: rotateY(0deg);
          transform: rotateY(0deg);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-transition-duration: 500ms;
          transition-duration: 500ms;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
}

.ea-single-flip-box.style-three .ea-flip-box-front-part .content {
  padding: 100px 30px;
}

.ea-single-flip-box.style-three .ea-flip-box-front-part .content h3 {
  margin-bottom: 12px;
  font-size: 22px;
  font-weight: 600;
}

.ea-single-flip-box.style-three .ea-flip-box-front-part .image {
  border-radius: 7px;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.ea-single-flip-box.style-three .ea-flip-box-front-part .image.bg1 {
  background-image: url(../images/flip-box-img4.jpg);
}

.ea-single-flip-box.style-three .ea-flip-box-front-part .image.bg2 {
  background-image: url(../images/flip-box-img5.jpg);
}

.ea-single-flip-box.style-three .ea-flip-box-front-part .image img {
  display: none;
  border-radius: 7px;
}

.ea-single-flip-box.style-three .ea-flip-box-back-part {
  top: 0;
  left: 0;
  width: 100%;
  border-radius: 7px;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  height: 100%;
  position: absolute;
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  background: -webkit-gradient(linear, left bottom, left top, from(#fff1eb), color-stop(#ffe7eb), color-stop(#f5e0f5), color-stop(#d5deff), to(#ace0f9));
  background: linear-gradient(to top, #fff1eb, #ffe7eb, #f5e0f5, #d5deff, #ace0f9);
  -webkit-transition-duration: 500ms;
          transition-duration: 500ms;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
}

.ea-single-flip-box.style-three .ea-flip-box-back-part .content {
  padding: 44px 30px;
}

.ea-single-flip-box.style-three .ea-flip-box-back-part .content .price {
  background-color: var(--whiteColor);
  display: inline-block;
  padding: 5px 20px 4px;
  border-radius: 30px;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 500;
}

.ea-single-flip-box.style-three .ea-flip-box-back-part .content h3 {
  margin-bottom: 12px;
  font-size: 22px;
  font-weight: 600;
}

.ea-single-flip-box.style-three .ea-flip-box-back-part .content .link-btn {
  background-color: #1a73e8;
  color: var(--whiteColor);
  display: inline-block;
  padding: 10px 35px;
  border-radius: 5px;
  margin-top: 5px;
  font-size: 15px;
  font-weight: 500;
}

.ea-single-flip-box.style-three .ea-flip-box-back-part .content .link-btn:hover {
  color: var(--whiteColor);
  background-color: var(--blackColor);
}

.ea-single-flip-box.style-three .ea-flip-box-back-part .image {
  border-radius: 7px;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.ea-single-flip-box.style-three .ea-flip-box-back-part .image.bg1 {
  background-image: url(../images/flip-box-img4.jpg);
}

.ea-single-flip-box.style-three .ea-flip-box-back-part .image.bg2 {
  background-image: url(../images/flip-box-img5.jpg);
}

.ea-single-flip-box.style-three .ea-flip-box-back-part .image img {
  display: none;
  border-radius: 7px;
}

.ea-single-flip-box.style-three:hover .ea-flip-box-front-part {
  -webkit-transform: rotateY(-180deg);
          transform: rotateY(-180deg);
}

.ea-single-flip-box.style-three:hover .ea-flip-box-back-part {
  -webkit-transform: rotateY(0deg);
          transform: rotateY(0deg);
}

.ea-single-flip-box.style-four {
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.ea-single-flip-box.style-four img {
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.ea-single-flip-box.style-four .content {
  left: 0;
  right: 0;
  top: 50%;
  z-index: 2;
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  padding-left: 15px;
  padding-right: 15px;
}

.ea-single-flip-box.style-four .content h3 {
  color: var(--whiteColor);
  margin-bottom: 12px;
  font-size: 22px;
  font-weight: 600;
}

.ea-single-flip-box.style-four .content p {
  color: var(--whiteColor);
  opacity: .90;
}

.ea-single-flip-box.style-four.zoom-out img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.ea-single-flip-box.style-four:hover img {
  -webkit-transform: rotate(8deg) scale(1.2);
          transform: rotate(8deg) scale(1.2);
}

.ea-single-flip-box.style-four:hover.zoom-in img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.ea-single-flip-box.style-four:hover.zoom-out img {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.ea-single-flip-box.style-five {
  position: relative;
  text-align: center;
  border-radius: 5px;
  margin-bottom: 30px;
  -webkit-pereaective: 1000px;
          pereaective: 1000px;
}

.ea-single-flip-box.style-five .ea-flip-box-front-part {
  transition: transform 0.6s cubic-bezier(0.2, 0.85, 0.4, 1.275), -webkit-transform 0.6s cubic-bezier(0.2, 0.85, 0.4, 1.275);
  -webkit-transform-origin: 100% 100%;
          transform-origin: 100% 100%;
  -webkit-transition-duration: 1500ms;
          transition-duration: 1500ms;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transform: rotateX(0);
          transform: rotateX(0);
  -webkit-pereaective: 1000px;
          pereaective: 1000px;
}

.ea-single-flip-box.style-five .ea-flip-box-back-part {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 30px;
  position: absolute;
  background: -webkit-gradient(linear, left bottom, left top, from(#f77062), color-stop(#fc676d), color-stop(#ff5e79), color-stop(#ff5787), to(#fe5196));
  background: linear-gradient(to top, #f77062, #fc676d, #ff5e79, #ff5787, #fe5196);
  transition: transform 0.6s cubic-bezier(0.2, 0.85, 0.4, 1.275), -webkit-transform 0.6s cubic-bezier(0.2, 0.85, 0.4, 1.275);
  -webkit-transform-origin: 100% 100%;
          transform-origin: 100% 100%;
  -webkit-transition-duration: 1500ms;
          transition-duration: 1500ms;
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-pereaective: 1000px;
          pereaective: 1000px;
}

.ea-single-flip-box.style-five .ea-flip-box-back-part h3 {
  margin-bottom: 12px;
  color: var(--whiteColor);
  font-size: 22px;
  font-weight: 600;
}

.ea-single-flip-box.style-five .ea-flip-box-back-part p {
  color: var(--whiteColor);
  opacity: 0.9;
}

.ea-single-flip-box.style-five .ea-flip-box-back-part .link-btn {
  background-color: var(--whiteColor);
  color: #1a73e8;
  display: inline-block;
  padding: 11px 35px;
  border-radius: 5px;
  margin-top: 5px;
  font-size: 15px;
  font-weight: 500;
}

.ea-single-flip-box.style-five .ea-flip-box-back-part .link-btn:hover {
  color: var(--whiteColor);
  background-color: #1a73e8;
}

.ea-single-flip-box.style-five:hover .ea-flip-box-front-part {
  -webkit-transform: rotateX(-180deg);
          transform: rotateX(-180deg);
}

.ea-single-flip-box.style-five:hover .ea-flip-box-back-part {
  -webkit-transform: rotateX(0);
          transform: rotateX(0);
}

.ea-single-flip-box.style-six {
  overflow: hidden;
  text-align: center;
  position: relative;
  margin-bottom: 30px;
  -webkit-pereaective: 1000px;
          pereaective: 1000px;
}

.ea-single-flip-box.style-six .ea-flip-box-front-part {
  transition: transform 0.6s cubic-bezier(0.2, 0.85, 0.4, 1.275), -webkit-transform 0.6s cubic-bezier(0.2, 0.85, 0.4, 1.275);
  -webkit-transform-origin: 100% 100%;
          transform-origin: 100% 100%;
  -webkit-transition-duration: 1500ms;
          transition-duration: 1500ms;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transform: rotateY(0);
          transform: rotateY(0);
  -webkit-pereaective: 1000px;
          pereaective: 1000px;
}

.ea-single-flip-box.style-six .ea-flip-box-back-part {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: start;
  padding: 40px 30px;
  position: absolute;
  background: #222222;
  transition: transform 0.6s cubic-bezier(0.2, 0.85, 0.4, 1.275), -webkit-transform 0.6s cubic-bezier(0.2, 0.85, 0.4, 1.275);
  -webkit-transform-origin: 100% 100%;
          transform-origin: 100% 100%;
  -webkit-transition-duration: 1500ms;
          transition-duration: 1500ms;
  -webkit-transform: rotateY(-180deg);
          transform: rotateY(-180deg);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-pereaective: 1000px;
          pereaective: 1000px;
}

.ea-single-flip-box.style-six .ea-flip-box-back-part .price {
  background-color: var(--whiteColor);
  display: inline-block;
  padding: 4px 13px 3px;
  border-radius: 30px;
  margin-bottom: 17px;
  font-size: 14px;
  font-weight: 500;
}

.ea-single-flip-box.style-six .ea-flip-box-back-part h3 {
  margin-bottom: 12px;
  color: var(--whiteColor);
  font-size: 16px;
  font-weight: 600;
}

.ea-single-flip-box.style-six .ea-flip-box-back-part .link-btn {
  -webkit-transition: var(--transition);
  transition: var(--transition);
  display: inline-block;
  position: relative;
  line-height: 1.3;
  color: #1a73e8;
  z-index: 1;
  font-size: 15px;
  font-weight: 500;
}

.ea-single-flip-box.style-six .ea-flip-box-back-part .link-btn::before {
  left: 0;
  right: 0;
  bottom: 0;
  content: '';
  height: 1px;
  position: absolute;
  background-color: #1a73e8;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.ea-single-flip-box.style-six .ea-flip-box-back-part .link-btn:hover {
  color: var(--whiteColor);
}

.ea-single-flip-box.style-six .ea-flip-box-back-part .link-btn:hover::before {
  background-color: var(--whiteColor);
}

.ea-single-flip-box.style-six:hover .ea-flip-box-front-part {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}

.ea-single-flip-box.style-six:hover .ea-flip-box-back-part {
  -webkit-transform: rotateY(0);
          transform: rotateY(0);
}

.ea-single-flip-box.style-seven {
  overflow: hidden;
  position: relative;
  text-align: center;
  -webkit-pereaective: 1000px;
          pereaective: 1000px;
}

.ea-single-flip-box.style-seven .ea-flip-box-front-part {
  -webkit-transform: rotateX(0deg);
          transform: rotateX(0deg);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  transition: transform .75s ease-in-out,-webkit-transform .75s ease-in-out;
}

.ea-single-flip-box.style-seven .ea-flip-box-back-part {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  background: #78e1c0;
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  transition: transform .75s ease-in-out,-webkit-transform .75s ease-in-out;
}

.ea-single-flip-box.style-seven .ea-flip-box-back-part h3 {
  padding: 12px;
  margin-bottom: 0;
  text-transform: uppercase;
  background-color: rgba(255, 255, 255, 0.5);
  font-size: var(--fontSize);
  font-weight: 500;
}

.ea-single-flip-box.style-seven:hover .ea-flip-box-front-part {
  -webkit-transform: rotateX(-180deg);
          transform: rotateX(-180deg);
}

.ea-single-flip-box.style-seven:hover .ea-flip-box-back-part {
  -webkit-transform: rotateX(0deg);
          transform: rotateX(0deg);
}

/*================================================
Pricing Area CSS
=================================================*/
.ea-pricing-area.bg-shape {
  position: relative;
  z-index: 1;
}

.ea-pricing-area.bg-shape::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -100px;
  height: 100px;
  z-index: -1;
  background-image: url(../images/shape4.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.ea-pricing-area.bg-gradient-color {
  background: -webkit-gradient(linear, left top, right top, from(#0acffe), color-stop(#00b9ff), color-stop(#00a0ff), color-stop(#0081ff), to(#495aff));
  background: linear-gradient(to right, #0acffe, #00b9ff, #00a0ff, #0081ff, #495aff);
}

.ea-pricing-area.bg-gradient-color .section-title h2 {
  color: var(--whiteColor);
}

.ea-pricing-area.bg-gradient-color .section-title p {
  color: var(--whiteColor);
}

.ea-pricing-area .single-pricing-item.style-six {
  margin-left: -7px;
  margin-right: -7px;
}

.ea-pricing-area.bg-image {
  background-image: url(../images/bg3.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.pricing-tabs .nav-tabs {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-bottom: none;
  margin-bottom: 40px;
}

.pricing-tabs .nav-tabs .nav-item .nav-link {
  border: none;
  margin-bottom: 0;
  padding: 11px 30px;
  color: var(--blackColor);
  background-color: #f9f9f9;
  border-radius: 5px 0 0 5px !important;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  font-size: 15px;
  font-weight: 600;
}

.pricing-tabs .nav-tabs .nav-item .nav-link:hover, .pricing-tabs .nav-tabs .nav-item .nav-link.active {
  background-color: var(--blackColor);
  color: var(--whiteColor);
}

.pricing-tabs .nav-tabs .nav-item:last-child .nav-link {
  border-radius: 0 5px 5px 0 !important;
}

.ea-single-pricing-item.style-one {
  z-index: 1;
  padding: 40px;
  overflow: hidden;
  position: relative;
  border-radius: 5px;
  text-align: center;
  margin-bottom: 30px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  background-color: var(--whiteColor);
  -webkit-box-shadow: 0 5px 40px 0 rgba(0, 0, 0, 0.05);
          box-shadow: 0 5px 40px 0 rgba(0, 0, 0, 0.05);
}

.ea-single-pricing-item.style-one .pricing-header {
  border-bottom: 1px solid #eeeeee;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  padding-bottom: 25px;
  margin-bottom: 25px;
}

.ea-single-pricing-item.style-one .pricing-header h3 {
  -webkit-transition: var(--transition);
  transition: var(--transition);
  margin-bottom: 0;
  font-size: 22px;
  font-weight: 700;
}

.ea-single-pricing-item.style-one .pricing-header .icon {
  z-index: 1;
  position: relative;
  display: inline-block;
  margin-top: 20px;
  margin-bottom: 20px;
}

.ea-single-pricing-item.style-one .pricing-header .icon::before {
  right: 0;
  top: 50%;
  width: 80px;
  z-index: -1;
  content: '';
  height: 80px;
  position: absolute;
  border-radius: 50%;
  padding-right: 15px;
  background-color: #f1f1f1;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.ea-single-pricing-item.style-one .pricing-header .price {
  -webkit-transition: var(--transition);
  transition: var(--transition);
  display: block;
  font-size: 17px;
  font-weight: 500;
}

.ea-single-pricing-item.style-one .pricing-header .price span {
  -webkit-transition: var(--transition);
  transition: var(--transition);
  color: #3203c9;
  font-size: 35px;
  font-weight: 600;
}

.ea-single-pricing-item.style-one .features-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.ea-single-pricing-item.style-one .features-list li {
  -webkit-transition: var(--transition);
  transition: var(--transition);
  margin-bottom: 12px;
  font-size: 15px;
}

.ea-single-pricing-item.style-one .features-list li:last-child {
  margin-bottom: 0;
}

.ea-single-pricing-item.style-one .link-btn {
  z-index: 1;
  display: block;
  margin-top: 25px;
  text-align: center;
  padding: 13px 30px;
  position: relative;
  border-radius: 5px;
  color: var(--whiteColor);
  background-color: var(--whiteColor);
  font-size: 17px;
  font-weight: 500;
  font-family: var(--headingFontFamily);
}

.ea-single-pricing-item.style-one .link-btn::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: '';
  z-index: -1;
  border-radius: 5px;
  position: absolute;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  background: -webkit-gradient(linear, left bottom, left top, from(#ff0844), color-stop(#ff5253), color-stop(#ff7766), color-stop(#ff957d), to(#ffb199));
  background: linear-gradient(to top, #ff0844, #ff5253, #ff7766, #ff957d, #ffb199);
}

.ea-single-pricing-item.style-one .link-btn:hover {
  color: var(--blackColor);
}

.ea-single-pricing-item.style-one .link-btn:hover::before {
  opacity: 0;
  visibility: hidden;
}

.ea-single-pricing-item.style-one::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  content: '';
  z-index: -1;
  position: absolute;
  border-radius: 5px;
  visibility: hidden;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  background: -webkit-gradient(linear, right bottom, left top, from(#ac32e4), color-stop(#a42ce6), color-stop(#9c27e9), color-stop(#9322eb), color-stop(#891dee), color-stop(#8119f0), color-stop(#7915f3), color-stop(#7012f5), color-stop(#680df7), color-stop(#5f09fa), color-stop(#5504fc), to(#4801ff));
  background: linear-gradient(to left top, #ac32e4, #a42ce6, #9c27e9, #9322eb, #891dee, #8119f0, #7915f3, #7012f5, #680df7, #5f09fa, #5504fc, #4801ff);
}

.ea-single-pricing-item.style-one .ribbon {
  top: -20px;
  left: -25px;
  width: 150px;
  height: 150px;
  position: absolute;
}

.ea-single-pricing-item.style-one .ribbon span {
  top: 35px;
  right: -25px;
  width: 225px;
  display: block;
  text-align: center;
  position: absolute;
  color: var(--whiteColor);
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  background-color: #ff0b46;
  font-size: 14px;
  font-weight: 600;
  padding-top: 8px;
  padding-bottom: 8px;
}

.ea-single-pricing-item.style-one:hover .pricing-header, .ea-single-pricing-item.style-one.active .pricing-header {
  border-color: #a26de8;
}

.ea-single-pricing-item.style-one:hover .pricing-header h3, .ea-single-pricing-item.style-one.active .pricing-header h3 {
  color: var(--whiteColor);
}

.ea-single-pricing-item.style-one:hover .pricing-header .price, .ea-single-pricing-item.style-one.active .pricing-header .price {
  color: var(--whiteColor);
}

.ea-single-pricing-item.style-one:hover .pricing-header .price span, .ea-single-pricing-item.style-one.active .pricing-header .price span {
  color: var(--whiteColor);
}

.ea-single-pricing-item.style-one:hover .features-list li, .ea-single-pricing-item.style-one.active .features-list li {
  color: var(--whiteColor);
}

.ea-single-pricing-item.style-one:hover::before, .ea-single-pricing-item.style-one.active::before {
  opacity: 1;
  visibility: visible;
}

.ea-single-pricing-item.style-two {
  z-index: 1;
  position: relative;
  text-align: center;
  border-radius: 5px;
  margin-bottom: 30px;
  background-color: var(--whiteColor);
  padding-top: 40px;
  padding-bottom: 40px;
}

.ea-single-pricing-item.style-two .pricing-header .icon {
  -webkit-transition: var(--transition);
  transition: var(--transition);
  background-color: #ffe9e3;
  position: relative;
  border-radius: 50%;
  text-align: center;
  line-height: 98px;
  color: #fe4c1c;
  font-size: 50px;
  height: 90px;
  width: 90px;
  margin-bottom: 30px;
  margin-right: auto;
  margin-left: auto;
}

.ea-single-pricing-item.style-two .pricing-header .icon .circles-box {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  border-radius: 50%;
  -webkit-animation-duration: 30s;
          animation-duration: 30s;
  -webkit-animation-name: rotateme;
          animation-name: rotateme;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}

.ea-single-pricing-item.style-two .pricing-header .icon .circles-box .circle-one {
  left: 8px;
  z-index: 1;
  bottom: 8px;
  width: 12px;
  height: 12px;
  position: absolute;
  border-radius: 50%;
  background-color: #fe4c1c;
}

.ea-single-pricing-item.style-two .pricing-header .icon .circles-box .circle-two {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 12px;
  height: 12px;
  z-index: 1;
  border-radius: 50%;
  background-color: #1c17a0;
}

.ea-single-pricing-item.style-two .pricing-header h3 {
  margin-bottom: 0;
  color: #080e32;
  background-color: #f9f9f9;
  font-size: 22px;
  font-weight: 700;
  padding-top: 15px;
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 12px;
}

.ea-single-pricing-item.style-two .pricing-features {
  margin-bottom: 15px;
  padding-top: 30px;
  padding-left: 10px;
  padding-right: 10px;
}

.ea-single-pricing-item.style-two .pricing-features ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.ea-single-pricing-item.style-two .pricing-features ul li {
  margin-bottom: 12px;
  color: #4b5280;
  font-size: 16px;
}

.ea-single-pricing-item.style-two .pricing-features ul li.close {
  color: #c7c7e2;
  text-decoration: line-through;
}

.ea-single-pricing-item.style-two .pricing-features ul li:last-child {
  margin-bottom: 0;
}

.ea-single-pricing-item.style-two .price {
  font-size: 35px;
  font-weight: 700;
}

.ea-single-pricing-item.style-two .price span {
  display: block;
  margin-top: -3px;
  color: var(--optionalColor);
  font-size: 15px;
  font-weight: 400;
}

.ea-single-pricing-item.style-two .link-btn {
  margin-top: 20px;
  display: inline-block;
  background-color: #fe4c1c;
  border-radius: 5px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  color: var(--whiteColor);
  padding: 11px 40px;
  font-size: 15px;
  font-weight: 500;
}

.ea-single-pricing-item.style-two .link-btn:hover {
  background-color: #000000;
  color: var(--whiteColor);
}

.ea-single-pricing-item.style-two.bg-290390 .pricing-header .icon {
  background-color: #e5e0f2;
  color: #290390;
}

.ea-single-pricing-item.style-two.bg-290390 .pricing-header .icon .circles-box .circle-one {
  background-color: #290390;
}

.ea-single-pricing-item.style-two.bg-290390 .link-btn {
  background-color: #290390;
}

.ea-single-pricing-item.style-two.bg-290390 .link-btn:hover {
  background-color: #000000;
}

.ea-single-pricing-item.style-two.bg-1fa299 .pricing-header .icon {
  background-color: #e4f4f3;
  color: #1fa299;
}

.ea-single-pricing-item.style-two.bg-1fa299 .pricing-header .icon .circles-box .circle-one {
  background-color: #1fa299;
}

.ea-single-pricing-item.style-two.bg-1fa299 .link-btn {
  background-color: #1fa299;
}

.ea-single-pricing-item.style-two.bg-1fa299 .link-btn:hover {
  background-color: #000000;
}

.ea-single-pricing-item.style-three {
  background-color: var(--whiteColor);
  border: 1px solid #aeffae;
  margin-bottom: 30px;
  border-radius: 5px;
  text-align: center;
  position: relative;
  padding: 30px;
  z-index: 1;
}

.ea-single-pricing-item.style-three .pricing-header {
  margin-bottom: 10px;
}

.ea-single-pricing-item.style-three .pricing-header h3 {
  margin-bottom: 0;
  font-size: 22px;
  font-weight: 700;
}

.ea-single-pricing-item.style-three .pricing-header p {
  line-height: 1.6;
  margin-top: 10px;
  margin-bottom: 0;
}

.ea-single-pricing-item.style-three .price {
  margin-bottom: 15px;
  font-size: 40px;
  font-weight: 700;
  font-family: var(--headingFontFamily);
}

.ea-single-pricing-item.style-three .price span {
  display: inline-block;
  margin-left: -7px;
  font-size: 20px;
  font-weight: 600;
}

.ea-single-pricing-item.style-three .link-btn {
  display: inline-block;
  margin-bottom: 30px;
  background-color: #dd4911;
  color: var(--whiteColor);
  border-radius: 30px;
  padding: 11px 30px;
  position: relative;
  z-index: 1;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  font-size: 15px;
  font-weight: 500;
}

.ea-single-pricing-item.style-three .link-btn::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border-radius: 30px;
  z-index: -1;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  background: -webkit-gradient(linear, left bottom, right top, from(#a3a3a3), color-stop(#9a9a9a), color-stop(#909090), color-stop(#878787), to(#7e7e7e));
  background: linear-gradient(to right top, #a3a3a3, #9a9a9a, #909090, #878787, #7e7e7e);
  opacity: 0;
  visibility: hidden;
}

.ea-single-pricing-item.style-three .link-btn:hover {
  color: var(--whiteColor);
}

.ea-single-pricing-item.style-three .link-btn:hover::before {
  opacity: 1;
  visibility: visible;
}

.ea-single-pricing-item.style-three .pricing-features {
  padding-left: 0;
  margin-bottom: 0;
  text-align: left;
  list-style-type: none;
}

.ea-single-pricing-item.style-three .pricing-features li {
  color: var(--blackColor);
  margin-bottom: 12px;
  position: relative;
  padding-left: 22px;
}

.ea-single-pricing-item.style-three .pricing-features li.close i {
  color: red;
}

.ea-single-pricing-item.style-three .pricing-features li:last-child {
  margin-bottom: 0;
}

.ea-single-pricing-item.style-three .pricing-features li i {
  left: -5px;
  top: 50%;
  margin-top: -1px;
  font-size: 22px;
  color: #77d294;
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.ea-single-pricing-item.style-three::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  content: '';
  z-index: -1;
  position: absolute;
  visibility: hidden;
  border-radius: 5px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  background: -webkit-gradient(linear, left top, right bottom, from(#fffefe), color-stop(#fffbf6), color-stop(#fcfbee), color-stop(#eafeef), to(#d7fffe));
  background: linear-gradient(to right bottom, #fffefe, #fffbf6, #fcfbee, #eafeef, #d7fffe);
}

.ea-single-pricing-item.style-three:hover::before {
  opacity: 1;
  visibility: visible;
}

.ea-single-pricing-item.style-four {
  background-color: var(--whiteColor);
  -webkit-transition: var(--transition);
  transition: var(--transition);
  padding-bottom: 30px;
  margin-bottom: 30px;
  text-align: center;
  border-radius: 5px;
}

.ea-single-pricing-item.style-four .pricing-header {
  padding-top: 25px;
  padding-bottom: 20px;
}

.ea-single-pricing-item.style-four .pricing-header h3 {
  margin-bottom: 0;
  font-size: 22px;
  font-weight: 600;
}

.ea-single-pricing-item.style-four .price {
  -webkit-transition: var(--transition);
  transition: var(--transition);
  padding-top: 8px;
  padding-bottom: 5px;
  border-top: 2px dashed #f4f5fe;
  border-bottom: 2px dashed #f4f5fe;
  font-weight: 600;
  font-size: 40px;
}

.ea-single-pricing-item.style-four .price sup {
  top: -18px;
  font-size: 18px;
  font-weight: 500;
}

.ea-single-pricing-item.style-four .price sub {
  bottom: 2px;
  padding-right: 5px;
  color: var(--optionalColor);
  font-size: 14px;
  font-weight: 500;
}

.ea-single-pricing-item.style-four .pricing-features {
  padding-left: 0;
  text-align: left;
  list-style-type: none;
  margin-top: 30px;
  margin-bottom: 0;
  margin-left: 50px;
  margin-right: 50px;
}

.ea-single-pricing-item.style-four .pricing-features li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 22px;
  color: #444683;
}

.ea-single-pricing-item.style-four .pricing-features li:last-child {
  margin-bottom: 0;
}

.ea-single-pricing-item.style-four .pricing-features li i {
  position: absolute;
  color: #13c4a1;
  top: 3px;
  left: 0;
}

.ea-single-pricing-item.style-four .pricing-features li span {
  display: inline-block;
  position: absolute;
  color: #b7bad2;
  margin-left: 3px;
  font-size: 20px;
  top: 1px;
}

.ea-single-pricing-item.style-four .link-btn {
  margin-top: 30px;
  position: relative;
  border-radius: 5px;
  display: inline-block;
  color: var(--whiteColor);
  background-color: #ff612f;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  padding-top: 12px;
  padding-left: 50px;
  padding-right: 30px;
  padding-bottom: 12px;
  font-size: 16px;
  font-weight: 500;
}

.ea-single-pricing-item.style-four .link-btn i {
  position: absolute;
  left: 25px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 20px;
}

.ea-single-pricing-item.style-four .link-btn:hover {
  background-color: #6fc3a1;
  color: var(--whiteColor);
}

.ea-single-pricing-item.style-four:hover .price {
  border-color: #13c4a1;
}

.ea-single-pricing-item.style-five {
  border-radius: 5px;
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 50px;
  background-color: var(--whiteColor);
  -webkit-box-shadow: 0 5px 40px 0 rgba(0, 0, 0, 0.11);
          box-shadow: 0 5px 40px 0 rgba(0, 0, 0, 0.11);
}

.ea-single-pricing-item.style-five .pricing-header {
  background-color: var(--blackColor);
  border-radius: 5px 5px 0 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
  padding-top: 80px;
  padding-bottom: 90px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.ea-single-pricing-item.style-five .pricing-header.bg1 {
  background-image: url(../images/pricing-img1.jpg);
}

.ea-single-pricing-item.style-five .pricing-header.bg2 {
  background-image: url(../images/pricing-img2.jpg);
}

.ea-single-pricing-item.style-five .pricing-header.bg3 {
  background-image: url(../images/pricing-img3.jpg);
}

.ea-single-pricing-item.style-five .pricing-header::before {
  top: 0;
  left: 0;
  content: '';
  z-index: -1;
  width: 100%;
  height: 100%;
  opacity: .70;
  position: absolute;
  border-radius: 5px;
  background-color: #000000;
}

.ea-single-pricing-item.style-five .pricing-header h3 {
  z-index: 1;
  margin-bottom: 0;
  position: relative;
  color: var(--whiteColor);
  font-weight: 700;
  font-size: 22px;
}

.ea-single-pricing-item.style-five .pricing-header .divider {
  height: 80px;
}

.ea-single-pricing-item.style-five .price {
  color: var(--blackColor);
  margin-top: 20px;
  font-size: 40px;
  font-weight: 600;
}

.ea-single-pricing-item.style-five .price sub {
  bottom: 2px;
  font-weight: 300;
  font-size: 18px;
}

.ea-single-pricing-item.style-five .pricing-features-list {
  list-style-type: none;
  text-align: start;
  margin-bottom: 0;
  margin-top: 35px;
  padding-left: 40px;
  padding-right: 40px;
}

.ea-single-pricing-item.style-five .pricing-features-list li {
  color: var(--blackColor);
  margin-bottom: 12px;
  position: relative;
  padding-left: 22px;
  font-size: 16px;
}

.ea-single-pricing-item.style-five .pricing-features-list li i {
  color: #ff5d22;
  position: absolute;
  left: -5px;
  top: -1px;
  font-size: 24px;
}

.ea-single-pricing-item.style-five .pricing-features-list li.close {
  opacity: .76;
}

.ea-single-pricing-item.style-five .pricing-features-list li.close i {
  color: var(--optionalColor);
}

.ea-single-pricing-item.style-five .pricing-features-list li:last-child {
  margin-bottom: 0;
}

.ea-single-pricing-item.style-five .book-now-btn {
  margin-top: 15px;
}

.ea-single-pricing-item.style-five .book-now-btn .link-btn {
  display: inline-block;
  border: 1px solid #df5d2b;
  color: #df5d2b;
  border-radius: 5px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  font-size: 15px;
  font-weight: 600;
  padding-top: 12px;
  padding-left: 40px;
  padding-right: 40px;
  padding-bottom: 12px;
}

.ea-single-pricing-item.style-five .book-now-btn .link-btn:hover {
  background-color: #df5d2b;
  color: var(--whiteColor);
}

.ea-single-pricing-item.style-six {
  -webkit-box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.06);
          box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.06);
  background-color: var(--whiteColor);
  margin-bottom: 30px;
  border-radius: 5px;
  position: relative;
  text-align: center;
  overflow: hidden;
  z-index: 1;
  padding-top: 40px;
  padding-bottom: 40px;
}

.ea-single-pricing-item.style-six::before {
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  content: '';
  z-index: -1;
  height: 100%;
  border-radius: 5px;
  position: absolute;
  visibility: hidden;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  background: -webkit-gradient(linear, left top, right top, from(#ee0979), to(#ff6a00));
  background: linear-gradient(90deg, #ee0979 0%, #ff6a00 100%);
}

.ea-single-pricing-item.style-six .pricing-header {
  -webkit-transition: var(--transition);
  transition: var(--transition);
  border-bottom: 1px solid #edf0f3;
  padding-bottom: 15px;
}

.ea-single-pricing-item.style-six .pricing-header h3 {
  margin-bottom: 0;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  font-size: 22px;
  font-weight: 400;
}

.ea-single-pricing-item.style-six .best-seller {
  top: 14px;
  left: -30px;
  font-size: 14px;
  color: #ee0979;
  padding: 5px 25px;
  position: absolute;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  background-color: var(--whiteColor);
}

.ea-single-pricing-item.style-six .price {
  font-size: 15px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  border-bottom: 1px solid #edf0f3;
  margin-top: 18px;
  margin-bottom: 25px;
  padding-bottom: 18px;
  padding-right: 5px;
  padding-left: 5px;
}

.ea-single-pricing-item.style-six .price p {
  line-height: initial;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  margin-top: 5px;
  margin-bottom: 5px;
}

.ea-single-pricing-item.style-six .price p strong {
  color: var(--blackColor);
  -webkit-transition: var(--transition);
  transition: var(--transition);
  font-size: 20px;
  font-weight: 700;
}

.ea-single-pricing-item.style-six .price p span {
  display: inline-block;
  color: var(--blackColor);
}

.ea-single-pricing-item.style-six .price span {
  -webkit-transition: var(--transition);
  transition: var(--transition);
  color: var(--blackColor);
  font-size: 15px;
  display: block;
}

.ea-single-pricing-item.style-six .price samp {
  -webkit-transition: var(--transition);
  transition: var(--transition);
  text-decoration: line-through;
  color: var(--optionalColor);
  display: inline-block;
  font-family: var(--headingFontFamily);
  font-size: 15px;
}

.ea-single-pricing-item.style-six .pricing-features-list {
  padding-left: 0;
  margin-bottom: 0;
  text-align: start;
  list-style-type: none;
}

.ea-single-pricing-item.style-six .pricing-features-list li {
  font-size: 16px;
  max-width: 180px;
  position: relative;
  padding-left: 24px;
  margin: 0 auto 12px;
  color: var(--blackColor);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.ea-single-pricing-item.style-six .pricing-features-list li i {
  -webkit-transition: var(--transition);
  transition: var(--transition);
  position: absolute;
  margin-right: 4px;
  color: #ee0979;
  font-size: 25px;
  left: -5px;
  top: -2px;
}

.ea-single-pricing-item.style-six .pricing-features-list li:last-child {
  margin-bottom: 0;
}

.ea-single-pricing-item.style-six .price-note {
  margin-bottom: 20px;
  padding-left: 5px;
  padding-right: 5px;
}

.ea-single-pricing-item.style-six .price-note p {
  font-size: 15px;
  margin-bottom: 0;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.ea-single-pricing-item.style-six .price-note p span {
  display: inline-block;
  color: var(--blackColor);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.ea-single-pricing-item.style-six .btn-box {
  margin-top: 25px;
  padding-left: 30px;
  padding-right: 30px;
}

.ea-single-pricing-item.style-six .btn-box .link-btn {
  display: block;
  position: relative;
  border-radius: 30px;
  color: var(--whiteColor);
  -webkit-transition: var(--transition);
  transition: var(--transition);
  z-index: 1;
  font-size: 15px;
  font-weight: 600;
  padding-top: 12px;
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 12.5px;
}

.ea-single-pricing-item.style-six .btn-box .link-btn::before {
  border-radius: 30px;
  background: -webkit-gradient(linear, left top, right top, from(#ee0979), to(#ff6a00));
  background: linear-gradient(90deg, #ee0979 0%, #ff6a00 100%);
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.ea-single-pricing-item.style-six .btn-box .link-btn.bg-black::before {
  background: -webkit-gradient(linear, left bottom, right top, from(#a3a3a3), color-stop(#9a9a9a), color-stop(#909090), color-stop(#878787), to(#7e7e7e));
  background: linear-gradient(to right top, #a3a3a3, #9a9a9a, #909090, #878787, #7e7e7e);
}

.ea-single-pricing-item.style-six .text {
  padding-left: 25px;
  padding-right: 25px;
}

.ea-single-pricing-item.style-six .text p {
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.ea-single-pricing-item.style-six .text .icon {
  margin-bottom: 58px;
  margin-top: 58px;
}

.ea-single-pricing-item.style-six .text .icon img {
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.ea-single-pricing-item.style-six .text .know-more-btn {
  display: inline-block;
  margin-top: 30px;
  margin-bottom: 15px;
}

.ea-single-pricing-item.style-six:hover::before, .ea-single-pricing-item.style-six.active::before {
  opacity: 1;
  visibility: visible;
}

.ea-single-pricing-item.style-six:hover .pricing-header, .ea-single-pricing-item.style-six.active .pricing-header {
  border-color: #ed8888;
}

.ea-single-pricing-item.style-six:hover .pricing-header h3, .ea-single-pricing-item.style-six.active .pricing-header h3 {
  color: var(--whiteColor);
}

.ea-single-pricing-item.style-six:hover .price, .ea-single-pricing-item.style-six.active .price {
  color: var(--whiteColor);
  border-color: #ed8888;
}

.ea-single-pricing-item.style-six:hover .price p, .ea-single-pricing-item.style-six.active .price p {
  color: var(--whiteColor);
}

.ea-single-pricing-item.style-six:hover .price p strong, .ea-single-pricing-item.style-six.active .price p strong {
  color: var(--whiteColor);
}

.ea-single-pricing-item.style-six:hover .price span, .ea-single-pricing-item.style-six.active .price span {
  color: var(--whiteColor);
}

.ea-single-pricing-item.style-six:hover .price samp, .ea-single-pricing-item.style-six.active .price samp {
  color: var(--whiteColor);
}

.ea-single-pricing-item.style-six:hover .price-note p, .ea-single-pricing-item.style-six.active .price-note p {
  color: var(--whiteColor);
}

.ea-single-pricing-item.style-six:hover .price-note p span, .ea-single-pricing-item.style-six.active .price-note p span {
  color: var(--whiteColor);
}

.ea-single-pricing-item.style-six:hover .pricing-features-list li, .ea-single-pricing-item.style-six.active .pricing-features-list li {
  color: var(--whiteColor);
}

.ea-single-pricing-item.style-six:hover .pricing-features-list li i, .ea-single-pricing-item.style-six.active .pricing-features-list li i {
  color: #00ff4f;
}

.ea-single-pricing-item.style-six:hover p, .ea-single-pricing-item.style-six.active p {
  color: var(--whiteColor);
}

.ea-single-pricing-item.style-six:hover .text .know-more-btn, .ea-single-pricing-item.style-six.active .text .know-more-btn {
  color: var(--whiteColor);
}

.ea-single-pricing-item.style-six:hover .text .icon img, .ea-single-pricing-item.style-six.active .text .icon img {
  -webkit-filter: contrast(150%);
          filter: contrast(150%);
}

.ea-single-pricing-item.style-six:hover .btn-box .link-btn, .ea-single-pricing-item.style-six.active .btn-box .link-btn {
  color: var(--blackColor);
  background-color: var(--whiteColor);
}

.ea-single-pricing-item.style-six:hover .btn-box .link-btn::before, .ea-single-pricing-item.style-six.active .btn-box .link-btn::before {
  opacity: 0;
  visibility: hidden;
}

.ea-single-pricing-item.style-seven {
  margin-bottom: 30px;
  border-radius: 5px;
  background-color: #f9f9f9;
  padding: 30px;
}

.ea-single-pricing-item.style-seven .image {
  text-align: center;
  padding-right: 10px;
}

.ea-single-pricing-item.style-seven .image .price {
  display: block;
  margin-top: 20px;
  font-size: 17px;
  font-weight: 500;
}

.ea-single-pricing-item.style-seven .image .price span {
  color: #3203c9;
  font-size: 35px;
  font-weight: 600;
}

.ea-single-pricing-item.style-seven .content {
  padding-left: 10px;
}

.ea-single-pricing-item.style-seven .content h3 {
  margin-bottom: 18px;
  font-size: 26px;
  font-weight: 700;
}

.ea-single-pricing-item.style-seven .content .features-list {
  padding-left: 0;
  margin-bottom: 20px;
  list-style-type: none;
}

.ea-single-pricing-item.style-seven .content .features-list li {
  margin-bottom: 12px;
  color: var(--blackColor);
}

.ea-single-pricing-item.style-seven .content .features-list li:last-child {
  margin-bottom: 0;
}

.ea-single-pricing-item.style-seven .content .link-btn {
  background: -webkit-gradient(linear, left top, right top, from(#434343), color-stop(#333333), color-stop(#242424), color-stop(#161616), to(#000000));
  background: linear-gradient(to right, #434343, #333333, #242424, #161616, #000000);
  color: var(--whiteColor);
  display: inline-block;
  padding: 12px 45px;
  border-radius: 5px;
  margin-top: 5px;
  font-size: 16px;
  font-weight: 500;
}

.ea-single-pricing-item.style-seven .content .link-btn:hover {
  color: var(--whiteColor);
  background-color: var(--blackColor);
}

.ea-single-pricing-box {
  padding: 30px;
  margin-bottom: 30px;
  background-color: var(--whiteColor);
  text-align: center;
  border-radius: 5px;
}

.ea-single-pricing-box .icon {
  margin-bottom: 25px;
  display: inline-block;
  position: relative;
}

.ea-single-pricing-box .icon i {
  position: absolute;
  left: 0;
  right: 0;
  top: 60%;
  color: var(--mainColor);
  -webkit-transform: translateY(-60%);
          transform: translateY(-60%);
  text-shadow: 2px 4px #caebce;
  font-size: 70px;
}

.ea-single-pricing-box .pricing-header {
  background-color: #f7f7ff;
  padding: 15px;
  margin-bottom: 25px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.ea-single-pricing-box .pricing-header h3 {
  margin-bottom: 12px;
  font-size: 20px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.ea-single-pricing-box .pricing-header .price {
  display: block;
  line-height: 1;
  color: var(--mainColor);
  -webkit-transition: var(--transition);
  transition: var(--transition);
  font-family: var(--headingFontFamily);
  font-size: 30px;
  font-weight: 700;
}

.ea-single-pricing-box .features-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.ea-single-pricing-box .features-list li {
  display: block;
  margin-bottom: 12px;
  color: var(--optionalColor);
  font-size: 15px;
  font-weight: 500;
}

.ea-single-pricing-box .features-list li span {
  display: inline-block;
  position: relative;
  padding-left: 25px;
}

.ea-single-pricing-box .features-list li span i {
  position: absolute;
  left: 0;
  top: -1px;
  line-height: 1;
  font-size: 22px;
}

.ea-single-pricing-box .features-list li:last-child {
  margin-bottom: 0;
}

.ea-single-pricing-box .features-list li.hot {
  color: var(--mainColor);
}

.ea-single-pricing-box .default-btn {
  margin-top: 25px;
  padding-left: 40px;
  padding-right: 40px;
}

.ea-single-pricing-box:hover .pricing-header {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}

.ea-single-pricing-box:hover .pricing-header h3 {
  color: var(--whiteColor);
}

.ea-single-pricing-box:hover .pricing-header .price {
  color: var(--whiteColor);
}

.divider {
  width: 100%;
  height: 100px;
  position: absolute;
  pointer-events: none;
  -webkit-mask-image: url("data:image/svg+xml;utf8,%3csvg viewBox='0 0 100 100' width='100%' height='100%' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'%3e%3cpath d='M0,0 C16.6666667,66 33.3333333,98 50,98 C66.6666667,98 83.3333333,66 100,0 L100,100 L0,100 L0,0 Z' fill='%23fff'/%3e%3c/svg%3e");
  mask-image: url("data:image/svg+xml;utf8,%3csvg viewBox='0 0 100 100' width='100%' height='100%' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'%3e%3cpath d='M0,0 C16.6666667,66 33.3333333,98 50,98 C66.6666667,98 83.3333333,66 100,0 L100,100 L0,100 L0,0 Z' fill='%23fff'/%3e%3c/svg%3e");
  background: var(--whiteColor);
  -webkit-mask-size: 100% 101%;
  mask-size: 100% 101%;
  z-index: -1;
  bottom: 0;
  left: 0;
}

/*================================================
Timeline Area CSS
=================================================*/
.ea-timeline-area.bg-shape {
  position: relative;
  z-index: 1;
}

.ea-timeline-area.bg-shape::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -100px;
  height: 100px;
  z-index: -1;
  background-image: url(../images/shape4.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.ea-timeline-area.bg-gradient-color {
  background: -webkit-gradient(linear, left bottom, right top, from(#e3fdf5), color-stop(#dbfaff), color-stop(#dff5ff), color-stop(#eeeeff), to(#ffe6fa));
  background: linear-gradient(to right top, #e3fdf5, #dbfaff, #dff5ff, #eeeeff, #ffe6fa);
}

.ea-timeline-area.bg-gradient-color2 {
  background: -webkit-gradient(linear, right top, left top, from(#ac32e4), color-stop(#9c24ea), color-stop(#8817f1), color-stop(#6f09f8), to(#4801ff));
  background: linear-gradient(to left, #ac32e4, #9c24ea, #8817f1, #6f09f8, #4801ff);
}

.ea-timeline-area.bg-gradient-color2 .section-title h2 {
  color: var(--whiteColor);
}

.ea-timeline-area.bg-gradient-color2 .section-title p {
  color: var(--whiteColor);
  opacity: 0.9;
}

.ea-timeline.style-one {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.ea-timeline.style-one .ea-timeline-item {
  padding-bottom: 30px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.ea-timeline.style-one .ea-timeline-item::before {
  top: 0;
  left: 50%;
  width: 2px;
  content: '';
  height: 100%;
  position: absolute;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #dfdfdf;
}

.ea-timeline.style-one .ea-timeline-item .ea-timeline-content {
  border: 1px solid #dfdfdf;
  border-radius: 5px;
  padding: 30px;
}

.ea-timeline.style-one .ea-timeline-item .ea-timeline-content .ea-timeline-title {
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 600;
}

.ea-timeline.style-one .ea-timeline-item .ea-timeline-info span {
  display: block;
  font-size: 16px;
  margin-top: 50px;
  color: var(--optionalColor);
}

.ea-timeline.style-one .ea-timeline-item .ea-timeline-marker {
  left: 50%;
  top: 50px;
  width: 25px;
  height: 25px;
  position: absolute;
  border-radius: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border: 1px solid #850f81;
  background-color: var(--whiteColor);
}

.ea-timeline.style-one .ea-timeline-item .ea-timeline-marker::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: '';
  margin: 2px;
  border-radius: 50%;
  position: absolute;
  background-color: #850f81;
}

.ea-timeline.style-one .ea-timeline-item:nth-child(even) .ea-timeline-content {
  width: 47%;
  float: right;
  text-align: start;
}

.ea-timeline.style-one .ea-timeline-item:nth-child(even) .ea-timeline-info {
  width: 47%;
  float: left;
  text-align: end;
}

.ea-timeline.style-one .ea-timeline-item:nth-child(odd) .ea-timeline-content {
  width: 47%;
  float: left;
  text-align: end;
}

.ea-timeline.style-one .ea-timeline-item:nth-child(odd) .ea-timeline-info {
  width: 47%;
  float: right;
  text-align: start;
}

.ea-timeline.style-one .ea-timeline-item:nth-child(2) .ea-timeline-marker, .ea-timeline.style-one .ea-timeline-item:nth-child(5) .ea-timeline-marker {
  border-color: #0170ed;
}

.ea-timeline.style-one .ea-timeline-item:nth-child(2) .ea-timeline-marker::before, .ea-timeline.style-one .ea-timeline-item:nth-child(5) .ea-timeline-marker::before {
  background-color: #0170ed;
}

.ea-timeline.style-one .ea-timeline-item:nth-child(3) .ea-timeline-marker, .ea-timeline.style-one .ea-timeline-item:nth-child(6) .ea-timeline-marker {
  border-color: #e872dc;
}

.ea-timeline.style-one .ea-timeline-item:nth-child(3) .ea-timeline-marker::before, .ea-timeline.style-one .ea-timeline-item:nth-child(6) .ea-timeline-marker::before {
  background-color: #e872dc;
}

.ea-timeline.style-one .ea-timeline-item:last-child {
  padding-bottom: 0;
}

.ea-timeline.style-two {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.ea-timeline.style-two .ea-timeline-item {
  padding-bottom: 30px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.ea-timeline.style-two .ea-timeline-item::before {
  top: 0;
  left: 50%;
  width: 2px;
  content: '';
  height: 100%;
  position: absolute;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #dfdfdf;
}

.ea-timeline.style-two .ea-timeline-item .ea-timeline-content {
  background-color: var(--whiteColor);
  border: 1px solid #dfdfdf;
  border-radius: 5px;
  position: relative;
  padding: 30px;
}

.ea-timeline.style-two .ea-timeline-item .ea-timeline-content .ea-timeline-title {
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 600;
}

.ea-timeline.style-two .ea-timeline-item .ea-timeline-content::before {
  top: 48px;
  content: '';
  width: 25px;
  height: 25px;
  right: -13px;
  position: absolute;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  border: 1px solid #dfdfdf;
  background-color: var(--whiteColor);
  border-left: none;
  border-bottom: none;
}

.ea-timeline.style-two .ea-timeline-item .ea-timeline-info span {
  display: block;
  font-size: 16px;
  margin-top: 50px;
  color: var(--optionalColor);
}

.ea-timeline.style-two .ea-timeline-item .ea-timeline-marker {
  left: 50%;
  top: 50px;
  width: 25px;
  height: 25px;
  position: absolute;
  border-radius: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border: 1px solid #850f81;
  background-color: var(--whiteColor);
}

.ea-timeline.style-two .ea-timeline-item .ea-timeline-marker::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: '';
  margin: 2px;
  border-radius: 50%;
  position: absolute;
  background-color: #850f81;
}

.ea-timeline.style-two .ea-timeline-item:nth-child(even) .ea-timeline-content {
  width: 45%;
  float: right;
  text-align: start;
}

.ea-timeline.style-two .ea-timeline-item:nth-child(even) .ea-timeline-content::before {
  right: auto;
  left: -13px;
  border: 1px solid #dfdfdf;
  border-right: none;
  border-top: none;
}

.ea-timeline.style-two .ea-timeline-item:nth-child(even) .ea-timeline-info {
  width: 45%;
  float: left;
  text-align: end;
}

.ea-timeline.style-two .ea-timeline-item:nth-child(odd) .ea-timeline-content {
  width: 45%;
  float: left;
  text-align: end;
}

.ea-timeline.style-two .ea-timeline-item:nth-child(odd) .ea-timeline-info {
  width: 45%;
  float: right;
  text-align: start;
}

.ea-timeline.style-two .ea-timeline-item:nth-child(2) .ea-timeline-marker, .ea-timeline.style-two .ea-timeline-item:nth-child(5) .ea-timeline-marker {
  border-color: #0170ed;
}

.ea-timeline.style-two .ea-timeline-item:nth-child(2) .ea-timeline-marker::before, .ea-timeline.style-two .ea-timeline-item:nth-child(5) .ea-timeline-marker::before {
  background-color: #0170ed;
}

.ea-timeline.style-two .ea-timeline-item:nth-child(3) .ea-timeline-marker, .ea-timeline.style-two .ea-timeline-item:nth-child(6) .ea-timeline-marker {
  border-color: #e872dc;
}

.ea-timeline.style-two .ea-timeline-item:nth-child(3) .ea-timeline-marker::before, .ea-timeline.style-two .ea-timeline-item:nth-child(6) .ea-timeline-marker::before {
  background-color: #e872dc;
}

.ea-timeline.style-two .ea-timeline-item:last-child {
  padding-bottom: 0;
}

.ea-timeline.style-three {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
  text-align: center;
}

.ea-timeline.style-three .ea-timeline-item {
  position: relative;
  padding-top: 85px;
  padding-left: 15px;
  padding-right: 15px;
}

.ea-timeline.style-three .ea-timeline-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 58px;
  width: 100%;
  height: 2px;
  background-color: #dfdfdf;
}

.ea-timeline.style-three .ea-timeline-item::after {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 1px solid #dfdfdf;
  content: '';
  position: absolute;
  left: 0;
  top: 51px;
  right: 0;
  background-color: var(--whiteColor);
  margin-left: auto;
  margin-right: auto;
}

.ea-timeline.style-three .ea-timeline-item .icon {
  line-height: 1;
  position: absolute;
  left: 0;
  right: 0;
  top: -2px;
  z-index: 1;
  background: -webkit-gradient(linear, left top, right top, from(#6a11cb), color-stop(#5c38db), color-stop(#4c4fe8), color-stop(#3963f3), to(#2575fc));
  background: linear-gradient(to right, #6a11cb, #5c38db, #4c4fe8, #3963f3, #2575fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 40px;
  margin-left: auto;
  margin-right: auto;
}

.ea-timeline.style-three .ea-timeline-item h3 {
  margin-bottom: 12px;
  background: -webkit-gradient(linear, left top, right top, from(#6a11cb), color-stop(#5c38db), color-stop(#4c4fe8), color-stop(#3963f3), to(#2575fc));
  background: linear-gradient(to right, #6a11cb, #5c38db, #4c4fe8, #3963f3, #2575fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 20px;
  font-weight: 600;
}

.ea-timeline.style-three .ea-timeline-item:nth-child(2) .icon {
  background: -webkit-gradient(linear, left top, right top, from(#00c6fb), color-stop(#00affe), color-stop(#0097ff), color-stop(#007bf9), to(#005bea));
  background: linear-gradient(to right, #00c6fb, #00affe, #0097ff, #007bf9, #005bea);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ea-timeline.style-three .ea-timeline-item:nth-child(2) h3 {
  background: -webkit-gradient(linear, left top, right top, from(#00c6fb), color-stop(#00affe), color-stop(#0097ff), color-stop(#007bf9), to(#005bea));
  background: linear-gradient(to right, #00c6fb, #00affe, #0097ff, #007bf9, #005bea);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ea-timeline.style-three .ea-timeline-item:nth-child(3) .icon {
  background: -webkit-gradient(linear, left top, right top, from(#f43b47), color-stop(#de1c68), color-stop(#b92083), color-stop(#863092), to(#453a94));
  background: linear-gradient(to right, #f43b47, #de1c68, #b92083, #863092, #453a94);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ea-timeline.style-three .ea-timeline-item:nth-child(3) h3 {
  background: -webkit-gradient(linear, left top, right top, from(#f43b47), color-stop(#de1c68), color-stop(#b92083), color-stop(#863092), to(#453a94));
  background: linear-gradient(to right, #f43b47, #de1c68, #b92083, #863092, #453a94);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ea-timeline.style-three .ea-timeline-item:nth-child(4) .icon {
  background: -webkit-gradient(linear, left top, right top, from(#f77062), color-stop(#fc676d), color-stop(#ff5e79), color-stop(#ff5787), to(#fe5196));
  background: linear-gradient(to right, #f77062, #fc676d, #ff5e79, #ff5787, #fe5196);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ea-timeline.style-three .ea-timeline-item:nth-child(4) h3 {
  background: -webkit-gradient(linear, left top, right top, from(#f77062), color-stop(#fc676d), color-stop(#ff5e79), color-stop(#ff5787), to(#fe5196));
  background: linear-gradient(to right, #f77062, #fc676d, #ff5e79, #ff5787, #fe5196);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ea-timeline.style-three .ea-timeline-item:nth-child(5) .icon {
  background: -webkit-gradient(linear, left top, right top, from(#cc208e), color-stop(#c0009c), color-stop(#ae00ad), color-stop(#9200bf), to(#6713d2));
  background: linear-gradient(to right, #cc208e, #c0009c, #ae00ad, #9200bf, #6713d2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ea-timeline.style-three .ea-timeline-item:nth-child(5) h3 {
  background: -webkit-gradient(linear, left top, right top, from(#cc208e), color-stop(#c0009c), color-stop(#ae00ad), color-stop(#9200bf), to(#6713d2));
  background: linear-gradient(to right, #cc208e, #c0009c, #ae00ad, #9200bf, #6713d2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ea-timeline.style-four {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.ea-timeline.style-four .ea-timeline-item {
  padding-bottom: 30px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.ea-timeline.style-four .ea-timeline-item .ea-timeline-content {
  background-color: var(--whiteColor);
  border-radius: 5px;
  padding: 30px;
}

.ea-timeline.style-four .ea-timeline-item .ea-timeline-content .ea-timeline-title {
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 600;
}

.ea-timeline.style-four .ea-timeline-item .ea-timeline-info span {
  display: block;
  font-size: 16px;
  margin-top: 51px;
  color: var(--blackColor);
}

.ea-timeline.style-four .ea-timeline-item .ea-timeline-marker {
  left: 50%;
  top: 50px;
  width: 25px;
  height: 25px;
  position: absolute;
  border-radius: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border: 1px solid #850f81;
  background-color: var(--whiteColor);
}

.ea-timeline.style-four .ea-timeline-item .ea-timeline-marker::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: '';
  margin: 2px;
  border-radius: 50%;
  position: absolute;
  background-color: #850f81;
}

.ea-timeline.style-four .ea-timeline-item:nth-child(even) .ea-timeline-content {
  width: 46%;
  float: right;
  text-align: start;
}

.ea-timeline.style-four .ea-timeline-item:nth-child(even) .ea-timeline-info {
  width: 46%;
  float: left;
  text-align: end;
}

.ea-timeline.style-four .ea-timeline-item:nth-child(odd) .ea-timeline-content {
  width: 46%;
  float: left;
  text-align: end;
}

.ea-timeline.style-four .ea-timeline-item:nth-child(odd) .ea-timeline-info {
  width: 46%;
  float: right;
  text-align: start;
}

.ea-timeline.style-four .ea-timeline-item:nth-child(2) .ea-timeline-marker, .ea-timeline.style-four .ea-timeline-item:nth-child(5) .ea-timeline-marker {
  border-color: #0170ed;
}

.ea-timeline.style-four .ea-timeline-item:nth-child(2) .ea-timeline-marker::before, .ea-timeline.style-four .ea-timeline-item:nth-child(5) .ea-timeline-marker::before {
  background-color: #0170ed;
}

.ea-timeline.style-four .ea-timeline-item:nth-child(3) .ea-timeline-marker, .ea-timeline.style-four .ea-timeline-item:nth-child(6) .ea-timeline-marker {
  border-color: #e872dc;
}

.ea-timeline.style-four .ea-timeline-item:nth-child(3) .ea-timeline-marker::before, .ea-timeline.style-four .ea-timeline-item:nth-child(6) .ea-timeline-marker::before {
  background-color: #e872dc;
}

.ea-timeline.style-four .ea-timeline-item:last-child {
  padding-bottom: 0;
}

.ea-timeline.style-five {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.ea-timeline.style-five .ea-timeline-item {
  padding-bottom: 30px;
  position: relative;
  margin-left: 180px;
}

.ea-timeline.style-five .ea-timeline-item .ea-timeline-info {
  position: absolute;
  left: -180px;
  top: 50px;
  font-size: 15px;
  color: var(--optionalColor);
}

.ea-timeline.style-five .ea-timeline-item .ea-timeline-marker {
  left: -50px;
  top: 48px;
  width: 25px;
  height: 25px;
  position: absolute;
  border-radius: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border: 1px solid #850f81;
  background-color: var(--whiteColor);
}

.ea-timeline.style-five .ea-timeline-item .ea-timeline-marker::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: '';
  margin: 2px;
  border-radius: 50%;
  position: absolute;
  background: -webkit-gradient(linear, left bottom, left top, from(#cc208e), color-stop(#c0009c), color-stop(#ae00ad), color-stop(#9200bf), to(#6713d2));
  background: linear-gradient(to top, #cc208e, #c0009c, #ae00ad, #9200bf, #6713d2);
}

.ea-timeline.style-five .ea-timeline-item .ea-timeline-content {
  background: -webkit-gradient(linear, left bottom, left top, from(#cc208e), color-stop(#c0009c), color-stop(#ae00ad), color-stop(#9200bf), to(#6713d2));
  background: linear-gradient(to top, #cc208e, #c0009c, #ae00ad, #9200bf, #6713d2);
  padding: 30px;
  border-radius: 5px;
}

.ea-timeline.style-five .ea-timeline-item .ea-timeline-content h3 {
  margin-bottom: 12px;
  color: var(--whiteColor);
  font-size: 20px;
  font-weight: 700;
}

.ea-timeline.style-five .ea-timeline-item .ea-timeline-content p {
  color: var(--whiteColor);
  opacity: 0.9;
}

.ea-timeline.style-five .ea-timeline-item:last-child {
  padding-bottom: 0;
}

.ea-timeline.style-five .ea-timeline-item:nth-child(2) .ea-timeline-marker, .ea-timeline.style-five .ea-timeline-item:nth-child(5) .ea-timeline-marker {
  border-color: #FF9944;
}

.ea-timeline.style-five .ea-timeline-item:nth-child(2) .ea-timeline-marker::before, .ea-timeline.style-five .ea-timeline-item:nth-child(5) .ea-timeline-marker::before {
  background: -webkit-gradient(linear, left top, left bottom, from(#fc6076), color-stop(#ff6c68), color-stop(#ff7a5b), color-stop(#ff894f), to(#ff9944));
  background: linear-gradient(to bottom, #fc6076, #ff6c68, #ff7a5b, #ff894f, #ff9944);
}

.ea-timeline.style-five .ea-timeline-item:nth-child(2) .ea-timeline-content, .ea-timeline.style-five .ea-timeline-item:nth-child(5) .ea-timeline-content {
  background: -webkit-gradient(linear, left top, left bottom, from(#fc6076), color-stop(#ff6c68), color-stop(#ff7a5b), color-stop(#ff894f), to(#ff9944));
  background: linear-gradient(to bottom, #fc6076, #ff6c68, #ff7a5b, #ff894f, #ff9944);
}

.ea-timeline.style-five .ea-timeline-item:nth-child(3) .ea-timeline-marker, .ea-timeline.style-five .ea-timeline-item:nth-child(6) .ea-timeline-marker {
  border-color: #007bf9;
}

.ea-timeline.style-five .ea-timeline-item:nth-child(3) .ea-timeline-marker::before, .ea-timeline.style-five .ea-timeline-item:nth-child(6) .ea-timeline-marker::before {
  background: -webkit-gradient(linear, left bottom, left top, from(#00c6fb), color-stop(#00affe), color-stop(#0097ff), color-stop(#007bf9), to(#005bea));
  background: linear-gradient(to top, #00c6fb, #00affe, #0097ff, #007bf9, #005bea);
}

.ea-timeline.style-five .ea-timeline-item:nth-child(3) .ea-timeline-content, .ea-timeline.style-five .ea-timeline-item:nth-child(6) .ea-timeline-content {
  background: -webkit-gradient(linear, left bottom, left top, from(#00c6fb), color-stop(#00affe), color-stop(#0097ff), color-stop(#007bf9), to(#005bea));
  background: linear-gradient(to top, #00c6fb, #00affe, #0097ff, #007bf9, #005bea);
}

.ea-timeline.style-six {
  text-align: end;
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.ea-timeline.style-six .ea-timeline-item {
  padding-bottom: 30px;
  position: relative;
  margin-right: 180px;
}

.ea-timeline.style-six .ea-timeline-item::before {
  top: 0;
  width: 1px;
  content: '';
  height: 100%;
  right: -50px;
  position: absolute;
  background-color: var(--whiteColor);
}

.ea-timeline.style-six .ea-timeline-item .ea-timeline-info {
  position: absolute;
  right: -180px;
  top: 50px;
  font-size: 15px;
  color: var(--whiteColor);
}

.ea-timeline.style-six .ea-timeline-item .ea-timeline-marker {
  right: -75px;
  top: 48px;
  width: 25px;
  height: 25px;
  z-index: 1;
  position: absolute;
  border-radius: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border: 1px solid var(--whiteColor);
}

.ea-timeline.style-six .ea-timeline-item .ea-timeline-marker::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: '';
  margin: 2px;
  border-radius: 50%;
  position: absolute;
  background: var(--whiteColor);
}

.ea-timeline.style-six .ea-timeline-item .ea-timeline-content {
  background: var(--whiteColor);
  padding: 30px;
  border-radius: 5px;
}

.ea-timeline.style-six .ea-timeline-item .ea-timeline-content h3 {
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 700;
}

.ea-timeline.style-six .ea-timeline-item:last-child {
  padding-bottom: 0;
}

.ea-timeline.style-seven {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.ea-timeline.style-seven .ea-timeline-item {
  padding-bottom: 30px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.ea-timeline.style-seven .ea-timeline-item .ea-timeline-content {
  background: -webkit-gradient(linear, left bottom, left top, from(#d70a84), color-stop(#b90087), color-stop(#990287), color-stop(#760b84), to(#51127f));
  background: linear-gradient(to top, #d70a84, #b90087, #990287, #760b84, #51127f);
  border-radius: 5px;
  padding: 30px;
}

.ea-timeline.style-seven .ea-timeline-item .ea-timeline-content .ea-timeline-title {
  margin-bottom: 12px;
  color: var(--whiteColor);
  font-size: 20px;
  font-weight: 600;
}

.ea-timeline.style-seven .ea-timeline-item .ea-timeline-content p {
  color: var(--whiteColor);
  opacity: 0.9;
}

.ea-timeline.style-seven .ea-timeline-item .ea-timeline-info span {
  display: block;
  font-size: 16px;
  margin-top: 51px;
  color: var(--blackColor);
}

.ea-timeline.style-seven .ea-timeline-item .ea-timeline-marker {
  left: 50%;
  top: 50px;
  width: 25px;
  height: 25px;
  position: absolute;
  border-radius: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border: 1px solid #850f81;
  background-color: var(--whiteColor);
}

.ea-timeline.style-seven .ea-timeline-item .ea-timeline-marker::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: '';
  margin: 2px;
  border-radius: 50%;
  position: absolute;
  background: -webkit-gradient(linear, left bottom, left top, from(#d70a84), color-stop(#b90087), color-stop(#990287), color-stop(#760b84), to(#51127f));
  background: linear-gradient(to top, #d70a84, #b90087, #990287, #760b84, #51127f);
}

.ea-timeline.style-seven .ea-timeline-item:nth-child(even) .ea-timeline-content {
  width: 46%;
  float: right;
  text-align: start;
}

.ea-timeline.style-seven .ea-timeline-item:nth-child(even) .ea-timeline-info {
  width: 46%;
  float: left;
  text-align: end;
}

.ea-timeline.style-seven .ea-timeline-item:nth-child(odd) .ea-timeline-content {
  width: 46%;
  float: left;
  text-align: end;
}

.ea-timeline.style-seven .ea-timeline-item:nth-child(odd) .ea-timeline-info {
  width: 46%;
  float: right;
  text-align: start;
}

.ea-timeline.style-seven .ea-timeline-item:nth-child(2) .ea-timeline-marker, .ea-timeline.style-seven .ea-timeline-item:nth-child(5) .ea-timeline-marker {
  border-color: #0170ed;
}

.ea-timeline.style-seven .ea-timeline-item:nth-child(2) .ea-timeline-marker::before, .ea-timeline.style-seven .ea-timeline-item:nth-child(5) .ea-timeline-marker::before {
  background: -webkit-gradient(linear, left bottom, left top, from(#015eea), color-stop(#007bf7), color-stop(#0094fc), color-stop(#00abfd), to(#00c0fa));
  background: linear-gradient(to top, #015eea, #007bf7, #0094fc, #00abfd, #00c0fa);
}

.ea-timeline.style-seven .ea-timeline-item:nth-child(2) .ea-timeline-content, .ea-timeline.style-seven .ea-timeline-item:nth-child(5) .ea-timeline-content {
  background: -webkit-gradient(linear, left bottom, left top, from(#015eea), color-stop(#007bf7), color-stop(#0094fc), color-stop(#00abfd), to(#00c0fa));
  background: linear-gradient(to top, #015eea, #007bf7, #0094fc, #00abfd, #00c0fa);
}

.ea-timeline.style-seven .ea-timeline-item:nth-child(3) .ea-timeline-marker, .ea-timeline.style-seven .ea-timeline-item:nth-child(6) .ea-timeline-marker {
  border-color: #ffb41d;
}

.ea-timeline.style-seven .ea-timeline-item:nth-child(3) .ea-timeline-marker::before, .ea-timeline.style-seven .ea-timeline-item:nth-child(6) .ea-timeline-marker::before {
  background: -webkit-gradient(linear, left top, right top, from(#f9d423), color-stop(#ffb41d), color-stop(#ff932b), color-stop(#ff713e), to(#ff4e50));
  background: linear-gradient(to right, #f9d423, #ffb41d, #ff932b, #ff713e, #ff4e50);
}

.ea-timeline.style-seven .ea-timeline-item:nth-child(3) .ea-timeline-content, .ea-timeline.style-seven .ea-timeline-item:nth-child(6) .ea-timeline-content {
  background: -webkit-gradient(linear, left top, right top, from(#f9d423), color-stop(#ffb41d), color-stop(#ff932b), color-stop(#ff713e), to(#ff4e50));
  background: linear-gradient(to right, #f9d423, #ffb41d, #ff932b, #ff713e, #ff4e50);
}

.ea-timeline.style-seven .ea-timeline-item:last-child {
  padding-bottom: 0;
}

/*================================================
Team Area CSS
=================================================*/
.ea-team-member-area.bg-shape {
  position: relative;
  z-index: 1;
}

.ea-team-member-area.bg-shape::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -100px;
  height: 100px;
  z-index: -1;
  background-image: url(../images/shape4.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.ea-team-member-area .row .col-lg-5:nth-child(1) .ea-single-team-box.style-three {
  margin-top: 30px;
}

.ea-team-member-area .row .col-lg-5:nth-child(4) .ea-single-team-box.style-three {
  margin-top: -30px;
}

.ea-team-member-area.bg-gradient-color {
  background: -webkit-gradient(linear, left top, right bottom, from(#fffefe), color-stop(#fffbf6), color-stop(#fcfbee), color-stop(#eafeef), to(#d7fffe));
  background: linear-gradient(to right bottom, #fffefe, #fffbf6, #fcfbee, #eafeef, #d7fffe);
}

.ea-single-team-box.style-one {
  margin-bottom: 30px;
  text-align: center;
}

.ea-single-team-box.style-one .image {
  position: relative;
  border-radius: 50%;
}

.ea-single-team-box.style-one .image img {
  border-radius: 50% 50% 15px 50%;
}

.ea-single-team-box.style-one .image .share-btn {
  right: 0;
  bottom: 0;
  width: 35px;
  height: 35px;
  font-size: 18px;
  cursor: pointer;
  position: absolute;
  border-radius: 50%;
  display: inline-block;
  color: var(--whiteColor);
  background-color: #1a2238;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.ea-single-team-box.style-one .image .share-btn i {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin-left: -3px;
}

.ea-single-team-box.style-one .image .social {
  position: absolute;
  right: 40px;
  bottom: -7px;
  padding-left: 0;
  margin-bottom: 0;
  opacity: 0;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  visibility: hidden;
  list-style-type: none;
}

.ea-single-team-box.style-one .image .social li {
  display: inline-block;
}

.ea-single-team-box.style-one .image .social li a {
  width: 35px;
  height: 35px;
  display: block;
  font-size: 16px;
  position: relative;
  border-radius: 50%;
  color: var(--whiteColor);
  background-color: var(--optionalColor);
}

.ea-single-team-box.style-one .image .social li a i {
  left: 0;
  top: 50%;
  right: 0;
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.ea-single-team-box.style-one .image .social li a.linkedin {
  background-color: #2867B2;
}

.ea-single-team-box.style-one .image .social li a.facebook {
  background-color: #4267B2;
}

.ea-single-team-box.style-one .image .social li a.twitter {
  background-color: #1DA1F2;
}

.ea-single-team-box.style-one .image .social li a.instagram {
  background: -webkit-gradient(linear, left top, right top, from(#ff3019), to(#c90477));
  background: linear-gradient(to right, #ff3019 0%, #c90477 100%);
}

.ea-single-team-box.style-one .content {
  margin-top: 25px;
}

.ea-single-team-box.style-one .content h3 {
  margin-bottom: 9px;
  font-size: 20px;
  font-weight: 700;
}

.ea-single-team-box.style-one .content span {
  display: block;
  color: #e01a33;
  font-size: 15px;
}

.ea-single-team-box.style-one:hover .share-btn {
  color: var(--whiteColor);
  background-color: #e01a33;
}

.ea-single-team-box.style-one:hover .image .social {
  opacity: 1;
  visibility: visible;
}

.ea-single-team-box.style-two {
  padding-bottom: 30px;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
}

@media only screen and (max-width: 1199px) {
  .ea-single-team-box.style-two {
    padding-bottom: 40px;
  } 
}

.ea-single-team-box.style-two .name {
  left: 0;
  top: 80%;
  z-index: 2;
  position: absolute;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  -webkit-transform: translateY(-80%) rotate(-90deg);
          transform: translateY(-80%) rotate(-90deg);
}

.ea-single-team-box.style-two .name h3 {
  margin-bottom: 0;
  text-transform: uppercase;
  text-shadow: 1px 1px var(--whiteColor), -1px 1px var(--whiteColor), 1px -1px var(--whiteColor), -1px -1px var(--whiteColor), 1px 1px 5px var(--blackColor);
  font-size: 30px;
  font-weight: 600;
}

.ea-single-team-box.style-two span {
  right: 0;
  z-index: 2;
  bottom: 45px;
  display: block;
  color: #8f3f38;
  position: absolute;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 500;
}

.ea-single-team-box.style-two .social {
  right: 0;
  bottom: 0;
  z-index: 2;
  padding-left: 0;
  margin-bottom: 0;
  position: absolute;
  list-style-type: none;
}

.ea-single-team-box.style-two .social li {
  display: inline-block;
  margin-left: 2px;
}

.ea-single-team-box.style-two .social li a {
  width: 30px;
  height: 30px;
  display: block;
  font-size: 20px;
  color: #b48a83;
  line-height: 35px;
  border-radius: 3px;
  background-color: #f7ebe9;
}

.ea-single-team-box.style-two .social li a:hover {
  background-color: #b48a83;
  color: var(--whiteColor);
}

.ea-single-team-box.style-two .social li:first-child {
  margin-left: 0;
}

.ea-single-team-box.style-three {
  margin-bottom: 30px;
  position: relative;
}

.ea-single-team-box.style-three img {
  padding-left: 45px;
}

.ea-single-team-box.style-three .link-btn {
  position: absolute;
  bottom: 30px;
  left: 0;
  padding: 12px 60px 12px 25px;
  z-index: 1;
  background-color: transparent;
  color: var(--blackColor);
  -webkit-transition: var(--transition);
  transition: var(--transition);
  font-size: 15px;
  font-weight: 500;
}

.ea-single-team-box.style-three .link-btn::before {
  content: '';
  position: absolute;
  right: 23px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #384656;
  width: 30px;
  height: 1px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.ea-single-team-box.style-three .link-btn::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#00e4ff), color-stop(#00eef2), color-stop(#00f6dc), color-stop(#15fbbc), to(#69ff97));
  background: linear-gradient(to bottom, #00e4ff, #00eef2, #00f6dc, #15fbbc, #69ff97);
  z-index: -1;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.ea-single-team-box.style-three .link-btn:hover {
  color: var(--whiteColor);
  background-color: #384656;
}

.ea-single-team-box.style-three .link-btn:hover::before {
  background-color: var(--whiteColor);
}

.ea-single-team-box.style-three .link-btn:hover::after {
  opacity: 0;
  visibility: hidden;
}

.ea-single-team-box.style-three h3 {
  left: 5px;
  bottom: 85px;
  margin-bottom: 0;
  position: absolute;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  font-size: 22px;
  font-weight: 700;
}

.ea-single-team-box.style-four {
  text-align: center;
  margin-bottom: 30px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.ea-single-team-box.style-four .image {
  position: relative;
  overflow: hidden;
}

.ea-single-team-box.style-four .image img {
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.ea-single-team-box.style-four .image .social {
  padding-left: 0;
  list-style-type: none;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin-bottom: 0;
}

.ea-single-team-box.style-four .image .social li {
  display: inline-block;
  margin-left: 1px;
  margin-right: 1px;
}

.ea-single-team-box.style-four .image .social li a {
  display: block;
  background-color: var(--blackColor);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  line-height: 37px;
  color: var(--whiteColor);
}

.ea-single-team-box.style-four .image .social li a:hover {
  background-color: #e01a33;
  border-color: #e01a33;
  color: var(--whiteColor);
}

.ea-single-team-box.style-four .content {
  margin-top: 20px;
}

.ea-single-team-box.style-four .content h3 {
  margin-bottom: 7px;
  font-size: 20px;
  font-weight: 700;
}

.ea-single-team-box.style-four .content span {
  color: var(--optionalColor);
  font-size: 15px;
}

.ea-single-team-box.style-four:hover .image img {
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
}

.ea-single-team-box.style-four:hover .image .social {
  opacity: 1;
  visibility: visible;
  bottom: 20px;
}

.ea-single-team-box.style-five {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
}

.ea-single-team-box.style-five .content {
  background-color: #f9f9f9;
  text-align: left;
  padding: 25px 25px 15px;
  position: relative;
}

.ea-single-team-box.style-five .content h3 {
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 700;
}

.ea-single-team-box.style-five .content span {
  display: block;
  color: #fe4c1c;
  font-size: 15px;
}

.ea-single-team-box.style-five .content i {
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  background-color: #fe4c1c;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  color: var(--whiteColor);
  border-radius: 2px;
  position: absolute;
  right: 20px;
  top: -16px;
  display: inline-block;
}

.ea-single-team-box.style-five .image {
  position: relative;
}

.ea-single-team-box.style-five .image .social-link {
  position: absolute;
  right: 20px;
  bottom: 25px;
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.ea-single-team-box.style-five .image .social-link li {
  display: block;
  margin-bottom: 8px;
}

.ea-single-team-box.style-five .image .social-link li:last-child {
  margin-bottom: 0;
}

.ea-single-team-box.style-five .image .social-link li a {
  width: 32px;
  height: 32px;
  text-align: center;
  color: var(--blackColor);
  background-color: var(--whiteColor);
  font-size: 18px;
  position: relative;
  border-radius: 2px;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transition: .4s;
  transition: .4s;
}

.ea-single-team-box.style-five .image .social-link li a i {
  position: absolute;
  left: 0;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-48%);
          transform: translateY(-48%);
}

.ea-single-team-box.style-five .image .social-link li a:hover {
  background-color: #fe4c1c;
  color: var(--whiteColor);
}

.ea-single-team-box.style-five .image .social-link li:nth-child(2) a, .ea-single-team-box.style-five .image .social-link li:nth-child(4) a, .ea-single-team-box.style-five .image .social-link li:nth-child(6) a, .ea-single-team-box.style-five .image .social-link li:nth-child(8) a {
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}

.ea-single-team-box.style-five:hover .content i {
  background-color: var(--blackColor);
  color: var(--whiteColor);
}

.ea-single-team-box.style-five:hover .image .social-link li a {
  -webkit-transform: scale(1) !important;
          transform: scale(1) !important;
}

.ea-single-team-box.style-six {
  background-color: var(--whiteColor);
  margin-bottom: 30px;
}

.ea-single-team-box.style-six .row {
  margin-left: 0;
  margin-right: 0;
}

.ea-single-team-box.style-six .row .col-lg-4, .ea-single-team-box.style-six .row .col-lg-8 {
  padding-left: 0;
  padding-right: 0;
}

.ea-single-team-box.style-six .advisor-image {
  top: -15px;
  text-align: center;
  border-radius: 5px;
  position: relative;
  margin-bottom: -30px;
}

.ea-single-team-box.style-six .advisor-image img {
  border-radius: 5px;
}

.ea-single-team-box.style-six .advisor-content {
  padding: 30px;
}

.ea-single-team-box.style-six .advisor-content h3 {
  margin-bottom: 8px;
  font-size: 22px;
  font-weight: 700;
}

.ea-single-team-box.style-six .advisor-content .sub-title {
  display: block;
  font-size: 15px;
  color: #fe4a55;
}

.ea-single-team-box.style-six .advisor-content p {
  margin-bottom: 0;
  margin-top: 12px;
}

.ea-single-team-box.style-six .advisor-content .social-link {
  padding-left: 0;
  list-style-type: none;
  margin-top: 20px;
  margin-bottom: 0;
}

.ea-single-team-box.style-six .advisor-content .social-link li {
  display: inline-block;
  margin-right: 3px;
}

.ea-single-team-box.style-six .advisor-content .social-link li:last-child {
  margin-right: 0;
}

.ea-single-team-box.style-six .advisor-content .social-link li a {
  width: 30px;
  height: 30px;
  font-size: 18px;
  position: relative;
  border-radius: 2px;
  text-align: center;
  color: var(--blackColor);
  background-color: #e1e1e1;
}

.ea-single-team-box.style-six .advisor-content .social-link li a i {
  left: 0;
  top: 50%;
  right: 0;
  position: absolute;
  -webkit-transform: translateY(-48%);
          transform: translateY(-48%);
}

.ea-single-team-box.style-six .advisor-content .social-link li a:hover {
  background-color: #fe4a55;
  color: var(--whiteColor);
}

.ea-single-team-box.style-seven {
  text-align: center;
  border-radius: 50% 50% 0 0;
  background-color: #fafafa;
  margin-bottom: 30px;
  margin-right: 10px;
}

.ea-single-team-box.style-seven .image {
  position: relative;
  border-radius: 50%;
}

.ea-single-team-box.style-seven .image img {
  border-radius: 50%;
}

.ea-single-team-box.style-seven .image .social-link {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  right: 5px;
  bottom: 40px;
}

.ea-single-team-box.style-seven .image .social-link li {
  margin-top: 5px;
}

.ea-single-team-box.style-seven .image .social-link li a {
  display: block;
  width: 35px;
  height: 35px;
  text-align: center;
  border-radius: 50%;
  position: relative;
  font-size: 17px;
  color: var(--whiteColor);
  border: 1px solid #f1bfa2;
  background: -webkit-gradient(linear, left bottom, right top, from(#db4b23), color-stop(#e06921), color-stop(#e48425), color-stop(#e59e30), to(#e6b642));
  background: linear-gradient(to right top, #db4b23, #e06921, #e48425, #e59e30, #e6b642);
}

.ea-single-team-box.style-seven .image .social-link li a i {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.ea-single-team-box.style-seven .image .social-link li:first-child {
  margin-top: 0;
}

.ea-single-team-box.style-seven .image .social-link li:nth-child(3) {
  -webkit-transform: translateX(20px);
          transform: translateX(20px);
}

.ea-single-team-box.style-seven .image .social-link li:nth-child(2) {
  -webkit-transform: translateX(20px);
          transform: translateX(20px);
  margin-bottom: 12px;
}

.ea-single-team-box.style-seven .image .social-link li:nth-child(1) {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
  margin-bottom: 10px;
}

.ea-single-team-box.style-seven .content {
  padding: 30px 20px;
}

.ea-single-team-box.style-seven .content h3 {
  margin-bottom: 9px;
  font-size: 20px;
  font-weight: 700;
}

.ea-single-team-box.style-seven .content span {
  display: block;
  color: var(--optionalColor);
}

.ea-single-team-box.style-seven:hover .image .social-link {
  opacity: 1;
  visibility: visible;
}

/*================================================
Testimonial Area CSS
=================================================*/
.ea-testimonial-area.bg-shape {
  position: relative;
  z-index: 1;
}

.ea-testimonial-area.bg-shape::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -100px;
  height: 100px;
  z-index: -1;
  background-image: url(../images/shape4.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.ea-testimonial-area.bg-gradient-color {
  background: -webkit-gradient(linear, left top, right bottom, from(#e1fdf4), color-stop(#d9fbff), color-stop(#def5ff), color-stop(#eeedff), to(#ffe6fa));
  background: linear-gradient(to right bottom, #e1fdf4, #d9fbff, #def5ff, #eeedff, #ffe6fa);
}

.ea-testimonial-area.bg-gradient-color2 {
  background: -webkit-gradient(linear, right bottom, left top, from(#ac32e4), color-stop(#9c24ea), color-stop(#8817f1), color-stop(#6f09f8), to(#4801ff));
  background: linear-gradient(to left top, #ac32e4, #9c24ea, #8817f1, #6f09f8, #4801ff);
}

.ea-testimonial-area.bg-gradient-color2 .section-title h2 {
  color: var(--whiteColor);
}

.ea-testimonial-area.bg-gradient-color2 .section-title p {
  color: var(--whiteColor);
  opacity: 0.9;
}

.ea-single-testimonial-box.style-one {
  margin-left: 100px;
  position: relative;
  z-index: 1;
  padding-top: 100px;
  padding-right: 100px;
  padding-bottom: 100px;
}

.ea-single-testimonial-box.style-one::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  content: '';
  margin-left: 300px;
  position: absolute;
  background-color: #f8fafb;
}

.ea-single-testimonial-box.style-one .image {
  text-align: center;
  padding-right: 50px;
}

.ea-single-testimonial-box.style-one .content {
  z-index: 1;
  position: relative;
  padding-left: 50px;
}

.ea-single-testimonial-box.style-one .content p {
  color: var(--blackColor);
  font-size: 20px;
  font-weight: 500;
}

.ea-single-testimonial-box.style-one .content .client-info {
  position: relative;
  margin-top: 40px;
}

.ea-single-testimonial-box.style-one .content .client-info img {
  width: 65px;
  height: 65px;
  border-radius: 50%;
}

.ea-single-testimonial-box.style-one .content .client-info .title {
  margin-left: 20px;
  position: relative;
  top: 4px;
}

.ea-single-testimonial-box.style-one .content .client-info .title h3 {
  margin-bottom: 6px;
  color: #fe4a55;
  font-size: 18px;
  font-weight: 700;
}

.ea-single-testimonial-box.style-one .content .client-info .title span {
  display: block;
  color: #43746f;
  font-size: 15px;
}

.ea-single-testimonial-box.style-one .content::after {
  right: -15px;
  z-index: -1;
  bottom: -33px;
  color: #7ead9f;
  line-height: 1;
  content: "\edd6";
  position: absolute;
  font-family: 'boxicons';
  font-size: 200px;
}

.ea-single-testimonial-box.style-two {
  position: relative;
  margin-top: 25px;
  margin-left: 25px;
  margin-bottom: 30px;
}

.ea-single-testimonial-box.style-two .testimonial-desc {
  background-color: var(--whiteColor);
  border-radius: 5px;
  position: relative;
  z-index: 1;
  padding-left: 30px;
  padding-bottom: 30px;
  padding-right: 30px;
  padding-top: 40px;
}

.ea-single-testimonial-box.style-two .testimonial-desc p {
  position: relative;
  font-style: italic;
  font-size: 16px;
}

.ea-single-testimonial-box.style-two .testimonial-desc p::before {
  left: 0;
  content: '"';
  position: relative;
  display: inline-block;
  color: var(--optionalColor);
}

.ea-single-testimonial-box.style-two .testimonial-desc p::after {
  right: 0;
  content: '"';
  position: relative;
  display: inline-block;
  color: var(--optionalColor);
}

.ea-single-testimonial-box.style-two .testimonial-desc::before {
  left: 35px;
  width: 25px;
  z-index: -1;
  content: '';
  height: 25px;
  bottom: -12px;
  position: absolute;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background: var(--whiteColor);
}

.ea-single-testimonial-box.style-two::before {
  top: -25px;
  left: -25px;
  z-index: 2;
  width: 60px;
  height: 60px;
  content: "\edd5";
  line-height: 60px;
  border-radius: 50%;
  text-align: center;
  position: absolute;
  color: var(--whiteColor);
  background-color: #43746f;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  font-family: 'boxicons';
  font-size: 30px;
}

.ea-single-testimonial-box.style-two .client-info {
  position: relative;
  margin-top: 35px;
  margin-left: 15px;
}

.ea-single-testimonial-box.style-two .client-info img {
  width: 65px;
  height: 65px;
  border-radius: 50%;
}

.ea-single-testimonial-box.style-two .client-info .title {
  margin-left: 15px;
  position: relative;
  top: 4px;
}

.ea-single-testimonial-box.style-two .client-info .title h3 {
  margin-bottom: 6px;
  font-size: 18px;
  font-weight: 700;
}

.ea-single-testimonial-box.style-two .client-info .title span {
  display: block;
  color: #43746f;
  font-size: 15px;
}

.ea-single-testimonial-box.style-three {
  position: relative;
  padding-left: 180px;
}

.ea-single-testimonial-box.style-three .client-image {
  left: 0;
  top: 50%;
  z-index: 1;
  position: absolute;
  border-radius: 5px;
  padding-bottom: 15px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.ea-single-testimonial-box.style-three .client-image img {
  width: 140px;
  height: 140px;
  border-radius: 5px;
}

.ea-single-testimonial-box.style-three .client-image::before {
  bottom: 0;
  z-index: -1;
  width: 100%;
  height: 90%;
  content: '';
  right: -15px;
  position: absolute;
  border-radius: 5px;
  background-color: #03d392;
}

.ea-single-testimonial-box.style-three .client-image::after {
  right: -10px;
  bottom: -15px;
  color: #f4faff;
  content: "\edd5";
  position: absolute;
  font-family: 'boxicons';
  font-size: 50px;
}

.ea-single-testimonial-box.style-three .testimonial-desc p {
  font-size: 16px;
}

.ea-single-testimonial-box.style-three .testimonial-desc .client-info h3 {
  margin-bottom: 6px;
  font-size: 18px;
  font-weight: 700;
}

.ea-single-testimonial-box.style-three .testimonial-desc .client-info span {
  display: block;
  color: #03d392;
  font-size: 15px;
}

.ea-single-testimonial-box.style-four {
  margin-bottom: 30px;
}

.ea-single-testimonial-box.style-four .desc {
  background-color: var(--whiteColor);
  position: relative;
  border-radius: 5px;
  padding: 30px;
  z-index: 1;
}

.ea-single-testimonial-box.style-four .desc p {
  font-size: 16px;
  margin-bottom: 0;
  margin-top: 0;
}

.ea-single-testimonial-box.style-four .desc::before {
  right: 0;
  z-index: -1;
  opacity: .05;
  bottom: -8px;
  color: #000000;
  line-height: 1;
  content: "\edd6";
  position: absolute;
  font-family: 'boxicons';
  font-size: 100px;
}

.ea-single-testimonial-box.style-four .desc::after {
  left: 40px;
  z-index: -1;
  content: '';
  width: 80px;
  height: 60px;
  bottom: -35px;
  position: absolute;
  background-color: var(--whiteColor);
  -webkit-clip-path: polygon(0 0, 100% 0, 0 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 0 100%, 0% 100%);
}

.ea-single-testimonial-box.style-four .client-info {
  margin-top: 50px;
  margin-left: 10px;
}

.ea-single-testimonial-box.style-four .client-info img {
  height: 60px;
  border-radius: 50%;
  width: 60px !important;
  border: 2px solid #e01a33;
}

.ea-single-testimonial-box.style-four .client-info .title {
  margin-left: 15px;
}

.ea-single-testimonial-box.style-four .client-info .title h3 {
  margin-bottom: 6px;
  font-size: 18px;
  font-weight: 700;
}

.ea-single-testimonial-box.style-four .client-info .title span {
  display: block;
  font-size: 15px;
  color: var(--blackColor);
}

.ea-single-testimonial-box.style-five .desc {
  background-color: #f5f5f5;
  position: relative;
  border-radius: 5px;
  padding: 40px;
  z-index: 1;
}

.ea-single-testimonial-box.style-five .desc p {
  font-size: 16px;
  margin-bottom: 0;
}

.ea-single-testimonial-box.style-five .desc::before {
  right: 0;
  bottom: -8px;
  z-index: -1;
  opacity: .05;
  color: #000000;
  line-height: 1;
  content: "\edd6";
  position: absolute;
  font-family: 'boxicons';
  font-size: 100px;
}

.ea-single-testimonial-box.style-five .desc::after {
  left: 50%;
  content: '';
  width: 80px;
  z-index: -1;
  height: 60px;
  bottom: -35px;
  position: absolute;
  background-color: #f5f5f5;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-clip-path: polygon(0 0, 100% 0, 0 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 0 100%, 0% 100%);
}

.ea-single-testimonial-box.style-five .client-info {
  margin-top: 50px;
  margin-left: 15px;
}

.ea-single-testimonial-box.style-five .client-info img {
  height: 60px;
  border-radius: 50%;
  width: 60px !important;
  border: 2px solid #e01a33;
}

.ea-single-testimonial-box.style-five .client-info .title {
  margin-left: 15px;
}

.ea-single-testimonial-box.style-five .client-info .title h3 {
  margin-bottom: 6px;
  font-size: 18px;
  font-weight: 700;
}

.ea-single-testimonial-box.style-five .client-info .title span {
  display: block;
  font-style: 15px;
  color: var(--blackColor);
}

.ea-single-testimonial-box.style-six {
  text-align: center;
  color: var(--whiteColor);
  position: relative;
  z-index: 1;
  padding-top: 80px;
}

.ea-single-testimonial-box.style-six p {
  color: var(--whiteColor);
  font-size: 16px;
}

.ea-single-testimonial-box.style-six .client-info {
  margin-top: 25px;
  text-align: left;
}

.ea-single-testimonial-box.style-six .client-info img {
  border: 2px solid var(--whiteColor);
  width: 60px !important;
  border-radius: 50%;
  height: 60px;
}

.ea-single-testimonial-box.style-six .client-info .title {
  margin-left: 20px;
}

.ea-single-testimonial-box.style-six .client-info .title h3 {
  margin-bottom: 6px;
  color: var(--whiteColor);
  font-size: 18px;
  font-weight: 700;
}

.ea-single-testimonial-box.style-six .client-info .title span {
  display: block;
  font-size: 15px;
  color: var(--whiteColor);
}

.ea-single-testimonial-box.style-six::after {
  left: 0;
  right: 0;
  top: -60px;
  z-index: -1;
  opacity: .05;
  color: #000000;
  line-height: 1;
  content: "\edd6";
  position: absolute;
  font-family: 'boxicons';
  font-size: 300px;
}

.ea-single-testimonial-box.style-seven {
  z-index: 1;
  margin-top: 40px;
  border-radius: 5px;
  position: relative;
  text-align: center;
  padding: 70px 50px 40px;
  background-color: #fafafb;
}

.ea-single-testimonial-box.style-seven img {
  left: 0;
  right: 0;
  top: -40px;
  margin: auto;
  height: 80px;
  border-radius: 50%;
  position: absolute;
  width: 80px !important;
  border: 5px solid #e3fbff;
  display: inline-block !important;
}

.ea-single-testimonial-box.style-seven p {
  font-size: 16px;
}

.ea-single-testimonial-box.style-seven::after {
  right: 0;
  z-index: -1;
  bottom: -8px;
  opacity: .05;
  color: #000000;
  line-height: 1;
  content: "\edd6";
  position: absolute;
  font-family: 'boxicons';
  font-size: 100px;
}

.ea-single-testimonial-box.style-seven .client-info {
  margin-top: 25px;
}

.ea-single-testimonial-box.style-seven .client-info h3 {
  font-size: 18px;
  margin-bottom: 7px;
}

.ea-single-testimonial-box.style-seven .client-info span {
  color: var(--optionalColor);
  font-size: 15px;
  display: block;
}

.ea-testimonial-image {
  z-index: 1;
  text-align: center;
  position: relative;
  margin-right: 30px;
  margin-left: 30px;
  margin-top: 30px;
}

.ea-testimonial-image img {
  border-radius: 5px;
}

.ea-testimonial-image::before {
  content: '';
  left: -30px;
  top: -30px;
  z-index: -1;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  position: absolute;
  background-color: #1a2238;
}

.ea-testimonial-list {
  padding-left: 15px;
}

.ea-testimonial-list .sub-title {
  display: block;
  color: #e01a33;
  margin-bottom: 12px;
  font-size: 15px;
  font-weight: 500;
}

.ea-testimonial-list h2 {
  font-size: 36px;
  margin-bottom: 0;
}

.ea-testimonial-list p {
  margin-top: 15px;
}

.ea-testimonial-list .ea-single-testimonial-box.style-four {
  margin-bottom: 0;
}

.ea-testimonial-list .ea-testimonial-slides.style-two {
  margin-top: 30px;
}

.ea-testimonial-slides.style-one.owl-theme .owl-nav.disabled + .owl-dots {
  line-height: .01;
  margin-top: 30px;
}

.ea-testimonial-slides.style-one.owl-theme .owl-dots .owl-dot span {
  width: 13px;
  height: 13px;
  margin: 0 4px;
  border-radius: 50%;
  background: #cccccc;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.ea-testimonial-slides.style-one.owl-theme .owl-dots .owl-dot.active span, .ea-testimonial-slides.style-one.owl-theme .owl-dots .owl-dot:hover span {
  background-color: #03d392;
}

.ea-testimonial-slides.style-two.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 0;
}

.ea-testimonial-slides.style-two.owl-theme .owl-dots {
  right: 0;
  bottom: 9px;
  position: absolute;
  margin-top: 10px !important;
}

.ea-testimonial-slides.style-two.owl-theme .owl-dots .owl-dot span {
  width: 15px;
  height: 15px;
  margin: 0 8px 0 0;
  border-radius: 50%;
  position: relative;
  background: transparent;
  border: 1px solid #8f8f8f;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.ea-testimonial-slides.style-two.owl-theme .owl-dots .owl-dot span::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 2px;
  content: '';
  position: absolute;
  border-radius: 50%;
  background-color: #8f8f8f;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.ea-testimonial-slides.style-two.owl-theme .owl-dots .owl-dot:hover span, .ea-testimonial-slides.style-two.owl-theme .owl-dots .owl-dot.active span {
  border-color: #e01a33;
}

.ea-testimonial-slides.style-two.owl-theme .owl-dots .owl-dot:hover span::before, .ea-testimonial-slides.style-two.owl-theme .owl-dots .owl-dot.active span::before {
  opacity: 1;
  visibility: visible;
  background-color: #e01a33;
}

.ea-testimonial-slides.style-three.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 0;
}

.ea-testimonial-slides.style-three.owl-theme .owl-dots {
  left: 0;
  right: 0;
  bottom: 10px;
  position: absolute;
  margin-top: 10px !important;
}

.ea-testimonial-slides.style-three.owl-theme .owl-dots .owl-dot span {
  width: 15px;
  height: 15px;
  margin: 0 4px;
  border-radius: 50%;
  position: relative;
  background: transparent;
  border: 1px solid #8f8f8f;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.ea-testimonial-slides.style-three.owl-theme .owl-dots .owl-dot span::before {
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  content: '';
  margin: 2px;
  position: absolute;
  border-radius: 50%;
  background-color: #8f8f8f;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.ea-testimonial-slides.style-three.owl-theme .owl-dots .owl-dot:hover span, .ea-testimonial-slides.style-three.owl-theme .owl-dots .owl-dot.active span {
  border-color: #e01a33;
}

.ea-testimonial-slides.style-three.owl-theme .owl-dots .owl-dot:hover span::before, .ea-testimonial-slides.style-three.owl-theme .owl-dots .owl-dot.active span::before {
  opacity: 1;
  visibility: visible;
  background-color: #e01a33;
}

.ea-testimonial-slides.style-four.owl-theme .ea-single-testimonial-box.style-six {
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
}

.ea-testimonial-slides.style-four.owl-theme .owl-nav .owl-prev, .ea-testimonial-slides.style-four.owl-theme .owl-nav .owl-next {
  left: 0;
  top: 50%;
  padding: 0;
  width: 40px;
  height: 40px;
  font-size: 30px;
  line-height: 47px;
  border-radius: 50%;
  position: absolute;
  color: var(--blackColor);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: var(--transition);
  transition: var(--transition);
  background-color: var(--whiteColor);
}

.ea-testimonial-slides.style-four.owl-theme .owl-nav .owl-prev:hover, .ea-testimonial-slides.style-four.owl-theme .owl-nav .owl-next:hover {
  background-color: #ff5d22;
  color: var(--whiteColor);
}

.ea-testimonial-slides.style-four.owl-theme .owl-nav .owl-next {
  left: auto;
  right: 0;
}

.ea-testimonial-slides.style-five.owl-theme .owl-nav .owl-prev, .ea-testimonial-slides.style-five.owl-theme .owl-nav .owl-next {
  top: 50%;
  padding: 0;
  left: -60px;
  width: 40px;
  height: 40px;
  font-size: 30px;
  line-height: 45px;
  border-radius: 50%;
  position: absolute;
  color: var(--blackColor);
  border: 1px solid #eae2d7;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: var(--transition);
  transition: var(--transition);
  background-color: var(--whiteColor);
}

.ea-testimonial-slides.style-five.owl-theme .owl-nav .owl-prev:hover, .ea-testimonial-slides.style-five.owl-theme .owl-nav .owl-next:hover {
  -webkit-box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
  background-color: #ff5d22;
  color: var(--whiteColor);
  border-color: #ff5d22;
}

.ea-testimonial-slides.style-five.owl-theme .owl-nav .owl-next {
  left: auto;
  right: -60px;
}

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

.ea-single-footer-widget {
  margin-bottom: 30px;
}

.ea-single-footer-widget h3 {
  font-size: 18px;
  margin-bottom: 20px;
}

.ea-single-footer-widget .links-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.ea-single-footer-widget .links-list li {
  margin-bottom: 12px;
}

.ea-single-footer-widget .links-list li a {
  display: inline-block;
  color: var(--optionalColor);
}

.ea-single-footer-widget .links-list li a:hover {
  color: var(--mainColor);
}

.ea-single-footer-widget .links-list li:last-child {
  margin-bottom: 0;
}

.ea-single-footer-widget form {
  position: relative;
}

.ea-single-footer-widget form .input-newsletter {
  display: block;
  width: 100%;
  border: 1px solid #eeeeee;
  height: 55px;
  border-radius: 5px;
  font-size: 15px;
  color: var(--blackColor);
  padding-left: 15px;
  padding-top: 5px;
}

.ea-single-footer-widget form .input-newsletter::-webkit-input-placeholder {
  color: var(--optionalColor);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.ea-single-footer-widget form .input-newsletter:-ms-input-placeholder {
  color: var(--optionalColor);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.ea-single-footer-widget form .input-newsletter::-ms-input-placeholder {
  color: var(--optionalColor);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.ea-single-footer-widget form .input-newsletter::placeholder {
  color: var(--optionalColor);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.ea-single-footer-widget form .input-newsletter:focus::-webkit-input-placeholder {
  color: transparent;
}

.ea-single-footer-widget form .input-newsletter:focus:-ms-input-placeholder {
  color: transparent;
}

.ea-single-footer-widget form .input-newsletter:focus::-ms-input-placeholder {
  color: transparent;
}

.ea-single-footer-widget form .input-newsletter:focus::placeholder {
  color: transparent;
}

.ea-single-footer-widget form .default-btn {
  position: absolute;
  right: 5px;
  top: 3px;
  padding-left: 48px;
  padding-right: 20px;
  padding-top: 13px;
  padding-bottom: 12px;
}

.ea-single-footer-widget form .default-btn i {
  left: 20px;
}

.ea-single-footer-widget form p {
  font-size: 15px;
  margin-top: 18px;
}

.ea-single-footer-widget form p a {
  color: var(--mainColor);
}

.ea-single-footer-widget form p a:hover {
  text-decoration: underline;
}

.ea-single-footer-widget.pl-3 {
  padding-left: 3rem;
}

.copyright-area {
  padding-top: 10px;
  padding-bottom: 10px;
  border-top: 1px solid #e8e8f0;
}

.landing-page .copyright-area {
  border-top: 0;
}

.copyright-area p {
  font-size: 15px;
  color: var(--blackColor);
}

.copyright-area p a {
  color: var(--mainColor);
  font-weight: 600;
}

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

.copyright-area .social-links {
  text-align: end;
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.copyright-area .social-links li {
  display: inline-block;
  margin-left: 5px;
  margin-right: 5px;
}

.copyright-area .social-links li a {
  display: block;
  width: 35px;
  height: 35px;
  text-align: center;
  -webkit-box-shadow: 3px 3px #ebebeb;
          box-shadow: 3px 3px #ebebeb;
  position: relative;
  font-size: 20px;
  color: var(--blackColor);
  background-color: var(--whiteColor);
}

.copyright-area .social-links li a.facebook {
  color: #4267B2;
}

.copyright-area .social-links li a.facebook:hover {
  background-color: #4267B2;
  color: var(--whiteColor);
}

.copyright-area .social-links li a.twitter {
  color: #1DA1F2;
}

.copyright-area .social-links li a.twitter:hover {
  background-color: #1DA1F2;
  color: var(--whiteColor);
}

.copyright-area .social-links li a.instagram {
  color: #E1306C;
}

.copyright-area .social-links li a.instagram:hover {
  background-color: #E1306C;
  color: var(--whiteColor);
}

.copyright-area .social-links li a.linkedin {
  color: #0072b1;
}

.copyright-area .social-links li a.linkedin:hover {
  background-color: #0072b1;
  color: var(--whiteColor);
}

.copyright-area .social-links li a i {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.copyright-area .social-links li:first-child {
  margin-left: 0;
}

.copyright-area .social-links li:last-child {
  margin-right: 0;
}

@-webkit-keyframes rotateme {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotateme {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

/*================================================
SP Logo Carousel Area CSS
=================================================*/
.ea-logo-carousel-area.border-bottom {
  border-bottom: 1px solid #ebebeb;
}

.ea-logo-carousel-area .owl-carousel .owl-item img {
  display: block;
  width: auto;
  margin: auto;
}

.ea-logo-carousel-area .owl-theme .owl-nav .owl-next, .ea-logo-carousel-area .owl-theme .owl-nav .owl-prev {
  margin: 0;
  background-color: transparent;
  position: absolute;
  top: 50%;
  left: -30px;
  -webkit-transform: translateY(-15px);
          transform: translateY(-15px);
}

.ea-logo-carousel-area .owl-theme .owl-nav .owl-next i, .ea-logo-carousel-area .owl-theme .owl-nav .owl-prev i {
  background-color: var(--whiteColor);
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
  width: 30px;
  height: 30px;
  line-height: 30px;
  color: var(--blackColor);
  border-radius: 50%;
}

.ea-logo-carousel-area .owl-theme .owl-nav .owl-next {
  left: auto;
  right: -30px;
}

.ea-logo-carousel-area .owl-theme .owl-dots .owl-dot span {
  background-color: #9f9f9f;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  margin-top: 0;
  margin-bottom: 0;
}

.ea-logo-carousel-area .owl-theme .owl-dots .owl-dot.active span {
  background-color: #202020;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  margin-top: 0;
  margin-bottom: 0;
}

.ea-logo-carousel-area.style-two {
  border: none;
}

.ea-logo-carousel-area.bg-color-191a28 {
  background-color: #191a28;
}

.ea-logo-carousel-area.style-three .owl-theme .owl-nav .owl-next, .ea-logo-carousel-area.style-three .owl-theme .owl-nav .owl-prev {
  margin: 0;
  background-color: transparent;
  position: absolute;
  top: 50%;
  left: -30px;
  -webkit-transform: translateY(-15px);
          transform: translateY(-15px);
}

.ea-logo-carousel-area.style-three .owl-theme .owl-nav .owl-next i, .ea-logo-carousel-area.style-three .owl-theme .owl-nav .owl-prev i {
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #c7a45c;
  border-radius: 50%;
  border: 1px solid var(--whiteColor);
}

.ea-logo-carousel-area.style-three .owl-theme .owl-nav .owl-next {
  left: auto;
  right: -30px;
}

.ea-logo-carousel-area.bg-color-f0fbf7 {
  background-color: #f0fbf7;
}

.ea-logo-carousel-area-bg {

    position: relative;
  background-image:url(../images/luobotu.png);
  background-size: cover;
  padding-top:60px;
  padding-bottom: 60px;
}

.ea-logo-carousel-area.style-six {
  overflow: hidden;
}

.ea-logo-carousel-area.style-seven .owl-theme .owl-nav .owl-next, .ea-logo-carousel-area.style-seven .owl-theme .owl-nav .owl-prev {
  margin: 0;
  background-color: transparent;
  position: absolute;
  top: 50%;
  left: -30px;
  -webkit-transform: translateY(-15px);
          transform: translateY(-15px);
}

.ea-logo-carousel-area.style-seven .owl-theme .owl-nav .owl-next i, .ea-logo-carousel-area.style-seven .owl-theme .owl-nav .owl-prev i {
  background-color: var(--whiteColor);
  -webkit-box-shadow: none;
          box-shadow: none;
  color: var(--blackColor);
  border-radius: 0;
  border: 1px solid #e7e7e7;
}

.ea-logo-carousel-area.style-seven .owl-theme .owl-nav .owl-next {
  left: auto;
  right: -30px;
}

.ea-logo-carousel-area.bg-color-f0f2f9 {
  background-color: #f0f2f9;
}

.ea-logo-carousel-area.style-ten.bg-shape {
  position: relative;
  z-index: 1;
}

.ea-logo-carousel-area.style-ten.bg-shape::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -100px;
  height: 100px;
  z-index: -1;
  background-image: url(../images/shape4.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.ea-logo-carousel-area.style-eight .owl-theme .owl-nav .owl-next, .ea-logo-carousel-area.style-eight .owl-theme .owl-nav .owl-prev {
  margin: 0;
  background-color: transparent;
  position: absolute;
  top: 50%;
  left: -30px;
  -webkit-transform: translateY(-15px);
          transform: translateY(-15px);
}

.ea-logo-carousel-area.style-eight .owl-theme .owl-nav .owl-next i, .ea-logo-carousel-area.style-eight .owl-theme .owl-nav .owl-prev i {
  background-color: var(--whiteColor);
  -webkit-box-shadow: none;
          box-shadow: none;
  color: var(--blackColor);
  border-radius: 0;
  border: 1px solid #e7e7e7;
}

.ea-logo-carousel-area.style-eight .owl-theme .owl-nav .owl-next {
  left: auto;
  right: -30px;
}

.ea-logo-carousel-slider-ten {
  background-color: #fff7f2;
  padding: 50px;
  border-radius: 10px;
}

.ea-single-logo-carousel {
  text-align: center;
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
  margin: 15px;
  position: relative;
}

.ea-single-logo-carousel span {
  display: block;
  font-size: 16px;
}

.ea-single-logo-carousel .white-logo {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background-color: #323347;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.ea-single-logo-carousel.style-two {
  padding: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.ea-single-logo-carousel.style-three {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #ffffff;
}

.ea-single-logo-carousel.style-four {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
}

.ea-single-logo-carousel.style-five {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  margin: 0;
}

.ea-single-logo-carousel.style-seven {
  border: 1px solid #e7e7e7;
  padding: 30px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.ea-single-logo-carousel.style-eight {
  background-color: #292929;
}

.ea-single-logo-carousel.style-eight:hover {
  background-color: #ffffff;
}

.ea-single-logo-carousel.style-eight:hover .white-logo {
  background-color: #ffffff;
}

.ea-single-logo-carousel:hover .white-logo {
  opacity: 1;
  visibility: visible;
}

.ea-single-logo-carousel:hover.style-seven {
  border-color: var(--whiteColor);
}

.ea-logo-content {
  margin-bottom: 24px;
}

.single-logo {
  background-color: #191a28;
  margin-bottom: 24px;
}

/*================================================
SP Video Area CSS
=================================================*/
/*
Video wave Style*/
.ea-video-btn-one {
  display: inline-block;
  width: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  border-radius: 0;
  color: var(--main-color);
  position: relative;
  top: 3px;
  z-index: 1;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.ea-video-btn-one i {
  font-size: 80px;
  color: var(--mainColor);
  position: absolute;
  top: 0;
  left: 6px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
}

.ea-video-btn-one::after, .ea-video-btn-one::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  bottom: 0;
  left: 0;
  border-radius: 0;
  border-radius: 50%;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  -webkit-animation: ripple 1.6s ease-out infinite;
          animation: ripple 1.6s ease-out infinite;
  background-color: rgba(255, 255, 255, 0.9);
}

.ea-video-btn-one:hover::before, .ea-video-btn-one:hover::after {
  background-color: rgba(255, 255, 255, 0.9);
}

@-webkit-keyframes ripple {
  0%, 35% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
    opacity: 0.8;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(2);
            transform: scale(2);
  }
}

@keyframes ripple {
  0%, 35% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
    opacity: 0.8;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(2);
            transform: scale(2);
  }
}

/*
Video wave Style*/
.ea-video-btn-two span {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  position: absolute;
  content: "";
  display: block;
  border-radius: 50%;
  width: 90px;
  height: 90px;
}

.ea-video-btn-two span::after {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 0.1px solid var(--mainColor);
  -webkit-animation: videoTwo 8s linear infinite;
          animation: videoTwo 8s linear infinite;
}

.ea-video-btn-two span::before {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 0.1px solid var(--mainColor);
  -webkit-animation: videoTwo 8s linear infinite;
          animation: videoTwo 8s linear infinite;
}

.ea-video-btn-two span:nth-child(1)::after {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.ea-video-btn-two span:nth-child(1)::before {
  -webkit-animation-delay: 5s;
          animation-delay: 5s;
}

.ea-video-btn-two span:nth-child(2)::after {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

.ea-video-btn-two span:nth-child(2)::before {
  -webkit-animation-delay: 6s;
          animation-delay: 6s;
}

.ea-video-btn-two span:nth-child(3)::after {
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
}

.ea-video-btn-two span:nth-child(3)::before {
  -webkit-animation-delay: 7s;
          animation-delay: 7s;
}

.ea-video-btn-two span:nth-child(4)::after {
  -webkit-animation-delay: 4s;
          animation-delay: 4s;
}

.ea-video-btn-two i {
  width: 90px;
  height: 90px;
  line-height: 80px;
  text-align: center;
  border-radius: 50%;
  display: inline-block;
  background: var(--whiteColor);
  color: var(--mainColor);
  border: 5px solid var(--mainColor);
  font-size: 60px;
}

.ea-video-btn-two.video-btn-3 i {
  color: var(--mainColor);
  border-color: var(--mainColor);
}

.ea-video-btn-two.video-btn-3 span::before {
  border: 0.1px solid var(--mainColor);
}

.ea-video-btn-two.video-btn-3 span::after {
  border: 0.1px solid var(--mainColor);
}

@-webkit-keyframes videoTwo {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(5);
            transform: translate(-50%, -50%) scale(5);
    opacity: 0;
  }
}

@keyframes videoTwo {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(5);
            transform: translate(-50%, -50%) scale(5);
    opacity: 0;
  }
}

.ea-video-content {
  max-width: 1010px;
  margin: auto;
  text-align: center;
  background-image: url(../images/video-bg-1.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 4px;
  padding-top: 150px;
  padding-bottom: 150px;
  position: relative;
  z-index: 1;
}

.ea-video-content.bg-2 {
  background-image: unset;
  padding: 0;
}

.ea-video-content.bg-2 img {
  border-radius: 50%;
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
  border: 5px solid var(--whiteColor);
}

.ea-video-content.bg-2::before {
  display: none;
}

.ea-video-content.bg-2 .video-btn-center {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.ea-video-content.bg-5 {
  background-image: url(../images/video-bg-4.jpg);
  border: 5px solid var(--whiteColor);
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
}

.ea-video-content.bg-5::before {
  display: none;
}

.ea-video-content.bg-5 .video-btn-center {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.ea-video-content.bg-7 {
  background-image: url(../images/video-bg-7.jpg);
  border-radius: 0;
}

.ea-video-content.bg-7::before {
  display: none;
}

.ea-video-content.bg-9 {
  background-image: url(../images/video-bg-8.jpg);
  padding-top: 150px !important;
  padding-bottom: 150px !important;
  border-radius: 15px;
}

.ea-video-content.bg-9::before {
  display: none;
}

.ea-video-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(45deg, #38c8f3 0%, #38c8f3 0%, #397fe7 100%);
  opacity: 0.9;
  z-index: -1;
}

.ea-video-content h3 {
  color: var(--whiteColor);
  font-size: 40px;
  margin-bottom: 0;
  margin-top: 30px;
}

.ea-video-bg {
  padding-left: 50px;
  background-color: #fff7f2;
  border-radius: 0 225px 225px 0;
}

.ea-video-bg p {
  padding-right: 50px;
}

.ea-video-bg h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.ea-video-bg .video-btn-one i {
  color: #d14327;
}

.ea-video-area-style-three {
  background-image: url(../images/video-bg-3.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  padding-top: 200px;
  padding-bottom: 200px;
  position: relative;
  z-index: 1;
}

.ea-video-area-style-three::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

.ea-video-area-style-three .ea-video-bg {
  background-color: transparent;
  padding-left: 0;
}

.ea-video-area-style-three .ea-video-bg h2 {
  color: var(--whiteColor);
}

.ea-video-area-style-three .ea-video-bg p {
  color: var(--whiteColor);
}

.ea-video-style-four .ea-video-bg {
  background-color: transparent;
  padding-left: 0;
}

.ea-video-style-four .bg-4 {
  background-image: unset;
  padding: 0;
  position: relative;
}

.ea-video-style-four .bg-4::before {
  display: none;
}

.ea-video-style-four .bg-4 .video-btn-center {
  position: absolute;
  bottom: 200px;
  right: 200px;
}

.ea-video-play-btn {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 70px;
  display: inline-block;
  width: 85px;
  height: 85px;
  border-radius: 50%;
  background-color: #db3945;
  color: var(--mainColor);
  border: 5px solid #464d4b;
}

.ea-video-play-btn i {
  position: relative;
  top: -7px;
  left: 4px;
  color: var(--whiteColor);
}

.ea-video-area-style-five .ea-video-content {
  border-radius: 0;
}

.ea-video-area-style-five .ea-video-content::before {
  display: none;
}

.ea-video-area-style-five {
  background-image: url(../images/video-bg-6.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  padding-top: 200px;
  position: relative;
  z-index: 1;
}

.ea-video-area-style-five::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: #ffffff;
  z-index: -1;
}

.ea-video-area-style-five::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

.ea-video-area-style-six .ea-video-bg {
  background-color: var(--whiteColor);
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
}

.ea-video-area-style-seven .ea-video-bg {
  background-color: var(--whiteColor);
  -webkit-box-shadow: none;
          box-shadow: none;
  padding-left: 0;
}

.ea-video-area-style-seven .video-content-wrap {
  background-image: url(../images/video-bg-9.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  padding: 50px 40px;
  border-radius: 0 10px 10px 0;
}

.ea-video-area-style-seven .pl-0 {
  padding-left: 0;
}

.ea-video-area-style-seven .pr-0 {
  padding-right: 0;
}

.ea-video-area-style-seven.bg-shape {
  position: relative;
  z-index: 1;
}

.ea-video-area-style-seven.bg-shape::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -100px;
  height: 100px;
  z-index: -1;
  background-image: url(../images/shape4.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.ea-video-area-style-seven .ea-video-content {
  position: relative;
  padding: 0;
}

/*================================================
SP Button Area CSS
=================================================*/
.ea-button-area .pl-0 {
  padding-left: 0;
}

.ea-button-area .pr-0 {
  padding-right: 0;
}

.ea-button-area.style-two {
  position: relative;
  z-index: 1;
}

.ea-button-area.style-two::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-color: #faf9ff;
  z-index: -1;
}

.ea-button-area.style-two::after {
  content: "";
  position: absolute;
  top: 155px;
  right: 0;
  width: 50%;
  height: 165px;
  background-color: #efecff;
  z-index: -1;
}

.ea-button-area.style-two.style-four .ea-button-title {
  background-color: #ffece0;
}

.ea-button-area.style-two.style-four::before {
  right: auto;
  left: 0;
  background-color: #fffcfa;
}

.ea-button-area.style-two.style-four::after {
  right: auto;
  left: 0;
  background-color: #ffece0;
}

.ea-button-area.style-six::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-color: #f4f7ff;
  z-index: -1;
}

.ea-button-area.style-six::after {
  content: "";
  position: absolute;
  right: 0;
  width: 50%;
  height: 165px;
  background-color: #e8eeff;
  z-index: -1;
}

.ea-button-area.style-six .ea-button-title {
  background-color: #e8eeff;
}

.ea-button-area.style-six .bg-color-f1fbfe {
  background-color: #f1fbfe;
}

.ea-button-area.style-six .bg-color-f1fbfe li h4 {
  color: #46bcf2;
}

.ea-button-area.style-six .bg-color-e7faff {
  background-color: #e7faff;
}

.ea-button-area.style-six .bg-color-e7faff li h4 {
  color: #46bcf2;
}

.ea-button-area.style-eight::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background-color: #fafbff;
  z-index: -1;
}

.ea-button-area.style-eight::after {
  content: "";
  position: absolute;
  left: 0;
  width: 50%;
  height: 165px;
  background-color: #f5f6ff;
  z-index: -1;
}

.ea-button-area.style-eight .ea-button-title {
  background-color: #f5f6ff;
}

.ea-button-area.style-eight .bg-color-f7f8fb {
  background-color: #f7f8fb;
}

.ea-button-area.style-eight .bg-color-f7f8fb li h4 {
  color: #bbbfc8;
}

.ea-button-area.style-eight .bg-color-eff1f6 {
  background-color: #eff1f6;
}

.ea-button-area.style-eight .bg-color-eff1f6 li h4 {
  color: #bbbfc8;
}

.ea-button-area.style-nine.bg-shape {
  position: relative;
  z-index: 1;
}

.ea-button-area.style-nine.bg-shape::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -100px;
  height: 100px;
  z-index: -1;
  background-image: url(../images/shape4.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.ea-button-title {
  margin-bottom: 30px;
}

.ea-button-title h2 {
  font-size: 36px;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.ea-button-title h2::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--mainColor);
}

.ea-button-title h3 {
  font-size: 20px;
}

.ea-button-title.style-two {
  background-color: #efecff;
  padding: 30px;
}

.ea-button-card {
  padding: 0;
  margin: 0;
  list-style-type: none;
  position: relative;
  margin-left: 40px;
  margin-bottom: 30px;
}

.ea-button-card.bg-color-fff7f2 {
  background-color: #fff7f2;
  padding: 50px;
  padding-top: 100px;
  padding-bottom: 100px;
  padding-left: 100px;
  margin-left: 0;
}

.ea-button-card.bg-color-fff7f2 li:nth-child(4) {
  margin-bottom: 0;
}

.ea-button-card.bg-color-fff7f2 li:nth-child(5) {
  margin-bottom: 0;
}

.ea-button-card.bg-color-fff7f2 li h4 {
  top: 203px;
  left: -35px;
  color: #d4c3b9;
}

.ea-button-card.bg-color-fffbf9 {
  background-color: #fffbf9;
  padding: 50px;
  padding-top: 100px;
  padding-bottom: 100px;
  padding-left: 100px;
  margin-left: 0;
}

.ea-button-card.bg-color-fffbf9 li:nth-child(4) {
  margin-bottom: 0;
}

.ea-button-card.bg-color-fffbf9 li:nth-child(5) {
  margin-bottom: 0;
}

.ea-button-card.bg-color-fffbf9 li h4 {
  top: 203px;
  left: -35px;
  color: #d4c3b9;
}

.ea-button-card.bg-color-f0fbf7 {
  background-color: #f0fbf7;
}

.ea-button-card.bg-color-f0fbf7 li h4 {
  color: #afcdc2;
}

.ea-button-card.bg-color-e7f8f2 {
  background-color: #e7f8f2;
}

.ea-button-card.bg-color-e7f8f2 li h4 {
  color: #afcdc2;
}

.ea-button-card li {
  margin-bottom: 20px;
}

.ea-button-card li h4 {
  color: #a5a5a5;
  position: absolute;
  top: 108px;
  left: -108px;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.ea-default-btn {
  background-color: #202020;
  color: var(--whiteColor);
  padding: 15px 25px;
  display: inline-block;
  text-align: center;
}

.ea-default-btn:hover {
  color: var(--whiteColor);
  background-color: #5d63ef;
}

.ea-default-btn.hover {
  background-color: #5d63ef;
}

.ea-default-btn.extra-large {
  width: 210px;
}

.ea-default-btn.large {
  width: 180px;
}

.ea-default-btn.normal {
  width: 110px;
}

.ea-default-btn.small {
  width: 80px;
}

.ea-default-btn.btn-style-two {
  border-radius: 50px;
  background-color: #e4c6ae;
}

.ea-default-btn.btn-style-two:hover {
  background-color: #f6c065;
}

.ea-default-btn.btn-style-two.hover {
  background-color: #f6c065;
}

.ea-default-btn.btn-style-three {
  border-radius: 4px;
  background-color: transparent;
  border: 1px solid #5d63ef;
  color: #5d63ef;
}

.ea-default-btn.btn-style-three:hover {
  background-color: #5d63ef;
  color: var(--whiteColor);
}

.ea-default-btn.btn-style-three.hover {
  background-color: #5d63ef;
  color: var(--whiteColor);
}

.ea-default-btn.btn-style-four {
  border-radius: 4px;
  background-color: transparent;
  border: 1px solid #71b67b;
  color: var(--blackColor);
  border-radius: 20px 0 20px 0;
}

.ea-default-btn.btn-style-four:hover {
  background-color: #71b67b;
  color: var(--whiteColor);
}

.ea-default-btn.btn-style-four.hover {
  background-color: #71b67b;
  color: var(--whiteColor);
}

.ea-default-btn.btn-style-five {
  background-color: #f7a7a7;
}

.ea-default-btn.btn-style-five:hover {
  background-color: #ef4f4f;
}

.ea-default-btn.btn-style-five.hover {
  background-color: #ef4f4f;
}

.ea-default-btn.btn-style-six {
  background-color: #323347;
}

.ea-default-btn.btn-style-six:hover {
  background-color: #46bcf2;
}

.ea-default-btn.btn-style-six.hover {
  background-color: #46bcf2;
}

.ea-default-btn.btn-style-seven {
  border-style: solid;
  border-width: 2px;
  -o-border-image: linear-gradient(45deg, #ff3834, #ff7133) 1;
     border-image: linear-gradient(45deg, #ff3834, #ff7133) 1;
  background-color: transparent;
  color: var(--blackColor);
  position: relative;
  z-index: 1;
}

.ea-default-btn.btn-style-seven::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(45deg, #ff3834, #ff7133);
  z-index: -1;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.ea-default-btn.btn-style-seven:hover {
  color: var(--whiteColor);
}

.ea-default-btn.btn-style-seven:hover::before {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.ea-default-btn.btn-style-seven.hover {
  color: var(--whiteColor);
}

.ea-default-btn.btn-style-seven.hover::before {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.ea-default-btn.btn-style-seven.large {
  -o-border-image: linear-gradient(45deg, #3d07ac, #0d54c2) 1;
     border-image: linear-gradient(45deg, #3d07ac, #0d54c2) 1;
}

.ea-default-btn.btn-style-seven.large::before {
  background-image: linear-gradient(45deg, #3d07ac, #0d54c2);
}

.ea-default-btn.btn-style-seven.large:hover {
  color: var(--whiteColor);
}

.ea-default-btn.btn-style-seven.large:hover::before {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.ea-default-btn.btn-style-seven.large.hover {
  color: var(--whiteColor);
}

.ea-default-btn.btn-style-seven.large.hover::before {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.ea-default-btn.btn-style-seven.normal {
  -o-border-image: linear-gradient(45deg, #34116b, #790dfc) 1;
     border-image: linear-gradient(45deg, #34116b, #790dfc) 1;
}

.ea-default-btn.btn-style-seven.normal::before {
  background-image: linear-gradient(45deg, #34116b, #790dfc);
}

.ea-default-btn.btn-style-seven.normal:hover {
  color: var(--whiteColor);
}

.ea-default-btn.btn-style-seven.normal:hover::before {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.ea-default-btn.btn-style-seven.normal.hover {
  color: var(--whiteColor);
}

.ea-default-btn.btn-style-seven.normal.hover::before {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.ea-default-btn.btn-style-seven.small {
  -o-border-image: linear-gradient(45deg, #015eea, #00c0fa) 1;
     border-image: linear-gradient(45deg, #015eea, #00c0fa) 1;
}

.ea-default-btn.btn-style-seven.small::before {
  background-image: linear-gradient(45deg, #015eea, #00c0fa);
}

.ea-default-btn.btn-style-seven.small:hover {
  color: var(--whiteColor);
}

.ea-default-btn.btn-style-seven.small:hover::before {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.ea-default-btn.btn-style-seven.small.hover {
  color: var(--whiteColor);
}

.ea-default-btn.btn-style-seven.small.hover::before {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.ea-default-btn.btn-style-eight {
  background-color: var(--whiteColor);
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
  color: #5288f1;
}

.ea-default-btn.btn-style-eight:hover {
  background-color: #5288f1;
  color: var(--whiteColor);
}

.ea-default-btn.btn-style-eight.hover {
  background-color: #5288f1;
  color: var(--whiteColor);
}

.ea-default-btn.btn-style-nine {
  background-color: #f7a7a7;
  color: var(--whiteColor);
  position: relative;
}

.ea-default-btn.btn-style-nine::before {
  content: "";
  position: absolute;
  top: -7px;
  left: -7px;
  width: 100%;
  height: 100%;
  border: 1px solid #ef4f4f;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.ea-default-btn.btn-style-nine:hover {
  background-color: #ef4f4f;
}

.ea-default-btn.btn-style-nine:hover::before {
  top: 0;
  left: 0;
}

.ea-default-btn.btn-style-nine.hover {
  background-color: #ef4f4f;
}

.ea-default-btn.btn-style-nine.hover::before {
  top: 0;
  left: 0;
}

/*================================================
SP Contact Form 7 Area CSS
=================================================*/
.ea-contact-form-area.style-two {
  background-color: #f0dbd6;
  position: relative;
  z-index: 1;
}

.ea-contact-form-area.style-two::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background-color: var(--whiteColor);
  z-index: -1;
}

.ea-contact-form-area.style-four {
  background-image: url(../images/contact-bg-1.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  position: relative;
  z-index: 1;
  margin-left: 50px;
  margin-right: 50px;
  border-radius: 50px;
  padding-left: 30px;
  padding-right: 30px;
}

.ea-contact-form-area.style-four::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0.9;
  z-index: -1;
  border-radius: 50px;
}

.ea-contact-form-area.style-six {
  background: linear-gradient(52deg, #f5dee6 0%, #e7e4f1 100%);
}

.ea-contact-form-area.style-seven.bg-shape {
  position: relative;
  z-index: 1;
}

.ea-contact-form-area.style-seven.bg-shape::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -100px;
  height: 100px;
  z-index: -1;
  background-image: url(../images/shape4.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.ea-contact-form h3 {
  font-size: 30px;
  margin-bottom: 30px;
}

.ea-contact-form .form-group {
  margin-bottom: 30px;
}

.ea-contact-form .form-group label {
  margin-bottom: 5px;
}

.ea-contact-form .form-group .form-control {
  border-radius: 0;
  height: 60px;
  border: 1px solid #ebebeb;
  background-color: #f9fffc;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.ea-contact-form .form-group .form-control::-webkit-input-placeholder {
  color: #d4d9d6;
}

.ea-contact-form .form-group .form-control:-ms-input-placeholder {
  color: #d4d9d6;
}

.ea-contact-form .form-group .form-control::-ms-input-placeholder {
  color: #d4d9d6;
}

.ea-contact-form .form-group .form-control::placeholder {
  color: #d4d9d6;
}

.ea-contact-form .form-group .form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: #7aca76;
}

.ea-contact-form .form-group textarea.form-control {
  height: auto;
}

.ea-contact-form .submit-btn {
  border: none;
  background-color: #7aca76;
  color: var(--whiteColor);
  border-radius: 4px;
  padding: 15px 35px;
  font-size: 16px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  border: 1px solid #7aca76;
}

.ea-contact-form .submit-btn i {
  font-size: 20px;
  position: relative;
  top: 4px;
}

.ea-contact-form .submit-btn:hover {
  background-color: transparent;
  color: #7aca76;
}

.ea-contact-form.style-two {
  background-color: #ffeee5;
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
  padding: 100px;
}

.ea-contact-form.style-two .form-group .form-control {
  border: 1px solid #dcbda7;
  background-color: #ffeee5;
}

.ea-contact-form.style-two .form-group .form-control::-webkit-input-placeholder {
  color: #beb2ac;
}

.ea-contact-form.style-two .form-group .form-control:-ms-input-placeholder {
  color: #beb2ac;
}

.ea-contact-form.style-two .form-group .form-control::-ms-input-placeholder {
  color: #beb2ac;
}

.ea-contact-form.style-two .form-group .form-control::placeholder {
  color: #beb2ac;
}

.ea-contact-form.style-two .form-group .form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: #dcbda7;
}

.ea-contact-form.style-two .submit-btn {
  background-color: #dcbda7;
  border: 1px solid #dcbda7;
}

.ea-contact-form.style-two .submit-btn:hover {
  background-color: transparent;
  color: #dcbda7;
}

.ea-contact-form.style-three .form-group .form-control {
  border: none;
  border-bottom: 1px solid #bdbdc4;
  background-color: var(--whiteColor);
  padding-left: 0;
  padding-right: 0;
}

.ea-contact-form.style-three .form-group .form-control::-webkit-input-placeholder {
  color: #9899a3;
}

.ea-contact-form.style-three .form-group .form-control:-ms-input-placeholder {
  color: #9899a3;
}

.ea-contact-form.style-three .form-group .form-control::-ms-input-placeholder {
  color: #9899a3;
}

.ea-contact-form.style-three .form-group .form-control::placeholder {
  color: #9899a3;
}

.ea-contact-form.style-three .form-group .form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: #323347;
}

.ea-contact-form.style-three .submit-btn {
  background-color: #70a8f2;
  border: 1px solid #70a8f2;
}

.ea-contact-form.style-three .submit-btn:hover {
  background-color: transparent;
  color: #70a8f2;
}

.ea-contact-form.style-four .form-group label {
  color: #f0f2f9;
}

.ea-contact-form.style-four .form-group .form-control {
  border: 1px solid #f0f2f9;
  background-color: #f0f2f9;
  border-radius: 8px;
}

.ea-contact-form.style-four .form-group .form-control::-webkit-input-placeholder {
  color: #c5c6cc;
}

.ea-contact-form.style-four .form-group .form-control:-ms-input-placeholder {
  color: #c5c6cc;
}

.ea-contact-form.style-four .form-group .form-control::-ms-input-placeholder {
  color: #c5c6cc;
}

.ea-contact-form.style-four .form-group .form-control::placeholder {
  color: #c5c6cc;
}

.ea-contact-form.style-four .form-group .form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: #f0f2f9;
}

.ea-contact-form.style-four .submit-btn {
  background-color: #cf4344;
  border: 1px solid #cf4344;
  width: 100%;
}

.ea-contact-form.style-four .submit-btn:hover {
  background-color: transparent;
  color: var(--whiteColor);
}

.ea-contact-form.style-five .form-group label {
  color: #f0f2f9;
}

.ea-contact-form.style-five .form-group .form-control {
  border: 1px solid #f0f2f9;
  background-color: #f0f2f9;
  border-radius: 8px;
}

.ea-contact-form.style-five .form-group .form-control::-webkit-input-placeholder {
  color: #c5c6cc;
}

.ea-contact-form.style-five .form-group .form-control:-ms-input-placeholder {
  color: #c5c6cc;
}

.ea-contact-form.style-five .form-group .form-control::-ms-input-placeholder {
  color: #c5c6cc;
}

.ea-contact-form.style-five .form-group .form-control::placeholder {
  color: #c5c6cc;
}

.ea-contact-form.style-five .form-group .form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: #f0f2f9;
}

.ea-contact-form.style-five .submit-btn {
  background-color: #ff9f59;
  border: 1px solid #ff9f59;
  width: 100%;
}

.ea-contact-form.style-five .submit-btn:hover {
  background-color: transparent;
  color: #ff9f59;
}

.ea-contact-form.style-six .form-group .form-control {
  border: 1px solid #89748c;
  background-color: transparent;
  border-radius: 4px;
}

.ea-contact-form.style-six .form-group .form-control::-webkit-input-placeholder {
  color: #998f9d;
}

.ea-contact-form.style-six .form-group .form-control:-ms-input-placeholder {
  color: #998f9d;
}

.ea-contact-form.style-six .form-group .form-control::-ms-input-placeholder {
  color: #998f9d;
}

.ea-contact-form.style-six .form-group .form-control::placeholder {
  color: #998f9d;
}

.ea-contact-form.style-six .form-group .form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: #89748c;
}

.ea-contact-form.style-six .submit-btn {
  background-color: #89748c;
  border: 1px solid #89748c;
  width: 100%;
}

.ea-contact-form.style-six .submit-btn:hover {
  background-color: transparent;
  color: #89748c;
}

.ea-contact-form.style-seven .form-group .form-control {
  border: 1px solid #f0f2f9;
  background-color: #f0f2f9;
  border-radius: 4px;
}

.ea-contact-form.style-seven .form-group .form-control::-webkit-input-placeholder {
  color: #9192a0;
}

.ea-contact-form.style-seven .form-group .form-control:-ms-input-placeholder {
  color: #9192a0;
}

.ea-contact-form.style-seven .form-group .form-control::-ms-input-placeholder {
  color: #9192a0;
}

.ea-contact-form.style-seven .form-group .form-control::placeholder {
  color: #9192a0;
}

.ea-contact-form.style-seven .form-group .form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: #f0f2f9;
}

.ea-contact-form.style-seven .submit-btn {
  background-color: #323347;
  border: 1px solid #323347;
  width: 100%;
}

.ea-contact-form.style-seven .submit-btn:hover {
  background-color: transparent;
  color: #323347;
}

.ea-get-in-touch h3 {
  font-size: 30px;
  margin-bottom: 20px;
}

.ea-get-in-touch p {
  color: #323347;
  margin-bottom: 20px;
}

.ea-get-in-touch ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.ea-get-in-touch ul li {
  margin-bottom: 30px;
}

.ea-get-in-touch ul li:last-child {
  margin-bottom: 0;
}

.ea-get-in-touch ul li span {
  font-size: 16px;
  font-weight: 600;
  color: #7aca76;
  display: block;
  margin-bottom: 10px;
}

.ea-get-in-touch.style-two ul li span {
  color: #977862;
}

.ea-get-in-touch.style-three {
  background-image: url(../images/get-in-touch-bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  padding: 50px;
  padding-top: 100px;
  padding-bottom: 100px;
  border-radius: 4px;
}

.ea-get-in-touch.style-three ul li {
  position: relative;
  padding-left: 40px;
}

.ea-get-in-touch.style-three ul li i {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 30px;
  color: #70a8f2;
}

.ea-get-in-touch.style-three ul li span {
  color: #323347;
}

.ea-single-contact-info {
  margin-top: 30px;
  color: var(--whiteColor);
  position: relative;
  padding-left: 25px;
}

.ea-single-contact-info i {
  position: absolute;
  top: 4px;
  left: 0;
  color: #cf4344;
}

.ea-single-contact-info a {
  color: var(--whiteColor);
}

.ea-single-contact-info a:hover {
  color: #cf4344;
}

.ea-single-contact-info.float-right {
  float: right;
}

.ea-single-contact-info.float-muddil {
  text-align: center;
  max-width: 160px;
  margin: 30px auto 0;
}

.ea-map iframe {
  width: 100%;
  height: 492px;
  display: block;
  border: none;
  border-radius: 20px;
}

.ea-contact-img {
  text-align: center;
  position: relative;
  z-index: 1;
}

.ea-contact-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 450px;
  height: 450px;
  background-color: #d9c4da;
  border-radius: 100%;
  z-index: -1;
  margin: auto;
  text-align: center;
  right: 0;
}

.ea-contact-bg {
  background-color: var(--whiteColor);
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
  padding-right: 30px;
}

/*================================================
SP Newsletter Area CSS
=================================================*/
.ea-newsletter-area.style-seven.bg-shape {
  position: relative;
  z-index: 1;
}

.ea-newsletter-area.style-seven.bg-shape::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -100px;
  height: 100px;
  z-index: -1;
  background-image: url(../images/shape4.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.ea-newsletter-bg {
  background: linear-gradient(45deg, #3225a0, #3b0c76);
}

.ea-newsletter-bg h3 {
  color: var(--whiteColor);
  font-size: 30px;
}

.ea-newsletter-bg p {
  color: var(--whiteColor);
  margin-bottom: 30px;
}

.ea-newsletter-bg.style-two {
  background-image: url(../images/newsletter-bg-1.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  position: relative;
  z-index: 1;
}

.ea-newsletter-bg.style-two::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-image: url(../images/ea-thumb-bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  z-index: -1;
}

.ea-newsletter-bg.style-two .ea-thumb-bg {
  padding-left: 50px;
  padding-right: 50px;
}

.ea-newsletter-bg.style-three {
  background: -webkit-gradient(linear, left top, right top, from(#04dd9e), to(#8ee164));
  background: linear-gradient(to right, #04dd9e, #8ee164);
  max-width: 1230px;
  margin: auto;
  border-radius: 30px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.ea-newsletter-bg.style-three h3 {
  color: var(--blackColor);
}

.ea-newsletter-bg.style-three .shape {
  position: absolute;
  z-index: -1;
}

.ea-newsletter-bg.style-three .shape.shape-1 {
  bottom: 0;
  left: 0;
}

.ea-newsletter-bg.style-three .shape.shape-2 {
  top: 0;
  right: 0;
}

.ea-newsletter-bg.style-four {
  background: linear-gradient(45deg, #111f3d, #111f3d);
}

.ea-newsletter-bg.style-four p {
  margin-bottom: 10px;
}

.ea-newsletter-bg.style-four h3 {
  margin-bottom: 0;
}

.ea-newsletter-bg.style-five {
  background-image: url(../images/newsletter-bg-2.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  max-width: 1230px;
  margin: auto;
  border-radius: 30px;
}

.ea-newsletter-bg.style-five p {
  color: var(--blackColor);
}

.ea-newsletter-bg.style-five h3 {
  color: var(--blackColor);
}

.ea-newsletter-bg.style-six {
  background-image: url(../images/newsletter-bg-3.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  position: relative;
  z-index: 1;
  text-align: center;
}

.ea-newsletter-bg.style-six::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: -1;
}

.ea-newsletter-bg.style-seven {
  background: linear-gradient(45deg, #f8c823, #f8c823);
  height: 100%;
  max-width: 1230px;
  margin: auto;
  border-radius: 30px;
}

.ea-newsletter-bg.style-seven h3 {
  color: var(--blackColor);
}

.ea-newsletter-form {
  position: relative;
}

.ea-newsletter-form .form-control {
  height: 55px;
  background-color: var(--whiteColor);
  border: 1px solid var(--whiteColor);
}

.ea-newsletter-form .form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.ea-newsletter-form .subscribe-btn {
  position: absolute;
  top: 2px;
  right: 2px;
  height: 51px;
  border: none;
  padding: 10px 40px;
  background: -webkit-gradient(linear, left top, right top, from(#ba61df), to(#642cfb));
  background: linear-gradient(to right, #ba61df, #642cfb);
  color: var(--whiteColor);
  border-radius: 4px;
  z-index: 1;
}

.ea-newsletter-form .subscribe-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#642cfb), to(#ba61df));
  background: linear-gradient(to right, #642cfb, #ba61df);
  -webkit-transition: var(--transition);
  transition: var(--transition);
  border-radius: 4px;
  z-index: -1;
}

.ea-newsletter-form .subscribe-btn i {
  position: relative;
  top: 2px;
}

.ea-newsletter-form .subscribe-btn:hover::before {
  width: 100%;
}

.ea-newsletter-form.style-two .form-control {
  border: 1px solid #c98431;
  background-color: #8552e7;
  color: var(--whiteColor);
}

.ea-newsletter-form.style-two .form-control::-webkit-input-placeholder {
  color: var(--whiteColor);
}

.ea-newsletter-form.style-two .form-control:-ms-input-placeholder {
  color: var(--whiteColor);
}

.ea-newsletter-form.style-two .form-control::-ms-input-placeholder {
  color: var(--whiteColor);
}

.ea-newsletter-form.style-two .form-control::placeholder {
  color: var(--whiteColor);
}

.ea-newsletter-form.style-two .subscribe-btn {
  background: -webkit-gradient(linear, left top, right top, from(#e39b42), to(#ecb858));
  background: linear-gradient(to right, #e39b42, #ecb858);
}

.ea-newsletter-form.style-two .subscribe-btn::before {
  background: -webkit-gradient(linear, left top, right top, from(#ecb858), to(#e39b42));
  background: linear-gradient(to right, #ecb858, #e39b42);
}

.ea-newsletter-form.style-three .form-control {
  border: 1px solid var(--whiteColor);
  background-color: transparent;
  color: var(--whiteColor);
  border-radius: 50px;
}

.ea-newsletter-form.style-three .form-control::-webkit-input-placeholder {
  color: var(--whiteColor);
}

.ea-newsletter-form.style-three .form-control:-ms-input-placeholder {
  color: var(--whiteColor);
}

.ea-newsletter-form.style-three .form-control::-ms-input-placeholder {
  color: var(--whiteColor);
}

.ea-newsletter-form.style-three .form-control::placeholder {
  color: var(--whiteColor);
}

.ea-newsletter-form.style-three .subscribe-btn {
  background: -webkit-gradient(linear, left top, right top, from(#434343), to(#141515));
  background: linear-gradient(to right, #434343, #141515);
  border-radius: 50px;
}

.ea-newsletter-form.style-three .subscribe-btn::before {
  background: -webkit-gradient(linear, left top, right top, from(#141515), to(#434343));
  background: linear-gradient(to right, #141515, #434343);
  border-radius: 50px;
}

.ea-newsletter-form.style-four .form-control {
  border: 1px solid var(--whiteColor);
  background-color: transparent;
  color: var(--whiteColor);
  border-radius: 50px;
  width: 87%;
}

.ea-newsletter-form.style-four .form-control::-webkit-input-placeholder {
  color: var(--whiteColor);
}

.ea-newsletter-form.style-four .form-control:-ms-input-placeholder {
  color: var(--whiteColor);
}

.ea-newsletter-form.style-four .form-control::-ms-input-placeholder {
  color: var(--whiteColor);
}

.ea-newsletter-form.style-four .form-control::placeholder {
  color: var(--whiteColor);
}

.ea-newsletter-form.style-four .subscribe-btn {
  background: -webkit-gradient(linear, left top, right top, from(#0041ff), to(#0041ff));
  background: linear-gradient(to right, #0041ff, #0041ff);
  border-radius: 50px;
}

.ea-newsletter-form.style-four .subscribe-btn::before {
  background: -webkit-gradient(linear, left top, right top, from(#0041ff), to(#0041ff));
  background: linear-gradient(to right, #0041ff, #0041ff);
  border-radius: 50px;
  display: none;
}

.ea-newsletter-form.style-five .form-control {
  border: 1px solid var(--blackColor);
  background-color: transparent;
  color: var(--blackColor);
  border-radius: 4px;
}

.ea-newsletter-form.style-five .form-control::-webkit-input-placeholder {
  color: #b5b5b5;
}

.ea-newsletter-form.style-five .form-control:-ms-input-placeholder {
  color: #b5b5b5;
}

.ea-newsletter-form.style-five .form-control::-ms-input-placeholder {
  color: #b5b5b5;
}

.ea-newsletter-form.style-five .form-control::placeholder {
  color: #b5b5b5;
}

.ea-newsletter-form.style-five .subscribe-btn {
  background: -webkit-gradient(linear, left top, right top, from(#3d3d3d), to(#3d3d3d));
  background: linear-gradient(to right, #3d3d3d, #3d3d3d);
  border-radius: 4px;
  position: unset;
  margin-top: 10px;
  width: 100%;
}

.ea-newsletter-form.style-five .subscribe-btn::before {
  background: -webkit-gradient(linear, left top, right top, from(#3d3d3d), to(#3d3d3d));
  background: linear-gradient(to right, #3d3d3d, #3d3d3d);
  border-radius: 4px;
  display: none;
}

.ea-newsletter-form.style-six .form-control {
  background-color: #f6f6f7;
  border: 1px solid #f6f6f7;
  color: var(--blackColor);
  border-radius: 4px;
}

.ea-newsletter-form.style-six .form-control::-webkit-input-placeholder {
  color: #b5b5b5;
}

.ea-newsletter-form.style-six .form-control:-ms-input-placeholder {
  color: #b5b5b5;
}

.ea-newsletter-form.style-six .form-control::-ms-input-placeholder {
  color: #b5b5b5;
}

.ea-newsletter-form.style-six .form-control::placeholder {
  color: #b5b5b5;
}

.ea-newsletter-form.style-six .subscribe-btn {
  background: -webkit-gradient(linear, left top, right top, from(#f44571), to(#f44571));
  background: linear-gradient(to right, #f44571, #f44571);
  border-radius: 4px;
  position: unset;
  margin-top: 20px;
  width: 100%;
}

.ea-newsletter-form.style-six .subscribe-btn::before {
  background: -webkit-gradient(linear, left top, right top, from(#3d3d3d), to(#3d3d3d));
  background: linear-gradient(to right, #3d3d3d, #3d3d3d);
  border-radius: 4px;
  display: none;
}

.ea-newsletter-form.style-seven .form-control {
  background-color: transparent;
  border: 1px solid #ffffff;
  color: var(--whiteColor);
  border-radius: 0;
}

.ea-newsletter-form.style-seven .form-control::-webkit-input-placeholder {
  color: #ffffff;
}

.ea-newsletter-form.style-seven .form-control:-ms-input-placeholder {
  color: #ffffff;
}

.ea-newsletter-form.style-seven .form-control::-ms-input-placeholder {
  color: #ffffff;
}

.ea-newsletter-form.style-seven .form-control::placeholder {
  color: #ffffff;
}

.ea-newsletter-form.style-seven .subscribe-btn {
  background: -webkit-gradient(linear, left top, right top, from(#ffffff), to(#ffffff));
  background: linear-gradient(to right, #ffffff, #ffffff);
  border-radius: 0;
  color: var(--blackColor);
}

.ea-newsletter-form.style-seven .subscribe-btn i {
  color: var(--blackColor);
}

.ea-newsletter-form.style-seven .subscribe-btn::before {
  background: -webkit-gradient(linear, left top, right top, from(#3d3d3d), to(#3d3d3d));
  background: linear-gradient(to right, #3d3d3d, #3d3d3d);
  border-radius: 4px;
  display: none;
}

.ea-social-icon {
  padding: 0;
  margin: 0;
  list-style: none;
}

.ea-social-icon li {
  display: inline-block;
  margin-top: 30px;
  margin-right: 5px;
}

.ea-social-icon li:last-child {
  margin-right: 0;
}

.ea-social-icon li a i {
  width: 35px;
  height: 35px;
  line-height: 35px;
  background-color: var(--whiteColor);
  border-radius: 4px;
  color: var(--blackColor);
  text-align: center;
  font-size: 20px;
  position: relative;
  z-index: 1;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.ea-social-icon li a i::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#ba61df), to(#642cfb));
  background: linear-gradient(to right, #ba61df, #642cfb);
  border-radius: 4px;
  z-index: -1;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.ea-social-icon li a:hover i {
  color: var(--whiteColor);
}

.ea-social-icon li a:hover i::after {
  width: 100%;
}

.ea-social-icon.style-two li a i::after {
  background: -webkit-gradient(linear, left top, right top, from(#e39b42), to(#ecb857));
  background: linear-gradient(to right, #e39b42, #ecb857);
}

.ea-social-icon.style-three li a i {
  border-radius: 50px;
}

.ea-social-icon.style-three li a i::after {
  background: -webkit-gradient(linear, left top, right top, from(#434343), to(#141515));
  background: linear-gradient(to right, #434343, #141515);
  border-radius: 50px;
}

.ea-social-icon.style-four {
  text-align: right;
}

.ea-social-icon.style-four li {
  margin-top: 0;
}

.ea-social-icon.style-four li a i {
  border-radius: 50%;
}

.ea-social-icon.style-four li a i::after {
  background: -webkit-gradient(linear, left top, right top, from(#0041ff), to(#0041ff));
  background: linear-gradient(to right, #0041ff, #0041ff);
  border-radius: 50%;
}

.ea-social-icon.style-seven li a i {
  border-radius: 0;
}

.ea-social-icon.style-seven li a i::after {
  background: -webkit-gradient(linear, left top, right top, from(#434343), to(#141515));
  background: linear-gradient(to right, #434343, #141515);
  border-radius: 0;
}

.ea-newsletter-img {
  text-align: right;
}

/*================================================
SP Progress Bar Area CSS
=================================================*/
.ea-progress-bar-area.style-two {
  background-image: url(../images/progress-bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  position: relative;
  z-index: 1;
}

.ea-progress-bar-area.style-two::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0.8;
  z-index: -1;
}

.ea-progress-bar-area.style-three {
  background-image: url(../images/progress-bg-2.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  position: relative;
  z-index: 1;
}

.ea-progress-bar-area.style-three::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0.8;
  z-index: -1;
}

.ea-progress-bar-area.style-three::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background-color: var(--whiteColor);
  z-index: -1;
}

.ea-progress-bar-area.style-five {
  position: relative;
  z-index: 1;
}

.ea-progress-bar-area.style-five::before {
  content: "";
  position: absolute;
  top: 268px;
  left: -30%;
  width: 100%;
  height: 398px;
  background-color: #f9efef;
  z-index: -1;
  border-radius: 0 100px 100px 0;
}

.ea-progress-bar-area.style-six.bg-shape {
  position: relative;
  z-index: 1;
}

.ea-progress-bar-area.style-six.bg-shape::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -100px;
  height: 100px;
  z-index: -1;
  background-image: url(../images/shape4.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.ea-progress-bar-content {
  margin-bottom: 20px;
}

.ea-progress-bar-content .top-title {
  color: #7aca76;
  display: block;
  font-size: 16px;
  margin-bottom: 10px;
}

.ea-progress-bar-content h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.ea-progress-bar-content.style-two .top-title {
  color: var(--whiteColor);
}

.ea-progress-bar-content.style-two h2 {
  color: var(--whiteColor);
}

.ea-progress-bar-content.style-two p {
  color: var(--whiteColor);
}

.ea-all-skill-bar .skill-bar {
  margin-bottom: 20px;
}

.ea-all-skill-bar .skill-bar .progress-title-holder {
  position: relative;
}

.ea-all-skill-bar .skill-bar .progress-title {
  font-size: 16px;
  font-weight: normal;
}

.ea-all-skill-bar .skill-bar .progress-number-wrapper {
  width: 100%;
  z-index: 10;
  font-size: 11px;
  line-height: 24px;
  height: 24px;
  letter-eaacing: 0px;
  font-weight: 600;
  font-style: normal;
  text-transform: none;
  color: var(--whiteColor);
}

.ea-all-skill-bar .skill-bar .progress-number-mark {
  margin-bottom: 0;
  border-radius: 3px;
  color: var(--blackColor);
  padding: 0 8px;
  position: absolute;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 16px;
  font-weight: normal;
}

.ea-all-skill-bar .skill-bar .down-arrow {
  border: 1px solid var(--mainColor);
  position: absolute;
  left: 50%;
  top: 88%;
  height: 35px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: none;
}

.ea-all-skill-bar .skill-bar .progress-content-outter {
  height: 6px;
  background-color: #e1e0e7;
}

.ea-all-skill-bar .skill-bar .progress-content {
  height: 6px;
  background-color: #7aca76;
  width: 0%;
}

.ea-all-skill-bar.style-two .skill-bar .progress-content {
  background: -webkit-gradient(linear, left top, right top, from(#e16d42), to(#ff9f59));
  background: linear-gradient(to right, #e16d42, #ff9f59);
}

.ea-all-skill-bar.style-two .skill-bar .progress-title {
  color: var(--whiteColor);
}

.ea-all-skill-bar.style-two .skill-bar .progress-number-mark {
  color: var(--whiteColor);
}

.ea-all-skill-bar.style-three .skill-bar .progress-content {
  background-color: #00a5f8;
  height: 3px;
}

.ea-all-skill-bar.style-three .skill-bar .progress-content-outter {
  height: 3px;
}

.ea-all-skill-bar.style-three .skill-bar .down-arrow {
  display: block;
  border-color: #00a5f8;
  -webkit-transform: rotate(20deg);
          transform: rotate(20deg);
  left: 45%;
  top: 72%;
}

.ea-all-skill-bar.style-four .skill-bar .progress-content {
  background-color: #cda78f;
}

.ea-all-skill-bar.style-four .skill-bar .progress-title {
  color: var(--blackColor);
}

.ea-all-skill-bar.style-four .skill-bar .progress-number-mark {
  color: #fff7f2;
}

.ea-all-skill-bar.style-five {
  background-color: #f9efef;
}

.ea-all-skill-bar.style-five .skill-bar {
  margin-bottom: 30px;
}

.ea-all-skill-bar.style-five .skill-bar .progress-content {
  background-color: #f64a4a;
  height: 25px;
}

.ea-all-skill-bar.style-five .skill-bar .progress-content-outter {
  height: 25px;
  background-color: #f8bdbd;
}

.ea-all-skill-bar.style-five .skill-bar .down-arrow {
  display: none;
}

.ea-all-skill-bar.style-five .skill-bar .progress-title {
  position: absolute;
  top: 3px;
  left: 10px;
  color: var(--whiteColor);
}

.ea-all-skill-bar.style-five .skill-bar .progress-number-mark {
  top: 1px;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  color: var(--whiteColor);
}

.ea-progress-bar-img-two {
  margin-left: 30px;
  position: relative;
  z-index: 1;
}

.ea-progress-bar-img-two .progress-bar-shape {
  position: absolute;
  top: -100px;
  right: -100px;
  z-index: -1;
}

.ea-progres-and-content-wrap {
  padding: 100px;
  background-color: #fff7f2;
}

.progress-bar {
  background-color: #ffffff;
  margin: auto;
}

.progress-bar div span {
  background-color: #fcf0ec;
  color: #e16d42;
}

.progress-bar div span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 5px solid #fff;
  border-radius: 50%;
}

.progress-bar .rotate {
  background-color: #e16d42 !important;
}

.progress-bar .right {
  background-color: #e16d42 !important;
}

.progress-bar .background {
  background-color: #fcf0ec !important;
}

.progress-bar .left {
  background-color: #fcf0ec !important;
}

.progress-bar.color-f1faf1 .background {
  background-color: #f1faf1 !important;
}

.progress-bar.color-f1faf1 .left {
  background-color: #f1faf1 !important;
}

.progress-bar.color-f1faf1 .right {
  background-color: #7aca76 !important;
}

.progress-bar.color-f1faf1 .rotate {
  background-color: #7aca76 !important;
}

.progress-bar.color-f1faf1 div span {
  background-color: #f1faf1 !important;
  color: #7aca76;
}

.progress-bar.color-f2effc .background {
  background-color: #f2effc !important;
}

.progress-bar.color-f2effc .left {
  background-color: #f2effc !important;
}

.progress-bar.color-f2effc .right {
  background-color: #8361e3 !important;
}

.progress-bar.color-f2effc .rotate {
  background-color: #8361e3 !important;
}

.progress-bar.color-f2effc div span {
  background-color: #f2effc !important;
  color: #8361e3;
}

.progress-bar.color-fcfaec .background {
  background-color: #fcfaec !important;
}

.progress-bar.color-fcfaec .left {
  background-color: #fcfaec !important;
}

.progress-bar.color-fcfaec .right {
  background-color: #e6d142 !important;
}

.progress-bar.color-fcfaec .rotate {
  background-color: #e6d142 !important;
}

.progress-bar.color-fcfaec div span {
  background-color: #fcfaec !important;
  color: #e6d142;
}

.progress-bar.color-e5f6fe .background {
  background-color: #e5f6fe !important;
}

.progress-bar.color-e5f6fe .left {
  background-color: #e5f6fe !important;
}

.progress-bar.color-e5f6fe .right {
  background-color: #00a5f8 !important;
}

.progress-bar.color-e5f6fe .rotate {
  background-color: #00a5f8 !important;
}

.progress-bar.color-e5f6fe div span {
  background-color: #e5f6fe !important;
  color: #00a5f8;
}

.progress-content span {
  display: block;
  text-align: center;
  margin-top: 10px;
}

/*================================================
SP Accordion Area CSS
=================================================*/
.ea-accordion-area.style-two {
  position: relative;
  z-index: 1;
}

.ea-accordion-area.style-two::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(45deg, #5581f1 0%, #1153fc 100%);
  z-index: -1;
}

.ea-accordion-area.ea-bg-colo-f0f2f9 {
  background-color: #f0f2f9;
}

.ea-accordion-area.ea-bg-images {
  background-image: url(../images/ea-accordion-bg.jpg);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: auto;
  height: 100%;
  position: relative;
  z-index: 1;
}

.ea-accordion-area.ea-bg-images::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #151623;
  opacity: 0.9;
  z-index: -1;
}

.ea-accordion-area.style-seven.bg-shape {
  position: relative;
  z-index: 1;
}

.ea-accordion-area.style-seven.bg-shape::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -100px;
  height: 100px;
  z-index: -1;
  background-image: url(../images/shape4.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.ea-faq-accordion {
  font-family: var(--openSansFontFamily);
}

.ea-faq-accordion .accordion {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
}

.ea-faq-accordion .accordion .accordion-item {
  border-radius: 5px;
  display: block;
  margin-bottom: 15px;
}

.ea-faq-accordion .accordion .accordion-title {
  padding: 20px 40px 17px 25px;
  color: var(--blackColor);
  text-decoration: none;
  position: relative;
  display: block;
  font-size: 18px;
  font-weight: 600;
  background-color: #f6eee1;
  border-bottom: 1px solid var(--whiteColor);
  z-index: 1;
}

.ea-faq-accordion .accordion .accordion-title i {
  position: absolute;
  right: 13px;
  top: 20px;
  font-size: 25px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.ea-faq-accordion .accordion .accordion-title.active i {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.ea-faq-accordion .accordion .accordion-title.active i::before {
  content: "\e9ac";
}

.ea-faq-accordion .accordion .accordion-content {
  display: none;
  position: relative;
  margin-top: -6px;
  padding: 23px;
  background-color: #fefaf3;
  font-size: 16px;
}

.ea-faq-accordion .accordion .accordion-content.show {
  display: block;
}

.ea-faq-accordion.style-two {
  max-width: 1020px;
  margin: auto;
  background-color: var(--whiteColor);
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
  padding: 100px;
}

.ea-faq-accordion.style-two .accordion .accordion-title {
  border: 2px solid #f1f1f1;
  background-color: transparent;
  border-radius: 8px;
}

.ea-faq-accordion.style-two .accordion .accordion-title.active {
  background-color: #f0f2f9;
  border-color: #f0f2f9;
}

.ea-faq-accordion.style-two .accordion .accordion-title.active i::before {
  content: "\eaed";
}

.ea-faq-accordion.style-two .accordion .accordion-content {
  background-color: transparent;
}

.ea-faq-accordion.style-three {
  max-width: 810px;
  margin: auto;
}

.ea-faq-accordion.style-three .accordion .accordion-title {
  background: -webkit-gradient(linear, left top, right top, from(#fddfea), to(#ffe8e3));
  background: linear-gradient(to right, #fddfea, #ffe8e3);
  border-radius: 0;
  color: var(--blackColor);
  padding: 20px 17px 17px 75px;
}

.ea-faq-accordion.style-three .accordion .accordion-title i {
  background-color: var(--whiteColor);
  color: var(--blackColor);
  height: 60px;
  width: 60px;
  text-align: center;
  line-height: 60px;
  top: 2px;
  right: auto;
  left: 2px;
}

.ea-faq-accordion.style-three .accordion .accordion-title.active {
  background: -webkit-gradient(linear, left top, right top, from(#ef2b73), to(#ff6741));
  background: linear-gradient(to right, #ef2b73, #ff6741);
  color: var(--whiteColor);
}

.ea-faq-accordion.style-three .accordion .accordion-title.active i::before {
  content: "\eaed";
}

.ea-faq-accordion.style-three .accordion .accordion-content {
  background-color: transparent;
}

.ea-faq-accordion.style-four .accordion .accordion-title {
  background-color: var(--whiteColor);
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
  border-radius: 50px;
}

.ea-faq-accordion.style-four .accordion .accordion-title.active {
  background-color: #323347;
  color: var(--whiteColor);
}

.ea-faq-accordion.style-four .accordion .accordion-title.active i::before {
  content: "\eaed";
}

.ea-faq-accordion.style-four .accordion .accordion-item {
  background-color: var(--whiteColor);
  border-radius: 50px;
}

.ea-faq-accordion.style-four .accordion .accordion-content {
  background-color: transparent;
}

.ea-faq-accordion.style-five {
  max-width: 1010px;
  margin: auto;
}

.ea-faq-accordion.style-five .accordion .accordion-title {
  background-color: transparent;
  border-bottom: 1px solid #e4e4e4;
  border-radius: 0;
  color: var(--blackColor);
  padding-left: 0;
  padding-right: 40px;
}

.ea-faq-accordion.style-five .accordion .accordion-title i {
  right: 0;
  color: #ff0000;
}

.ea-faq-accordion.style-five .accordion .accordion-title.active i::before {
  content: "\eaed";
}

.ea-faq-accordion.style-five .accordion .accordion-content {
  background-color: transparent;
  padding-left: 50px;
  position: relative;
}

.ea-faq-accordion.style-five .accordion .accordion-content span {
  font-weight: 600;
  font-size: 18px;
  position: absolute;
  top: 19px;
  left: 0;
  color: var(--blackColor);
}

.ea-faq-accordion.style-six .accordion .accordion-title {
  background-color: transparent;
  border-bottom: 1px solid #44454f;
  border-radius: 0;
  color: var(--whiteColor);
}

.ea-faq-accordion.style-six .accordion .accordion-title i {
  right: 0;
  color: #4cd49d;
}

.ea-faq-accordion.style-six .accordion .accordion-title.active i::before {
  content: "\eaed";
}

.ea-faq-accordion.style-six .accordion .accordion-content {
  background-color: transparent;
  padding-bottom: 0;
  position: relative;
}

.ea-faq-accordion.style-six .accordion .accordion-content p {
  color: var(--whiteColor);
}

.ea-faq-accordion.style-six .accordion .accordion-content span {
  font-weight: 600;
  font-size: 18px;
  position: absolute;
  top: 19px;
  left: 0;
  color: var(--whiteColor);
}

.ea-faq-accordion.style-seven .accordion .accordion-title {
  background-color: #e3d9ff;
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
  border-radius: 50px;
  border: none;
}

.ea-faq-accordion.style-seven .accordion .accordion-title.active {
  background: -webkit-gradient(linear, left top, right top, from(#6f3cff), to(#6f3cff));
  background: linear-gradient(to right, #6f3cff, #6f3cff);
  color: var(--whiteColor);
}

.ea-faq-accordion.style-seven .accordion .accordion-item {
  background-color: var(--whiteColor);
  border-radius: 50px;
}

.ea-faq-accordion.style-seven .accordion .accordion-content {
  background-color: transparent;
}

/*================================================
SP Tabs Area CSS
=================================================*/
.ea-tabs-area.ea-bg-color-e7ecf9 {
  background-color: #e7ecf9;
}

.ea-tabs-area .pr-0 {
  padding-right: 0 !important;
}

.ea-tabs-area .pl-0 {
  padding-left: 0 !important;
}

.ea-tabs-area.style-seven.bg-shape {
  position: relative;
  z-index: 1;
}

.ea-tabs-area.style-seven.bg-shape::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -100px;
  height: 100px;
  z-index: -1;
  background-image: url(../images/shape4.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.ea-tabs-button {
  background-color: #3656f7;
  padding: 8px 30px;
  text-align: center;
  margin-bottom: 30px;
}

.ea-tabs-button .nav-tabs {
  display: inline-block;
  text-align: center;
  margin: auto;
  border-bottom: none;
  background-color: #a8b6fc;
  border-radius: 50px;
}

.ea-tabs-button .nav-tabs .nav-link {
  border: none;
  text-align: center;
  display: inline-block;
  border-radius: 50px;
  color: #3656f7;
  padding: 10px 40px;
}

.ea-tabs-button.style-two {
  background-color: transparent;
}

.ea-tabs-button.style-two .nav-tabs {
  background-color: #a68f7d;
  border-radius: 8px;
  padding: 5px;
  padding-right: 2px;
}

.ea-tabs-button.style-two .nav-tabs .nav-link {
  border-radius: 0;
  background-color: #bba28e;
  color: var(--whiteColor);
  margin-right: 3px;
}

.ea-tabs-button.style-two .nav-tabs .nav-link.active {
  background-color: #fff7f2;
  color: #bba28e;
}

.ea-tabs-button.style-two .nav-tabs .nav-link i {
  margin-right: 5px;
  position: relative;
  top: 2px;
}

.ea-tabs-button.style-three {
  background-color: transparent;
  padding: 0;
  margin-bottom: 0;
}

.ea-tabs-button.style-three .nav-tabs {
  background-color: transparent;
  padding: 0;
  margin-bottom: -1px;
}

.ea-tabs-button.style-three .nav-tabs .nav-link {
  margin: 0 5px;
  border: 1px solid #e0e0e0;
  background-color: #e0e0e0;
  border-radius: 0 30px 0 0;
  color: var(--blackColor);
}

.ea-tabs-button.style-three .nav-tabs .nav-link.active {
  background-color: var(--whiteColor);
  border-bottom: 1px solid var(--whiteColor);
}

.ea-tabs-button.style-four {
  background-color: transparent;
  padding: 0;
}

.ea-tabs-button.style-four .nav-tabs {
  background-color: transparent;
  display: block;
}

.ea-tabs-button.style-four .nav-tabs .nav-link {
  border-bottom: 1px solid var(--whiteColor) !important;
  background-color: #4c73e7;
  border-radius: 0;
  color: var(--whiteColor);
  display: block;
  width: 100%;
  margin-bottom: 1px;
  text-align: left;
  position: relative;
  padding: 25px 20px;
  padding-left: 70px;
}

.ea-tabs-button.style-four .nav-tabs .nav-link i {
  position: absolute;
  top: 17px;
  left: 20px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: var(--whiteColor);
  color: #4c73e7;
  border-radius: 50px;
}

.ea-tabs-button.style-four .nav-tabs .nav-link.active {
  background-color: var(--whiteColor);
  color: var(--blackColor);
}

.ea-tabs-button.style-four .nav-tabs .nav-link.active i {
  background-color: #4c73e7;
  color: var(--whiteColor);
}

.ea-tabs-button.style-five {
  background-color: transparent;
  padding: 0;
}

.ea-tabs-button.style-five .nav-tabs {
  background-color: transparent;
  display: block;
}

.ea-tabs-button.style-five .nav-tabs .nav-link {
  border: 1px solid #e0e0e0;
  color: var(--blackColor);
}

.ea-tabs-button.style-five .nav-tabs .nav-link.active {
  background: -webkit-gradient(linear, left top, right top, from(#fd5492), to(#f86f64));
  background: linear-gradient(to right, #fd5492, #f86f64);
  color: var(--whiteColor);
}

.ea-tabs-button.style-six {
  background: -webkit-gradient(linear, left top, left bottom, from(#ff3834), to(#ff7133));
  background: linear-gradient(to bottom, #ff3834, #ff7133);
  padding: 0;
  margin-bottom: 0;
}

.ea-tabs-button.style-six .nav-tabs {
  background-color: transparent;
  display: block;
}

.ea-tabs-button.style-six .nav-tabs .nav-link {
  color: var(--blackColor);
  border-radius: 0;
  margin: 0;
  position: relative;
  margin-top: 5px;
  margin-bottom: 5px;
  border-right: 1px solid var(--whiteColor);
  margin-left: -5px;
  margin-right: -5px;
  color: var(--whiteColor);
  padding: 18px 40px;
}

.ea-tabs-button.style-six .nav-tabs .nav-link.active {
  color: var(--blackColor);
}

.ea-tabs-button.style-seven {
  background-color: transparent;
  padding: 0;
  margin-bottom: 50px;
}

.ea-tabs-button.style-seven .nav-tabs {
  background-color: transparent;
  display: block;
  border-bottom: 2px solid #eeeeee;
  margin-bottom: 0;
  border-radius: 0;
}

.ea-tabs-button.style-seven .nav-tabs .nav-link {
  border: none;
  color: var(--optionalColor);
  border-radius: 0;
  margin-bottom: -2px;
}

.ea-tabs-button.style-seven .nav-tabs .nav-link.active {
  background-color: transparent;
  color: #e84545;
  border-bottom: 2px solid #e84545;
  position: relative;
}

.ea-tabs-button.style-seven .nav-tabs .nav-link.active::before {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  width: 10px;
  height: 10px;
  background-color: #e84545;
  border-radius: 50px;
  margin: auto;
}

.ea-tabs-button.style-seven .nav-tabs .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -9px;
  left: 0;
  right: 0;
  width: 16px;
  height: 16px;
  background-color: #e84545;
  border-radius: 50px;
  margin: auto;
  opacity: 0.8;
}

.ea-tabs-content {
  max-width: 1020px;
  margin: auto;
}

.ea-tabs-content.style-two {
  max-width: 100%;
}

.ea-tabs-content.style-three {
  max-width: 100%;
  border: 1px solid #e0e0e0;
  padding: 30px;
}

.ea-tabs-content.style-four {
  background-color: var(--whiteColor);
  max-width: 100%;
}

.ea-tabs-content.style-four .ptbl-50 {
  padding-top: 100px;
  padding-bottom: 100px;
  padding-left: 50px;
}

.ea-tabs-content.style-five {
  max-width: 100%;
}

.ea-tabs-content.style-six {
  max-width: 100%;
  background-color: var(--whiteColor);
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
  padding: 50px 100px;
}

.ea-tabs-content.style-seven {
  max-width: 100%;
}

.ea-tab-img {
  text-align: center;
}

/*================================================
SP Fun Factor CSS
=================================================*/
.ea-fun-factor-area.bg-style-one {
  background-image: url(../images/fun-factor-bg-1.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}

.ea-fun-factor-area.bg-color-f0fbf7 {
  background-color: #f0fbf7;
}

.ea-fun-factor-area.bg-color-5251e1 {
  background: -webkit-gradient(linear, left top, right top, from(#5054e0), to(#810df6));
  background: linear-gradient(to right, #5054e0, #810df6);
  position: relative;
  z-index: 1;
}

.ea-fun-factor-area.bg-color-5251e1::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 35%;
  background-color: var(--whiteColor);
}

.ea-fun-factor-area.bg-color-fffbf9 {
  background-color: #fffbf9;
}

.ea-fun-factor-area.bg-color-f0f0f9 {
  background-color: #f0f0f9;
}

.ea-fun-factor-area.style-nine.bg-shape {
  position: relative;
  z-index: 1;
}

.ea-fun-factor-area.style-nine.bg-shape::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -100px;
  height: 100px;
  z-index: -1;
  background-image: url(../images/shape4.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.ea-fun-factor-area .col-lg-3:last-child .ea-single-fun-factor::before {
  display: none;
}

.ea-single-fun-factor {
  position: relative;
  padding-left: 90px;
  margin-bottom: 30px;
}

.ea-single-fun-factor::before {
  content: "";
  position: absolute;
  top: 0;
  right: -6px;
  width: 1px;
  height: 100%;
  background-color: #dadada;
}

.ea-single-fun-factor img {
  position: absolute;
  top: 8px;
  left: 0;
}

.ea-single-fun-factor h2 {
  font-size: 40px;
  margin-bottom: -5px;
  font-family: var(--headingFontFamily);
}

.ea-single-fun-factor .sub-title {
  font-weight: 600;
  font-size: 16px;
}

.ea-single-fun-factor img {
  min-height: 62px;
}

.ea-single-fun-factor.style-two {
  text-align: center;
  padding-left: 0;
}

.ea-single-fun-factor.style-two::before {
  background-color: #d5f0d9;
}

.ea-single-fun-factor.style-two img {
  position: unset;
  margin-bottom: 10px;
}

.ea-single-fun-factor.style-two h2 {
  margin-bottom: 0;
  color: #37ca71;
}

.ea-single-fun-factor.style-three {
  text-align: center;
  padding-left: 0;
}

.ea-single-fun-factor.style-three::before {
  display: none;
}

.ea-single-fun-factor.style-three img {
  position: unset;
}

.ea-single-fun-factor.style-three .icon {
  border: 2px solid #ff6d3d;
  padding: 20px 30px;
  padding-bottom: 0;
  border-bottom: none;
  display: inline-block;
  position: relative;
  margin-bottom: 10px;
}

.ea-single-fun-factor.style-three .icon::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 20px;
  height: 2px;
  background-color: #ff6d3d;
}

.ea-single-fun-factor.style-three .icon::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 20px;
  height: 2px;
  background-color: #ff6d3d;
}

.ea-single-fun-factor.style-three h2 {
  margin-bottom: 0;
  color: #ff6d3d;
}

.ea-single-fun-factor.style-four {
  text-align: center;
  padding-left: 0;
  background-color: var(--whiteColor);
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
  padding: 30px;
}

.ea-single-fun-factor.style-four::before {
  display: none;
}

.ea-single-fun-factor.style-four img {
  position: unset;
  margin-bottom: 10px;
}

.ea-single-fun-factor.style-four h2 {
  margin-bottom: 0;
  color: #37ca71;
}

.ea-single-fun-factor.style-five {
  padding: 30px 20px;
  padding-left: 100px;
}

.ea-single-fun-factor.style-five img {
  left: 20px;
  top: 30px;
}

.ea-single-fun-factor.style-five::before {
  display: none;
}

.ea-single-fun-factor.style-five.bg-f3efff {
  background-color: #f3efff;
}

.ea-single-fun-factor.style-five.bg-f3efff h2 {
  color: #6f3cff;
}

.ea-single-fun-factor.style-five.bg-fff1ec {
  background-color: #fff1ec;
}

.ea-single-fun-factor.style-five.bg-fff1ec h2 {
  color: #ff6d3d;
}

.ea-single-fun-factor.style-five.bg-e7faff {
  background-color: #e7faff;
}

.ea-single-fun-factor.style-five.bg-e7faff h2 {
  color: #04d2fc;
}

.ea-single-fun-factor.style-five.bg-ebf1ff {
  background-color: #ebf1ff;
}

.ea-single-fun-factor.style-five.bg-ebf1ff h2 {
  color: #407aff;
}

.ea-single-fun-factor.style-five .sub-title {
  font-size: 14px;
}

.ea-single-fun-factor.style-six {
  text-align: center;
  padding-left: 0;
  background-color: var(--whiteColor);
}

.ea-single-fun-factor.style-six::before {
  display: none;
}

.ea-single-fun-factor.style-six img {
  position: unset;
}

.ea-single-fun-factor.style-six .icon {
  padding: 20px 30px;
  position: relative;
  background-color: #ff6d3d;
  border-radius: 6px 6px 0 0;
  max-width: 200px;
  margin: auto;
}

.ea-single-fun-factor.style-six .icon::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 20px;
  height: 2px;
  background-color: #ff6d3d;
}

.ea-single-fun-factor.style-six h2 {
  margin-bottom: 0;
  color: #ff6d3d;
}

.ea-single-fun-factor.style-six .fun-factor-content {
  border: 1px solid #ff6d3d;
  padding: 20px 30px;
  border-radius: 6px;
}

.ea-single-fun-factor.style-seven {
  padding-left: 0;
  position: relative;
  text-align: center;
}

.ea-single-fun-factor.style-seven::before {
  display: none;
}

.ea-single-fun-factor.style-seven img {
  position: unset;
}

.ea-single-fun-factor.style-seven h2 {
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #ff6d3d;
}

.ea-single-fun-factor.style-seven .sub-title {
  margin-top: 10px;
  display: inline-block;
}

.ea-single-fun-factor.style-eight {
  text-align: center;
  padding-left: 0;
  background-color: var(--whiteColor);
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
  padding: 30px;
  border-radius: 50px 0 50px 0;
}

.ea-single-fun-factor.style-eight::before {
  display: none;
}

.ea-single-fun-factor.style-eight img {
  position: unset;
  margin-bottom: 10px;
}

.ea-single-fun-factor.style-eight h2 {
  margin-bottom: 0;
}

.ea-single-fun-factor.style-nine {
  padding-left: 100px;
}

.ea-single-fun-factor.style-nine .icon {
  background-color: var(--whiteColor);
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
  border-radius: 50%;
  text-align: center;
  width: 80px;
  height: 80px;
  line-height: 80px;
  position: absolute;
  top: 0;
  left: 0;
}

.ea-single-fun-factor.style-nine .icon img {
  padding: 20px;
}

.ea-single-fun-factor.style-nine img {
  position: unset;
}

.ea-single-fun-factor.style-nine::before {
  display: none;
}

/*================================================
SP Icon CSS
=================================================*/
.ea-icon-box-area {
  position: relative;
  z-index: 1;
}
.ea-icon-box-area-bg {
  position: relative;
  background-image: url(../images/bg1.png);
  background-size: cover;
   z-index: 1;
}
.ea-icon-box-area.bg-colo-f0f2f9 {
  background-color: #f0f2f9;
}

.ea-icon-box-area.bg-colo-cfdcea {
  background-color: #cfdcea;
}

.ea-icon-box-area.bg-colo-f0f2f9 .shape-1 {
  position: absolute;
  left: 50px;
  bottom: 50px;
  z-index: -1;
}

.ea-icon-box-area.bg-colo-f0f2f9 .shape-2 {
  position: absolute;
  right: 50px;
  top: 50px;
  z-index: -1;
}

.ea-icon-box-area.bg-color-d6e9e2 {
  background: -webkit-gradient(linear, left top, right top, from(#d6e9e2), to(#ecf5ef));
  background: linear-gradient(to right, #d6e9e2, #ecf5ef);
}

.ea-icon-box-area.style-five .shape-1 {
  position: absolute;
  left: 50px;
  top: 50px;
  z-index: -1;
}

.ea-icon-box-area.style-five .shape-2 {
  position: absolute;
  right: 50px;
  bottom: 50px;
  z-index: -1;
}

.ea-icon-box-area.bg-color-fdf6f0 {
  background-color: #fdf6f0;
}

.ea-icon-box-area.style-eight.bg-shape {
  position: relative;
  z-index: 1;
}

.ea-icon-box-area.style-eight.bg-shape::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -100px;
  height: 100px;
  z-index: -1;
  background-image: url(../images/shape4.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.single-icon-box {
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
  background-color: var(--whiteColor);
  padding: 20px;
  border-radius: 8px;
  border-bottom: 5px solid #e1ecfb;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.single-icon-box .icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  background-color: #e5effc;
  text-align: center;
  border-radius: 50%;
  margin-bottom: 20px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.single-icon-box h3 {
  font-size: 20px;
  margin-bottom: 10px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.single-icon-box p {
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.single-icon-box a {
  text-decoration:none!important;
}

.single-icon-box:hover {
  border-color: #0062e0;
}

.single-icon-box .read-more i {
  position: relative;
  top: 3px;
}

.single-icon-box.style-two {
  border: none;
}

.single-icon-box.style-two .shape {
  position: absolute;
  top: 30px;
  right: 30px;
}

.single-icon-box.style-two:hover {
  background-color: #0062e0;
}

.single-icon-box.style-two:hover .icon {
  background-color: var(--whiteColor);
}

.single-icon-box.style-two:hover h3 {
  color: var(--whiteColor);
}

.single-icon-box.style-two:hover p {
  color: var(--whiteColor);
}

.single-icon-box.style-two:hover .read-more {
  color: var(--whiteColor);
}

.single-icon-box.style-three {
  background: linear-gradient(45deg, #ffcb52, #ff7b02);
  border: none;
  padding: 30px;
}

.single-icon-box.style-three .icon {
  position: absolute;
  top: -40px;
  width: 100px;
  height: 100px;
  line-height: 100px;
  right: 0;
  border: 5px solid var(--whiteColor);
  background: linear-gradient(45deg, #ffcb52, #ff7b02);
}

.single-icon-box.style-three .icon img {
  position: relative;
  top: -5px;
}

.single-icon-box.style-three h3 {
  margin-bottom: 18px;
  color: var(--whiteColor);
  font-size: 24px;
}

.single-icon-box.style-three p {
  color: var(--whiteColor);
}

.single-icon-box.style-three .read-more {
  color: var(--whiteColor);
}

.single-icon-box.style-three.bg-5581f1 {
  background: linear-gradient(45deg, #5c27fe, #c165dd);
}

.single-icon-box.style-three.bg-5581f1 .icon {
  background: linear-gradient(45deg, #5c27fe, #c165dd);
}

.single-icon-box.style-three.bg-517ef2 {
  background: linear-gradient(45deg, #5581f1, #5c27fe);
}

.single-icon-box.style-three.bg-517ef2 .icon {
  background: linear-gradient(45deg, #5581f1, #5c27fe);
}

.single-icon-box.style-four {
  border: none;
  background-color: #f2fbf5;
  border: 2px dashed #cce3d9;
}

.single-icon-box.style-four .bg-f6de30 {
  background-color: #f6de30;
}

.single-icon-box.style-four .bg-74b780 {
  background-color: #74b780;
}

.single-icon-box.style-four .bg-e07e90 {
  background-color: #e07e90;
}

.single-icon-box.style-four .bg-93d4fd {
  background-color: #93d4fd;
}

.single-icon-box.style-five {
  border: none;
  border-radius: 0;
  border: 1px solid #efefef;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.single-icon-box.style-five span {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: var(--headingFontFamily);
  font-size: 70px;
  color: #e1e3eb;
  font-weight: 700;
  line-height: 1;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.single-icon-box.style-five:hover {
  background-color: #e14c4e;
}

.single-icon-box.style-five:hover .icon {
  background-color: var(--whiteColor);
}

.single-icon-box.style-five:hover h3 {
  color: var(--whiteColor);
}

.single-icon-box.style-five:hover p {
  color: var(--whiteColor);
}

.single-icon-box.style-five:hover .read-more {
  color: var(--whiteColor);
}

.single-icon-box.style-five:hover span {
  color: #e15b5e;
}

.single-icon-box.bg-color-b0d9ea {
  border: 1px solid #b0d9ea;
}

.single-icon-box.bg-color-b0d9ea .icon {
  background-color: #e9f8fb;
}

.single-icon-box.bg-color-f9e792 {
  border: 1px solid #f9e792;
}

.single-icon-box.bg-color-f9e792 .icon {
  background-color: #fdf9dd;
}

.single-icon-box.bg-color-eba091 {
  border: 1px solid #eba091;
}

.single-icon-box.bg-color-eba091 .icon {
  background-color: #f6e7e3;
}

.single-icon-box.bg-color-d1acf9 {
  border: 1px solid #d1acf9;
}

.single-icon-box.bg-color-d1acf9 .icon {
  background-color: #f0e6fc;
}

.single-icon-box.style-seven {
  border: none;
  border-radius: 40px 0 40px 0;
  background-color: #f6dfcd;
}

.single-icon-box.style-seven .icon {
  width: 100px;
  height: 100px;
  line-height: 100px;
  border-radius: 40px 0 40px 0;
  background-color: #eaa474;
}

.single-icon-box.style-seven .shape {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  opacity: 0.5;
}

.single-icon-box.style-eight {
  border: none;
  text-align: center;
  padding: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.single-icon-box.style-eight .icon {
  margin: auto;
  margin-bottom: 20px;
}

.ea-icon-box-content {
  max-width: 500px;
}

.ea-icon-box-content h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.ea-icon-box-content p {
  margin-bottom: 30px;
}

.ea-icon-box-content .default-btn-custom {
  background-color: #323347;
  padding: 12px 30px;
  color: var(--whiteColor);
  display: inline-block;
}

.ea-icon-box-img {
  text-align: center;
}

/*================================================
SP Image Box CSS
=================================================*/
.ea-image-box-area {
  position: relative;
  z-index: 1;
}

.ea-image-box-area.bg-color-f6ede8 {
  background-color: #f6ede8;
}

.ea-image-box-area.bg-color-f6ede8 .image-box-shape {
  position: absolute;
  top: 100px;
  right: 100px;
  z-index: -1;
}

.ea-image-box-area.bg-color-fffae9 {
  background-color: #fffae9;
}

.ea-image-box-area.style-seven {
  overflow: hidden;
}

.ea-image-box-area.style-eight.bg-shape {
  position: relative;
  z-index: 1;
}

.ea-image-box-area.style-eight.bg-shape::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -100px;
  height: 100px;
  z-index: -1;
  background-image: url(../images/shape4.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.single-image-box {
  -webkit-transition: var(--transition);
  transition: var(--transition);
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.single-image-box .image-box-content {
  background-color: #f8f9fb;
  padding: 20px;
}

.single-image-box .image-box-content h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.single-image-box h3:last-child {
  margin-bottom: 0;
}

.single-image-box:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.single-image-box.style-two {
  background-color: var(--whiteColor);
  padding: 20px;
}

.single-image-box.style-two .image-box-content {
  padding: 0;
  background-color: transparent;
  padding-top: 20px;
}

.single-image-box.style-three .image-box-content {
  background-color: #f3efff;
}

.single-image-box.style-five .image-box-content {
  background-color: var(--whiteColor);
  max-width: 320px;
  margin: -30px auto 0;
  position: relative;
  text-align: center;
}

.single-image-box.style-six .image-box-content {
  background-color: transparent;
  background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, 0.9)));
  background-image: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 100%;
  margin: auto;
  text-align: center;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  padding-left: 30px;
  padding-right: 30px;
}

.single-image-box.style-six .image-box-content h3 {
  color: var(--whiteColor);
}

.single-image-box.style-six .image-box-content p {
  color: var(--whiteColor);
}

.single-image-box.style-six:hover .image-box-content {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0.8)));
  background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8));
  bottom: 30px;
  max-width: 300px;
}

.single-image-box.style-seven .image-box-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.single-image-box.style-seven .image-box-content h3 {
  color: var(--whiteColor);
}

.single-image-box.style-seven:Hover {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.single-image-box.style-seven:Hover .image-box-content {
  opacity: 1;
  visibility: visible;
}

.single-image-box.style-eight .image-box-content {
  background-color: #f7f7ff;
  margin-top: -30px;
  position: relative;
  text-align: center;
  margin-left: 50px;
}

.ea-image-box {
  padding: 10px;
}

.card {
  max-width: 48%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  display: inline-block;
}

.card.mr-3 {
  margin-right: 20px;
}

/*================================================
SP Line Chart CSS
=================================================*/
.ea-line-chart-area.style-six.bg-shape {
  position: relative;
  z-index: 1;
}

.ea-line-chart-area.style-six.bg-shape::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -100px;
  height: 100px;
  z-index: -1;
  background-image: url(../images/shape4.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

/*================================================
SP Image Gallery CSS
=================================================*/
.ea-image-gallery-area .ea-g-mb-30 {
  margin-bottom: 24px;
}

.ea-image-gallery-area.bg-color-f3fbf7 {
  background-color: #f3fbf7;
}

.ea-image-gallery-area.style-six {
  overflow: hidden;
}

.ea-image-gallery-area.style-eight.bg-shape {
  position: relative;
  z-index: 1;
}

.ea-image-gallery-area.style-eight.bg-shape::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -100px;
  height: 100px;
  z-index: -1;
  background-image: url(../images/shape4.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.ea-image-gallery-area .ea-gallery {
  position: relative;
}

.ea-image-gallery-area .ea-gallery .full-screen {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: rgba(0, 0, 0, 0);
  -webkit-transition: var(--transition);
  transition: var(--transition);
  opacity: 0;
}

.ea-image-gallery-area .ea-gallery .full-screen i {
  font-size: 50px;
  color: var(--whiteColor);
}

.ea-image-gallery-area .ea-gallery:hover .full-screen {
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 1;
}

/*================================================
SP Social Media CSS
=================================================*/
.ea-social-media-area {
  position: relative;
  z-index: 1;
}

.ea-social-media-area.bg-color-f8eff7 {
  background-color: #f8eff7;
}

.ea-social-media-area.bg-color-f6eee1 {
  background-color: #f6eee1;
}

.ea-social-media-area.bg-color-f0f2f9 {
  background-color: #f0f2f9;
}

.ea-social-media-area.bg-color-e8f4ff {
  background-color: #e8f4ff;
}

.ea-social-media-area.style-nine.bg-shape {
  position: relative;
  z-index: 1;
}

.ea-social-media-area.style-nine.bg-shape::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -100px;
  height: 100px;
  z-index: -1;
  background-image: url(../images/shape4.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.ea-social-media-list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.ea-social-media-list li {
  margin-bottom: 30px;
}

.ea-social-media-list li a {
  background-color: #495c97;
  display: block;
  text-align: center;
  position: relative;
  height: 50px;
  line-height: 50px;
  color: var(--whiteColor);
  padding-left: 25px;
}

.ea-social-media-list li a i {
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  color: var(--whiteColor);
  font-size: 30px;
  border-right: 1px solid var(--whiteColor);
}

.ea-social-media-list li a.bg-color-495c97 {
  background-color: #495c97;
}

.ea-social-media-list li a.bg-color-b0252d {
  background-color: #b0252d;
}

.ea-social-media-list li a.bg-color-64a7dd {
  background-color: #64a7dd;
}

.ea-social-media-list li a.bg-color-db0000 {
  background-color: #db0000;
}

.ea-social-media-list li a.bg-color-a72b20 {
  background-color: #a72b20;
}

.ea-social-media-list li a.bg-color-4779b4 {
  background-color: #4779b4;
}

.ea-social-media-list li a.bg-color-973397 {
  background-color: #973397;
}

.ea-social-media-list li a.bg-color-61acf4 {
  background-color: #61acf4;
}

.ea-social-media-list li a:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.ea-social-media-list.style-two li {
  display: inline-block;
  margin-right: 0;
  margin-bottom: 0;
}

.ea-social-media-list.style-two li a {
  display: inline-block;
  min-height: 300px;
  width: 60px;
}

.ea-social-media-list.style-two li a i {
  border: none;
  top: auto;
  bottom: 0;
  background-color: var(--whiteColor);
  color: #000dff;
  width: 51px;
  height: 51px;
  border-radius: 50px;
  left: 5px;
  bottom: 4px;
  font-size: 30px;
}

.ea-social-media-list.style-two li a.bg-color-495c97 i {
  color: #495c97;
}

.ea-social-media-list.style-two li a.bg-color-b0252d i {
  color: #b0252d;
}

.ea-social-media-list.style-two li a.bg-color-64a7dd i {
  color: #64a7dd;
}

.ea-social-media-list.style-two li a.bg-color-db0000 i {
  color: #db0000;
}

.ea-social-media-list.style-two li a.bg-color-a72b20 i {
  color: #a72b20;
}

.ea-social-media-list.style-two li a.bg-color-4779b4 i {
  color: #4779b4;
}

.ea-social-media-list.style-two li a.bg-color-973397 i {
  color: #973397;
}

.ea-social-media-list.style-two li a.bg-color-61acf4 i {
  color: #61acf4;
}

.ea-social-media-list.style-five li a {
  border-radius: 50px;
}

.ea-social-media-list.style-five li a i {
  background-color: var(--whiteColor);
  border-radius: 50px;
  border: none;
  width: auto;
  padding: 0 30px;
  height: 46px;
  top: 2px;
  left: 2px;
}

.ea-social-media-list.style-five li a.bg-color-495c97 i {
  color: #495c97;
}

.ea-social-media-list.style-five li a.bg-color-b0252d i {
  color: #b0252d;
}

.ea-social-media-list.style-five li a.bg-color-64a7dd i {
  color: #64a7dd;
}

.ea-social-media-list.style-five li a.bg-color-db0000 i {
  color: #db0000;
}

.ea-social-media-list.style-five li a.bg-color-a72b20 i {
  color: #a72b20;
}

.ea-social-media-list.style-five li a.bg-color-4779b4 i {
  color: #4779b4;
}

.ea-social-media-list.style-five li a.bg-color-973397 i {
  color: #973397;
}

.ea-social-media-list.style-five li a.bg-color-61acf4 i {
  color: #61acf4;
}

.ea-social-media-list.style-seven li a {
  border-radius: 0 20px 0 20px;
}

.ea-social-media-list.style-seven li a i {
  background-color: var(--whiteColor);
  border-radius: 0 20px 20px 20px;
  border: none;
  width: auto;
  padding: 0 30px;
  height: 46px;
  top: 2px;
  left: 2px;
}

.ea-social-media-list.style-seven li a.bg-color-495c97 i {
  color: #495c97;
}

.ea-social-media-list.style-seven li a.bg-color-b0252d i {
  color: #b0252d;
}

.ea-social-media-list.style-seven li a.bg-color-64a7dd i {
  color: #64a7dd;
}

.ea-social-media-list.style-seven li a.bg-color-db0000 i {
  color: #db0000;
}

.ea-social-media-list.style-seven li a.bg-color-a72b20 i {
  color: #a72b20;
}

.ea-social-media-list.style-seven li a.bg-color-4779b4 i {
  color: #4779b4;
}

.ea-social-media-list.style-seven li a.bg-color-973397 i {
  color: #973397;
}

.ea-social-media-list.style-seven li a.bg-color-61acf4 i {
  color: #61acf4;
}

.ea-social-media-grid {
  margin-bottom: 30px;
  padding: 0;
}

.ea-social-media-grid li {
  display: inline-block;
  margin-right: 20px;
}

.ea-social-media-grid li:last-child {
  margin-right: 0;
}

.ea-social-media-grid li a i {
  font-size: 25px;
  background-color: #000000;
  color: var(--whiteColor);
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 10px;
  text-align: center;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.ea-social-media-grid li a:hover i {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.ea-social-media-grid.style-four li a i {
  color: var(--whiteColor);
  border-radius: 50px 50px 0 50px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.ea-social-media-grid.style-four li a.bg-color-495c97 i {
  background-color: #495c97;
}

.ea-social-media-grid.style-four li a.bg-color-b0252d i {
  background-color: #b0252d;
}

.ea-social-media-grid.style-four li a.bg-color-64a7dd i {
  background-color: #64a7dd;
}

.ea-social-media-grid.style-four li a.bg-color-db0000 i {
  background-color: #db0000;
}

.ea-social-media-grid.style-four li a.bg-color-a72b20 i {
  background-color: #a72b20;
}

.ea-social-media-grid.style-four li a.bg-color-4779b4 i {
  background-color: #4779b4;
}

.ea-social-media-grid.style-four li a.bg-color-973397 i {
  background-color: #973397;
}

.ea-social-media-grid.style-four li a.bg-color-61acf4 i {
  background-color: #61acf4;
}

.ea-social-media-grid.style-four li a:hover i {
  border-radius: 10px;
}

.ea-social-media-grid.style-six li a {
  background-color: #000;
  display: inline-block;
  border-radius: 50px;
}

.ea-social-media-grid.style-six li a i {
  border: 1px solid #ffffff;
  border-radius: 50px;
  margin: 5px;
}

.ea-social-media-grid.style-six li a:hover {
  background-color: var(--whiteColor);
}

.ea-social-media-grid.style-six li a:hover i {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.ea-social-media-grid.style-eight li a {
  display: inline-block;
  border-radius: 50px;
}

.ea-social-media-grid.style-eight li a i {
  border-radius: 50px;
  background-color: transparent;
  position: relative;
  top: 1px;
}

.ea-social-media-grid.style-eight li a.bg-color-495c97 {
  border: 3px solid #495c97;
  display: inline-block;
}

.ea-social-media-grid.style-eight li a.bg-color-495c97 i {
  color: #495c97;
}

.ea-social-media-grid.style-eight li a.bg-color-495c97:hover {
  background-color: #495c97;
}

.ea-social-media-grid.style-eight li a.bg-color-495c97:hover i {
  color: var(--whiteColor);
}

.ea-social-media-grid.style-eight li a.bg-color-b0252d {
  border: 3px solid #b0252d;
  display: inline-block;
}

.ea-social-media-grid.style-eight li a.bg-color-b0252d i {
  color: #b0252d;
}

.ea-social-media-grid.style-eight li a.bg-color-b0252d:hover {
  background-color: #b0252d;
}

.ea-social-media-grid.style-eight li a.bg-color-b0252d:hover i {
  color: var(--whiteColor);
}

.ea-social-media-grid.style-eight li a.bg-color-64a7dd {
  border: 3px solid #64a7dd;
  display: inline-block;
}

.ea-social-media-grid.style-eight li a.bg-color-64a7dd i {
  color: #64a7dd;
}

.ea-social-media-grid.style-eight li a.bg-color-64a7dd:hover {
  background-color: #64a7dd;
}

.ea-social-media-grid.style-eight li a.bg-color-64a7dd:hover i {
  color: var(--whiteColor);
}

.ea-social-media-grid.style-eight li a.bg-color-db0000 {
  border: 3px solid #db0000;
  display: inline-block;
}

.ea-social-media-grid.style-eight li a.bg-color-db0000 i {
  color: #db0000;
}

.ea-social-media-grid.style-eight li a.bg-color-db0000:hover {
  background-color: #db0000;
}

.ea-social-media-grid.style-eight li a.bg-color-db0000:hover i {
  color: var(--whiteColor);
}

.ea-social-media-grid.style-eight li a.bg-color-a72b20 {
  border: 3px solid #a72b20;
  display: inline-block;
}

.ea-social-media-grid.style-eight li a.bg-color-a72b20 i {
  color: #a72b20;
}

.ea-social-media-grid.style-eight li a.bg-color-a72b20:hover {
  background-color: #a72b20;
}

.ea-social-media-grid.style-eight li a.bg-color-a72b20:hover i {
  color: var(--whiteColor);
}

.ea-social-media-grid.style-eight li a.bg-color-4779b4 {
  border: 3px solid #4779b4;
  display: inline-block;
}

.ea-social-media-grid.style-eight li a.bg-color-4779b4 i {
  color: #4779b4;
}

.ea-social-media-grid.style-eight li a.bg-color-4779b4:hover {
  background-color: #4779b4;
}

.ea-social-media-grid.style-eight li a.bg-color-4779b4:hover i {
  color: var(--whiteColor);
}

.ea-social-media-grid.style-eight li a.bg-color-973397 {
  border: 3px solid #973397;
  display: inline-block;
}

.ea-social-media-grid.style-eight li a.bg-color-973397 i {
  color: #973397;
}

.ea-social-media-grid.style-eight li a.bg-color-973397:hover {
  background-color: #973397;
}

.ea-social-media-grid.style-eight li a.bg-color-973397:hover i {
  color: var(--whiteColor);
}

.ea-social-media-grid.style-eight li a.bg-color-61acf4 {
  border: 3px solid #61acf4;
  display: inline-block;
}

.ea-social-media-grid.style-eight li a.bg-color-61acf4 i {
  color: #61acf4;
}

.ea-social-media-grid.style-eight li a.bg-color-61acf4:hover {
  background-color: #61acf4;
}

.ea-social-media-grid.style-eight li a.bg-color-61acf4:hover i {
  color: var(--whiteColor);
}

.ea-social-media-grid.style-eight li a:hover i {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.ea-social-media-grid.style-nine li a {
  display: inline-block;
  border-radius: 10px;
  padding: 5px;
}

.ea-social-media-grid.style-nine li a.bg-color-495c97 {
  background-color: #495c97;
}

.ea-social-media-grid.style-nine li a.bg-color-495c97 i {
  background-color: var(--whiteColor);
  color: #495c97;
  border-radius: 70% 30% 30% 70%/60% 40% 60% 40%;
}

.ea-social-media-grid.style-nine li a.bg-color-b0252d {
  background-color: #b0252d;
}

.ea-social-media-grid.style-nine li a.bg-color-b0252d i {
  background-color: var(--whiteColor);
  color: #b0252d;
  border-radius: 70% 30% 30% 70%/60% 40% 60% 40%;
}

.ea-social-media-grid.style-nine li a.bg-color-64a7dd {
  background-color: #64a7dd;
}

.ea-social-media-grid.style-nine li a.bg-color-64a7dd i {
  background-color: var(--whiteColor);
  color: #64a7dd;
  border-radius: 70% 30% 30% 70%/60% 40% 60% 40%;
}

.ea-social-media-grid.style-nine li a.bg-color-db0000 {
  background-color: #db0000;
}

.ea-social-media-grid.style-nine li a.bg-color-db0000 i {
  background-color: var(--whiteColor);
  color: #db0000;
  border-radius: 70% 30% 30% 70%/60% 40% 60% 40%;
}

.ea-social-media-grid.style-nine li a.bg-color-a72b20 {
  background-color: #a72b20;
}

.ea-social-media-grid.style-nine li a.bg-color-a72b20 i {
  background-color: var(--whiteColor);
  color: #a72b20;
  border-radius: 70% 30% 30% 70%/60% 40% 60% 40%;
}

.ea-social-media-grid.style-nine li a.bg-color-4779b4 {
  background-color: #4779b4;
}

.ea-social-media-grid.style-nine li a.bg-color-4779b4 i {
  background-color: var(--whiteColor);
  color: #4779b4;
  border-radius: 70% 30% 30% 70%/60% 40% 60% 40%;
}

.ea-social-media-grid.style-nine li a.bg-color-973397 {
  background-color: #973397;
}

.ea-social-media-grid.style-nine li a.bg-color-973397 i {
  background-color: var(--whiteColor);
  color: #973397;
  border-radius: 70% 30% 30% 70%/60% 40% 60% 40%;
}

.ea-social-media-grid.style-nine li a.bg-color-61acf4 {
  background-color: #61acf4;
}

.ea-social-media-grid.style-nine li a.bg-color-61acf4 i {
  background-color: var(--whiteColor);
  color: #61acf4;
  border-radius: 70% 30% 30% 70%/60% 40% 60% 40%;
}

.ea-social-content {
  max-width: 500px;
  margin-bottom: 30px;
}

.ea-social-content h2 {
  font-size: 36px;
  margin-bottom: 12px;
}

.ea-social-media-img-one {
  margin-bottom: 30px;
}

/*================================================
SP Navbar CSS
=================================================*/
.ea-header-area {
  background: -webkit-gradient(linear, left top, right top, from(#edf8fa), to(#baeaef));
  background: linear-gradient(to right, #edf8fa, #baeaef);
  padding-top: 10px;
  padding-bottom: 10px;
}

.ea-header-area .ea-top-header .ea-header-left-content {
  padding: 0;
  margin: 0;
  list-style-type: none;
  margin-bottom: 10px;
}

.ea-header-area .ea-top-header .ea-header-left-content li {
  display: inline-block;
}

.ea-header-area .ea-top-header .ea-header-left-content li a {
  color: var(--blackColor);
  font-size: 14px;
}

.ea-header-area .ea-top-header .ea-header-left-content li a i {
  position: relative;
  top: 1px;
  margin-right: 5px;
  color: #68afd6;
}

.ea-header-area .ea-top-header .ea-header-left-content li a:hover {
  color: #68afd6;
}

.ea-header-area .ea-top-header .ea-header-right-content {
  padding: 0;
  margin: 0;
  list-style-type: none;
  margin-bottom: 10px;
  text-align: right;
}

.ea-header-area .ea-top-header .ea-header-right-content li {
  display: inline-block;
  margin-left: 10px;
}

.ea-header-area .ea-top-header .ea-header-right-content li a {
  font-size: 14px;
}

.ea-header-area .ea-top-header .ea-header-right-content li a:hover {
  color: #68afd6;
}

.ea-header-area .ea-top-header .ea-header-right-content li .form-select {
  background-color: transparent;
  border: none;
  font-size: 14px;
  padding-top: 0;
  padding-bottom: 0;
  background-size: 36px 12px;
}

.ea-header-area .ea-top-header .ea-header-right-content li .form-select option {
  font-size: 14px;
}

.ea-header-area .ea-top-header .ea-header-right-content li .form-select:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.ea-header-area .ea-navbar-area {
  position: initial;
}

.ea-header-area .ea-navbar-area.is-sticky {
  position: initial;
  -webkit-animation: none;
          animation: none;
  padding: 0;
  border-radius: 4px !important;
}

.ea-header-area .ea-navbar-area .ea-nav {
  background-color: var(--whiteColor);
  border-radius: 4px;
}

.ea-header-area .ea-navbar-area .ea-nav .navbar .others-option .option-item .default-btn {
  background-color: #68afd6;
  color: var(--whiteColor);
}

.ea-header-area .ea-navbar-area .ea-nav .navbar .others-option .option-item .default-btn:hover {
  background-color: var(--blackColor);
  color: var(--whiteColor);
}

.ea-header-area .ea-navbar-area .ea-nav .navbar .navbar-nav .dropdown-menu .nav-item .dropdown-toggle::before {
  right: 14px;
  top: 10px;
}

.ea-header-area .ea-navbar-area.ea-navbar-style-two .ea-nav {
  background: -webkit-gradient(linear, left top, right top, from(#5e50ad), to(#73529e));
  background: linear-gradient(to right, #5e50ad, #73529e);
}

.ea-header-area .ea-navbar-area.ea-navbar-style-two .ea-nav .navbar .navbar-nav .nav-item a {
  color: var(--whiteColor);
}

.ea-header-area .ea-navbar-area.ea-navbar-style-two .ea-nav .navbar .navbar-nav .nav-item .dropdown-menu li a {
  color: var(--blackColor);
}

.ea-header-area .ea-navbar-area.ea-navbar-style-two .ea-nav .navbar .others-option .option-item .default-btn {
  background-color: #37cb71;
  color: var(--whiteColor);
}

.ea-header-area .ea-navbar-area.ea-navbar-style-two .ea-nav .navbar .others-option .option-item .default-btn:hover {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}

.ea-header-area .ea-navbar-area.ea-navbar-style-two .ea-nav .others-option .option-item .link-btn {
  color: var(--whiteColor); 
}

.ea-header-area .ea-navbar-area.ea-navbar-style-two .ea-nav .others-option .option-item .link-btn:hover {
  color: var(--mainColor); 
}

.ea-header-area .ea-navbar-area.ea-navbar-style-three .ea-nav {
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.ea-header-area .ea-navbar-area.ea-navbar-style-three .ea-nav .navbar .others-option .option-item {
  margin-left: 0;
}

.ea-header-area .ea-navbar-area.ea-navbar-style-three .ea-nav .navbar .others-option .option-item .sidebar-menu {
  background-color: var(--mainColor);
  padding: 21px;
}

.ea-header-area .ea-navbar-area.ea-navbar-style-three .ea-nav .navbar .others-option .option-item .sidebar-menu i {
  color: var(--whiteColor);
  font-size: 30px;
  position: relative;
  top: 4px;
  cursor: pointer;
}

.ea-header-area .ea-navbar-area.ea-navbar-style-three .ea-nav .navbar .others-option .option-item .call-us {
  background-color: #ff9f59;
  color: var(--whiteColor);
  padding: 26px 20px;
  font-size: 21px;
}

.ea-header-area .ea-navbar-area.ea-navbar-style-four .ea-nav .navbar .others-option .option-item .search-form {
  position: relative;
}

.ea-header-area .ea-navbar-area.ea-navbar-style-four .ea-nav .navbar .others-option .option-item .search-form .form-control {
  border: none;
  padding: 0;
  border-bottom: 1px solid #eeeeee;
  border-radius: 0;
}

.ea-header-area .ea-navbar-area.ea-navbar-style-four .ea-nav .navbar .others-option .option-item .search-form .form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-bottom: 1px solid var(--mainColor);
}

.ea-header-area .ea-navbar-area.ea-navbar-style-four .ea-nav .navbar .others-option .option-item .search-form .form-control::-webkit-input-placeholder {
  font-size: 14px;
}

.ea-header-area .ea-navbar-area.ea-navbar-style-four .ea-nav .navbar .others-option .option-item .search-form .form-control:-ms-input-placeholder {
  font-size: 14px;
}

.ea-header-area.style-four .ea-top-header .ea-header-right-content li .form-select, 
.ea-header-area.style-six .ea-top-header .ea-header-right-content li .form-select,
.ea-header-area.style-seven .ea-top-header .ea-header-right-content li .form-select,
.ea-header-area.style-eight .ea-top-header .ea-header-right-content li .form-select,
.ea-header-area.style-nine .main-menu .others-option .option-item .form-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,<svg fill='none' xmlns='http:%2F%2Fwww.w3.org/2000/svg'><path d='M1 1l4 4 4-4' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-size: 24px 7px;
}

.ea-header-area.style-four .ea-top-header .ea-header-right-content li .form-select option {
  color: var(--whiteColor);
}

.ea-header-area .ea-navbar-area.ea-navbar-style-four .ea-nav .navbar .others-option .option-item .search-form .search-button {
  position: absolute;
  top: 0;
  right: 0;
  background-color: transparent;
  padding: 0;
  border: none;
}

.ea-header-area .ea-navbar-area.ea-navbar-style-four .ea-nav .navbar .others-option .option-item .search-form .search-button:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.ea-header-area .ea-navbar-area.ea-navbar-style-four .ea-nav .navbar .others-option .option-item .search-form .search-button:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.ea-header-area .ea-navbar-area.ea-navbar-style-five .ea-nav .navbar .others-option .option-item .search-form {
  position: relative;
}

.ea-header-area .ea-navbar-area.ea-navbar-style-five .ea-nav .navbar .others-option .option-item .search-form .form-control {
  border: none;
  padding: 8px 15px;
  background-color: #fdf4f0;
  border-radius: 50px;
}

.ea-header-area .ea-navbar-area.ea-navbar-style-five .ea-nav .navbar .others-option .option-item .search-form .form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #ced4da;
  transition: none;
}

.ea-header-area .ea-navbar-area.ea-navbar-style-five .ea-nav .navbar .others-option .option-item .search-form .form-control::-webkit-input-placeholder {
  font-size: 14px;
}

.ea-header-area .ea-navbar-area.ea-navbar-style-five .ea-nav .navbar .others-option .option-item .search-form .form-control:-ms-input-placeholder {
  font-size: 14px;
}

.ea-header-area .ea-navbar-area.ea-navbar-style-five .ea-nav .navbar .others-option .option-item .search-form .form-control::-ms-input-placeholder {
  font-size: 14px;
}

.ea-header-area .ea-navbar-area.ea-navbar-style-five .ea-nav .navbar .others-option .option-item .search-form .form-control::placeholder {
  font-size: 14px;
}

.ea-header-area .ea-navbar-area.ea-navbar-style-five .ea-nav .navbar .others-option .option-item .search-form .search-button {
  position: absolute;
  top: 10px;
  right: 15px;
  background-color: transparent;
  padding: 0;
  border: none;
}

.ea-header-area .ea-navbar-area.ea-navbar-style-five .ea-nav .navbar .others-option .option-item .search-form .search-button:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.ea-header-area .ea-navbar-area.ea-navbar-style-six .ea-nav {
  background-color: transparent;
  border-radius: 0;
}

.ea-header-area .ea-navbar-area.ea-navbar-style-six .ea-nav .navbar .navbar-nav .nav-item {
  margin-left: 0;
  margin-right: 0;
}

.ea-header-area .ea-navbar-area.ea-navbar-style-six .ea-nav .navbar .navbar-nav .nav-item a {
  color: var(--whiteColor);
  padding-left: 20px;
  padding-right: 20px;
}

.ea-header-area .ea-navbar-area.ea-navbar-style-six .ea-nav .navbar .navbar-nav .nav-item a.active {
  background-color: #3174c7;
  border-bottom: 1px solid var(--whiteColor);
}

.ea-header-area .ea-navbar-area.ea-navbar-style-six .ea-nav .navbar .navbar-nav .nav-item .dropdown-menu li a {
  color: var(--blackColor);
}

.ea-header-area .ea-navbar-area.ea-navbar-style-six .ea-nav .navbar .others-option .option-item .call-us {
  color: var(--whiteColor);
  font-size: 14px;
}

.ea-header-area .ea-navbar-area.ea-navbar-style-six .ea-nav .navbar .others-option .option-item .call-us i {
  position: relative;
  top: 4px;
  margin-right: 5px;
  font-size: 18px;
}

.ea-header-area .ea-navbar-area.ea-navbar-style-six .ea-nav .navbar .others-option .option-item {
  color: var(--blackColor);
  display: inline-block;
  line-height: 1;
  position: relative;
  top: -4px;
}

.ea-header-area .ea-navbar-area.ea-navbar-style-six .ea-nav .navbar .others-option .option-item .search-overlay {
  display: none;
}

.ea-header-area .ea-navbar-area.ea-navbar-style-six .ea-nav .navbar .others-option .option-item .search-overlay.search-popup {
  position: absolute;
  top: 100%;
  width: 300px;
  right: 0;
  background: var(--white-color);
  z-index: 2;
  padding: 20px;
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
  margin-top: 18px;
}

.ea-header-area .ea-navbar-area.ea-navbar-style-six .ea-nav .navbar .others-option .option-item .search-overlay.search-popup .search-form {
  position: relative;
}

.ea-header-area .ea-navbar-area.ea-navbar-style-six .ea-nav .navbar .others-option .option-item .search-overlay.search-popup .search-form .search-input {
  display: block;
  width: 100%;
  height: 50px;
  line-height: initial;
  border: 1px solid #eeeeee;
  color: var(--blackColor);
  outline: 0;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  font-size: 15px;
  padding-top: 4px;
  padding-left: 15px;
}

.ea-header-area .ea-navbar-area.ea-navbar-style-six .ea-nav .navbar .others-option .option-item .search-overlay.search-popup .search-form .search-input:focus {
  border-color: var(--mainColor);
}

.ea-header-area .ea-navbar-area.ea-navbar-style-six .ea-nav .navbar .others-option .option-item .search-overlay.search-popup .search-form .search-button {
  position: absolute;
  right: 0;
  top: 0;
  height: 50px;
  background: var(--blackColor);
  border: 1px solid var(--whiteColor);
  border: none;
  width: 50px;
  outline: 0;
  color: var(--whiteColor);
  -webkit-transition: var(--transition);
  transition: var(--transition);
  padding: 0;
}

.ea-header-area .ea-navbar-area.ea-navbar-style-six .ea-nav .navbar .others-option .option-item .search-overlay.search-popup .search-form .search-button:hover {
  background-color: var(--mainColor);
}

.ea-header-area .ea-navbar-area.ea-navbar-style-six .ea-nav .navbar .others-option .option-item .search-btn {
  cursor: pointer;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  color: var(--whiteColor);
  width: 35px;
  height: 35px;
  line-height: 35px;
  background-color: transparent;
  text-align: center;
  border-radius: 50%;
  font-size: 18px;
  border: 1px solid var(--whiteColor);
}

.ea-header-area .ea-navbar-area.ea-navbar-style-six .ea-nav .navbar .others-option .option-item .close-btn {
  cursor: pointer;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  color: var(--whiteColor);
  width: 35px;
  height: 35px;
  line-height: 35px;
  background-color: transparent;
  border: 1px solid var(--whiteColor);
  text-align: center;
  border-radius: 50%;
  display: none;
  font-size: 18px;
}

.ea-header-area .ea-navbar-area.ea-navbar-style-six .ea-nav .navbar .others-option .option-item .close-btn.active {
  display: block;
}

.ea-header-area .ea-navbar-area.ea-navbar-style-seven .ea-nav {
  background-color: transparent;
  border-radius: 0;
}

.ea-header-area .ea-navbar-area.ea-navbar-style-seven .ea-nav .navbar .navbar-nav .nav-item {
  margin-left: 0;
  margin-right: 0;
}

.ea-header-area .ea-navbar-area.ea-navbar-style-seven .ea-nav .navbar .navbar-nav .nav-item a {
  color: var(--whiteColor);
  padding-left: 15px;
  padding-right: 15px;
}

.ea-header-area .ea-navbar-area.ea-navbar-style-seven .ea-nav .navbar .navbar-nav .nav-item a.active {
  position: relative;
}

.ea-header-area .ea-navbar-area.ea-navbar-style-seven .ea-nav .navbar .navbar-nav .nav-item a.active::before {
  content: "";
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background: #ffffff;
}

.ea-header-area .ea-navbar-area.ea-navbar-style-seven .ea-nav .navbar .navbar-nav .nav-item .dropdown-menu li a {
  color: var(--blackColor);
}

.ea-header-area .ea-navbar-area.ea-navbar-style-seven .ea-nav .navbar .others-option .option-item .user i {
  font-size: 18px;
  width: 35px;
  height: 35px;
  line-height: 35px;
  border: 1px solid var(--whiteColor);
  text-align: center;
  color: var(--whiteColor);
  border-radius: 50px;
}

.ea-header-area .ea-navbar-area.ea-navbar-style-seven .ea-nav .navbar .others-option .option-item .social-link li {
  display: inline-block;
  margin-left: 10px;
}

.ea-header-area .ea-navbar-area.ea-navbar-style-seven .ea-nav .navbar .others-option .option-item .social-link li:first-child {
  margin-left: 0;
}

.ea-header-area .ea-navbar-area.ea-navbar-style-seven .ea-nav .navbar .others-option .option-item .social-link li a i {
  color: var(--whiteColor);
  font-size: 18px;
}

.ea-header-area .ea-navbar-area.ea-navbar-style-seven .ea-nav .navbar .others-option .option-item {
  color: var(--blackColor);
  display: inline-block;
  line-height: 1;
  position: relative;
  top: 0px;
}

.ea-header-area .ea-navbar-area.ea-navbar-style-seven .ea-nav .navbar .others-option .option-item .search-overlay {
  display: none;
}

.ea-header-area .ea-navbar-area.ea-navbar-style-seven .ea-nav .navbar .others-option .option-item .search-overlay.search-popup {
  position: absolute;
  top: 100%;
  width: 300px;
  right: 0;
  background: var(--white-color);
  z-index: 2;
  padding: 20px;
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
  margin-top: 18px;
}

.ea-header-area .ea-navbar-area.ea-navbar-style-seven .ea-nav .navbar .others-option .option-item .search-overlay.search-popup .search-form {
  position: relative;
}

.ea-header-area .ea-navbar-area.ea-navbar-style-seven .ea-nav .navbar .others-option .option-item .search-overlay.search-popup .search-form .search-input {
  display: block;
  width: 100%;
  height: 50px;
  line-height: initial;
  border: 1px solid #eeeeee;
  color: var(--blackColor);
  outline: 0;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  font-size: 15px;
  padding-top: 4px;
  padding-left: 15px;
}

.ea-header-area .ea-navbar-area.ea-navbar-style-seven .ea-nav .navbar .others-option .option-item .search-overlay.search-popup .search-form .search-input:focus {
  border-color: var(--mainColor);
}

.ea-header-area .ea-navbar-area.ea-navbar-style-seven .ea-nav .navbar .others-option .option-item .search-overlay.search-popup .search-form .search-button {
  position: absolute;
  right: 0;
  top: 0;
  height: 50px;
  background: var(--blackColor);
  border: 1px solid var(--whiteColor);
  border: none;
  width: 50px;
  outline: 0;
  color: var(--whiteColor);
  -webkit-transition: var(--transition);
  transition: var(--transition);
  padding: 0;
}

.ea-header-area .ea-navbar-area.ea-navbar-style-seven .ea-nav .navbar .others-option .option-item .search-overlay.search-popup .search-form .search-button i {
  position: relative;
  top: 1px;
  left: 1px;
}

.ea-header-area .ea-navbar-area.ea-navbar-style-seven .ea-nav .navbar .others-option .option-item .search-overlay.search-popup .search-form .search-button:hover {
  background-color: var(--mainColor);
}

.ea-header-area .ea-navbar-area.ea-navbar-style-seven .ea-nav .navbar .others-option .option-item .search-btn {
  cursor: pointer;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  color: var(--whiteColor);
  width: 35px;
  height: 35px;
  line-height: 35px;
  background-color: transparent;
  text-align: center;
  border-radius: 50%;
  font-size: 18px;
  border: 1px solid var(--whiteColor);
}

.ea-header-area .ea-navbar-area.ea-navbar-style-seven .ea-nav .navbar .others-option .option-item .close-btn {
  cursor: pointer;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  color: var(--whiteColor);
  width: 35px;
  height: 35px;
  line-height: 35px;
  background-color: transparent;
  border: 1px solid var(--whiteColor);
  text-align: center;
  border-radius: 50%;
  display: none;
  font-size: 18px;
}

.ea-header-area .ea-navbar-area.ea-navbar-style-seven .ea-nav .navbar .others-option .option-item .close-btn.active {
  display: block;
}

.ea-header-area .ea-navbar-area.ea-navbar-style-eight .ea-nav {
  background-color: transparent;
  border-radius: 0;
}

.ea-header-area .ea-navbar-area.ea-navbar-style-eight .ea-nav .navbar .navbar-nav .nav-item {
  margin-left: 0;
  margin-right: 0;
}

.ea-header-area .ea-navbar-area.ea-navbar-style-eight .ea-nav .navbar .navbar-nav .nav-item a {
  color: var(--whiteColor);
  padding-left: 15px;
  padding-right: 15px;
}

.ea-header-area .ea-navbar-area.ea-navbar-style-eight .ea-nav .navbar .navbar-nav .nav-item a.active {
  position: relative;
}

.ea-header-area .ea-navbar-area.ea-navbar-style-eight .ea-nav .navbar .navbar-nav .nav-item a.active::before {
  content: "";
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background: #ffffff;
}

.ea-header-area .ea-navbar-area.ea-navbar-style-eight .ea-nav .navbar .navbar-nav .nav-item .dropdown-menu li a {
  color: var(--blackColor);
}

.ea-header-area .ea-navbar-area.ea-navbar-style-eight .ea-nav .navbar .others-option .option-item .search-form {
  position: relative;
}

.ea-header-area .ea-navbar-area.ea-navbar-style-eight .ea-nav .navbar .others-option .option-item .search-form .form-control {
  border: none;
  padding: 0;
  background-color: transparent;
  border-radius: 0;
  border-bottom: 1px solid #eeeeee;
  color: var(--whiteColor);
}

.ea-header-area .ea-navbar-area.ea-navbar-style-eight .ea-nav .navbar .others-option .option-item .search-form .form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.ea-header-area .ea-navbar-area.ea-navbar-style-eight .ea-nav .navbar .others-option .option-item .search-form .form-control::-webkit-input-placeholder {
  font-size: 14px;
  color: var(--whiteColor);
}

.ea-header-area .ea-navbar-area.ea-navbar-style-eight .ea-nav .navbar .others-option .option-item .search-form .form-control:-ms-input-placeholder {
  font-size: 14px;
  color: var(--whiteColor);
}

.ea-header-area .ea-navbar-area.ea-navbar-style-eight .ea-nav .navbar .others-option .option-item .search-form .form-control::-ms-input-placeholder {
  font-size: 14px;
  color: var(--whiteColor);
}

.ea-header-area .ea-navbar-area.ea-navbar-style-eight .ea-nav .navbar .others-option .option-item .search-form .form-control::placeholder {
  font-size: 14px;
  color: var(--whiteColor);
}

.ea-header-area .ea-navbar-area.ea-navbar-style-eight .ea-nav .navbar .others-option .option-item .search-form .search-button {
  position: absolute;
  top: 0;
  right: 0;
  background-color: transparent;
  padding: 0;
  border: none;
  color: var(--whiteColor);
}

.ea-header-area .ea-navbar-area.ea-navbar-style-eight .ea-nav .navbar .others-option .option-item .search-form .search-button:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.ea-header-area .ea-navbar-area.ea-navbar-style-nine .container-fluid {
  padding-left: 50px;
  padding-right: 50px;
}

.ea-header-area .ea-navbar-area.ea-navbar-style-nine .ea-nav {
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.ea-header-area .ea-navbar-area.ea-navbar-style-nine .ea-nav .navbar .others-option {
  margin-right: 5px;
}

.ea-header-area .ea-navbar-area.ea-navbar-style-nine .ea-nav .navbar .others-option .option-item .search-form {
  position: relative;
}

.ea-header-area .ea-navbar-area.ea-navbar-style-nine .ea-nav .navbar .others-option .option-item .search-form .form-control {
  border: none;
  padding: 0 0;
  background-color: #e43355;
  border-radius: 0;
  border-bottom: 1px solid #e88fa0;
  color: #ffffff;
}

.ea-header-area .ea-navbar-area.ea-navbar-style-nine .ea-nav .navbar .others-option .option-item .search-form .form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-bottom: 1px solid var(--whiteColor);
}

.ea-header-area .ea-navbar-area.ea-navbar-style-nine .ea-nav .navbar .others-option .option-item .search-form .form-control::-webkit-input-placeholder {
  font-size: 14px;
  color: #ffffff;
}

.ea-header-area .ea-navbar-area.ea-navbar-style-nine .ea-nav .navbar .others-option .option-item .search-form .form-control:-ms-input-placeholder {
  font-size: 14px;
  color: #ffffff;
}

.ea-header-area .ea-navbar-area.ea-navbar-style-nine .ea-nav .navbar .others-option .option-item .search-form .form-control::-ms-input-placeholder {
  font-size: 14px;
  color: #ffffff;
}

.ea-header-area .ea-navbar-area.ea-navbar-style-nine .ea-nav .navbar .others-option .option-item .search-form .form-control::placeholder {
  font-size: 14px;
  color: #ffffff;
}

.ea-header-area .ea-navbar-area.ea-navbar-style-nine .ea-nav .navbar .others-option .option-item .search-form .search-button {
  position: absolute;
  top: 3px;
  right: 0;
  background-color: transparent;
  padding: 0;
  border: none;
  color: #ffffff;
}

.ea-header-area .ea-navbar-area.ea-navbar-style-nine .ea-nav .navbar .others-option .option-item .search-form .search-button:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.ea-header-area .ea-navbar-area.ea-navbar-style-nine .ea-nav .navbar .others-option .option-item .form-select {
  background-color: transparent;
  border: none;
  font-size: 14px;
  color: var(--whiteColor);
}

.ea-header-area .ea-navbar-area.ea-navbar-style-nine .ea-nav .navbar .others-option .option-item .form-select option {
  font-size: 14px;
  color: var(--blackColor);
}

.ea-header-area .ea-navbar-area.ea-navbar-style-nine .ea-nav .navbar .others-option .option-item .form-select:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.ea-header-area .ea-navbar-area.ea-navbar-style-nine .ea-nav .navbar .others-option .option-item .cart {
  position: relative;
  font-size: 18px;
  color: var(--whiteColor);
}

.ea-header-area .ea-navbar-area.ea-navbar-style-nine .ea-nav .navbar .others-option .option-item .cart span {
  position: absolute;
  top: -5px;
  right: -5px;
  font-size: 10px;
  background-color: var(--blackColor);
  line-height: 1;
  width: 12px;
  height: 12px;
  line-height: 12px;
  text-align: center;
  border-radius: 50px;
  color: var(--whiteColor);
}

.ea-header-area .ea-navbar-area.ea-navbar-style-nine .ea-nav .navbar .others-option .option-item .user {
  font-size: 18px;
  color: var(--whiteColor);
}

.ea-header-area .ea-navbar-area.ea-navbar-style-nine .ea-nav .navbar .others-option .option-item .sidebar-menu i {
  color: var(--whiteColor);
  font-size: 25px;
  position: relative;
  top: 4px;
  cursor: pointer;
}

.ea-header-area .ea-navbar-area.ea-navbar-style-nine .ea-nav .navbar .navbar-nav .nav-item a {
  color: var(--whiteColor);
}

.ea-header-area .ea-navbar-area.ea-navbar-style-nine .ea-nav .navbar .navbar-nav .nav-item .p-0 {
  padding-left: 30px !important;
  padding-right: 30px !important;
  position: relative;
  top: 20px;
}

.ea-header-area .ea-navbar-area.ea-navbar-style-nine .ea-nav .navbar .navbar-nav .nav-item .dropdown-menu li a {
  color: var(--blackColor);
}

.ea-header-area .ea-navbar-area.ea-navbar-style-nine.is-sticky {
  background-color: transparent !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.ea-header-area .ea-navbar-area.ea-navbar-style-ten .container-fluid {
  padding-left: 50px;
  padding-right: 50px;
}

.ea-header-area .ea-navbar-area.ea-navbar-style-ten .ea-nav {
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.ea-header-area .ea-navbar-area.ea-navbar-style-ten .ea-nav .navbar .navbar-nav {
  padding-left: 70px;
}

.ea-header-area .ea-navbar-area.ea-navbar-style-ten .ea-nav .navbar .others-option .option-item .search-form {
  position: relative;
}

.ea-header-area .ea-navbar-area.ea-navbar-style-ten .ea-nav .navbar .others-option .option-item .search-form .form-control {
  border: none;
  padding: 8px 15px;
  background-color: #f1f1f2;
  border-radius: 50px;
}

.ea-header-area .ea-navbar-area.ea-navbar-style-ten .ea-nav .navbar .others-option .option-item .search-form .form-control::-webkit-input-placeholder {
  font-size: 14px;
}

.ea-header-area .ea-navbar-area.ea-navbar-style-ten .ea-nav .navbar .others-option .option-item .search-form .form-control:-ms-input-placeholder {
  font-size: 14px;
}

.ea-header-area .ea-navbar-area.ea-navbar-style-ten .ea-nav .navbar .others-option .option-item .search-form .form-control::-ms-input-placeholder {
  font-size: 14px;
}

.ea-header-area .ea-navbar-area.ea-navbar-style-ten .ea-nav .navbar .others-option .option-item .search-form .form-control::placeholder {
  font-size: 14px;
}

.ea-header-area .ea-navbar-area.ea-navbar-style-ten .ea-nav .navbar .others-option .option-item .search-form .search-button {
  position: absolute;
  top: 10px;
  right: 15px;
  background-color: transparent;
  padding: 0;
  border: none;
}

.ea-header-area .ea-navbar-area.ea-navbar-style-ten .ea-nav .navbar .others-option .option-item .search-form .search-button:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.ea-header-area .ea-navbar-area.ea-navbar-style-ten .ea-nav .navbar .others-option .option-item .form-select {
  background-color: var(--whiteColor);
  border: none;
  font-size: 14px;
}

.ea-header-area .ea-navbar-area.ea-navbar-style-ten .ea-nav .navbar .others-option .option-item .form-select option {
  font-size: 14px;
}

.ea-header-area .ea-navbar-area.ea-navbar-style-ten .ea-nav .navbar .others-option .option-item .form-select:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.ea-header-area .ea-navbar-area.ea-navbar-style-ten .ea-nav .navbar .navbar-brand {
  position: relative;
  z-index: 1;
}

.ea-header-area .ea-navbar-area.ea-navbar-style-ten .ea-nav .navbar .navbar-brand::before {
  content: "";
  position: absolute;
  top: -28px;
  left: -260px;
  width: 500px;
  height: 91px;
  background-color: #eb4949;
  z-index: -1;
  -webkit-clip-path: polygon(0 0, 80% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 80% 0%, 100% 100%, 0% 100%);
}

.ea-header-area .ea-navbar-area.ea-navbar-style-ten.is-sticky {
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.ea-header-area.style-two {
  background: #f3efff;
  padding-bottom: 0;
}

.ea-header-area.style-two .ea-top-header .ea-header-left-content li a i {
  font-size: 18px;
  color: var(--blackColor);
  margin-right: 20px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.ea-header-area.style-two .ea-top-header .ea-header-left-content li a i:hover {
  color: #37cb71;
}

.ea-header-area.style-three {
  padding: 0;
}

.ea-header-area.style-four {
  background: #323347;
  padding-bottom: 0;
}

.ea-header-area.style-four .ea-top-header .ea-header-left-content li a {
  color: var(--whiteColor);
}

.ea-header-area.style-four .ea-top-header .ea-header-left-content li a i {
  color: var(--mainColor);
}

.ea-header-area.style-four .ea-top-header .ea-header-left-content li a:hover {
  color: var(--mainColor);
}

.ea-header-area.style-four .ea-top-header .ea-header-right-content li a {
  color: var(--whiteColor);
}

.ea-header-area.style-four .ea-top-header .ea-header-right-content li a:hover {
  color: var(--whiteColor);
}

.ea-header-area.style-four .ea-top-header .ea-header-right-content li .form-select {
  color: var(--whiteColor);
}

.ea-header-area.style-four .ea-top-header .ea-header-right-content li .form-select option {
  color: var(--blackColor);
}

.ea-header-area.style-five {
  background: transparent;
}

.ea-header-area.style-five .ea-top-header {
  border-bottom: 1px solid #ebebeb;
  border-radius: 4px 4px 0 0 !important;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 10px;
}

.ea-header-area.style-five .ea-top-header .ea-header-left-content li a i {
  color: var(--blackColor);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.ea-header-area.style-five .ea-top-header .ea-header-left-content li a:hover {
  color: #e16d42;
}

.ea-header-area.style-five .ea-top-header .ea-header-left-content li a:hover i {
  color: #e16d42;
}

.ea-header-area.style-five .ea-top-header .ea-header-right-content li a:hover {
  color: #e16d42;
}

.ea-header-area.style-five .ea-navbar-area.is-sticky {
  border-radius: 0 0 4px 4px !important;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.ea-header-area.style-five .bg-color {
  background-color: var(--whiteColor);
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
  border-radius: 4px !important;
}

.ea-header-area.style-six {
  background: #276dc4;
  padding: 0;
}

.ea-header-area.style-six .ea-top-header {
  border-bottom: 1px solid #3b7ac8;
}

.ea-header-area.style-six .ea-header-left-content {
  margin-bottom: 20px;
  margin-top: 20px;
}

.ea-header-area.style-six .ea-header-left-content li {
  margin-right: 20px;
}

.ea-header-area.style-six .ea-header-left-content li a i {
  color: var(--whiteColor);
  -webkit-transition: var(--transition);
  transition: var(--transition);
  font-size: 18px;
}

.ea-header-area.style-six .ea-header-right-content {
  margin-right: 5px;
  margin-bottom: 20px;
  margin-top: 20px;
}

.ea-header-area.style-six .ea-header-right-content li {
  margin-left: 20px;
}

.ea-header-area.style-six .ea-header-right-content li a {
  color: var(--whiteColor);
  position: relative;
}

.ea-header-area.style-six .ea-header-right-content li a i {
  font-size: 18px;
}

.ea-header-area.style-six .ea-header-right-content li a:hover {
  color: var(--whiteColor);
}

.ea-header-area.style-six .ea-header-right-content li a span {
  position: absolute;
  top: -5px;
  right: -5px;
  font-size: 10px;
  background-color: var(--blackColor);
  line-height: 1;
  width: 12px;
  height: 12px;
  line-height: 12px;
  text-align: center;
  border-radius: 50px;
}

.ea-header-area.style-six .ea-header-right-content li .form-select {
  color: var(--whiteColor);
}

.ea-header-area.style-six .ea-header-right-content li .form-select option {
  color: var(--blackColor);
}

.ea-header-area.style-six .is-sticky {
  background-color: transparent !important;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.ea-header-area.style-seven {
  background: #323347;
  padding: 0;
}

.ea-header-area.style-seven .ea-top-header {
  border-bottom: 1px solid #454658;
}

.ea-header-area.style-seven .ea-header-left-content {
  margin-bottom: 20px;
  margin-top: 20px;
}

.ea-header-area.style-seven .ea-header-left-content li {
  margin-right: 20px;
}

.ea-header-area.style-seven .ea-header-left-content li a {
  color: var(--whiteColor);
}

.ea-header-area.style-seven .ea-header-left-content li a:hover {
  color: var(--whiteColor);
}

.ea-header-area.style-seven .ea-header-left-content li a i {
  color: var(--whiteColor);
  -webkit-transition: var(--transition);
  transition: var(--transition);
  font-size: 18px;
  position: relative;
  top: 3px;
}

.ea-header-area.style-seven .ea-header-right-content {
  margin-right: 5px;
  margin-bottom: 20px;
  margin-top: 20px;
}

.ea-header-area.style-seven .ea-header-right-content li {
  margin-left: 20px;
}

.ea-header-area.style-seven .ea-header-right-content li a {
  color: var(--whiteColor);
  position: relative;
}

.ea-header-area.style-seven .ea-header-right-content li a i {
  font-size: 18px;
}

.ea-header-area.style-seven .ea-header-right-content li a:hover {
  color: var(--whiteColor);
}

.ea-header-area.style-seven .ea-header-right-content li a span {
  position: absolute;
  top: -5px;
  right: -5px;
  font-size: 10px;
  background-color: var(--blackColor);
  line-height: 1;
  width: 12px;
  height: 12px;
  line-height: 12px;
  text-align: center;
  border-radius: 50px;
}

.ea-header-area.style-seven .ea-header-right-content li .form-select {
  color: var(--whiteColor);
}

.ea-header-area.style-seven .ea-header-right-content li .form-select option {
  color: var(--blackColor);
}

.ea-header-area.style-seven .is-sticky {
  background-color: transparent !important;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.ea-header-area.style-eight {
  background-image: url(../images/navbar-bg.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  padding: 0;
}

.ea-header-area.style-eight .ea-top-header {
  border-bottom: 1px solid #454658;
}

.ea-header-area.style-eight .ea-header-left-content {
  margin-bottom: 20px;
  margin-top: 20px;
}

.ea-header-area.style-eight .ea-header-left-content li {
  margin-right: 20px;
}

.ea-header-area.style-eight .ea-header-left-content li a {
  color: var(--whiteColor);
}

.ea-header-area.style-eight .ea-header-left-content li a:hover {
  color: var(--whiteColor);
}

.ea-header-area.style-eight .ea-header-left-content li a i {
  color: var(--whiteColor);
  -webkit-transition: var(--transition);
  transition: var(--transition);
  font-size: 18px;
  position: relative;
  top: 3px;
}

.ea-header-area.style-eight .ea-header-right-content {
  margin-right: 0;
  margin-bottom: 20px;
  margin-top: 20px;
}

.ea-header-area.style-eight .ea-header-right-content li {
  margin-left: 20px;
}

.ea-header-area.style-eight .ea-header-right-content li a {
  color: var(--whiteColor);
  position: relative;
}

.ea-header-area.style-eight .ea-header-right-content li a i {
  font-size: 18px;
}

.ea-header-area.style-eight .ea-header-right-content li a:hover {
  color: var(--whiteColor);
}

.ea-header-area.style-eight .ea-header-right-content li a span {
  position: absolute;
  top: -5px;
  right: -5px;
  font-size: 10px;
  background-color: var(--blackColor);
  line-height: 1;
  width: 12px;
  height: 12px;
  line-height: 12px;
  text-align: center;
  border-radius: 50px;
}

.ea-header-area.style-eight .ea-header-right-content li .form-select {
  color: var(--whiteColor);
}

.ea-header-area.style-eight .ea-header-right-content li .form-select option {
  color: var(--blackColor);
}

.ea-header-area.style-eight .is-sticky {
  background-color: transparent !important;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.ea-header-area.style-nine {
  background: #e43355;
  padding: 0;
}

.ea-header-area.style-ten {
  background: var(--whiteColor);
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
}

.bg-shape {
  position: relative;
  z-index: 1;
}

.bg-shape::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -100px;
  height: 100px;
  z-index: -1;
  background-image: url(../images/shape4.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

/*
Sidebar Area Style
======================================================*/
.sidebar-modal {
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--box-shadow);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  overflow: hidden;
}

.sidebar-modal .sidebar-modal-inner {
  position: absolute;
  right: -100%;
  top: 0;
  width: 420px;
  overflow-y: scroll;
  height: 100%;
  background-color: var(--whiteColor);
  -webkit-transition: var(--transition);
  transition: var(--transition);
  z-index: 1;
  padding: 40px;
}

.sidebar-modal .sidebar-header {
  margin-bottom: 30px;
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 30px;
}

.sidebar-modal .sidebar-header .sidebar-logo {
  display: inline-block;
}

.sidebar-modal .sidebar-header .close-btn {
  display: inline-block;
  font-size: 20px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  cursor: pointer;
  width: 30px;
  height: 30px;
  line-height: 30px;
  background-color: var(--mainColor);
  color: var(--whiteColor);
  border-radius: 0;
  float: right;
  text-align: center;
}

.sidebar-modal .sidebar-header .close-btn i {
  position: relative;
  top: 2px;
}

.sidebar-modal .sidebar-header .close-btn:hover {
  color: var(--whiteColor);
  background-color: var(--mainColor);
  opacity: 0.7;
}

.sidebar-modal .sidebar-about {
  margin-bottom: 30px;
}

.sidebar-modal .sidebar-about .title h2 {
  margin-bottom: 0;
  font-size: 24px;
}

.sidebar-modal .sidebar-about .title p {
  margin-bottom: 0;
  font-size: 15px;
}

.sidebar-modal .contact-us {
  margin-bottom: 30px;
}

.sidebar-modal .contact-us h2 {
  font-size: 20px;
  margin-bottom: 25px;
}

.sidebar-modal .contact-us ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.sidebar-modal .contact-us ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 20px;
  font-size: 15px;
}

.sidebar-modal .contact-us ul li:last-child {
  margin-bottom: 0;
}

.sidebar-modal .contact-us ul li i {
  position: absolute;
  top: 1px;
  left: 0;
  font-size: 18px;
}

.sidebar-modal .contact-us ul li a {
  display: block;
}

.sidebar-modal .sidebar-follow-us h2 {
  font-size: 20px;
  margin-bottom: 25px;
}

.sidebar-modal .sidebar-follow-us .social-wrap {
  line-height: 1;
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.sidebar-modal .sidebar-follow-us .social-wrap li {
  display: inline-block;
  padding-right: 10px;
}

.sidebar-modal .sidebar-follow-us .social-wrap li a i {
  font-size: 20px;
}

.sidebar-modal .sidebar-follow-us .social-wrap li a:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.sidebar-modal.active {
  opacity: 1;
  visibility: visible;
  background-color: rgba(0, 0, 0, 0.9);
}

.sidebar-modal.active .sidebar-modal-inner {
  right: 0;
}

/*
Sidebar Menu Style
======================================================*/
.ea-sidebar-menu-area {
  background-color: var(--whiteColor);
  padding-top: 15px;
  padding-bottom: 15px;
  display: none;
}

.ea-sidebar-menu-area .menu-slide-bar {
  position: unset;
  overflow-y: scroll;
  top: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  height: 100vh;
  display: block;
  background-color: var(--blackColor);
  z-index: 99999;
  -webkit-transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
  margin-bottom: 30px;
  position: fixed;
  width: 280px;
  left: -280px;
  height: 100%;
}

.ea-sidebar-menu-area .menu-slide-bar.show {
  left: 0;
}

.ea-sidebar-menu-area .close-sidebar-menus {
  margin-bottom: 15px;
  border-bottom: 1px solid #000;
  padding-bottom: 15px;
}

.ea-sidebar-menu-area .close-sidebar-menus .close-btn {
  position: absolute;
  font-size: 20px;
  top: 30px;
  right: 30px;
  background-color: var(--whiteColor);
  width: 30px;
  height: 30px;
  display: inline-block;
  text-align: center;
  line-height: 30px;
  color: var(--blackColor);
  display: block;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.ea-sidebar-menu-area .close-sidebar-menus .close-btn:hover {
  background-color: #f30000;
  color: var(--whiteColor);
}

.ea-sidebar-menu-area .side-sidebar-menus ul .nav-item.has-children .sub-menu {
  display: none;
}

.ea-sidebar-menu-area .side-sidebar-menus ul .nav-item.has-children.open .sub-menu {
  display: block;
}

.ea-sidebar-menu-area .close-sidebar-menus .logo-area {
  text-align: center;
  display: inline-block;
}

.ea-sidebar-menu-area .close-sidebar-menus .logo-area img {
  max-width: 100px;
}

.ea-sidebar-menu-area .on-side {
  overflow: hidden;
}

.ea-sidebar-menu-area .body-overlay {
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 9999;
  left: -100%;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.ea-sidebar-menu-area .body-overlay.active {
  left: 0;
}

.ea-sidebar-menu-area .side-sidebar-menus ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ea-sidebar-menu-area .side-sidebar-menus ul .nav-item .nav-link {
  padding: 13px 0;
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 15px;
  color: var(--whiteColor);
  font-weight: 600;
  position: relative;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.ea-sidebar-menu-area .side-sidebar-menus ul .nav-item .nav-link:hover {
  color: var(--mainColor);
}

.ea-sidebar-menu-area .side-sidebar-menus ul .nav-item .nav-link.active {
  color: var(--mainColor);
}

.ea-sidebar-menu-area .side-sidebar-menus ul .nav-item ul {
  padding-left: 0;
  list-style: none;
}

.ea-sidebar-menu-area .side-sidebar-menus ul .nav-item ul .nav-item {
  padding-left: 15px;
}

.ea-sidebar-menu-area .side-sidebar-menus ul .nav-item ul .nav-item .nav-link {
  position: relative;
  padding-left: 15px;
  text-transform: capitalize;
  font-size: 13px;
}

.ea-sidebar-menu-area .side-sidebar-menus ul .nav-item ul .nav-item .nav-link span {
  font-size: 15px;
  font-weight: 600;
}

.ea-sidebar-menu-area .side-sidebar-menus ul .nav-item ul .nav-item .nav-link.active {
  color: var(--mainColor);
}

.ea-sidebar-menu-area .side-sidebar-menus ul .nav-item ul .nav-item .nav-link:hover .nav-link {
  color: var(--mainColor);
}

.ea-sidebar-menu-area .side-sidebar-menus ul .has-children .dropdown-toggles:before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  border-width: 0 2px 0 0;
  border-style: solid;
  border-color: initial;
  right: 14px;
  top: 51%;
  -webkit-transform: rotate(0) translateY(-50%);
          transform: rotate(0) translateY(-50%);
  -webkit-transform-origin: top;
          transform-origin: top;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.ea-sidebar-menu-area .side-sidebar-menus ul .has-children .dropdown-toggles:after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  border-width: 0 0 2px 0;
  border-style: solid;
  border-color: initial;
  right: 10px;
  top: 42%;
  -webkit-transform: rotate(0) translateY(-50%);
          transform: rotate(0) translateY(-50%);
  -webkit-transform-origin: top;
          transform-origin: top;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.ea-sidebar-menu-area .side-sidebar-menus ul .has-children a[aria-expanded=true]:before {
  display: none;
}

.ea-sidebar-menu-area .sidebar-menus {
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: var(--blackColor);
  -webkit-transition: var(--transition);
  transition: var(--transition);
  display: block;
  z-index: 2;
  text-align: center;
}

.ea-sidebar-menu-area .sidebar-menus .sidebar-menus-btn {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 24px;
}

.ea-sidebar-menu-area .sidebar-menus .sidebar-menus-btn .sidebar-menus-bar {
  position: absolute;
  width: 30px;
  height: 3px;
  background-color: var(--blackColor);
  top: 13px;
  -webkit-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
          transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -webkit-transition-duration: 0.275s;
          transition-duration: 0.275s;
}

.ea-sidebar-menu-area .sidebar-menus .sidebar-menus-btn .sidebar-menus-bar:before {
  display: block;
  content: "";
  top: 10px;
  -webkit-transition: opacity 0.125s ease 0.275s;
  transition: opacity 0.125s ease 0.275s;
  position: absolute;
  width: 30px;
  height: 3px;
  background-color: var(--blackColor);
}

.ea-sidebar-menu-area .sidebar-menus .sidebar-menus-btn .sidebar-menus-bar:after {
  display: block;
  content: "";
  top: 20px;
  -webkit-transition: -webkit-transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: -webkit-transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55), -webkit-transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: absolute;
  width: 30px;
  height: 3px;
  background-color: var(--blackColor);
}

.ea-sidebar-menu-area .sidebar-menus.open {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  opacity: 1;
}

.ea-sidebar-menu-area .sidebarMenus .mm-collapse:not(.mm-show) {
  display: none;
}

.ea-sidebar-menu-area .sidebarMenus .mm-collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
  -webkit-transition-duration: .35s;
          transition-duration: .35s;
  -webkit-transition-property: height, visibility;
  transition-property: height, visibility;
}

.ea-sidebar-menu-area .logo {
  text-align: center;
}

.ea-sidebar-menu-area.is-sticky {
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  position: fixed;
  background-color: var(--whiteColor) !important;
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
          animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
}

.ea-sidebar-menu-area .others-option.others-option-style-ten {
  margin-top: 30px;
}

.ea-sidebar-menu-area .others-option.others-option-style-ten .option-item:last-child {
  display: none;
}

.ea-sidebar-menu-area .others-option.others-option-style-ten .option-item .search-form {
  position: relative;
}

.ea-sidebar-menu-area .others-option.others-option-style-ten .option-item .search-form .form-control {
  border: none;
  padding: 8px 15px;
  background-color: #f1f1f2;
  border-radius: 50px;
}

.ea-sidebar-menu-area .others-option.others-option-style-ten .option-item .search-form .form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.ea-sidebar-menu-area .others-option.others-option-style-ten .option-item .search-form .form-control::-webkit-input-placeholder {
  font-size: 14px;
}

.ea-sidebar-menu-area .others-option.others-option-style-ten .option-item .search-form .form-control:-ms-input-placeholder {
  font-size: 14px;
}

.ea-sidebar-menu-area .others-option.others-option-style-ten .option-item .search-form .form-control::-ms-input-placeholder {
  font-size: 14px;
}

.ea-sidebar-menu-area .others-option.others-option-style-ten .option-item .search-form .form-control::placeholder {
  font-size: 14px;
}

.ea-sidebar-menu-area .others-option.others-option-style-ten .option-item .search-form .search-button {
  position: absolute;
  top: 12px;
  right: 16px;
  background-color: transparent;
  padding: 0;
  border: none;
}

.ea-sidebar-menu-area .others-option.others-option-style-ten .option-item .search-form .search-button:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.ea-sidebar-menu-area .others-option.others-option-style-ten .option-item .form-select {
  background-color: var(--whiteColor);
  border: none;
  font-size: 14px;
}

.ea-sidebar-menu-area .others-option.others-option-style-ten .option-item .form-select option {
  font-size: 14px;
}

.ea-sidebar-menu-area .others-option.others-option-style-ten .option-item .form-select:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

/*================================================
SP WP Form Style
=================================================*/
.ea-wp-contact-form-area {
  position: relative;
  z-index: 1;
}

.ea-wp-contact-form-area .form-shape-1 {
  position: absolute;
  top: 0;
  right: 400px;
}

.ea-wp-contact-form-area .form-shape-2 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
}

.ea-wp-contact-form-area.bg-color-f8faff {
  background-color: #f8faff;
  padding-top: 200px;
}

.ea-wp-contact-form-area.ea-wp-contact-form-bg {
  background-image: url(../images/form-bg.png);
  background-position: left;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  background: #eeeeee;
}

.ea-wp-contact-form-area.ea-wp-contact-form-bg::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 200px;
  background-color: var(--whiteColor);
  z-index: -1;
}

.ea-wp-contact-form-area .pl-0 {
  padding-left: 0;
}

.ea-wp-contact-form-area .pr-0 {
  padding-right: 0;
}

.ea-wp-contact-form.ml-50 {
  margin-left: 50px;
}

.ea-wp-contact-form.mr-50 {
  margin-right: 50px;
}

.ea-wp-contact-form .ea-wp-formleft-title {
  margin-bottom: 60px;
}

.ea-wp-contact-form .ea-wp-formleft-title h2 {
  font-size: 36px;
  margin-bottom: 0;
  color: var(--mainColor);
}

.ea-wp-contact-form .ea-wp-formleft-title p {
  margin-top: 12px;
}

.ea-wp-contact-form h3 {
  font-size: 30px;
  margin-bottom: 30px;
}

.ea-wp-contact-form .form-group {
  margin-bottom: 30px;
}

.ea-wp-contact-form .form-group label {
  margin-bottom: 5px;
  font-weight: 500;
  font-size: 15px;
}

.ea-wp-contact-form .form-group label span {
  color: #ff0000;
}

.ea-wp-contact-form .form-group .form-control {
  border-radius: 4px;
  height: 60px;
  border: 0;
  background-color: #f9f9f9;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.ea-wp-contact-form .form-group .form-control::-webkit-input-placeholder {
  color: #646464;
}

.ea-wp-contact-form .form-group .form-control:-ms-input-placeholder {
  color: #646464;
}

.ea-wp-contact-form .form-group .form-control::-ms-input-placeholder {
  color: #646464;
}

.ea-wp-contact-form .form-group .form-control::placeholder {
  color: #646464;
}

.ea-wp-contact-form .form-group .form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid var(--mainColor);
  transition: none;
}

.ea-wp-contact-form .form-group textarea.form-control {
  height: auto;
}

.ea-wp-contact-form .form-group.checkboxs {
  position: relative;
}

.ea-wp-contact-form .form-group.checkboxs #chb2 {
  position: absolute;
  top: 7px;
  left: 0;
}

.ea-wp-contact-form .form-group.checkboxs p {
  padding-left: 20px;
}

.ea-wp-contact-form .form-group.checkboxs p a {
  color: var(--mainColor);
}

.ea-wp-contact-form .form-group.checkboxs p a:hover {
  color: var(--blackColor);
}

.ea-wp-contact-form .submit-btn {
  background-color: #2c36ff;
  color: var(--whiteColor);
  border-radius: 4px;
  padding: 15px 35px;
  font-size: 16px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  border: 1px solid #2c36ff;
  display: block;
  width: 100%;
}

.ea-wp-contact-form .submit-btn i {
  font-size: 20px;
  position: relative;
  top: 5px;
}

.ea-wp-contact-form .submit-btn:hover {
  background-color: transparent;
  color: #2c36ff;
}

.ea-wp-contact-form.ea-wp-style-two .form-group .form-control {
  background-color: var(--whiteColor);
}

.ea-wp-contact-form.ea-wp-style-three {
  background-color: var(--whiteColor);
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
  padding: 60px;
  border-radius: 0 10px 10px 0;
}

.ea-wp-contact-form.ea-wp-style-four {
  background-color: var(--whiteColor);
  border: 1px solid #e9e9e9;
  padding: 60px;
  border-radius: 0;
}

.ea-wp-contact-form.ea-wp-style-four .form-group .form-control {
  border-radius: 25px;
}

.ea-wp-form-img-3 {
  background-image: url(../images/form-img-3.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  border-radius: 10px 0 0 10px;
}

.ea-wp-form-img-3 img {
  display: none;
}

.ea-wp-form-get-in-touch h3 {
  font-size: 30px;
  margin-bottom: 30px;
}

.ea-wp-form-get-in-touch ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.ea-wp-form-get-in-touch ul li {
  margin-bottom: 30px;
  position: relative;
  padding-left: 40px;
}

.ea-wp-form-get-in-touch ul li:last-child {
  margin-bottom: 0;
}

.ea-wp-form-get-in-touch ul li a {
  display: block;
}

.ea-wp-form-get-in-touch ul li i {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 30px;
  color: #70a8f2;
}

/*================================================
SP Business Hours Style
=================================================*/
.ea-business-hours-area {
  position: relative;
  z-index: 1;
}

.ea-business-hours-area.ea-bg-images {
  background-image: url(../images/business-hours-bg-1.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  position: relative;
  z-index: 1;
}

.ea-business-hours-area.ea-bg-images::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(3, 15, 43, 0.9);
  z-index: -1;
}

.ea-business-hours-area.ea-bg-images .ea-business-hours-bg-shape-1 {
  position: absolute;
  top: 50px;
  left: 0;
  right: 0;
  text-align: center;
  margin: auto;
}

.ea-business-hours-area.bg-color-fff8f3 {
  background-color: #fff8f3;
}

.ea-business-hours-area .ea-business-hours-shape-wrap {
  position: relative;
  z-index: 1;
}

.ea-business-hours-area .ea-business-hours-shape-wrap .business-hours-img-8 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
  text-align: center;
  max-width: 750px;
  margin: auto;
}

.ea-business-hours-area .business-shape-4 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.ea-business-hours-content {
  position: relative;
  z-index: 1;
}

.ea-business-hours-content .ea-left-section-title h2 {
  font-size: 36px;
  margin-bottom: 30px;
}

.ea-business-hours-content h3 {
  font-size: 30px;
  margin-bottom: 30px;
  color: #002f79;
}

.ea-business-hours-content.mr-50 {
  margin-right: 50px;
}

.ea-business-hours-content.ml-50 {
  margin-left: 50px;
}

.ea-business-hours-content .business-shape-1 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  text-align: center;
  z-index: -1;
}

.ea-business-hours-content p {
  text-align: center;
  background-color: #7f00ff;
  margin-bottom: 0;
  color: var(--whiteColor);
  font-size: 18px;
  padding: 20px;
}

.ea-business-hours-content .ea-businss-hours-list-content {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.ea-business-hours-content .ea-businss-hours-list-content li {
  font-size: 18px;
  border-bottom: 1px solid #dfe9ff;
  padding-bottom: 20px;
  margin-bottom: 20px;
  color: #646464;
}

.ea-business-hours-content .ea-businss-hours-list-content li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.ea-business-hours-content .ea-businss-hours-list-content li span {
  float: right;
  font-weight: 500;
}

@media only screen and (max-width: 319px) {
  .ea-business-hours-content .ea-businss-hours-list-content li span {
    float: unset;
    display: block;
  }
}

.ea-business-hours-content .ea-businss-hours-list-content li.close-color {
  color: #ff0000;
}

.ea-business-hours-content.ea-business-hours-content-style-two .ea-businss-hours-list-content {
  background-color: var(--whiteColor);
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
  padding: 30px;
}

.ea-business-hours-content.ea-business-hours-content-style-three {
  text-align: center;
  position: relative;
  z-index: 1;
}

.ea-business-hours-content.ea-business-hours-content-style-three h2 {
  color: var(--whiteColor);
}

.ea-business-hours-content.ea-business-hours-content-style-three p {
  background-color: #fdc01a;
  font-size: 30px;
  font-weight: 500;
  color: var(--blackColor);
}

.ea-business-hours-content.ea-business-hours-content-style-three .ea-shape-2 {
  position: absolute;
  bottom: -70px;
  left: -70px;
}

.ea-business-hours-content.ea-business-hours-content-style-three .ea-shape-3 {
  position: absolute;
  top: 30px;
  right: -40px;
}

.ea-business-hours-content.ea-business-hours-content-style-three .ea-businss-hours-list-content {
  background-color: #fdc01a;
  padding: 30px;
  padding-top: 0;
}

.ea-business-hours-content.ea-business-hours-content-style-three .ea-businss-hours-list-content li {
  border-bottom: none;
  margin-bottom: 0;
  color: var(--blackColor);
}

.ea-business-hours-content.ea-business-hours-content-style-three .ea-businss-hours-list-content li span {
  float: unset;
}

.ea-business-hours-content.ea-business-hours-content-style-three .ea-businss-hours-list-content li:nth-child(1) {
  border-top: 1px solid var(--whiteColor);
  padding-top: 20px;
}

.ea-business-hours-content.ea-business-hours-content-style-three .ea-businss-hours-list-content li.close-color {
  border-top: 1px solid var(--whiteColor);
  margin-top: 0;
  padding-top: 28px;
  color: #ff0000;
}

.ea-business-hours-content.ea-business-hours-content-style-four p {
  background-color: #f0b9b2;
  color: var(--blackColor);
}

.ea-business-hours-content.ea-business-hours-content-style-four .ea-businss-hours-list-content {
  background-color: var(--whiteColor);
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
  padding: 30px;
}

.ea-business-hours-content.ea-business-hours-content-style-five p {
  background-color: #5b86e5;
}

.ea-business-hours-content.ea-business-hours-content-style-five .ea-businss-hours-list-content {
  background-color: var(--whiteColor);
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
  padding: 30px;
  border: 1px dashed #111bcf;
  border-top: none;
}

.ea-business-hours-content.ea-business-hours-content-style-six {
  text-align: center;
}

.ea-business-hours-content.ea-business-hours-content-style-six p {
  background-color: var(--whiteColor);
  color: var(--blackColor);
  font-size: 30px;
  font-weight: 500;
  border-radius: 10px 10px 0 0;
}

.ea-business-hours-content.ea-business-hours-content-style-six .ea-businss-hours-list-content {
  background-color: var(--whiteColor);
  padding: 30px;
  padding-top: 0;
  border-radius: 0 0 10px 10px;
}

.ea-business-hours-content.ea-business-hours-content-style-six .ea-businss-hours-list-content li {
  border-bottom: none;
  margin-bottom: 0;
  color: var(--blackColor);
}

.ea-business-hours-content.ea-business-hours-content-style-six .ea-businss-hours-list-content li span {
  float: unset;
}

.ea-business-hours-content.ea-business-hours-content-style-six .ea-businss-hours-list-content li:nth-child(1) {
  border-top: 1px solid #e8e8e8;
  padding-top: 20px;
}

.ea-business-hours-content.ea-business-hours-content-style-six .ea-businss-hours-list-content li.close-color {
  border-top: 1px solid #e8e8e8;
  margin-top: 0;
  padding-top: 20px;
  color: #ff0000;
}

/*================================================
SP Footer Style
=================================================*/
.ea-section-footer-area {
  position: relative;
  z-index: 1;
}

.ea-section-footer-area.mt-100 {
  margin-top: 100px;
}

.ea-section-footer-area .ea-bg-color-2c36ff {
  background-color: #2c36ff;
  margin-left: 30px;
  margin-right: 30px;
  border-radius: 20px 20px 0 0;
  position: relative;
  z-index: 1;
}

.ea-section-footer-area .ea-bg-color-6586f4 {
  background-color: #6586f4;
  position: relative;
  z-index: 1;
}

.ea-section-footer-area .ea-bg-color-2c36ff::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
  background-image: url(../images/footer-bg-shape.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.ea-section-footer-area .ea-bg-color-6586f4::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
  background-image: url(../images/footer-bg-shape.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.ea-section-footer-area .ea-bg-color-030f2b {
  background-color: #030f2b;
  margin-left: 30px;
  margin-right: 30px;
  border-radius: 20px 20px 0 0;
  position: relative;
  z-index: 1;
}

.ea-section-footer-area .ea-bg-color-030f2b::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
  background-image: url(../images/footer-bg-shape-4.png);
  background-position: left;
  background-repeat: no-repeat;
  background-size: cover;
}

.ea-section-footer-area .ea-bg-color-030f2b .col.extra-width {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 30%;
}

.ea-section-footer-area.ea-bg-color-2c36ff {
  background-color: #f1f1f1;
}

.ea-section-footer-area .ea-footer-bg-shape-3 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.ea-section-footer-area .ea-footer-bg-img {
  position: relative;
  z-index: 1;
  margin-left: 30px;
  margin-right: 30px;
  border-radius: 20px 20px 0 0;
}

.ea-section-footer-area .ea-footer-bg-img::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
  background-image: url(../images/footer-bg-shape-2.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 20px 20px 0 0;
}

.ea-section-footer-area .ea-footer-bg-img.ea-footer-bg-img-five {
  border-radius: 20px;
}

.ea-section-footer-area .ea-footer-bg-img.ea-footer-bg-img-five::before {
  background-image: url(../images/footer-bg-shape-5.png);
  border-radius: 20px;
}

.ea-section-footer-area .ea-footer-bg-img.ea-footer-bg-img-six::before {
  background-image: url(../images/footer-bg-shape-6.png);
}

.ea-section-footer-area .ea-bg-color-ffffff {
  background-color: #ffffff;
  margin-left: 30px;
  margin-right: 30px;
  position: relative;
  z-index: 1;
}

.ea-section-footer-area .ea-bg-color-ffffff .ea-left-shape {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.ea-section-footer-area .ea-bg-color-ffffff .ea-right-shape {
  position: absolute;
  bottom: -48px;
  right: 0;
  z-index: -1;
}

.ea-section-footer-area .ea-copy-right {
  text-align: center;
  color: var(--whiteColor);
}

.ea-section-footer-area .ea-copy-right a {
  color: var(--whiteColor);
}

.ea-section-footer-area.ea-footer-bg {
  background-image: url(../images/footer-bg.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
}

.ea-section-footer-area .ea-footer-bg-color-111111 {
  background-color: #111111;
}

.ea-section-footer-area .ea-footer-bg-color-111111::before {
  background-image: url(../images/footer-bg-shape-7.png);
  background-size: contain;
}

.ea-section-single-footer-widget {
  margin-bottom: 30px;
}

.ea-section-single-footer-widget.pl-5 {
  padding-left: 50px;
}

.ea-section-single-footer-widget.pl-2 {
  padding-left: 20px;
}

.ea-section-single-footer-widget h2 {
  font-size: 30px;
  color: var(--whiteColor);
  margin-bottom: 15px;
}

.ea-section-single-footer-widget p {
  color: var(--whiteColor);
  margin-bottom: 20px;
}

.ea-section-single-footer-widget h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--whiteColor);
  margin-bottom: 20px;
}

.ea-section-single-footer-widget .ea-social {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.ea-section-single-footer-widget .ea-social li {
  display: inline-block;
  margin-right: 15px;
}

.ea-section-single-footer-widget .ea-social li:last-child {
  margin-right: 0;
}

.ea-section-single-footer-widget .ea-social li span {
  font-size: 16px;
  font-weight: 600;
  color: var(--whiteColor);
}

.ea-section-single-footer-widget .ea-social li a i {
  color: var(--whiteColor);
  font-size: 20px;
}

.ea-section-single-footer-widget .ea-social li a i:hover {
  opacity: 0.7;
}

.ea-section-single-footer-widget .ea-inport-link {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.ea-section-single-footer-widget .ea-inport-link li {
  margin-bottom: 15px;
}

.ea-section-single-footer-widget .ea-inport-link li:last-child {
  margin-bottom: 0;
}

.ea-section-single-footer-widget .ea-inport-link li a {
  color: var(--whiteColor);
  font-size: 15px;
}

.ea-section-single-footer-widget .ea-inport-link li a:hover {
  color: #192e70;
  text-decoration:none;
}

.ea-section-single-footer-widget .ea-address-link {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.ea-section-single-footer-widget .ea-address-link li {
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
  color: var(--whiteColor);
  padding-left: 50px;
}

.ea-section-single-footer-widget .ea-address-link li:last-child {
  margin-bottom: 0;
}

.ea-section-single-footer-widget .ea-address-link li span {
  position: absolute;
  top: 5px;
  left: 0;
  width: 30px;
  height: 30px;
  line-height: 30px;
  background: -webkit-gradient(linear, left top, left bottom, from(#b316d1), to(#f4475e));
  background: linear-gradient(to bottom, #b316d1, #f4475e);
  text-align: center;
  color: var(--whiteColor);
}

.ea-section-single-footer-widget .ea-address-link li a {
  color: var(--whiteColor);
  font-size: 15px;
}

.ea-section-single-footer-widget .ea-address-link li a:hover {
  opacity: 0.7;
}

.ea-section-single-footer-widget.ea-style-two h2 {
  color: var(--mainColor);
}

.ea-section-single-footer-widget.ea-style-two h3 {
  color: var(--blackColor);
}

.ea-section-single-footer-widget.ea-style-two p {
  color: var(--blackColor);
}

.ea-section-single-footer-widget.ea-style-two .ea-address-link li {
  color: var(--blackColor);
  padding-left: 40px;
}

.ea-section-single-footer-widget.ea-style-two .ea-address-link li p {
  color: var(--blackColor);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 0;
}

.ea-section-single-footer-widget.ea-style-two .ea-address-link li span {
  background: none;
  top: 1px;
}

.ea-section-single-footer-widget.ea-style-two .ea-address-link li span i {
  color: var(--blackColor);
  font-size: 25px;
}

.ea-section-single-footer-widget.ea-style-two .ea-address-link li a {
  color: var(--blackColor);
}

.ea-section-single-footer-widget.ea-style-two .ea-inport-link li a {
  color: var(--blackColor);
  position: relative;
  z-index: 1;
}

.ea-section-single-footer-widget.ea-style-two .ea-inport-link li a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 0%;
  height: 1px;
  background-color: var(--mainColor);
  z-index: -1;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.ea-section-single-footer-widget.ea-style-two .ea-inport-link li a:hover {
  margin-left: 10px;
  color: var(--mainColor);
}

.ea-section-single-footer-widget.ea-style-two .ea-inport-link li a:hover::before {
  width: 100%;
}

.ea-section-single-footer-widget.ea-style-two .ea-footer-newsletter-form .form-control {
  background-color: #e8e9ff;
  border: none;
  color: var(--blackColor);
  border-radius: 4px;
  height: 55px;
}

.ea-section-single-footer-widget.ea-style-two .ea-footer-newsletter-form .form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.ea-section-single-footer-widget.ea-style-two .ea-footer-newsletter-form .form-control::-webkit-input-placeholder {
  color: #646464;
}

.ea-section-single-footer-widget.ea-style-two .ea-footer-newsletter-form .form-control:-ms-input-placeholder {
  color: #646464;
}

.ea-section-single-footer-widget.ea-style-two .ea-footer-newsletter-form .form-control::-ms-input-placeholder {
  color: #646464;
}

.ea-section-single-footer-widget.ea-style-two .ea-footer-newsletter-form .form-control::placeholder {
  color: #646464;
}

.ea-section-single-footer-widget.ea-style-two .ea-footer-newsletter-form .subscribe-btn {
  background-color: var(--mainColor);
  border-radius: 4px;
  position: unset;
  margin-top: 20px;
  width: 100%;
  border: none;
  color: var(--whiteColor);
  padding: 15px 20px;
  margin-bottom: 20px;
}

.ea-section-single-footer-widget .ea-footer-newsletter-form .subscribe-btn i {
  position: relative;
  top: 2px;
}

.ea-section-single-footer-widget.ea-style-two .ea-social li {
  margin-right: 8px;
}

.ea-section-single-footer-widget.ea-style-two .ea-social li span {
  color: var(--blackColor);
}

.ea-section-single-footer-widget.ea-style-two .ea-social li a i {
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  border-radius: 50px;
}

.ea-section-single-footer-widget.ea-style-two .ea-social li:nth-child(2) a i {
  background: #5e81cc;
}

.ea-section-single-footer-widget.ea-style-two .ea-social li:nth-child(3) a i {
  background: #62e1fb;
}

.ea-section-single-footer-widget.ea-style-two .ea-social li:nth-child(4) a i {
  background: #ff2929;
}

.ea-section-single-footer-widget.ea-style-two .ea-social li:nth-child(5) a i {
  background: #ff3681;
}

.ea-section-single-footer-widget.ea-style-two .ea-social li:nth-child(6) a i {
  background: #ff3681;
}

.ea-section-single-footer-widget.ea-style-three h2 {
  background: #4A00D8;
  background: -webkit-gradient(linear, left top, right top, from(#4A00D8), to(#FC4D4E));
  background: linear-gradient(to right, #4A00D8 0%, #FC4D4E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ea-section-single-footer-widget.ea-style-three h3 {
  color: var(--whiteColor);
}

.ea-section-single-footer-widget.ea-style-three p {
  color: var(--whiteColor);
}

.ea-section-single-footer-widget.ea-style-three .ea-address-link li {
  color: var(--whiteColor);
  padding-left: 40px;
}

.ea-section-single-footer-widget.ea-style-three .ea-address-link li p {
  color: var(--whiteColor);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 0;
}

.ea-section-single-footer-widget.ea-style-three .ea-address-link li span {
  background: none;
  top: 1px;
}

.ea-section-single-footer-widget.ea-style-three .ea-address-link li span i {
  color: var(--whiteColor);
  font-size: 25px;
}

.ea-section-single-footer-widget.ea-style-three .ea-address-link li a {
  color: var(--whiteColor);
}

.ea-section-single-footer-widget.ea-style-three .ea-inport-link li {
  position: relative;
  z-index: 1;
}

.ea-section-single-footer-widget.ea-style-three .ea-inport-link li i {
  position: absolute;
  top: -1px;
  left: 0;
  background: #4A00D8;
  background: -webkit-gradient(linear, left top, right top, from(#4A00D8), to(#FC4D4E));
  background: linear-gradient(to right, #4A00D8 0%, #FC4D4E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 25px;
  opacity: 0;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  z-index: -1;
}

.ea-section-single-footer-widget.ea-style-three .ea-inport-link li a {
  color: var(--whiteColor);
}

.ea-section-single-footer-widget.ea-style-three .ea-inport-link li a:hover {
  margin-left: 25px;
  color: #ee4f72;
}

.ea-section-single-footer-widget.ea-style-three .ea-inport-link li:hover i {
  opacity: 1;
}

.ea-section-single-footer-widget.ea-style-three .ea-footer-newsletter-form .form-control {
  background-color: #373737;
  border: none;
  color: var(--whiteColor);
  border-radius: 4px;
  height: 55px;
  text-align: center;
}

.ea-section-single-footer-widget.ea-style-three .ea-footer-newsletter-form .form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.ea-section-single-footer-widget.ea-style-three .ea-footer-newsletter-form .form-control::-webkit-input-placeholder {
  color: var(--whiteColor);
}

.ea-section-single-footer-widget.ea-style-three .ea-footer-newsletter-form .form-control:-ms-input-placeholder {
  color: var(--whiteColor);
}

.ea-section-single-footer-widget.ea-style-three .ea-footer-newsletter-form .form-control::-ms-input-placeholder {
  color: var(--whiteColor);
}

.ea-section-single-footer-widget.ea-style-three .ea-footer-newsletter-form .form-control::placeholder {
  color: var(--whiteColor);
}

.ea-section-single-footer-widget.ea-style-three .ea-footer-newsletter-form .subscribe-btn {
  background-color: var(--mainColor);
  border-radius: 4px;
  position: unset;
  margin-top: 20px;
  width: 100%;
  border: none;
  color: var(--whiteColor);
  padding: 15px 20px;
  margin-bottom: 10px;
}

.ea-section-single-footer-widget .ea-footer-newsletter-form .subscribe-btn:hover {
  opacity: 0.7;
}

.ea-section-single-footer-widget.ea-style-four .ea-logo {
  margin-bottom: 20px;
}

.ea-section-single-footer-widget.ea-style-four h3 {
  color: var(--blackColor);
}

.ea-section-single-footer-widget.ea-style-four p {
  color: var(--blackColor);
}

.ea-section-single-footer-widget.ea-style-four .ea-social li a i {
  color: var(--whiteColor);
  background-color: var(--mainColor);
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.ea-section-single-footer-widget.ea-style-four .ea-social li a:hover i {
  background-color: #f2f2f2;
  color: var(--mainColor);
}

.ea-section-single-footer-widget.ea-style-four .ea-instagram-link {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.ea-section-single-footer-widget.ea-style-four .ea-instagram-link li {
  display: inline-block;
  max-width: 84px;
  margin-bottom: 5px;
}

.ea-section-single-footer-widget.ea-style-four .ea-instagram-link li a {
  position: relative;
  z-index: 1;
  display: inline-block;
}

.ea-section-single-footer-widget.ea-style-four .ea-instagram-link li a i {
  position: absolute;
  top: 4px;
  left: 4px;
  right: 0;
  width: 90%;
  height: 90%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: rgba(0, 13, 255, 0.7);
  color: var(--whiteColor);
  opacity: 0;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.ea-section-single-footer-widget.ea-style-four .ea-instagram-link li a:hover i {
  opacity: 1;
}

.ea-section-single-footer-widget.ea-style-four .ea-inport-link li a {
  color: var(--blackColor);
}

.ea-section-single-footer-widget.ea-style-four .ea-inport-link li a i {
  color: var(--mainColor);
  font-size: 20px;
  position: relative;
  top: 4px;
}

.ea-section-single-footer-widget.ea-style-four .ea-inport-link li a:hover {
  color: var(--mainColor);
}

.ea-section-single-footer-widget.ea-style-four .ea-address-link li {
  height: 70px;
  padding-left: 80px;
}

.ea-section-single-footer-widget.ea-style-four .ea-address-link li span {
  width: auto;
  height: auto;
}

.ea-section-single-footer-widget.ea-style-four .ea-address-link li a {
  color: var(--blackColor);
}

.ea-section-single-footer-widget.ea-style-four .ea-address-link li a:hover {
  color: var(--mainColor);
}

.ea-section-single-footer-widget.ea-style-five.ea-brand-style {
  text-align: center;
  border: 1px solid #ffffff;
  padding: 50px 30px;
}

.ea-section-single-footer-widget.ea-style-five.ea-brand-style .ea-logo-2 {
  margin-bottom: 30px;
}

.ea-section-single-footer-widget.ea-style-five .ea-social li a i {
  background-color: var(--whiteColor);
  color: #ef2b73;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
}

.ea-section-single-footer-widget.ea-style-five .float-right {
  float: right;
}

.ea-section-single-footer-widget.ea-style-six.menu {
  margin-left: 30px;
}

.ea-section-single-footer-widget.ea-style-six h2 {
  background: #4A00D8;
  background: -webkit-gradient(linear, left top, right top, from(#4A00D8), to(#FC4D4E));
  background: linear-gradient(to right, #4A00D8 0%, #FC4D4E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ea-section-single-footer-widget.ea-style-six h3 {
  color: var(--whiteColor);
}

.ea-section-single-footer-widget.ea-style-six p {
  color: var(--whiteColor);
}

.ea-section-single-footer-widget.ea-style-six .ea-address-link li {
  color: var(--whiteColor);
  padding-left: 40px;
  font-size: 15px;
}

.ea-section-single-footer-widget.ea-style-six .ea-address-link li p {
  color: var(--whiteColor);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 0;
}

.ea-section-single-footer-widget.ea-style-six .ea-address-link li span {
  background: none;
  top: 1px;
}

.ea-section-single-footer-widget.ea-style-six .ea-address-link li span i {
  color: var(--whiteColor);
  font-size: 25px;
}

.ea-section-single-footer-widget.ea-style-six .ea-address-link li a {
  color: var(--whiteColor);
}

.ea-section-single-footer-widget.ea-style-six .ea-inport-link li {
  position: relative;
  z-index: 1;
}

.ea-section-single-footer-widget.ea-style-six .ea-inport-link li i {
  position: absolute;
  top: -1px;
  left: 0;
  background: #4A00D8;
  background: -webkit-gradient(linear, left top, right top, from(#4A00D8), to(#FC4D4E));
  background: linear-gradient(to right, #4A00D8 0%, #FC4D4E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 25px;
  opacity: 0;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  z-index: -1;
}

.ea-section-single-footer-widget.ea-style-six .ea-inport-link li a {
  color: var(--whiteColor);
}

.ea-section-single-footer-widget.ea-style-six .ea-inport-link li a:hover {
  margin-left: 5px;
  color: #ee4f72;
}

.ea-section-single-footer-widget.ea-style-six .ea-inport-link li:hover i {
  opacity: 1;
}

.ea-footer-logo-wrap {
  text-align: center;
  border-bottom: 1px solid #ffffff;
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.ea-footer-imporet-logo-wrap .ea-inport-link {
  padding: 0;
  margin: 0;
  list-style-type: none;
  text-align: center;
  margin-bottom: 30px;
}

.ea-footer-imporet-logo-wrap .ea-inport-link li {
  display: inline-block;
  margin-right: 33px;
}

.ea-footer-imporet-logo-wrap .ea-inport-link li:last-child {
  margin-right: 0;
}

.ea-footer-imporet-logo-wrap .ea-inport-link li a {
  color: var(--whiteColor);
}

.ea-footer-imporet-logo-wrap .ea-inport-link li a:hover {
  color: var(--mainColor);
}

.ea-footer-imporet-logo-wrap .ea-social {
  padding: 0;
  margin: 0;
  list-style-type: none;
  text-align: center;
  margin-bottom: 30px;
}

.ea-footer-imporet-logo-wrap .ea-social li {
  display: inline-block;
  margin-right: 15px;
}

.ea-footer-imporet-logo-wrap .ea-social li:last-child {
  margin-right: 0;
}

.ea-footer-imporet-logo-wrap .ea-social li span {
  font-size: 16px;
  font-weight: 600;
  color: var(--whiteColor);
}

.ea-footer-imporet-logo-wrap .ea-social li a i {
  color: var(--whiteColor);
  font-size: 20px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.ea-footer-imporet-logo-wrap .ea-social li a:hover i {
  color: var(--mainColor);
}

.ea-copy-right-area {
  padding-top: 20px;
  padding-bottom: 20px;
  border-radius: 0 0 20px 20px;

}

.ea-copy-right-area .ea-social {
  padding: 0;
  margin: 0;
  list-style-type: none;
  text-align: right;
}

.ea-copy-right-area .ea-social li {
  display: inline-block;
  margin-right: 15px;
}

.ea-copy-right-area .ea-social li:last-child {
  margin-right: 0;
}

.ea-copy-right-area .ea-social li span {
  font-size: 16px;
  font-weight: 600;
  color: var(--whiteColor);
}

.ea-copy-right-area .ea-social li a i {
  color: var(--whiteColor);
  font-size: 20px;
}

.ea-copy-right-area p {
  text-align: center;
  color: var(--whiteColor);
  font-size:14px;
}

.ea-copy-right-area p a {
  color: var(--whiteColor);
}

.ea-copy-right-area.ea-copy-right-bg-color-2c36ff {
  background-color: #2c36ff;
}

.ea-copy-right-area.ea-copy-right-bg-color-6586f4 {
  background-color: #6586f4;
}

.ea-copy-right-area.ea-copy-right-bg-color-030f2b {
  background-color: #030f2b;
  border-radius: 0;
}

.ea-copy-right-area.ea-copy-right-bg-color-4a00d8 {
  background: -webkit-gradient(linear, left top, right top, from(#4a00d8), to(#D83D6D));
  background: linear-gradient(to right, #4a00d8, #D83D6D);
  border-radius: 0;
}

.ea-copy-right-area.ea-copy-right-bg-color-4a00d8 p {
  text-align: left;
}

.ea-copy-right-area.ea-copy-right-bg-color-ffffff {
  background-color: #ffffff;
  padding-top: 0;
}

.ea-copy-right-area.ea-copy-right-bg-color-ffffff p {
  text-align: left;
  color: var(--blackColor);
}

.ea-copy-right-area.ea-copy-right-bg-color-ffffff p a {
  color: #d40a60;
}

.ea-copy-right-area.ea-copy-right-bg-color-ff1717 {
  background-color: #ff1717;
  border-radius: 10px 10px 0 0;
  margin-top: -30px;
  position: relative;
  z-index: 1;
}

/*================================================
SP Blog Post Style
=================================================*/
.ea-blog-post-area {
  position: relative;
  z-index: 1;
}

.ea-blog-post-area .ea-shape-1 {
  position: absolute;
  bottom: 100px;
  left: 100px;
  z-index: -1;
}

.ea-blog-post-area .ea-shape-2 {
  position: absolute;
  top: 100px;
  right: 100px;
  z-index: -1;
}

.ea-blog-post-area.ea-blog-post-bg-img {
  background-image: url(../images/blog-post-bg.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  position: relative;
  z-index: 1;
}

.ea-blog-post-area.ea-blog-post-bg-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#030f2b), to(rgba(3, 15, 43, 0.9)));
  background: linear-gradient(to right, #030f2b, rgba(3, 15, 43, 0.9));
  z-index: -1;
}

.ea-blog-post-area.ea-style-six {
  position: relative;
  z-index: 1;
}

.ea-blog-post-area.ea-style-six::before {
  content: "";
  position: absolute;
  top: 0;
  left: 100px;
  width: 400px;
  height: 100%;
  background-color: #fbfcff;
  z-index: -1;
}

.ea-blog-post-area.ea-style-six::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 100px;
  width: 400px;
  height: 100px;
  background-color: #ffffff;
  z-index: -1;
}

.ea-single-blog-post {
  margin-bottom: 30px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.ea-single-blog-post .ea-blog-img {
  margin-bottom: 20px;
  position: relative;
}

.ea-single-blog-post .ea-blog-img .ea-date {
  position: absolute;
  bottom: 30px;
  right: 0;
  background-color: var(--whiteColor);
  display: inline-block;
  padding: 5px 20px;
  color: #fe5452;
}

.ea-single-blog-post .ea-blog-content ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
  margin-bottom: 10px;
}

.ea-single-blog-post .ea-blog-content ul li {
  display: inline-block;
  font-size: 14px;
  color: #646464;
  margin-right: 30px;
}

.ea-single-blog-post .ea-blog-content ul li:last-child {
  margin-right: 0;
}

.ea-single-blog-post .ea-blog-content h3 {
  font-size: 22px;
  margin-bottom: 15px;
  font-family: var(--oswaldFontFamily);
}

.ea-single-blog-post .ea-blog-content .read-more {
  color: var(--blackColor);
  font-size: 15px;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

.ea-single-blog-post .ea-blog-content .read-more::before {
  content: "";
  position: absolute;
  top: 4px;
  right: 100%;
  width: 10px;
  height: 10px;
  background-color: #ff0844;
  border-radius: 50%;
  z-index: -1;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  opacity: 0;
}

.ea-single-blog-post .ea-blog-content .read-more i {
  font-size: 20px;
  position: relative;
  top: 4px;
}

.ea-single-blog-post .ea-blog-content .read-more:hover {
  color: var(--mainColor);
}

.ea-single-blog-post .ea-blog-content .read-more:hover::before {
  right: 0;
  opacity: 1;
}

.ea-single-blog-post.ea-style-two .ea-blog-img {
  margin-bottom: 0;
}

.ea-single-blog-post.ea-style-two .ea-blog-content {
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
  background-color: var(--whiteColor);
  padding: 20px;
}

.ea-single-blog-post.ea-style-two .ea-blog-content ul {
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.ea-single-blog-post.ea-style-two .ea-blog-content ul li a i {
  color: #7f00ff;
  position: relative;
  top: 2px;
  font-size: 18px;
}

.ea-single-blog-post.ea-style-two .ea-blog-content.mb-30 {
  margin-bottom: 30px;
}

.ea-single-blog-post.ea-style-two .ea-blog-content.mb-30 h3 {
  margin-bottom: 0;
}

.ea-single-blog-post.ea-style-three .ea-blog-content ul li.ea-right {
  float: right;
  text-align: right;
  display: block;
  position: relative;
  top: 1px;
  position: relative;
}

.ea-single-blog-post.ea-style-three .ea-blog-content ul li.ea-right a {
  color: #fe5452;
}

.ea-single-blog-post.ea-style-three .ea-blog-content ul li.ea-right::before {
  content: "";
  position: absolute;
  top: 10px;
  left: -105%;
  width: 100%;
  height: 1px;
  background-color: #fe5452;
}

.ea-single-blog-post.ea-style-three .ea-blog-content .read-more {
  z-index: 1;
}

.ea-single-blog-post.ea-style-three .ea-blog-content .read-more::before {
  opacity: 1;
  width: auto;
  height: auto;
  border-top: 35px solid transparent;
  border-right: 0;
  border-bottom: 35px solid #FDEBE1;
  border-left: 35px solid transparent;
  border-radius: 0;
  background-color: transparent;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  left: 12px;
  top: auto;
  bottom: -21px;
  z-index: -1;
}

.ea-single-blog-post.ea-style-three .ea-blog-content .read-more:hover::before {
  right: 100%;
}

.ea-single-blog-post.ea-style-four {
  margin-left: 60px;
}

.ea-single-blog-post.ea-style-four .ea-blog-img {
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

.ea-single-blog-post.ea-style-four .ea-blog-img::after {
  content: "";
  position: absolute;
  top: -21px;
  left: -50px;
  width: 100px;
  height: 115%;
  background-color: #fdebe1;
  z-index: -1;
}

.ea-single-blog-post.ea-style-four .ea-blog-content {
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
  background-color: var(--whiteColor);
  padding: 20px;
  max-width: 400px;
  margin: auto;
  position: relative;
  z-index: 1;
}

.ea-single-blog-post.ea-style-four .ea-blog-content ul li a i {
  color: #7f00ff;
  position: relative;
  top: 2px;
  font-size: 18px;
}

.ea-single-blog-post.ea-style-four .ea-blog-content.mb-30 {
  margin-bottom: 30px;
}

.ea-single-blog-post.ea-style-four .ea-blog-content.mb-30 h3 {
  margin-bottom: 0;
}

.ea-single-blog-post.ea-style-five {
  background-color: var(--whiteColor);
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
  padding: 30px;
  border-radius: 20px;
}

.ea-single-blog-post.ea-style-five h3 {
  margin-bottom: 20px;
}

.ea-single-blog-post.ea-style-five ul {
  margin-bottom: 20px;
}

.ea-single-blog-post.ea-style-five ul li {
  background-color: #f9f9f9;
  padding: 5px 20px;
}

.ea-single-blog-post.ea-style-five ul li a {
  color: #fe5452;
}

.ea-single-blog-post.ea-style-five p {
  margin-bottom: 30px;
}

.ea-single-blog-post.ea-style-five .read-more {
  background-color: #fe5452;
  padding: 10px 20px;
  border-radius: 50px;
  color: var(--whiteColor);
  display: inline-block;
}

.ea-single-blog-post.ea-style-five .read-more::before {
  display: none;
}

.ea-single-blog-post.ea-style-five .read-more:hover {
  color: var(--whiteColor);
}

.ea-single-blog-post.ea-style-six {
  padding: 30px;
  background-color: #f8f8f8;
}

.ea-single-blog-post.ea-style-six.ea-single-bg {
  background-image: url(../images/blog-post-11.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  position: relative;
  border-radius: 10px;
  z-index: 1;
}

.ea-single-blog-post.ea-style-six.ea-single-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(3, 15, 43, 0.9)), to(transparent));
  background: linear-gradient(to top, rgba(3, 15, 43, 0.9), transparent);
  border-radius: 10px;
  z-index: -1;
}

.ea-single-blog-post.ea-style-six.ea-single-bg .ea-blog-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
}

.ea-single-blog-post.ea-style-six.ea-single-bg .ea-blog-content ul li a {
  color: var(--whiteColor);
}

.ea-single-blog-post.ea-style-six.ea-single-bg .ea-blog-content h3 a {
  color: var(--whiteColor);
}

.ea-single-blog-post.ea-style-six.ea-single-bg .ea-blog-content p {
  color: var(--whiteColor);
}

.ea-single-blog-post:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.ea-blog-post-slider-wrap {
  max-width: 750px;
}

.ea-blog-post-slider-wrap .mt-50 {
  margin-top: 50px;
}

.ea-blog-post-slider-wrap .mb-50 {
  margin-bottom: 50px;
}

.ea-blog-post-slider-wrap .owl-theme .owl-nav {
  position: absolute;
  bottom: 50px;
  left: 150px;
}

.ea-blog-post-slider-wrap .owl-theme .owl-nav .owl-prev, .ea-blog-post-slider-wrap .owl-theme .owl-nav .owl-next {
  margin: 0;
}

.ea-blog-post-slider-wrap .owl-theme .owl-nav .owl-prev i, .ea-blog-post-slider-wrap .owl-theme .owl-nav .owl-next i {
  color: var(--whiteColor);
  font-size: 30px;
  position: relative;
  z-index: 1;
}

.ea-blog-post-slider-wrap .owl-theme .owl-nav .owl-prev i::after, .ea-blog-post-slider-wrap .owl-theme .owl-nav .owl-next i::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 15px;
  height: 15px;
  background-color: #fe5452;
  border-radius: 50px;
  z-index: -1;
}

.ea-blog-post-slider-wrap .owl-theme .owl-nav .owl-prev:hover, .ea-blog-post-slider-wrap .owl-theme .owl-nav .owl-next:hover {
  background-color: transparent;
}

.ea-blog-post-slider-wrap .owl-theme .owl-nav .owl-next i::after {
  left: auto;
  right: 0;
}

/*================================================
SP Reviews Style
=================================================*/
.ea-review-design-area {
  position: relative;
  z-index: 1;
  background-color: #fdf6f0;
}

.ea-review-design-area .ea-reviews-shape-1 {
  position: absolute;
  top: 100px;
  left: 50px;
  z-index: -1;
}

.ea-review-design-area .ea-reviews-shape-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}

.ea-review-design-area.ea-style-two {
  background-color: #fff5dc;
}

.ea-review-design-area.ea-style-two .section-title h2 {
  color: #fe5452;
}

.ea-review-design-area.ea-style-three .owl-nav {
  position: absolute;
  bottom: 0;
  right: -2px;
}

.ea-review-design-area.ea-style-three .owl-nav .owl-prev, .ea-review-design-area.ea-style-three .owl-nav .owl-next {
  background-color: transparent;
  margin: 0 2px;
}

.ea-review-design-area.ea-style-three .owl-nav .owl-prev i, .ea-review-design-area.ea-style-three .owl-nav .owl-next i {
  background-color: #fdebe1;
  width: 30px;
  height: 30px;
  line-height: 30px;
  color: #ff715d;
  font-size: 20px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.ea-review-design-area.ea-style-three .owl-nav .owl-prev:hover i, .ea-review-design-area.ea-style-three .owl-nav .owl-next:hover i {
  background-color: #ff715d;
  color: var(--whiteColor);
}

.ea-review-design-area.ea-style-three .ea-shape-3 {
  position: absolute;
  top: 100px;
  left: 0;
}

.ea-review-design-area .owl-carousel .owl-item img {
  width: auto;
}

.ea-review-design-area .ea-slider-wrap-bg {
  position: relative;
  z-index: 1;
}

.ea-review-design-area .ea-slider-wrap-bg::before {
  content: "";
  position: absolute;
  bottom: 50px;
  left: -30px;
  width: 60px;
  height: 60px;
  background-color: #fe5452;
}

.ea-review-design-area .ea-slider-wrap-bg::after {
  content: "";
  position: absolute;
  top: -30px;
  right: -30px;
  width: 60px;
  height: 60px;
  background-color: #fe5452;
}

.ea-review-design-area .ea-slider-wrap-bg .ea-review-single-silder {
  margin: 0;
}

.ea-review-design-area.ea-style-five {
  background-image: url(../images/reviews-bg-1.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
}

.ea-review-design-area.ea-style-five .owl-theme .owl-nav .owl-prev, .ea-review-design-area.ea-style-five .owl-theme .owl-nav .owl-next {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50px);
          transform: translateY(-50px);
}

.ea-review-design-area.ea-style-five .owl-theme .owl-nav .owl-prev i, .ea-review-design-area.ea-style-five .owl-theme .owl-nav .owl-next i {
  color: var(--whiteColor);
  font-size: 30px;
  position: relative;
  z-index: 1;
}

.ea-review-design-area.ea-style-five .owl-theme .owl-nav .owl-prev i::after, .ea-review-design-area.ea-style-five .owl-theme .owl-nav .owl-next i::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 15px;
  height: 15px;
  background-color: #fe5452;
  border-radius: 50px;
  z-index: -1;
}

.ea-review-design-area.ea-style-five .owl-theme .owl-nav .owl-prev:hover, .ea-review-design-area.ea-style-five .owl-theme .owl-nav .owl-next:hover {
  background-color: transparent;
}

.ea-review-design-area.ea-style-five .owl-theme .owl-nav .owl-next {
  left: auto;
  right: 0;
}

.ea-review-design-area.ea-style-five .owl-theme .owl-nav .owl-next i::after {
  left: auto;
  right: 0;
}

.ea-review-design-area.ea-style-five .ea-shape-4 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
}

.ea-review-design-area.ea-style-six .owl-carousel .owl-item img {
  margin: auto;
  max-width: 100px;
}

.single-review-card {
  padding: 30px;
  background-color: #f9f9f9;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  border-radius: 4px;
  margin-bottom: 30px;
}

.single-review-card .ea-review-img {
  text-align: center;
  position: relative;
  max-width: 150px;
  margin: auto;
  margin-bottom: 20px;
}

.single-review-card .ea-review-img img {
  border-radius: 50%;
  border: 5px solid var(--whiteColor);
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
}

.single-review-card .ea-review-img i {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background-color: #ff715d;
  color: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 50px;
  padding: 5px;
}

.single-review-card p {
  margin-bottom: 20px;
}

.single-review-card .ea-review-rating {
  margin-bottom: 20px;
}

.single-review-card .ea-review-rating i {
  font-size: 20px;
  color: #ffc107;
}

.single-review-card .ea-review-rating .ea-rating-point {
  font-weight: 500;
  position: relative;
  top: -2px;
  color: #6d6d6d;
}

.single-review-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: #ff715d;
  margin-bottom: 5px;
}

.single-review-card .ea-profession {
  color: #6d6d6d;
  font-size: 14px;
}

.single-review-card:hover {
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
  background-color: #ffffff;
}

.ea-review-single-silder {
  max-width: 700px;
  margin: 30px auto 0;
}

.ea-review-single-silder p {
  font-size: 28px;
  font-weight: 500;
  color: #030f2b;
  position: relative;
  margin-bottom: 25px;
}

.ea-review-single-silder p i {
  color: #fee4cd;
  font-size: 80px;
  position: absolute;
  top: -20px;
  z-index: -1;
}

.ea-review-single-silder h3 {
  font-size: 18px;
  color: #ff715d;
}

.ea-review-single-silder span {
  font-size: 14px;
  font-weight: 500;
  display: block;
  margin-bottom: 25px;
  color: #6d6d6d;
}

.ea-review-single-silder ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.ea-review-single-silder ul li {
  display: inline-block;
}

.ea-review-single-silder ul li i {
  color: #ffc107;
  font-size: 20px;
}

.ea-review-single-silder.style-three p {
  padding-left: 60px;
  font-style: italic;
}

.ea-review-single-silder.style-three p i {
  left: 0;
  top: 0;
  font-size: 50px;
}

.ea-review-single-silder.style-three ul {
  padding-left: 60px;
}

.ea-review-single-silder.style-three ul li span {
  top: -3px;
  position: relative;
}

.ea-review-single-silder.style-three h3 {
  padding-left: 60px;
}

.ea-review-single-silder.style-three .mb-0 {
  padding-left: 60px;
}

.ea-review-single-silder.style-four p {
  background-color: #fdebe1;
  padding: 30px;
  font-size: 20px;
  z-index: 1;
  padding-left: 60px;
}

.ea-review-single-silder.style-four p::before {
  content: "";
  position: absolute;
  bottom: -17px;
  right: 23px;
  width: 2px;
  height: 40px;
  background-color: #fe5452;
}

.ea-review-single-silder.style-four p i {
  color: #fdbcb5;
  font-size: 50px;
  top: 25px;
  left: 30px;
}

.ea-review-single-silder.style-four ul {
  padding-left: 0;
  position: relative;
  top: 15px;
}

.ea-review-single-silder.style-four ul li span {
  top: -3px;
  position: relative;
}

.ea-review-single-silder.style-four .ea-review-avater {
  position: relative;
  text-align: right;
  padding-right: 70px;
}

.ea-review-single-silder.style-four .ea-review-avater img {
  position: absolute;
  top: 0;
  right: 0;
  max-width: 50px;
}

.ea-review-single-silder.style-five {
  text-align: center;
  margin-bottom: 50px;
  margin-top: 0;
}

.ea-review-single-silder.style-five p i {
  font-size: 50px;
  color: #f7a194;
  display: block;
  position: initial;
}

.ea-review-single-silder.style-five h3 {
  color: var(--whiteColor);
}

.ea-review-single-silder.style-five span {
  color: #fe5452;
}

.ea-review-single-silder.style-five ul {
  margin-top: 10px;
}

.ea-review-single-silder.style-five ul li i {
  color: #ffffff;
}

.ea-review-single-silder.style-five ul li span {
  top: -2px;
  position: relative;
}

.ea-review-single-silder.style-six {
  text-align: center;
}

.ea-review-single-silder.style-six ul li span {
  position: relative;
  top: -2px;
}

.ea-review-single-silder.style-six p {
  font-size: 18px;
  margin-bottom: 0;
}

.ea-review-single-silder.style-six .ea-content-bg {
  background-color: #fff5dc;
  padding: 30px;
  padding-bottom: 70px;
  border-radius: 20px;
}

.ea-review-single-silder.style-six .ea-review-avater {
  margin-top: -50px;
  position: relative;
}

.ea-review-single-silder.style-six .ea-review-avater img {
  margin-bottom: 20px !important;
}

.ea-review-single-silder.style-six .ea-review-avater::before {
  content: "";
  position: absolute;
  bottom: 60px;
  left: 0;
  right: 0;
  width: 2px;
  height: 30px;
  background-color: #ff715d;
  margin: auto;
}

.ea-review-slider-wrap {
  position: relative;
  z-index: 1;
}

.ea-review-slider-wrap .ea-shape-1 {
  position: absolute;
  top: -100px;
  left: 0;
}

.ea-review-slider-wrap .ea-shape-2 {
  position: absolute;
  top: 0px;
  right: 0;
}

.ea-review-slider-wrap .ea-shape-3 {
  position: absolute;
  bottom: 0;
  left: -50px;
}

.ea-review-slider-wrap .ea-shape-4 {
  position: absolute;
  bottom: 0;
  right: 200px;
}

.ea-review-slider-wrap .owl-theme .owl-dots {
  max-width: 700px;
  text-align: left;
  margin: auto;
  margin-top: 30px !important;
}

.ea-review-slider-wrap .owl-theme .owl-dots .owl-dot span {
  width: 20px;
  height: 4px;
  border-radius: 0;
  background-color: #030f2b;
}

.ea-review-slider-wrap .owl-theme .owl-dots .owl-dot.active span {
  background-color: #fe5452;
}

/*================================================
SP Ninja Form Style
=================================================*/
.ea-ninja-form-area {
  position: relative;
  z-index: 1;
}

.ea-ninja-form-area .ea-ml-15 {
  margin-left: 15px;
}

.ea-ninja-form-area .ea-mr-15 {
  margin-right: 15px;
}

.ea-ninja-form-area.ea-style-two {
  background-color: #deebf9;
}

.ea-ninja-form-area .ea-shape-1 {
  position: absolute;
  top: -18px;
  left: 0;
  right: 0;
  z-index: -1;
}

.ea-ninja-form-area .ea-shape-2 {
  position: absolute;
  bottom: -18px;
  left: 0;
  right: 0;
  z-index: -1;
}

.ea-ninja-form-area .ea-shape-3 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  max-width: 475px;
}

.ea-ninja-form-area .ea-shape-4 {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  max-width: 475px;
}

.ea-ninja-form-area.ea-style-four::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 500px;
  background-color: #f8ffeb;
  z-index: -1;
}

.ea-ninja-form-area .ea-shape-5 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.ea-ninja-form-area.ea-style-five .section-title h2 {
  color: #fe5452;
}

.ea-ninja-form-contact-info {
  margin-bottom: 30px;
}

.ea-ninja-form-contact-info h3 {
  margin-bottom: 50px;
  font-size: 25px;
}

.ea-ninja-form-contact-info .ea-contact-info {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.ea-ninja-form-contact-info .ea-contact-info li {
  position: relative;
  padding-left: 70px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eeeeee;
}

.ea-ninja-form-contact-info .ea-contact-info li img {
  position: absolute;
  top: 0;
  left: 0;
}

.ea-ninja-form-contact-info .ea-contact-info li a {
  display: block;
  margin-bottom: 10px;
}

.ea-ninja-form-contact-info .ea-contact-info li:last-child {
  border-bottom: none;
}

.ea-ninja-form-contact-info .ea-mb-20 {
  padding-bottom: 30px !important;
}

.ea-ninja-form-contact-info .ea-social {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.ea-ninja-form-contact-info .ea-social li {
  display: inline-block;
  margin-right: 25px;
}

.ea-ninja-form-contact-info .ea-social li:last-child {
  margin-right: 0;
}

.ea-ninja-form-contact-info .ea-social li span {
  font-size: 25px;
  font-weight: 500;
}

.ea-ninja-form-contact-info .ea-social li a i {
  font-size: 25px;
}

.ea-ninja-form-contact-info .ea-social li:nth-child(2) a i {
  color: #3b5998;
}

.ea-ninja-form-contact-info .ea-social li:nth-child(3) a i {
  color: #00acee;
}

.ea-ninja-form-contact-info .ea-social li:nth-child(4) a i {
  color: #ff0000;
}

.ea-ninja-form-contact-info .ea-social li:nth-child(5) a i {
  color: #86c9ef;
}

.ea-ninja-form-contact-info .ea-social li:nth-child(6) a i {
  color: #c13584;
}

.ea-ninja-contact-form {
  margin-bottom: 30px;
}

@media only screen and (min-width: 1200px) {
  .ea-ninja-form-area.ea-style-two .ea-ninja-contact-form {
    width: 60%;
    margin-left: auto;
    margin-right: auto;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ea-ninja-form-area .ea-shape-5 {
    left: -100px;
  }
}

.ea-ninja-contact-form .ea-wp-formleft-title {
  margin-bottom: 60px;
}

.ea-ninja-contact-form .ea-wp-formleft-title h2 {
  font-size: 36px;
  margin-bottom: 0;
  color: var(--mainColor);
}

.ea-ninja-contact-form .ea-wp-formleft-title p {
  margin-top: 12px;
}

.ea-ninja-contact-form h3 {
  font-size: 30px;
  margin-bottom: 30px;
}

.ea-ninja-contact-form .form-group {
  margin-bottom: 30px;
}

.ea-ninja-contact-form .form-group label {
  margin-bottom: 5px;
  font-weight: 500;
  font-size: 15px;
}

.ea-ninja-contact-form .form-group label span {
  color: #ff0000;
}

.ea-ninja-contact-form .form-group .form-control {
  border-radius: 4px;
  height: 60px;
  border: 0;
  background-color: #f9f9f9;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.ea-ninja-contact-form .form-group .form-control::-webkit-input-placeholder {
  color: #646464;
}

.ea-ninja-contact-form .form-group .form-control:-ms-input-placeholder {
  color: #646464;
}

.ea-ninja-contact-form .form-group .form-control::-ms-input-placeholder {
  color: #646464;
}

.ea-ninja-contact-form .form-group .form-control::placeholder {
  color: #646464;
}

.ea-ninja-contact-form .form-group .form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid var(--mainColor);
}

.ea-ninja-contact-form .form-group .form-control:focus-visible {
  outline: 0;
}

.ea-ninja-contact-form .form-group textarea.form-control {
  height: auto;
}

.ea-ninja-contact-form .form-group.checkboxs {
  position: relative;
}

.ea-ninja-contact-form .form-group.checkboxs #chb2 {
  position: absolute;
  top: 7px;
  left: 0;
}

.ea-ninja-contact-form .form-group.checkboxs p {
  padding-left: 20px;
}

.ea-ninja-contact-form .form-group.checkboxs p a {
  color: var(--mainColor);
}

.ea-ninja-contact-form .form-group.checkboxs p a:hover {
  color: var(--blackColor);
}

.ea-ninja-contact-form .submit-btn {
  background-color: #2c36ff;
  color: var(--whiteColor);
  border-radius: 4px;
  padding: 15px 35px;
  font-size: 16px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  border: 1px solid #2c36ff;
  display: block;
  width: 100%;
}

.ea-ninja-contact-form .submit-btn i {
  font-size: 20px;
  position: relative;
  top: 5px;
}

.ea-ninja-contact-form .submit-btn:hover {
  background-color: transparent;
  color: #2c36ff;
}

.ea-ninja-contact-form.ea-style-three .ea-single-check {
  display: block;
  position: relative;
  padding-left: 20px;
  margin-bottom: 0;
  cursor: pointer;
  font-size: 14px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  font-weight: normal;
}

.ea-ninja-contact-form.ea-style-three .ea-single-check input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.ea-ninja-contact-form.ea-style-three .ea-single-check input:checked ~ .ea-checkmark {
  background-color: var(--mainColor);
}

.ea-ninja-contact-form.ea-style-three .ea-single-check input:checked ~ .ea-checkmark:after {
  display: block;
}

.ea-ninja-contact-form.ea-style-three .ea-single-check:hover input ~ .ea-checkmark {
  background-color: var(--mainColor);
}

.ea-ninja-contact-form.ea-style-three .ea-single-check .ea-checkmark {
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.ea-ninja-contact-form.ea-style-three .ea-single-check .ea-checkmark:after {
  top: 3px;
  left: 3px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mainColor);
}

.ea-ninja-contact-form.ea-style-three .ea-checkmark {
  position: absolute;
  top: 4px;
  left: 0;
  height: 12px;
  width: 12px;
  background-color: transparent;
  border-radius: 2px;
  border: 1px solid var(--mainColor);
}

.ea-ninja-contact-form.ea-style-three .ea-checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.ea-ninja-contact-form.ea-style-three .form-group .form-control {
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.ea-ninja-contact-form.ea-style-three .form-group .form-control:focus {
  border: 1px solid var(--mainColor);
}

.ea-ninja-contact-form.ea-style-four {
  background-color: #ffffff;
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
  padding: 50px;
  border-radius: 20px;
  max-width: 920px;
  margin: auto;
}

.ea-ninja-contact-form.ea-style-four .ea-required span {
  color: #ff0000;
}

.ea-ninja-contact-form.ea-style-four .ea-single-check {
  display: block;
  position: relative;
  padding-left: 20px;
  margin-bottom: 0;
  cursor: pointer;
  font-size: 14px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  font-weight: normal;
}

.ea-ninja-contact-form.ea-style-four .ea-single-check input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.ea-ninja-contact-form.ea-style-four .ea-single-check input:checked ~ .ea-checkmark {
  background-color: #007991;
}

.ea-ninja-contact-form.ea-style-four .ea-single-check input:checked ~ .ea-checkmark:after {
  display: block;
}

.ea-ninja-contact-form.ea-style-four .ea-single-check:hover input ~ .ea-checkmark {
  background-color: #007991;
}

.ea-ninja-contact-form.ea-style-four .ea-single-check .ea-checkmark {
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.ea-ninja-contact-form.ea-style-four .ea-single-check .ea-checkmark:after {
  top: 3px;
  left: 3px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #007991;
}

.ea-ninja-contact-form.ea-style-four .ea-checkmark {
  position: absolute;
  top: 3px;
  left: 0;
  height: 15px;
  width: 15px;
  background-color: transparent;
  border-radius: 50px;
  border: 1px solid #007991;
}

.ea-ninja-contact-form.ea-style-four .ea-checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.ea-ninja-contact-form.ea-style-four .submit-btn {
  background-color: #007991;
  border-color: #007991;
}

.ea-ninja-contact-form.ea-style-four .submit-btn:hover {
  background-color: transparent;
  border-color: #007991;
  color: #007991;
}

.ea-ninja-contact-form.ea-style-five {
  background-image: url(../images/bg-shape.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  background-color: #fdebe1;
  padding: 100px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.ea-ninja-contact-form.ea-style-five .ea-required {
  font-weight: 500;
}

.ea-ninja-contact-form.ea-style-five .ea-required span {
  color: #ff0000;
}

.ea-ninja-contact-form.ea-style-five .ea-border-bottom {
  border-bottom: 1px solid #ffb5b4;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.ea-ninja-contact-form.ea-style-five .form-control::-webkit-input-placeholder {
  color: var(--blackColor);
}

.ea-ninja-contact-form.ea-style-five .form-control:-ms-input-placeholder {
  color: var(--blackColor);
}

.ea-ninja-contact-form.ea-style-five .form-control::-ms-input-placeholder {
  color: var(--blackColor);
}

.ea-ninja-contact-form.ea-style-five .form-control::placeholder {
  color: var(--blackColor);
}

.ea-ninja-contact-form.ea-style-five .ea-single-check {
  display: block;
  position: relative;
  padding-left: 20px;
  margin-bottom: 20px;
  cursor: pointer;
  font-size: 14px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  font-weight: normal;
}

.ea-ninja-contact-form.ea-style-five .ea-single-check input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.ea-ninja-contact-form.ea-style-five .ea-single-check input:checked ~ .ea-checkmark {
  background-color: #fe5452;
}

.ea-ninja-contact-form.ea-style-five .ea-single-check input:checked ~ .ea-checkmark:after {
  display: block;
}

.ea-ninja-contact-form.ea-style-five .ea-single-check:hover input ~ .ea-checkmark {
  background-color: #fe5452;
}

.ea-ninja-contact-form.ea-style-five .ea-single-check .ea-checkmark {
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.ea-ninja-contact-form.ea-style-five .ea-single-check .ea-checkmark:after {
  top: 3px;
  left: 3px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fe5452;
}

.ea-ninja-contact-form.ea-style-five .ea-checkmark {
  position: absolute;
  top: 3px;
  left: 0;
  height: 15px;
  width: 15px;
  background-color: #ffffff;
  border-radius: 4px;
  border: 1px solid #fe5452;
}

.ea-ninja-contact-form.ea-style-five .ea-checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.ea-ninja-contact-form.ea-style-five .ea-border-top {
  border-top: 1px solid #ffb5b4;
  padding-top: 20px;
}

.ea-ninja-contact-form.ea-style-five .submit-btn {
  background-color: #FE5452;
  border-color: #FE5452;
}

.ea-ninja-contact-form.ea-style-five .submit-btn:hover {
  background-color: transparent;
  border-color: #FE5452;
  color: #FE5452;
}

/*================================================
SP Road Map Area Style
=================================================*/
.ea-road-map-area {
  position: relative;
  z-index: 1;
}

.ea-road-map-area h3 {
  font-family: var(--oswaldFontFamily);
}

.ea-road-map-area.ea-style-four {
  background-color: #f5f5f5;
}

.ea-road-map-area .ea-shape-1 {
  position: absolute;
  top: -1px;
  left: 0;
}

.ea-road-map-area .ea-shape-2 {
  position: absolute;
  bottom: 0;
  left: 0;
}

.ea-road-map-area.ea-style-two {
  background-color: #f9fbff;
  padding-bottom: 150px;
}

.ea-road-map-area.ea-style-two .section-title {
  margin-bottom: 100px;
}

.ea-road-map-area.ea-style-six {
  background-color: #030f2b;
}

.ea-road-map-area.ea-style-six .section-title h2 {
  background: -webkit-gradient(linear, left top, right top, from(#FF0073), to(#faf689));
  background: linear-gradient(to right, #FF0073, #faf689);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.ea-road-map-area.ea-style-six .section-title p {
  color: var(--whiteColor);
}

.ea-road-map-area.style-three {
  padding-bottom: 200px;
}

.ea-road-map-area.style-three .section-title {
  margin-bottom: 300px;
}

.ea-single-road-map {
  margin-bottom: 30px;
}

.ea-single-road-map img {
  margin-bottom: 30px;
}

.ea-single-road-map .ea-road-map-content {
  position: relative;
  padding-left: 50px;
}

.ea-single-road-map .ea-road-map-content span {
  font-size: 50px;
  font-size: 100px;
  color: #e5e7e9;
  font-family: var(--oswaldFontFamily);
  position: absolute;
  top: 0;
  left: -5px;
  line-height: 1;
  font-weight: 600;
}

.ea-single-road-map .ea-road-map-content h3 {
  font-size: 25px;
}

.ea-single-road-map.ea-style-four .ea-road-map-content {
  padding-left: 0;
}

.ea-single-road-map.ea-style-four .ea-road-map-content h3 {
  font-size: 22px;
}

.ea-single-road-map.ea-style-four .ea-road-map-content span {
  top: -40px;
  z-index: -1;
  color: #fff;
}

.ddddddd {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.ea-single-road-map-style-two {
  position: relative;
  border: 3px solid #86eeb7;
  padding: 15px;
  padding-left: 125px;
  border-radius: 50px;
  display: inline-block;
}

.ea-single-road-map-style-two .ea-right-shape-1 {
  position: absolute;
  bottom: -60px;
  right: 107px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.ea-single-road-map-style-two .ea-right-shape-2 {
  position: absolute;
  top: -60px;
  right: 107px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.ea-single-road-map-style-two span {
  font-family: var(--oswaldFontFamily);
  font-size: 40px;
  font-weight: 700;
  color: #86eeb7;
  position: absolute;
  top: 12px;
  left: 15px;
  border-right: 1px solid #ececec;
  padding-right: 10px;
}

.ea-single-road-map-style-two p {
  font-size: 15px;
  color: var(--blackColor);
  margin-bottom: 0;
}

.ea-single-road-map-style-two.ea-one {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.ea-single-road-map-style-two.ea-two {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: relative;
  left: -100px;
  top: 85px;
  border-color: #ffceae;
}

.ea-single-road-map-style-two.ea-two span {
  color: #ffceae;
}

.ea-single-road-map-style-two.ea-three {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  position: relative;
  left: -200px;
  border-color: #93d6ff;
}

.ea-single-road-map-style-two.ea-three span {
  color: #93d6ff;
}

.ea-single-road-map-style-two.ea-four {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: relative;
  left: -300px;
  top: 85px;
  border-color: #ffccd5;
}

.ea-single-road-map-style-two.ea-four span {
  color: #ffccd5;
}

.ea-single-road-map-style-two.ea-five {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  position: relative;
  left: 637px;
  top: -85px;
  border-color: #c6bce6;
}

.ea-single-road-map-style-two.ea-five span {
  color: #c6bce6;
}

.ea-single-road-map-style-two.ea-six {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: relative;
  left: 537px;
  top: 0;
  border-color: #ec615b;
}

.ea-single-road-map-style-two.ea-six span {
  color: #ec615b;
}

.ea-width-wrap ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.ea-width-wrap ul li {
  display: inline-block;
}

.ea-single-road-map-ea-style-five {
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
  background-color: var(--whiteColor);
  padding: 30px;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
}

.ea-single-road-map-ea-style-five::before {
  content: "";
  position: absolute;
  bottom: -45px;
  left: 50%;
  margin: auto;
  width: 1px;
  height: 45px;
  border-right: 2px dashed #d9d9d9;
}

.ea-single-road-map-ea-style-five.ea-count-card::before {
  bottom: auto;
  top: -45px;
}

.ea-single-road-map-ea-style-five h3 {
  font-size: 25px;
  margin-bottom: 15px;
}

.ea-single-road-map-ea-style-five h3 span {
  color: #fd685c;
}

.ea-single-road-map-ea-style-five .ea-count-number {
  font-size: 20px;
  background-color: #fd685c;
  font-weight: 700;
  color: var(--whiteColor);
  width: 50px;
  height: 50px;
  line-height: 50px;
  -webkit-clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
          clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
  display: inline-block;
  border-radius: 4px;
  position: absolute;
  bottom: -95px;
  left: 0;
  right: 0;
  margin: auto;
}

.ea-single-road-map-ea-style-five .ea-count-number.ea-count-two {
  bottom: auto;
  top: -95px;
}

.ea-single-road-map-ea-style-five.ea-card-style-four h3 span {
  color: #fa9c50;
}

.ea-single-road-map-ea-style-five.ea-card-style-four .ea-count-number.ea-count-two {
  background-color: #fa9c50;
}

.ea-single-road-map-ea-style-five.ea-card-style-two h3 span {
  color: #a6cb4e;
}

.ea-single-road-map-ea-style-five.ea-card-style-two .ea-count-number {
  background-color: #a6cb4e;
}

.ea-single-road-map-ea-style-five.ea-card-style-five h3 span {
  color: #00e0b2;
}

.ea-single-road-map-ea-style-five.ea-card-style-five .ea-count-number {
  background-color: #00e0b2;
}

.ea-single-road-map-ea-style-five.ea-card-style-three h3 span {
  color: #0fbddf;
}

.ea-single-road-map-ea-style-five.ea-card-style-three .ea-count-number {
  background-color: #0fbddf;
}

.ea-sabrit {
  border: 1px dashed #d9d9d9;
  margin-bottom: 70px;
  margin-top: 40px;
  position: relative;
  z-index: -1;
}

.ea-sabrit::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 160px;
  height: 2px;
  background-color: var(--whiteColor);
}

.ea-sabrit::after {
  content: "";
  position: absolute;
  top: -1px;
  right: 0;
  width: 160px;
  height: 2px;
  background-color: var(--whiteColor);
}

.ea-single-road-map-ea-style-six {
  background-color: #051f5a;
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  position: relative;
}

.ea-single-road-map-ea-style-six .ea-road-map-icon {
  margin-bottom: 20px;
}

.ea-single-road-map-ea-style-six .ea-road-map-icon img {
  margin-right: 30px;
}

.ea-single-road-map-ea-style-six .ea-road-map-icon span {
  color: #faf689;
  font-family: var(--oswaldFontFamily);
  font-size: 30px;
  font-weight: 700;
  position: relative;
  top: 2px;
}

.ea-single-road-map-ea-style-six h3 {
  font-size: 20px;
  color: var(--whiteColor);
  margin-bottom: 15px;
}

.ea-single-road-map-ea-style-six p {
  color: var(--whiteColor);
}

.ea-single-road-map-three {
  text-align: center;
  position: relative;
  z-index: 999;
}

.ea-single-road-map-three .ea-main-year {
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.ea-single-road-map-three span {
  font-size: 25px;
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
}

.ea-single-road-map-three .ea-road-map-content {
  position: absolute;
  bottom: -230px;
  left: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  padding-top: 80px;
}

.ea-single-road-map-three .ea-road-map-content h3 {
  font-size: 20px;
}

.ea-single-road-map-three .ea-location-road-map {
  position: absolute;
  top: -205px;
  left: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.ea-single-road-map-three .ea-location-road-map .ea-map-year {
  position: absolute;
  top: 60px;
  left: 0;
  right: 0;
}

.ea-single-road-map-three:hover .ea-road-map-content {
  opacity: 1;
}

.ea-single-road-map-three:hover .ea-main-year {
  opacity: 0;
}

.ea-single-road-map-three:hover .ea-location-road-map {
  opacity: 1;
}

.ea-single-road-map-three.active .ea-road-map-content {
  opacity: 1;
}

.ea-single-road-map-three.active .ea-main-year {
  opacity: 0;
}

.ea-single-road-map-three.active .ea-location-road-map {
  opacity: 1;
}

.ea-road-map-line {
  background-color: #ec615b;
  padding-top: 30px;
  padding-bottom: 30px;
  position: relative;
}

.ea-road-map-line .col-lg-2 {
  position: relative;
}

.ea-road-map-line::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #030f2b;
}

.ea-road-map-line::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #030f2b;
}

.ea-road-map-line .ea-border-line {
  border-bottom: 2px dashed #fff;
}

.ea-road-map-line .ea-dots {
  width: 20px;
  height: 20px;
  background-color: #000000;
  text-align: center;
  margin: auto;
  border: 5px solid #ffffff;
  border-radius: 50px;
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
}

.ea-roadmap-bg-shape {
  position: relative;
  z-index: 1;
}

.ea-roadmap-bg-shape .col-lg-4:nth-child(2) .ea-single-road-map-ea-style-six {
  margin-top: 30px;
}

.ea-roadmap-bg-shape .col-lg-4:nth-child(2) .ea-single-road-map-ea-style-six::before {
  background-image: url(../images/right-shape-4.png);
}

.ea-roadmap-bg-shape .col-lg-4:nth-child(3) .ea-single-road-map-ea-style-six {
  margin-top: 5px;
}

.ea-roadmap-bg-shape .col-lg-4:nth-child(3) .ea-single-road-map-ea-style-six::before {
  background-image: url(../images/right-shape-7.png);
  top: 148px;
}

.ea-roadmap-bg-shape .col-lg-4:nth-child(4) .ea-single-road-map-ea-style-six {
  margin-top: -30px;
}

.ea-roadmap-bg-shape .col-lg-4:nth-child(6) .ea-single-road-map-ea-style-six {
  margin-top: -25px;
}

.ea-roadmap-bg-shape .col-lg-4:nth-child(6) .ea-single-road-map-ea-style-six::before {
  display: none;
}

.ea-roadmap-bg-shape .ea-single-road-map-ea-style-six {
  position: relative;
}

.ea-roadmap-bg-shape .ea-single-road-map-ea-style-six::before {
  content: "";
  position: absolute;
  top: 0;
  left: 80px;
  width: 100%;
  height: 100%;
  background-image: url(../images/right-shape-3.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}

/*================================================
SP Events Calander Area Style
=================================================*/
.fc .fc-button-primary {
  background-color: #eef3ff;
  border: none;
  border-radius: 0;
  margin-right: 5px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  text-transform: capitalize;
}

.fc .fc-button-primary:focus {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  outline: 0;
}

.fc .fc-button-primary:hover {
  background-color: var(--mainColor);
}

.fc .fc-button-primary:hover .fc-icon-chevron-left:before {
  color: var(--whiteColor) !important;
}

.fc .fc-button-primary:hover .fc-icon-chevron-right:before {
  color: var(--whiteColor) !important;
}

.fc-icon-chevron-left:before {
  color: var(--mainColor);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.fc-icon-chevron-right:before {
  color: var(--mainColor);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.fc-today-button.fc-button.fc-button-primary {
  color: var(--mainColor);
}

.fc-today-button.fc-button.fc-button-primary:hover {
  color: var(--whiteColor);
}

.fc-today-button.fc-button.fc-button-primary.active {
  color: var(--whiteColor);
  background-color: var(--mainColor);
}

.fc .fc-button-primary:not(:disabled):active, .fc .fc-button-primary:not(:disabled).fc-button-active {
  background-color: var(--mainColor);
}

.fc .fc-button-primary {
  color: var(--mainColor);
}

.fc .fc-toolbar-title {
  font-size: 30px;
  position: absolute;
  top: 0;
  left: 130px;
}

div#calendar {
  position: relative;
}

div#calendar thead {
  background: #2c36ff;
}

div#calendar thead tr th {
  border: none;
}

div#calendar thead tr th a {
  color: var(--whiteColor);
  font-weight: 500;
}

div#calendar .fc-col-header-cell-cushion {
  padding: 20px 10px;
}

div#calendar .fc-non-business {
  background-color: transparent;
}

div#calendar .fc-theme-standard td, div#calendar .fc-theme-standard th {
  border: 1px solid #e8e8e8;
}

div#calendar .fc-h-event .fc-event-title-container {
  background-color: var(--mainColor);
}

div#calendar .fc-button:disabled {
  opacity: 1;
}

div#calendar .fc-button-primary:hover {
  background-color: var(--mainColor) !important;
}

div#calendar .fc-button-primary.active {
  color: var(--whiteColor) !important;
}

div#calendar .fc-button-primary:not(:disabled):active:focus, div#calendar .fc .fc-button-primary:not(:disabled).fc-button-active:focus {
  background-color: var(--whiteColor) !important;
}

div#calendar .fc-today-button.fc-button.fc-button-primary {
  color: #ffffff;
}

div#calendar button.fc-today-button.fc-button.fc-button-primary {
  background-color: #000;
}

/*
Preview Demos Area CSS
<<<<======================================================>>>>*/
.preview-demos-area .single-demo-box {
  margin: 30px 10px;
}

.preview-demos-area .single-demo-box a {
  display: block;
}

.preview-demos-area .image-bg {
  width: 100%;
  height: 400px;
  display: inline-block;
  position: relative;
}

.preview-demos-area .image-bg .image-demo-scroll {
  background-position: center 0;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  width: 100%;
  height: 400px;
  border: 10px solid #f8f9fa;
  border-radius: 25px;
  box-shadow: 0 2px 8px 0 rgb(0 0 0 / 15%);
  transition: all 8s ease-out 0s;
}

.preview-demos-area .image-bg:hover .image-demo-scroll {
  background-position: center 100% !important;
}

.preview-demos-area h3 {
  text-align: center;
  font-size: 20px;
  margin-top: 20px;
}

.preview-demos-area .section-title p {
  font-size: 17px;
}

/*
Preview Features Area CSS
<<<<======================================================>>>>*/
.preview-features-area {
  position: relative;
  z-index: 1;
}

.preview-features-area .shape-1 {
  position: absolute;
  left: 40px;
  bottom: 40px;
  z-index: -1;
}

.preview-features-area .shape-2 {
  position: absolute;
  right: 40px;
  top: 40px;
  z-index: -1;
}

.preview-features-area .single-feature-box {
  -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  background-color: var(--whiteColor);
  padding: 30px;
  border-radius: 8px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  margin: 30px 20px;
  position: relative;
  z-index: 1;
}

.preview-features-area .single-feature-box .icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  background-color: #e5effc;
  text-align: center;
  border-radius: 50%;
  margin: 0 auto 30px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.preview-features-area .single-feature-box .icon i {
  font-size: 40px;
  line-height: inherit;
  color: var(--mainColor);
}

.preview-features-area .single-feature-box h3 {
  font-size: 20px;
  margin-bottom: 10px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  text-align: center;
}

.preview-features-area .single-feature-box:hover {
  border-color: var(--mainColor);
}

.preview-features-area .single-feature-box:hover {
  background-color: var(--mainColor);
}

.preview-features-area .single-feature-box:hover .icon {
  background-color: var(--whiteColor);
}

.preview-features-area .single-feature-box:hover h3 {
  color: var(--whiteColor);
}

.preview-features-area .section-title p {
  font-size: 17px;
}

.preview-features-area .section-title img {
  font-size: 17px;
  height:200px;
}

.img-sf-logo{
  height:27px;

}

.line-no{
	text-decoration:none!important;
}

