/*
@File: Chaz 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
** - Navbar Area CSS
** - Banner Wrapper Area CSS
** - Featured Services Section CSS
** - Features Section CSS
** - CTA Section CSS
** - Portfolio Section CSS
** - Portfolio Details Section CSS
** - Funfacts Section CSS
** - Team Section CSS
** - Pricing Section CSS
** - Partner Section CSS
** - Blog Section CSS
** - Blog Details Section CSS
** - Testimonials Area CSS
** - Inner Page Banner Section CSS
** - 404 Error Section CSS
** - Contact Section CSS
** - FAQ Section CSS
** - Footer Section CSS
** - Go Top CSS
*/
/*================================================
Default CSS
=================================================*/
@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,600;1,700;1,800;1,900&display=swap");
:root {
  --fontFamily: 'Nunito', sans-serif;
  --mainColor: #4146E6;
  --optionalColor: #6F8BA4;
  --whiteColor: #ffffff;
  --blackColor: #3B566E;
  --fontSize: 16px;
  --transition: .5s;
}

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 {
  font-weight: 700;
  color: var(--blackColor);
}

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

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);
  font-size: var(--fontSize);
  margin-bottom: 15px;
  line-height: 1.8;
}

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-70 {
  padding-top: 70px;
}

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

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

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

/*default-btn*/
.default-btn {
  display: inline-block;
  border: none;
  -webkit-box-shadow: 0;
          box-shadow: 0;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  text-decoration: none;
  background-color: var(--mainColor);
  color: var(--whiteColor);
  padding: 12px 35px;
  position: relative;
  z-index: 1;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 700;
}

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

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

.default-btn::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
  opacity: 1;
  visibility: visible;
  border-radius: 5px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  background: linear-gradient(135deg, #6a30d1 0%, #5c83e3 100%);
}

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

.section-title h2 {
  font-size: 25px;
  margin-bottom: 12px;
}

.section-title p {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/*form-control*/
.form-control {
  border: 0;
  padding: 0;
  height: 50px;
  border-radius: 0;
  color: var(--blackColor);
  -webkit-box-shadow: unset !important;
          box-shadow: unset !important;
  border-bottom: 1px solid #ebebeb;
  background-color: transparent !important;
  font-weight: 500;
  font-size: 15px;
}

.form-control::-webkit-input-placeholder {
  color: var(--optionalColor);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.form-control:-ms-input-placeholder {
  color: var(--optionalColor);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.form-control::-ms-input-placeholder {
  color: var(--optionalColor);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.form-control::placeholder {
  color: var(--optionalColor);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--mainColor);
}

.form-control:focus::-webkit-input-placeholder {
  opacity: 0;
}

.form-control:focus:-ms-input-placeholder {
  opacity: 0;
}

.form-control:focus::-ms-input-placeholder {
  opacity: 0;
}

.form-control:focus::placeholder {
  opacity: 0;
}

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

/*================================================
Navbar Area CSS
=================================================*/
.navbar-area {
  top: 0;
  left: 0;
  padding: 0;
  width: 100%;
  height: auto;
  z-index: 999;
  position: absolute;
  padding-top: 10px;
  padding-bottom: 10px;
}

.navbar-area.is-sticky {
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  position: fixed;
  background-color: var(--whiteColor) !important;
  -webkit-box-shadow: 0 0.25rem 0.25rem 0 rgba(15, 30, 150, 0.03);
          box-shadow: 0 0.25rem 0.25rem 0 rgba(15, 30, 150, 0.03);
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
          animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
}

.template-responsive-navbar {
  display: none;
}

.template-navbar .navbar {
  padding: 0;
}

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

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

.template-navbar .navbar .navbar-nav {
  margin-left: auto;
  margin-right: auto;
}

.template-navbar .navbar .navbar-nav .nav-item {
  position: relative;
  margin-left: 14px;
  margin-right: 14px;
}

.template-navbar .navbar .navbar-nav .nav-item a {
  color: var(--optionalColor);
  font-weight: 600;
  font-size: var(--fontSize);
  padding-left: 0;
  padding-right: 0;
  padding-top: 20px;
  padding-bottom: 20px;
}

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

.template-navbar .navbar .navbar-nav .nav-item .dropdown-toggle {
  padding-right: 17px;
}

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

.template-navbar .navbar .navbar-nav .nav-item .dropdown-toggle::before {
  content: "\e9ac";
  position: absolute;
  right: -4px;
  top: 17px;
  font-weight: 300;
  font-size: 20px;
  font-family: 'boxicons';
}

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

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

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

.template-navbar .navbar .navbar-nav .nav-item .dropdown-menu {
  border: none;
  top: 64px;
  left: 0;
  z-index: 99;
  opacity: 0;
  width: 250px;
  display: block;
  border-radius: 0;
  padding: 0;
  margin-top: 15px;
  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);
}

.template-navbar .navbar .navbar-nav .nav-item .dropdown-menu li {
  margin: 0;
}

.template-navbar .navbar .navbar-nav .nav-item .dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  position: relative;
  color: var(--optionalColor);
  border-top: 1px dashed #eeeeee;
  font-size: 15px;
  font-weight: 600;
}

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

.template-navbar .navbar .navbar-nav .nav-item .dropdown-menu li a:hover, .template-navbar .navbar .navbar-nav .nav-item .dropdown-menu li a:focus, .template-navbar .navbar .navbar-nav .nav-item .dropdown-menu li a.active {
  color: var(--whiteColor);
  background-color: var(--mainColor);
  border-top-color: var(--mainColor);
}

.template-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu {
  top: 0;
  opacity: 0;
  left: -250px;
  margin-top: 15px;
  visibility: hidden;
}

.template-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a {
  color: var(--optionalColor);
  border-top-color: #eeeeee;
  background-color: transparent;
}

.template-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:hover, .template-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:focus, .template-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a.active {
  color: var(--whiteColor);
  background-color: var(--mainColor);
  border-top-color: var(--mainColor);
}

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

.template-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: var(--optionalColor);
  border-top-color: #eeeeee;
  background-color: transparent;
}

.template-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover, .template-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus, .template-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  color: var(--whiteColor);
  background-color: var(--mainColor);
  border-top-color: var(--mainColor);
}

.template-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li.active a {
  color: var(--whiteColor);
  background-color: var(--mainColor);
  border-top-color: var(--mainColor);
}

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

.template-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li.active a {
  color: var(--whiteColor);
  background-color: var(--mainColor);
  border-top-color: var(--mainColor);
}

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

.template-navbar .navbar .navbar-nav .nav-item .dropdown-menu li.active a {
  color: var(--whiteColor);
  background-color: var(--mainColor);
  border-top-color: var(--mainColor);
}

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

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

.template-navbar .navbar .others-option .item {
  margin-left: 20px;
}

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

.template-navbar .navbar .others-option .item:nth-child(1) .default-btn::before {
  background: var(--blackColor);
}

@media only screen and (max-width: 991px) {
  .navbar-area {
    border-bottom: 1px solid #eeeeee;
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .navbar-area.is-sticky {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .template-responsive-navbar {
    display: block;
  }
  .template-responsive-navbar .template-responsive-menubar {
    position: relative;
  }
  .template-responsive-navbar .template-responsive-menubar.mean-container .mean-nav {
    margin-top: 40px;
  }
  .template-responsive-navbar .template-responsive-menubar.mean-container .mean-nav ul {
    font-size: 15px;
  }
  .template-responsive-navbar .template-responsive-menubar.mean-container .mean-nav ul li a.active {
    color: var(--mainColor);
  }
  .template-responsive-navbar .template-responsive-menubar.mean-container .mean-nav ul li li a {
    font-size: 15px;
  }
  .template-responsive-navbar .template-responsive-menubar.mean-container .navbar-nav {
    overflow-y: scroll;
    height: 306px;
    -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);
  }
  .template-responsive-navbar .mean-container a.meanmenu-reveal {
    color: var(--blackColor);
  }
  .template-responsive-navbar .mean-container a.meanmenu-reveal span {
    background: var(--blackColor);
  }
  .template-responsive-navbar .dropdown-toggle::after {
    display: none !important;
  }
  .template-responsive-navbar .others-option {
    display: none !important;
    position: absolute;
    right: 60px;
    top: -10px;
  }
  .template-responsive-navbar .others-option .item {
    margin-left: 20px;
  }
  .template-responsive-navbar .others-option .item:first-child {
    margin-left: 0;
  }
  .template-responsive-navbar .others-option .item:nth-child(1) .default-btn::before {
    background: var(--blackColor);
  }
  .template-responsive-navbar .logo {
    position: relative;
    width: 60%;
    z-index: 999;
  }
  .template-navbar {
    display: none;
  }
  .responsive-others-option {
    display: block;
  }
}

/*================================================
Banner Wrapper Area CSS
=================================================*/
.banner-wrapper {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-color: #F7FAFD;
  padding-top: 200px;
  padding-bottom: 100px;
}

.banner-content {
  padding-right: 15px;
}

.banner-content h1 {
  font-size: 30px;
  line-height: 1.4;
  margin-bottom: 20px;
}

.banner-content p {
  max-width: 400px;
}

.banner-content .default-btn {
  margin-top: 15px;
}

.banner-image {
  padding-left: 15px;
  margin-bottom: -30px;
}

.banner-image .image {
  margin-bottom: 30px;
}

.banner-image .col-lg-6:nth-child(1) .image img {
  border-radius: 10px 0 0 0;
}

.banner-image .col-lg-6:nth-child(2) .image img {
  border-radius: 0 10px 0 0;
}

.banner-image .col-lg-6:nth-child(3) .image img {
  border-radius: 0 0 0 10px;
}

.banner-image .col-lg-6:nth-child(4) .image img {
  border-radius: 0 0 10px 0;
}

.background-shape .circle1 {
  width: 1700px;
  height: 1700px;
  border-radius: 50%;
  position: absolute;
  z-index: -30;
  top: -1100px;
  right: -1100px;
  background: white;
}

.background-shape .circle2 {
  width: 1700px;
  height: 1700px;
  border-radius: 50%;
  position: absolute;
  z-index: -20;
  top: -850px;
  right: -850px;
  background: rgba(0, 0, 0, 0.01);
}

.background-shape .circle3 {
  width: 1200px;
  height: 1200px;
  border-radius: 50%;
  position: absolute;
  z-index: -10;
  top: -600px;
  right: -600px;
  background: rgba(0, 0, 0, 0.01);
}

.background-shape .circle4 {
  width: 700px;
  height: 700px;
  border-radius: 50%;
  position: absolute;
  z-index: -10;
  top: -350px;
  right: -350px;
  background: rgba(0, 0, 0, 0.01);
}

.background-shape .circle5 {
  width: 1700px;
  height: 1700px;
  border-radius: 50%;
  position: absolute;
  z-index: -30;
  top: -1100px;
  left: -1100px;
  background: white;
}

.background-shape .circle6 {
  width: 1700px;
  height: 1700px;
  border-radius: 50%;
  position: absolute;
  z-index: -20;
  top: -850px;
  left: -850px;
  background: rgba(0, 0, 0, 0.02);
}

.background-shape .circle7 {
  width: 1200px;
  height: 1200px;
  border-radius: 50%;
  position: absolute;
  z-index: -10;
  top: -600px;
  left: -600px;
  background: white;
}

.background-shape .circle8 {
  width: 700px;
  height: 700px;
  border-radius: 50%;
  position: absolute;
  z-index: -10;
  top: -350px;
  left: -350px;
  background: rgba(0, 0, 0, 0.02);
}

/*================================================
Featured Services Section CSS
=================================================*/
.featured-services-section.bg-F7FAFD .featured-services-box {
  background-color: var(--whiteColor);
}

.featured-services-section.bg-F7FAFD .featured-services-box i {
  background-color: #F7FAFD;
  color: var(--mainColor);
}

.featured-services-section.bg-F7FAFD .featured-services-box:hover i {
  color: var(--whiteColor);
  background-color: var(--mainColor);
}

.featured-services-box {
  text-align: center;
  padding: 30px 20px;
  border-radius: 5px;
  margin-bottom: 30px;
  background-color: #F7FAFD;
}

.featured-services-box i {
  display: inline-block;
  margin-bottom: 30px;
  width: 70px;
  height: 70px;
  line-height: 70px;
  color: var(--mainColor);
  -webkit-transition: var(--transition);
  transition: var(--transition);
  border-radius: 50%;
  font-size: 35px;
  background-color: var(--whiteColor);
}

.featured-services-box h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.featured-services-box:hover i {
  color: var(--whiteColor);
  border-radius: 10px;
  background-color: var(--mainColor);
}

/*================================================
Features Section CSS
=================================================*/
.features-box {
  margin-top: 100px;
}

.features-box:first-child {
  margin-top: 0;
}

.features-box:nth-child(2) .features-content, .features-box:nth-child(4) .features-content, .features-box:nth-child(6) .features-content, .features-box:nth-child(8) .features-content {
  padding-left: 0;
  padding-right: 15px;
}

.features-box:nth-child(2) .features-image, .features-box:nth-child(4) .features-image, .features-box:nth-child(6) .features-image, .features-box:nth-child(8) .features-image {
  padding-left: 15px;
  padding-right: 0;
}

.features-image {
  padding-right: 15px;
}

.features-content {
  padding-left: 15px;
}

.features-content h2 {
  font-size: 25px;
  margin-bottom: 12px;
}

.features-content .list {
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
  margin-top: 20px;
}

.features-content .list li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 25px;
  font-weight: 600;
  color: var(--optionalColor);
}

.features-content .list li a {
  color: var(--optionalColor);
}

.features-content .list li a:hover {
  color: var(--mainColor);
}

.features-content .list li i {
  position: absolute;
  left: 0;
  top: 3px;
  color: var(--mainColor);
}

.features-content .list li:last-child {
  margin-bottom: 0;
}

.about-area.banner-wrapper {
  background-color: transparent;
  padding-top: 100px;
  padding-bottom: 0;
}

.about-area .banner-content p {
  max-width: 100%;
}

/*================================================
CTA Section CSS
=================================================*/
.cta-section {
  position: relative;
  z-index: 1;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../../assets/images/cta-bg.jpg);
}

.cta-section::before {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: .85;
  content: '';
  position: absolute;
  background-color: var(--mainColor);
}

.cta-content {
  text-align: center;
}

.cta-content h2 {
  font-size: 30px;
  margin-bottom: 15px;
  color: var(--whiteColor);
}

.cta-content .default-btn {
  margin-top: 20px;
  color: var(--blackColor);
  background-color: var(--blackColor);
}

.cta-content .default-btn::before {
  background: var(--whiteColor);
}

.cta-content .default-btn:hover {
  color: var(--whiteColor);
}

/*================================================
Portfolio Section CSS
=================================================*/
.portfolio-box {
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
}

.portfolio-box img {
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.portfolio-box::before {
  z-index: 1;
  content: '';
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  background-color: var(--mainColor);
}

.portfolio-box .content {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: var(--transition);
  transition: var(--transition);
  right: 0;
  height: auto;
  padding: 25px;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  z-index: 2;
}

.portfolio-box .content .popup-btn {
  width: 45px;
  height: 45px;
  position: relative;
  margin-bottom: 15px;
  font-size: 25px;
  border-radius: 50%;
  display: inline-block;
  text-align: center;
  border: 1px solid var(--whiteColor);
  color: var(--whiteColor);
}

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

.portfolio-box .content .popup-btn:hover {
  background-color: var(--whiteColor);
  border-color: var(--whiteColor);
  color: var(--blackColor);
}

.portfolio-box .content h3 {
  margin-bottom: 8px;
  color: var(--whiteColor);
  font-size: 20px;
}

.portfolio-box .content h3 a {
  color: var(--whiteColor);
}

.portfolio-box .content .category span {
  display: inline-block;
  color: var(--whiteColor);
  opacity: 0.9;
  font-size: 14px;
}

.portfolio-box:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.portfolio-box:hover::before {
  opacity: 0.9;
  visibility: visible;
}

.portfolio-box:hover .content {
  opacity: 1;
  visibility: visible;
}

.pagination-area {
  margin-top: 20px;
}

.pagination-area .pagination {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.pagination-area .page-link {
  border-color: #eeeeee;
  color: var(--blackColor);
  -webkit-box-shadow: unset !important;
          box-shadow: unset !important;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  background-color: var(--whiteColor);
  font-weight: 700;
  font-size: var(--fontSize);
}

.pagination-area .page-link:hover, .pagination-area .page-link.active {
  color: var(--whiteColor);
  background-color: var(--mainColor);
}

/*================================================
Portfolio Details Section CSS
=================================================*/
.portfolio-details-desc .single-image {
  margin-bottom: 30px;
}

.portfolio-details-desc .single-box {
  margin-bottom: 20px;
  text-align: center;
  padding: 30px 20px;
  border: 1px solid #eeeeee;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  background-color: var(--whiteColor);
}

.portfolio-details-desc .single-box .icon {
  display: inline-block;
  margin-bottom: 15px;
  width: 70px;
  height: 70px;
  background-color: #F7FAFD;
  color: var(--mainColor);
  -webkit-transition: var(--transition);
  transition: var(--transition);
  border-radius: 50%;
  position: relative;
  font-size: 35px;
}

.portfolio-details-desc .single-box .icon i {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.portfolio-details-desc .single-box h4 {
  font-size: 20px;
  margin-bottom: 10px;
}

.portfolio-details-desc .single-box p {
  margin-bottom: 0;
  line-height: initial;
}

.portfolio-details-desc .single-box:hover {
  border-radius: 5px;
  border-color: var(--mainColor);
  -webkit-box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
          box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
}

.portfolio-details-desc .single-box:hover .icon {
  border-radius: 0;
  color: var(--whiteColor);
  background-color: var(--mainColor);
}

.portfolio-details-desc h3 {
  font-size: 22px;
  margin-bottom: 15px;
  margin-top: 20px;
}

/*================================================
Funfacts Section CSS
=================================================*/
.funfacts-section {
  z-index: 1;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../../assets/images/cta-bg.jpg);
}

.funfacts-section::before {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: .85;
  content: '';
  position: absolute;
  background-color: var(--mainColor);
}

.funfacts {
  z-index: 1;
  position: relative;
  text-align: center;
  padding: 30px;
  margin-bottom: 30px;
}

.funfacts h3 {
  line-height: 1;
  font-size: 45px;
  margin-bottom: 10px;
  color: var(--whiteColor);
}

.funfacts span {
  font-size: 18px;
  display: block;
  color: var(--whiteColor);
}

.funfacts .border-1 {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
  position: absolute;
}

.funfacts .border-1::before {
  width: 30px;
  height: auto;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  content: '';
  border: 1px dashed var(--whiteColor);
}

.funfacts .border-1::after {
  width: auto;
  height: 30px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  content: '';
  border: 1px dashed var(--whiteColor);
}

.funfacts .border-2 {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
  position: absolute;
}

.funfacts .border-2::before {
  width: 30px;
  height: auto;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
  content: '';
  border: 1px dashed var(--whiteColor);
}

.funfacts .border-2::after {
  width: auto;
  height: 30px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
  content: '';
  border: 1px dashed var(--whiteColor);
}

.funfacts .border-3 {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
  position: absolute;
}

.funfacts .border-3::before {
  width: 30px;
  height: auto;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  content: '';
  border: 1px dashed var(--whiteColor);
}

.funfacts .border-3::after {
  width: auto;
  height: 30px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  content: '';
  border: 1px dashed var(--whiteColor);
}

.funfacts .border-4 {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
  position: absolute;
}

.funfacts .border-4::before {
  width: 30px;
  height: auto;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  content: '';
  border: 1px dashed var(--whiteColor);
}

.funfacts .border-4::after {
  width: auto;
  height: 30px;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  content: '';
  border: 1px dashed var(--whiteColor);
}

/*================================================
Team Section CSS
=================================================*/
.team-item {
  text-align: center;
  background-color: var(--whiteColor);
  -webkit-box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
          box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
  padding: 0 20px 20px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.team-item img {
  top: -30px;
  width: 100px;
  position: relative;
  border-radius: 70% 30% 30% 70% / 60% 40% 60% 40%;
}

.team-item .social-links {
  padding-left: 0;
  list-style-type: none;
  margin-top: 20px;
  margin-bottom: 0;
}

.team-item .social-links li {
  display: inline-block;
  margin-right: 5px;
}

.team-item .social-links li a {
  width: 33px;
  height: 33px;
  display: block;
  font-size: 17px;
  border-radius: 2px;
  position: relative;
  text-align: center;
  color: var(--blackColor);
  background-color: #f9f9f9;
}

.team-item .social-links li a i {
  left: 0;
  right: 0;
  top: 50%;
  margin-top: -1px;
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.team-item .social-links li a:hover {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}

.team-item .social-links li:last-child {
  margin-right: 0;
}

.team-item .title {
  border-bottom: 1px solid #f9f9f9;
  margin-left: -20px;
  margin-right: -20px;
  padding-left: 20px;
  padding-bottom: 20px;
  padding-right: 20px;
}

.team-item .title p {
  font-size: 15px;
  margin-top: 15px;
}

.team-item .title h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.team-item .title span {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--mainColor);
}

/*================================================
Pricing Section CSS
=================================================*/
.pricing-plan {
  padding: 30px;
  border-radius: 5px;
  margin-bottom: 30px;
  border: 1px solid #eeeeee;
  background: var(--whiteColor);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.pricing-plan .title {
  margin-bottom: 30px;
  position: relative;
  padding-left: 72px;
}

.pricing-plan .title .icon {
  left: 0;
  top: 50%;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  color: var(--whiteColor);
  background: linear-gradient(135deg, #6a30d1 0%, #5c83e3 100%);
  position: absolute;
  text-align: center;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 30px;
  margin-top: -3px;
}

.pricing-plan .title .icon i {
  left: 0;
  right: 0;
  top: 50%;
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.pricing-plan .title h3 {
  font-size: 25px;
  margin-bottom: 5px;
}

.pricing-plan .title span {
  display: block;
  font-weight: 600;
  color: var(--optionalColor);
}

.pricing-plan .features {
  margin-bottom: 30px;
  padding-left: 0;
  list-style-type: none;
}

.pricing-plan .features li {
  font-weight: 600;
  position: relative;
  margin-bottom: 13px;
  padding-left: 20px;
  color: var(--optionalColor);
}

.pricing-plan .features li i {
  left: 0;
  top: 50%;
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: var(--mainColor);
  margin-top: -1px;
}

.pricing-plan .features li:last-child {
  margin-right: 0;
}

.pricing-plan .pricing-footer {
  text-align: center;
  border-top: 1px solid #eeeeee;
  margin-left: -30px;
  margin-right: -30px;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 30px;
}

.pricing-plan .pricing-footer .price {
  line-height: 1;
  font-size: 35px;
  font-weight: 800;
}

.pricing-plan .pricing-footer .price span {
  margin-left: -5px;
  display: inline-block;
  color: var(--optionalColor);
  font-size: var(--fontSize);
  font-weight: normal;
}

.pricing-plan .pricing-footer .default-btn {
  display: block;
  width: 100%;
  margin-top: 20px;
}

.pricing-plan:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  border-color: var(--whiteColor);
  -webkit-box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
          box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
}

/*================================================
Partner Section CSS
=================================================*/
.partner-section {
  padding-top: 60px;
  padding-bottom: 30px;
}

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

.partner-title h3 {
  margin-bottom: 0;
  color: var(--optionalColor);
  font-size: 17px;
  font-weight: normal;
}

.partner-item {
  margin-bottom: 30px;
  text-align: center;
}

.partner-item a img {
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.partner-item a:hover img {
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
}

/*================================================
Blog Section CSS
=================================================*/
.single-blog-item {
  text-align: center;
  margin-bottom: 30px;
}

.single-blog-item .content {
  margin-top: 25px;
}

.single-blog-item .content h3 {
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 10px;
}

.single-blog-item .content .default-btn {
  margin-top: 5px;
}

/*================================================
Blog Details Section CSS
=================================================*/
.blog-details-content .meta {
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
  margin-top: 25px;
}

.blog-details-content .meta li {
  margin-right: 15px;
  display: inline-block;
  position: relative;
  color: var(--optionalColor);
  padding-left: 22px;
}

.blog-details-content .meta li i {
  position: absolute;
  left: 0;
  color: var(--mainColor);
  top: 3px;
}

.blog-details-content .meta li a {
  display: block;
  color: var(--optionalColor);
}

.blog-details-content .meta li a:hover {
  color: var(--mainColor);
}

.blog-details-content p {
  margin-bottom: 20px;
}

.blog-details-content p:last-child {
  margin-bottom: 0;
}

.blog-details-content h3 {
  font-size: 22px;
  margin-bottom: 20px;
  margin-top: 20px;
}

.blog-details-author {
  padding: 30px;
  margin-top: 30px;
  background-color: #F7FAFD;
}

.blog-details-author .media img {
  width: 120px;
  margin-right: 25px;
}

.blog-details-author .media .media-body h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.comments-area {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #eeeeee;
}

.comments-area .comment-title {
  font-size: 22px;
  margin-bottom: -5px;
}

.comments-area .comment-list .comment {
  position: relative;
  padding-left: 110px;
  padding-bottom: 30px;
  border-bottom: 1px solid #eeeeee;
  margin-top: 30px;
  margin-bottom: 30px;
}

.comments-area .comment-list .comment img {
  top: 0;
  left: 0;
  width: 90px;
  position: absolute;
}

.comments-area .comment-list .comment .comment-info {
  margin-bottom: 15px;
}

.comments-area .comment-list .comment .comment-info h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.comments-area .comment-list .comment .comment-info .post-date {
  position: relative;
  display: block;
  font-size: 14px;
  color: var(--optionalColor);
  padding-left: 18px;
}

.comments-area .comment-list .comment .comment-info .post-date i {
  position: absolute;
  left: 0;
  top: 3px;
  color: var(--mainColor);
}

.comments-area .comment-list .comment .reply-btn {
  display: inline-block;
  border: 1px solid #eeeeee;
  border-radius: 30px;
  padding: 4px 25px;
  font-size: 15px;
  font-weight: 700;
}

.comments-area .comment-list .comment .reply-btn:hover {
  color: var(--whiteColor);
  border-color: var(--mainColor);
  background-color: var(--mainColor);
}

.comments-area .comment-list .comment .comment {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.comments-area .comment-respond .comment-reply-title {
  font-size: 22px;
  margin-bottom: 20px;
}

.comments-area .comment-respond form .default-btn {
  margin-top: 10px;
}

/*================================================
Testimonials Area CSS
=================================================*/
.single-testimonials-item {
  padding: 35px 30px;
  text-align: center;
  border-radius: 5px;
  margin-bottom: 30px;
  background-color: var(--whiteColor);
  -webkit-box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.05);
          box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.05);
}

.single-testimonials-item img {
  border-radius: 70% 30% 30% 70% / 60% 40% 60% 40%;
  display: inline-block !important;
  width: 80px !important;
}

.single-testimonials-item .title {
  margin-left: 20px;
  text-align: left;
}

.single-testimonials-item .title h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.single-testimonials-item .title span {
  display: block;
  font-size: 14.5px;
  color: var(--optionalColor);
}

.single-testimonials-item p {
  margin-top: 25px;
}

/*================================================
Inner Page Banner Section CSS
=================================================*/
.inner-page-banner {
  z-index: 1;
  overflow: hidden;
  text-align: center;
  position: relative;
  padding-top: 170px;
  padding-bottom: 95px;
}

.inner-page-banner h2 {
  font-size: 35px;
  margin-bottom: 0;
}

/*================================================
404 Error Section CSS
=================================================*/
.error-content {
  text-align: center;
}

.error-content h2 {
  font-size: 30px;
  font-weight: 800;
  margin-top: 50px;
  margin-bottom: 30px;
}

/*================================================
Contact Section CSS
=================================================*/
.contact-form-wrapper h2 {
  font-size: 25px;
  margin-bottom: 25px;
}

.contact-form-wrapper form .form-group {
  margin-bottom: 20px;
}

.contact-form-wrapper form .default-btn {
  margin-top: 5px;
}

.contact-info-section {
  padding-top: 70px;
  padding-bottom: 40px;
}

.single-info-box {
  position: relative;
  padding-left: 90px;
  margin-bottom: 30px;
}

.single-info-box .icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 70px;
  height: 70px;
  text-align: center;
  background-color: var(--mainColor);
  color: var(--whiteColor);
  font-size: 35px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  border-radius: 50%;
}

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

.single-info-box p {
  margin-bottom: 2px;
  color: var(--blackColor);
  font-size: 20px;
  font-weight: 600;
}

.single-info-box:hover .icon {
  border-radius: 0;
}

.contact-form-image {
  padding-left: 50px;
}

/*================================================
FAQ Section CSS
=================================================*/
.faq-content {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.faq-content .faq-item {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #eeeeee;
}

.faq-content .faq-item h3 {
  font-size: 20px;
  margin-bottom: 0;
  position: relative;
  padding-left: 35px;
}

.faq-content .faq-item h3::before {
  width: 15px;
  height: 3px;
  background-color: var(--mainColor);
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: '';
}

.faq-content .faq-item .faq-ans {
  margin-top: 15px;
  margin-left: 35px;
}

.faq-content .faq-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

/*================================================
Footer Section CSS
=================================================*/
.footer-section {
  background-color: var(--blackColor);
}

.footer-widget {
  margin-bottom: 30px;
}

.footer-widget .logo {
  margin-bottom: 25px;
}

.footer-widget h3 {
  font-size: 20px;
  margin-bottom: 25px;
  color: var(--whiteColor);
}

.footer-widget p {
  opacity: 0.8;
  color: var(--whiteColor);
}

.footer-widget .links-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.footer-widget .links-list li {
  margin-bottom: 12px;
}

.footer-widget .links-list li:last-child {
  margin-bottom: 0;
}

.footer-widget .links-list li a {
  position: relative;
  display: inline-block;
  color: var(--whiteColor);
  opacity: 0.8;
}

.footer-widget .links-list li a:hover {
  opacity: 1;
  color: var(--whiteColor);
}

.footer-widget .footer-contact-info {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.footer-widget .footer-contact-info li {
  opacity: 0.8;
  position: relative;
  margin-bottom: 12px;
  color: var(--whiteColor);
  padding-left: 15px;
}

.footer-widget .footer-contact-info li:last-child {
  margin-bottom: 0;
}

.footer-widget .footer-contact-info li a {
  color: var(--whiteColor);
}

.footer-widget .footer-contact-info li::before {
  content: '';
  position: absolute;
  width: 7px;
  height: 7px;
  left: 0;
  top: 9px;
  background-color: var(--whiteColor);
  border-radius: 50%;
}

.footer-widget .social-links {
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
  margin-top: 20px;
}

.footer-widget .social-links li {
  display: inline-block;
  margin-right: 5px;
}

.footer-widget .social-links li a {
  width: 33px;
  height: 33px;
  display: block;
  font-size: 17px;
  border-radius: 50%;
  position: relative;
  text-align: center;
  color: var(--blackColor);
  background-color: var(--whiteColor);
}

.footer-widget .social-links li a i {
  left: 0;
  right: 0;
  top: 50%;
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.footer-widget .social-links li a:hover {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}

.footer-widget .social-links li:last-child {
  margin-right: 0;
}

.copyright-area {
  margin-top: 70px;
  text-align: center;
  border-top: 1px solid #4f657a;
  padding-top: 25px;
  padding-bottom: 25px;
}

.copyright-area p {
  color: var(--whiteColor);
}

.copyright-area p strong {
  color: var(--whiteColor);
}

.copyright-area p a {
  font-weight: 700;
  color: var(--whiteColor);
}

/*================================================
Go Top CSS
=================================================*/
.go-top {
  position: fixed;
  cursor: pointer;
  bottom: 20px;
  right: 20px;
  z-index: 4;
  width: 43px;
  height: 45px;
  opacity: 0;
  font-size: 27px;
  visibility: hidden;
  text-align: center;
  color: var(--whiteColor);
  -webkit-transition: var(--transition);
  transition: var(--transition);
  background-color: var(--mainColor);
  -webkit-box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
}

.go-top i {
  right: 0;
  left: 0;
  top: 50%;
  text-align: center;
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin-left: auto;
  margin-right: auto;
}

.go-top.active {
  opacity: 1;
  visibility: visible;
  bottom: 20px;
}

.go-top:hover {
  color: var(--whiteColor);
  background-color: var(--blackColor);
}
/*# sourceMappingURL=style.css.map */