/*
@File: Fidio Template Styles
*/

/*================================================
Default CSS
=================================================*/

:root {
  --fontFamily: 'Nunito Sans', sans-serif;
  --headingFontFamily: 'Work Sans', sans-serif;
  --mainColor: #0d6efd;
  --optionalColor: #666666;
  --whiteColor: #FFFFFF;
  --blackColor: #000000;
  --fontSize: 14px;
  --transition: .5s;
}

body {
  margin: 0;
  padding: 0;
  color: var(--blackColor);
  font-size: var(--fontSize);
  font-family: var(--fontFamily);
}

.container {
  max-width: 1230px;
}

.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);
  font-size: var(--fontSize);
  margin-bottom: 15px;
  line-height: 1.8;
}

p:last-child {
  margin-bottom: 0;
}

.bg-F9F5F2 {
  background-color: #F9F5F2;
}

.bg-f9f9f9 {
  background-color: #f9f9f9;
}

.bg-black-color {
  background-color: var(--blackColor);
}

.bg-black-color .section-title .sub-title {
  color: var(--mainColor);
}

.bg-black-color .section-title h2 {
  color: var(--whiteColor);
}

.ptb-100 {
  padding-top: 70px;
  padding-bottom: 70px;
}

.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;
}

.pb-60 {
  padding-bottom: 60px;
}

/*section-title*/
.section-title {
  text-align: center;
  max-width: 610px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 60px;
}

.section-title .sub-title {
  display: block;
  margin-bottom: 8px;
  color: var(--mainColor);
  font-size: 15px;
  font-weight: 600;
  font-family: var(--headingFontFamily);
}

.section-title h2 {
  margin-bottom: 0;
  font-size: 34px;
}

.section-title.text-start {
  margin-left: 0;
  margin-right: 0;
}

/*default-btn*/
.default-btn {
  display: inline-block;
  border: none;
  -webkit-box-shadow: unset;
          box-shadow: unset;
  position: relative;
  z-index: 1;
  background-color:var(--bs-blue);
  border-radius: 5px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  padding: 11px 30px 11px 52px;
  font-family: var(--headingFontFamily);
  font-size: var(--fontSize);
  font-weight: 600;
  color:#fff;
    border:1px solid var(--bs-blue);
}

.default-btn::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  bottom: 0;
  z-index: -1;
  /*background-color: var(--mainColor)*/
  border-radius: 5px;
  opacity: .15;
}

.default-btn i {
  position: absolute;
  top: 50%;
  left: 24px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 18px;
  font-weight: normal;
}

.default-btn:hover {
  background-color: #fff;
  color: var(--bs-blue);
}

.default-btn:hover::before {
  opacity: 0;
}

/*form-control*/
.form-control {
  height: 50px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  -webkit-box-shadow: unset !important;
          box-shadow: unset !important;
  border-radius: 0;
  border: 1px solid #eeeeee;
  background-color: var(--whiteColor);
  font-size: var(--fontSize);
  padding-left: 15px;
  color: var(--blackColor);
}

.form-control::-webkit-input-placeholder {
  -webkit-transition: var(--transition);
  transition: var(--transition);
  color: #999999;
}

.form-control:-ms-input-placeholder {
  -webkit-transition: var(--transition);
  transition: var(--transition);
  color: #999999;
}

.form-control::-ms-input-placeholder {
  -webkit-transition: var(--transition);
  transition: var(--transition);
  color: #999999;
}

.form-control::placeholder {
  -webkit-transition: var(--transition);
  transition: var(--transition);
  color: #999999;
}

.form-control:focus {
  border-color: var(--mainColor);
}

.form-control:focus::-webkit-input-placeholder {
  color: transparent;
}

.form-control:focus:-ms-input-placeholder {
  color: transparent;
}

.form-control:focus::-ms-input-placeholder {
  color: transparent;
}

.form-control:focus::placeholder {
  color: transparent;
}

textarea.form-control {
  height: auto !important;
  padding-top: 15px;
}

/*================================================
Navbar Area CSS
=================================================*/
.navbar-area {
  position: absolute;
  z-index: 999;
  height: auto;
  right: 0;
  left: 0;
  top: 0;
  padding-top: 5px;
  padding-bottom: 5px;
  border-top:1px solid #3a78ef;  
  -webkit-box-shadow: 0 2px 28px 0 rgba(102,214,242, 0.2);
          box-shadow: 0 2px 28px 0 rgba(102,214,242, 0.2);
}

.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(102,214,242, 0.2);
          box-shadow: 0 2px 28px 0 rgba(102,214,242, 0.2);
  -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: 0;
  padding-bottom: 0;
}

/*.fidio-responsive-nav {
  display: none;
}*/

.fidio-nav .container-fluid {
  padding-left: 50px;
  padding-right: 50px;
}

.fidio-nav .navbar {
  padding: 0;
  position: inherit;
}

.fidio-nav .navbar .navbar-brand {
  font-size: inherit;
  line-height: 1;
  padding: 0;
}

.fidio-nav .navbar .navbar-brand img {
  max-width: initial;
}

.fidio-nav .navbar .navbar-brand {
  padding: 5px 0;
}

.fidio-nav .navbar ul {
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
}

.fidio-nav .navbar .navbar-nav {
  margin-left: auto;
}

.fidio-nav .navbar .navbar-nav .nav-item {
  position: relative;
  margin-left: 15px;
  margin-right: 15px;
}

.fidio-nav .navbar .navbar-nav .nav-item a {
  position: relative;
  color: var(--blackColor);
  -webkit-transition: var(--transition);
  transition: var(--transition);
  font-weight: 700;
  font-size: 17px;
  padding-left: 0;
  padding-right: 0;
  padding-top: 25px;
  padding-bottom: 25px;
}

.fidio-nav .navbar .navbar-nav .nav-item a:hover, .fidio-nav .navbar .navbar-nav .nav-item a:focus, .fidio-nav .navbar .navbar-nav .nav-item a.active {
  color: var(--mainColor);
}

.fidio-nav .navbar .navbar-nav .nav-item .dropdown-toggle {
  padding-right: 14px;
}

.fidio-nav .navbar .navbar-nav .nav-item .dropdown-toggle::after {
  display: none;
}

.fidio-nav .navbar .navbar-nav .nav-item .dropdown-toggle::before {
  position: absolute;
  content: "\e9f8";
  line-height: 1;
  right: -6px;
  top: 29px;
  font-family: boxicons;
  font-size: 18px;
}

.fidio-nav .navbar .navbar-nav .nav-item:last-child {
  margin-right: 0;
}

.fidio-nav .navbar .navbar-nav .nav-item:first-child {
  margin-left: 0;
}

.fidio-nav .navbar .navbar-nav .nav-item:hover a, .fidio-nav .navbar .navbar-nav .nav-item.active a {
  color: var(--mainColor);
}

.fidio-nav .navbar .navbar-nav .nav-item .dropdown-menu {
  left: 0;
  top: 75px;
  opacity: 0;
  z-index: 99;
  border: none;
  width: 265px;
  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);
}

.fidio-nav .navbar .navbar-nav .nav-item .dropdown-menu li {
  margin: 0;
}

.fidio-nav .navbar .navbar-nav .nav-item .dropdown-menu li a {
  display: block;
  padding: 8px 20px;
  position: relative;
  color: var(--blackColor);
  font-size: var(--fontSize);
  font-weight: 700;
}

.fidio-nav .navbar .navbar-nav .nav-item .dropdown-menu li a:hover, .fidio-nav .navbar .navbar-nav .nav-item .dropdown-menu li a:focus {
  color: var(--mainColor);
  padding-left: 25px;
}

.fidio-nav .navbar .navbar-nav .nav-item .dropdown-menu li a.active {
  color: var(--mainColor);
}

.fidio-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu {
  top: 0;
  opacity: 0;
  left: auto;
  right: 250px;
  margin-top: 0;
  visibility: hidden;
}

.fidio-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a {
  color: var(--blackColor);
  padding-left: 20px;
}

.fidio-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:hover, .fidio-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:focus {
  color: var(--mainColor);
  padding-left: 25px;
}

.fidio-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a.active {
  color: var(--mainColor);
}

.fidio-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu {
  top: 0;
  opacity: 0;
  right: 250px;
  visibility: hidden;
}

.fidio-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: var(--blackColor);
  padding-left: 20px;
}

.fidio-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover, .fidio-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus {
  padding-left: 25px;
  color: var(--mainColor);
}

.fidio-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  color: var(--mainColor);
}

.fidio-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;
}

.fidio-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);
}

.fidio-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover, .fidio-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;
}

.fidio-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  color: var(--mainColor);
}

.fidio-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li.active a {
  color: var(--mainColor);
}

.fidio-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;
}

.fidio-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li.active a {
  color: var(--mainColor);
}

.fidio-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.fidio-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li.active a {
  color: var(--mainColor);
}

.fidio-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.fidio-nav .navbar .navbar-nav .nav-item .dropdown-menu li.active a {
  color: var(--mainColor);
}

.fidio-nav .navbar .navbar-nav .nav-item .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  margin-top: 0;
  visibility: visible;
}

.fidio-nav .navbar .navbar-nav .nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.fidio-nav .navbar .others-option {
  margin-left: 30px;
}

.min-height-450 {
  min-height:380px;
}

@media only screen and (max-width: 991px) {
  .navbar-area {
    position: relative;
    background-color: var(--whiteColor);
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .navbar-area.is-sticky {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .fidio-responsive-nav {
    display: block;
  }
  .fidio-responsive-nav .fidio-responsive-menu {
    position: relative;
  }
  .fidio-responsive-nav .fidio-responsive-menu.mean-container .mean-nav {
    margin-top: 85px;
    background-color: var(--whiteColor);
  }
  .fidio-responsive-nav .fidio-responsive-menu.mean-container .mean-nav ul {
    font-size: 15px;
    border: none !important;
  }
  .fidio-responsive-nav .fidio-responsive-menu.mean-container .mean-nav ul li a {
    border-top-color: #DBEEFD;
    color: var(--blackColor);
    text-transform: unset;
    font-weight: 600;
  }
  .fidio-responsive-nav .fidio-responsive-menu.mean-container .mean-nav ul li a i {
    display: none;
  }
  .fidio-responsive-nav .fidio-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;
  }
  .fidio-responsive-nav .fidio-responsive-menu.mean-container .mean-nav ul li a.active {
    color: var(--mainColor);
  }
  .fidio-responsive-nav .fidio-responsive-menu.mean-container .mean-nav ul li li a {
    font-size: 15px;
  }
  .fidio-responsive-nav .fidio-responsive-menu.mean-container .navbar-nav {
    height: 260px;
    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);
  }
  .fidio-responsive-nav .mean-container a.meanmenu-reveal {
    top: 0;
    padding: 0;
    width: 35px;
    height: 30px;
    padding-top: 26px;
    color: var(--blackColor);
    font-family: var(--fontFamily);
  }
  .fidio-responsive-nav .mean-container a.meanmenu-reveal span {
    top: 8px;
    height: 4px;
    margin-top: -6px;
    border-radius: 3px;
    position: relative;
    background: var(--blackColor);
  }
  .fidio-responsive-nav .mean-container .mean-bar {
    background: transparent;
    position: absolute;
    z-index: 999;
    padding: 0;
  }
  .fidio-responsive-nav .dropdown-toggle::after {
    display: none !important;
  }
  .fidio-responsive-nav .others-option {
    position: absolute;
    z-index: 999;
    right: 52px;
    top: 0px;
  }
  .fidio-responsive-nav .others-option .default-btn {
    font-size: 12px;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 9px;
    padding-bottom: 9px;
  }
  .fidio-responsive-nav .others-option .default-btn i {
    display: none;
  }
  .fidio-responsive-nav .logo {
    position: relative;
    width: 60%;
    z-index: 999;
  }
  .fidio-nav {
    display: none;
  }
  .min-height-450 {
  min-height: inherit;
}
.about-area{ text-align:center;}
.about-list{ display:inline-block; margin:auto;}

/* case */

.case-list li:nth-child(2){ display:none;}

}

@media only screen and (max-width: 767px) {
  .fidio-responsive-nav .logo img {
    max-width: 145px;
  }
  .fidio-responsive-nav .others-option {
    right: 44px;
    top: 8px;
  }
  .fidio-responsive-nav .others-option .default-btn {
    padding-left: 10px;
    padding-right: 10px;
  }
  .fidio-responsive-nav .mean-container a.meanmenu-reveal {
    padding-top: 14px;
  }
  .fidio-responsive-nav .fidio-responsive-menu.mean-container .mean-nav {
    margin-top: 62px;
  }
   .min-height-450 {
  min-height: inherit;
}
.owl-carousel .owl-item{}
  .owl-carousel .owl-item img.Desktop{ display:none;}
}

/*================================================
Main Banner Area CSS
=================================================*/
.banner-wrapper-area {
  padding-top: 80px;
  padding-bottom: 60px;
  position: relative;
  z-index: 1;
}

.banner-wrapper-content {
  position: relative;
  top: 40px;
}

.banner-wrapper-content h1 {
  font-size: 40px;
  margin-bottom: 15px;
}

.banner-wrapper-content p {
  font-size: 15px;
  color: #222222;
}

.banner-wrapper-content .btn-box {
  margin-top: 35px;
}

.banner-wrapper-content .btn-box .default-btn {
  color: var(--whiteColor);
  padding-top: 12.5px;
  padding-bottom: 12.5px;
}

.banner-wrapper-content .btn-box .default-btn::before {
  opacity: 1;
}

.banner-wrapper-content .btn-box .default-btn:hover {
  color: var(--mainColor);
}

/*.banner-wrapper-content .btn-box .default-btn:hover::before {
  background-color: #fff;
  border:1px solid #0d6efd;
}*/

.banner-wrapper-content .btn-box .default-btn:nth-child(2) {
  margin-left: 15px;
  color: var(--blackColor);
  background-color: var(--whiteColor);
}

.banner-wrapper-content .btn-box .default-btn:nth-child(2)::before {
  opacity: .15;
  background-color: transparent;
  border: 2px solid var(--mainColor);
}

.banner-wrapper-content .btn-box .default-btn:nth-child(2):hover {
  background-color: var(--blackColor);
  color: var(--whiteColor);
}

.banner-wrapper-content .btn-box .default-btn:nth-child(2):hover::before {
  opacity: 1;
  border-color: var(--blackColor);
}

.banner-wrapper-image {
  text-align: center;
  padding-top: 30px;
  padding-left: 30px;
  padding-right: 30px;
}
.banner-wrapper-image img{
  border-radius: 30px;
}
.banner-wrapper-area.style-two .banner-wrapper-image {
  background-color: transparent;
  padding-top: 0;
}

.banner-wrapper-area.style-two .banner-wrapper-image img {
  border-radius: 10px;
}

/*================================================
About Area CSS
=================================================*/
.about-area{
  position: relative;
  z-index: 1;
   margin-top:25px;
   padding:1.5rem 1rem;
}

.about-area::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
  background-color: #F9F5F2;
  border-radius: 200px 0 300px 0;
  box-shadow:2px 2px 2px rgba(220, 220, 220, 0.3), -5px -5px 5px rgba(220,220, 220, 0.3);
}
@media only screen and (max-width: 991px){
    .owl-carousel .owl-item img.Desktop{ display:none;}
	.owl-carousel .owl-item p.Mobile{ font-size:16px; font-style: normal; padding-top:20px;}
  }
  
@media only screen and (min-width: 992px){
  .owl-carousel .owl-item img.Mobile{ display:none;}
  }
  
@media only screen and (min-width: 1200px) {
  .about-area{
    background-color: transparent;
	padding-top:40px;
	margin-top:5rem;
  }
}


.about-area::before {
  top: 0;
  right: 0;
  bottom: 0;
  width:100%;
  z-index: -1;
  content: '';
  position: absolute;
  background-color: #fff;
}

.about-content .sub-title {
  display: block;
  margin-bottom: 8px;
  color: var(--mainColor);
  font-size: 15px;
  font-weight: 600;
  font-family: var(--headingFontFamily);
}

.about-content h2 {
  margin-bottom: 15px;
  font-size: 34px;
}

.about-content .default-btn {
  margin-top: 10px;
}


.about-list {
  text-align: left;
  padding-right: 15px;
  border-radius: 5px;
  padding: 30px;
}


.about-list li{ list-style:none; padding-bottom:15px; color:var(--blackColor);
font-size:16px;
}

.about-list h3{ font-size:20px; position:relative; padding-left:20px;}


.about-list li h3:before {
    left: 0;
    top: 50%;
    width: 8px;
    height: 8px;
    content: '';
    position: absolute;
    border-radius: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: var(--mainColor);
}

.about-list li p{
	color:var(--blackColor);
	font-size:16px;
	}

.about-list.pr-100 {
  text-align: left;
  padding-right: 100px;
}

.about-list.pr-100 img {
  border-radius: 20px;
}

.about-text {
  padding-left: 15px;
  max-width: 595px;
}

.about-text .sub-title {
  display: block;
  margin-bottom: 8px;
  color: var(--mainColor);
  font-size: 15px;
  font-weight: 600;
  font-family: var(--headingFontFamily);
}

.about-text h3 {
  margin-bottom: 15px;
  font-size:24px;
}
.about-text p {
  font-size:18px;
}


.about-text .default-btn {
  margin-top: 10px;
}

.about-text.m-100 {
  max-width: 100%;
  padding-left: 0;
}

/*================================================
Team Area CSS
=================================================*/
.single-team-member {
  background-color: #f9f9f9;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding: 60px 30px;
  overflow: hidden;
}

.single-team-member .image {
  z-index: 1;
  width: 200px;
  height: 200px;
  position: relative;
  margin-left: auto;
  margin-right: auto;
}

.single-team-member .image img {
  border-radius: 50%;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: all 0.9s ease 0s;
  transition: all 0.9s ease 0s;
}

.single-team-member .image::before {
  left: 0;
  right: 0;
  height: 0;
  content: "";
  width: 100%;
  opacity: 0.9;
  bottom: 135%;
  border-radius: 50%;
  position: absolute;
  -webkit-transform: scale(3);
          transform: scale(3);
  -webkit-transition: var(--transition);
  transition: var(--transition);
  background-color: var(--mainColor);
}

.single-team-member .content {
  margin-top: 25px;
}

.single-team-member .content h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.single-team-member .content span {
  display: block;
  color: var(--mainColor);
  font-size: 15px;
  font-weight: 700;
}

.single-team-member .social-links {
  left: 0;
  right: 0;
  bottom: -35px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  position: absolute;
  padding-left: 0;
  margin-bottom: 0;
  opacity: 0;
  visibility: hidden;
  list-style-type: none;
  background-color: var(--mainColor);
}

.single-team-member .social-links li {
  display: inline-block;
  margin-bottom: -7px;
}

.single-team-member .social-links li a {
  display: block;
  width: 40px;
  font-size: 18px;
  height: 40px;
  position: relative;
  background-color: var(--mainColor);
  color: var(--whiteColor);
}

.single-team-member .social-links li a i {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.single-team-member .social-links li a:hover {
  background-color: var(--whiteColor);
  color: var(--blackColor);
}

.single-team-member:hover .image::before {
  height: 100%;
}

.single-team-member:hover .social-links {
  opacity: 1;
  visibility: visible;
  bottom: 0;
}

/*================================================
Feedback Area CSS
=================================================*/
.feedback-area {
  position: relative;
  z-index: 1;
  padding-top:50px;
  background:#fff;
}

.feedback-area .case-title{ margin-bottom:20px; font-size:2rem;}

.feedback-area .container-fluid {
  padding-left: 50px;
}

.feedback-area.bg-image::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  content: '';
  position: absolute;
  border-radius: 300px 0 0 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.feedback-image {
  text-align: center;
  padding-right: 15px;
}

.feedback-content {
  z-index: 1;
  max-width: 670px;
  position: relative;
  
}

.feedback-content p {
  color: var(--blackColor);
  line-height: 1.4;
  font-size: 30px;
  font-weight: 600;
  font-style: italic;
}

.feedback-content .client-info {
  margin-top: 25px;
}

.feedback-content .client-info img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
}

.feedback-content .client-info .title {
  margin-left: 12px;
}

.feedback-content .client-info .title h4 {
  margin-bottom: 5px;
  color: var(--mainColor);
  font-size: 16.2px;
  font-weight: 600;
}

.feedback-content .client-info .title span {
  display: block;
  font-size: 15px;
  color: var(--optionalColor);
}

.feedback-content::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 15px;
  line-height: 1;
  color: var(--blackColor);
  opacity: .06;
  font-family: boxicons;
  font-size: 200px;
}

.feedback-slides.owl-theme {
  padding:0 5px; 
}

.feedback-slides.owl-theme .feedback-content {
  max-width: 100%;
}

.feedback-slides.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 25px;
  line-height: .01;
}

.feedback-slides.owl-theme .owl-dots {
  right: 0;
  z-index: 2;
  bottom: 15px;
  /*position: absolute;*/
}

.feedback-slides.owl-theme .owl-dots .owl-dot span {
  width: 15px;
  height: 15px;
  margin: 0 5px;
  border-radius: 50%;
  background: #D6D6D6;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.feedback-slides.owl-theme .owl-dots .owl-dot:hover span, .feedback-slides.owl-theme .owl-dots .owl-dot.active span {
  background-color: var(--mainColor);
}

.testimonials-content {
  position: relative;
  padding-bottom: 70px;
  z-index: 1;
}

.testimonials-content p {
  color: var(--blackColor);
  line-height: 1.6;
  font-size: 30px;
  font-weight: 600;
  font-style: italic;
}

.testimonials-content::before {
  content: "\ed68";
  position: absolute;
  right: 150px;
  bottom: -35px;
  line-height: 1;
  z-index: -1;
  color: var(--blackColor);
  opacity: .06;
  font-family: boxicons;
  font-size: 180px;
}

.testimonials-clients-info {
  text-align: center;
}

.testimonials-clients-info img {
  margin-bottom: 20px;
  border-radius: 50%;
  width: 190px;
}

.testimonials-clients-info h4 {
  margin-bottom: 5px;
  color: var(--mainColor);
  font-size: 16.2px;
  font-weight: 600;
}

.testimonials-clients-info span {
  display: block;
  font-size: 15px;
  color: var(--optionalColor);
}

/*================================================
Blog Area CSS
=================================================*/
.single-blog-post {
  margin-bottom: 30px;
}

.single-blog-post .post-image {
  border-radius: 5px;
}

.single-blog-post .post-image a {
  border-radius: 5px;
}

.single-blog-post .post-image a img {
  border-radius: 5px;
}

.single-blog-post .post-content {
  position: relative;
  margin-top: 20px;
}

.single-blog-post .post-content .meta {
  padding-left: 0;
  margin-bottom: 12px;
  list-style-type: none;
}

.single-blog-post .post-content .meta li {
  display: inline-block;
  color: var(--mainColor);
  font-weight: 600;
  position: relative;
  margin-right: 10px;
}

.single-blog-post .post-content .meta li a {
  display: inline-block;
  color: var(--mainColor);
}

.single-blog-post .post-content .meta li a:hover {
  color: var(--blackColor);
}

.single-blog-post .post-content .meta li::before {
  content: '';
  width: 1px;
  height: 12px;
  background-color: var(--mainColor);
  position: absolute;
  right: -7px;
  top: 6px;
  -webkit-transform: rotate(10deg);
          transform: rotate(10deg);
}

.single-blog-post .post-content .meta li:last-child {
  margin-right: 0;
}

.single-blog-post .post-content .meta li:last-child::before {
  display: none;
}

.single-blog-post .post-content h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.single-blog-post .post-content h3 a {
  color: var(--blackColor);
}

.single-blog-post .post-content p {
  margin-bottom: 0;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.single-blog-post .post-content .link-btn {
  font-weight: 700;
  display: inline-block;
  color: var(--mainColor);
  position: absolute;
  bottom: 25px;
  left: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.single-blog-post .post-content .link-btn:hover {
  color: var(--blackColor);
}

.single-blog-post:hover .post-content p {
  opacity: 0;
  visibility: hidden;
}

.single-blog-post:hover .post-content .link-btn {
  opacity: 1;
  visibility: visible;
}

/*================================================
Blog Details Area CSS
=================================================*/
.blog-details-desc .article-content {
  margin-top: 30px;
}

.blog-details-desc .article-content .entry-meta {
  margin-bottom: 15px;
}

.blog-details-desc .article-content .entry-meta ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.blog-details-desc .article-content .entry-meta ul li {
  color: var(--optionalColor);
  display: inline-block;
  margin-right: 20px;
  position: relative;
  padding-left: 22px;
  font-weight: 500;
}

.blog-details-desc .article-content .entry-meta ul li i {
  top: 4px;
  left: 0;
  position: absolute;
  color: var(--mainColor);
}

.blog-details-desc .article-content .entry-meta ul li:last-child {
  margin-right: 0;
}

.blog-details-desc .article-content h3 {
  font-size: 22px;
  margin-bottom: 15px;
  margin-top: 20px;
}

.blog-details-desc .article-content .wp-block-gallery.columns-3 {
  padding-left: 0;
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: -10px;
  margin-left: -10px;
  margin-bottom: 30px;
  margin-top: 30px;
}

.blog-details-desc .article-content .wp-block-gallery.columns-3 li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33.3333%;
          flex: 0 0 33.3333%;
  max-width: 33.3333%;
  padding-right: 10px;
  padding-left: 10px;
}

.blog-details-desc .article-content .wp-block-gallery.columns-3 li figure {
  margin-bottom: 0;
}

.blog-details-desc .article-content .features-list {
  margin-top: 25px;
  margin-bottom: 30px;
}

.blog-details-desc .article-content .features-list li {
  color: var(--optionalColor);
  margin-bottom: 15px;
}

.blog-details-desc .article-content .features-list li:last-child {
  margin-bottom: 0;
}

.blog-details-desc .article-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #eeeeee;
}

.blog-details-desc .article-footer .article-tags {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
}

.blog-details-desc .article-footer .article-tags p {
  line-height: 1;
  margin-bottom: 0;
  font-weight: 700;
  color: var(--blackColor);
}

.blog-details-desc .article-footer .article-tags a {
  margin-left: 10px;
  padding: 7px 20px;
  border-radius: 30px;
  display: inline-block;
  color: var(--blackColor);
  background-color: #f9f9f9;
  font-size: 15px;
  font-weight: 600;
}

.blog-details-desc .article-footer .article-tags a:hover {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}

.blog-details-desc .article-footer .article-share {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
}

.blog-details-desc .article-footer .article-share .social {
  padding-left: 0;
  margin-bottom: 0;
  text-align: right;
  list-style-type: none;
}

.blog-details-desc .article-footer .article-share .social li {
  display: inline-block;
}

.blog-details-desc .article-footer .article-share .social li span {
  display: inline-block;
  margin-right: 3px;
  font-weight: 600;
  position: relative;
  top: 0px;
}

.blog-details-desc .article-footer .article-share .social li a {
  display: block;
  width: 35px;
  height: 35px;
  line-height: 33px;
  border-radius: 50%;
  background-color: var(--mainColor);
  color: var(--whiteColor);
  border: 1px solid var(--mainColor);
  text-align: center;
  font-size: 17px;
  margin-left: 2px;
}

.blog-details-desc .article-footer .article-share .social li a:hover, 
.blog-details-desc .article-footer .article-share .social li a:focus {
  color: var(--mainColor);
  background-color: transparent;
}

.blog-details-desc .article-footer .article-share .social li a i {
  position: relative;
  top: 1px;
}

.blog-details-desc .article-footer .article-share .social li a.facebook {
  background-color: #3b5998;
  border-color: #3b5998;
  color: var(--whiteColor);
}

.blog-details-desc .article-footer .article-share .social li a.facebook:hover, .blog-details-desc .article-footer .article-share .social li a.facebook:focus {
  color: #3b5998;
  background-color: transparent;
}

.blog-details-desc .article-footer .article-share .social li a.twitter {
  background-color: #1da1f2;
  border-color: #1da1f2;
  color: var(--whiteColor);
}

.blog-details-desc .article-footer .article-share .social li a.twitter:hover, .blog-details-desc .article-footer .article-share .social li a.twitter:focus {
  color: #1da1f2;
  background-color: transparent;
}

.blog-details-desc .article-footer .article-share .social li a.linkedin {
  background-color: #007bb5;
  border-color: #007bb5;
  color: var(--whiteColor);
}

.blog-details-desc .article-footer .article-share .social li a.linkedin:hover, .blog-details-desc .article-footer .article-share .social li a.linkedin:focus {
  color: #007bb5;
  background-color: transparent;
}

.blog-details-desc .article-footer .article-share .social li a.instagram {
  background-color: #c13584;
  border-color: #c13584;
  color: var(--whiteColor);
}

.blog-details-desc .article-footer .article-share .social li a.instagram:hover, .blog-details-desc .article-footer .article-share .social li a.instagram:focus {
  color: #c13584;
  background-color: transparent;
}

blockquote, .blockquote {
  z-index: 1;
  overflow: hidden;
  position: relative;
  background-color: #fafafa;
  padding: 40px 50px !important;
  margin-bottom: 20px;
  margin-top: 20px;
}

blockquote p, .blockquote p {
  line-height: 1.7;
  margin-bottom: 0;
  color: var(--blackColor);
  font-weight: 700;
  font-style: italic;
  font-size: 17px !important;
}

blockquote cite, .blockquote cite {
  display: none;
}

blockquote::after, .blockquote::after {
  top: 0;
  left: 0;
  bottom: 0;
  width: 3px;
  content: '';
  position: absolute;
  background-color: var(--mainColor);
  margin-top: 20px;
  margin-bottom: 20px;
}

.comments-area {
  margin-top: 30px;
}

.comments-area .comments-title {
  font-size: 22px;
  margin-bottom: 30px;
  line-height: initial;
}

.comments-area ol, .comments-area ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.comments-area .comment-list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.comments-area .children {
  margin-left: 20px;
}

.comments-area .comment-body {
  border-bottom: 1px dashed #eeeeee;
  padding-left: 70px;
  color: var(--blackColor);
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.comments-area .comment-body .reply {
  margin-top: 15px;
}

.comments-area .comment-body .reply a {
  border: 1px dashed #ded9d9;
  color: var(--blackColor);
  display: inline-block;
  padding: 5.5px 20px 5px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
}

.comments-area .comment-body .reply a:hover {
  color: var(--whiteColor);
  background-color: var(--mainColor);
  border-color: var(--mainColor);
}

.comments-area .comment-author {
  font-size: 17px;
  margin-bottom: 6px;
  position: relative;
  z-index: 2;
}

.comments-area .comment-author .avatar {
  height: 50px;
  left: -65px;
  position: absolute;
  width: 50px;
  top: 4px;
}

.comments-area .comment-author .says {
  display: none;
}

.comments-area .comment-metadata {
  margin-bottom: .7em;
  color: var(--optionalColor);
  letter-spacing: 0.01em;
  font-size: 14px;
  font-weight: 500;
}

.comments-area .comment-respond {
  margin-top: 30px;
}

.comments-area .comment-respond .comment-reply-title {
  margin-bottom: 0;
  font-size: 22px;
}

.comments-area .comment-respond .comment-reply-title #cancel-comment-reply-link {
  display: inline-block;
}

.comments-area .comment-respond .comment-form {
  overflow: hidden;
}

.comments-area .comment-respond .comment-notes {
  margin-bottom: 20px;
  margin-top: 10px;
}

.comments-area .comment-respond .comment-notes .required {
  color: red;
}

.comments-area .comment-respond .comment-form-comment {
  float: left;
  width: 100%;
}

.comments-area .comment-respond label {
  display: none;
}

.comments-area .comment-respond input[type="date"], .comments-area .comment-respond input[type="time"], .comments-area .comment-respond input[type="datetime-local"], .comments-area .comment-respond input[type="week"], .comments-area .comment-respond input[type="month"], .comments-area .comment-respond input[type="text"], .comments-area .comment-respond input[type="email"], .comments-area .comment-respond input[type="url"], .comments-area .comment-respond input[type="password"], .comments-area .comment-respond input[type="search"], .comments-area .comment-respond input[type="tel"], .comments-area .comment-respond input[type="number"], .comments-area .comment-respond textarea {
  outline: 0;
  width: 100%;
  border: none;
  height: 50px;
  display: block;
  font-size: var(--fontSize);
  border-radius: 3px;
  padding: 1px 0 0 15px;
  color: var(--blackColor);
  background-color: #f9f9f9;
}

.comments-area .comment-respond input[type="date"]::-webkit-input-placeholder, .comments-area .comment-respond input[type="time"]::-webkit-input-placeholder, .comments-area .comment-respond input[type="datetime-local"]::-webkit-input-placeholder, .comments-area .comment-respond input[type="week"]::-webkit-input-placeholder, .comments-area .comment-respond input[type="month"]::-webkit-input-placeholder, .comments-area .comment-respond input[type="text"]::-webkit-input-placeholder, .comments-area .comment-respond input[type="email"]::-webkit-input-placeholder, .comments-area .comment-respond input[type="url"]::-webkit-input-placeholder, .comments-area .comment-respond input[type="password"]::-webkit-input-placeholder, .comments-area .comment-respond input[type="search"]::-webkit-input-placeholder, .comments-area .comment-respond input[type="tel"]::-webkit-input-placeholder, .comments-area .comment-respond input[type="number"]::-webkit-input-placeholder, .comments-area .comment-respond textarea::-webkit-input-placeholder {
  color: var(--optionalColor);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.comments-area .comment-respond input[type="date"]:-ms-input-placeholder, .comments-area .comment-respond input[type="time"]:-ms-input-placeholder, .comments-area .comment-respond input[type="datetime-local"]:-ms-input-placeholder, .comments-area .comment-respond input[type="week"]:-ms-input-placeholder, .comments-area .comment-respond input[type="month"]:-ms-input-placeholder, .comments-area .comment-respond input[type="text"]:-ms-input-placeholder, .comments-area .comment-respond input[type="email"]:-ms-input-placeholder, .comments-area .comment-respond input[type="url"]:-ms-input-placeholder, .comments-area .comment-respond input[type="password"]:-ms-input-placeholder, .comments-area .comment-respond input[type="search"]:-ms-input-placeholder, .comments-area .comment-respond input[type="tel"]:-ms-input-placeholder, .comments-area .comment-respond input[type="number"]:-ms-input-placeholder, .comments-area .comment-respond textarea:-ms-input-placeholder {
  color: var(--optionalColor);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.comments-area .comment-respond input[type="date"]::-ms-input-placeholder, .comments-area .comment-respond input[type="time"]::-ms-input-placeholder, .comments-area .comment-respond input[type="datetime-local"]::-ms-input-placeholder, .comments-area .comment-respond input[type="week"]::-ms-input-placeholder, .comments-area .comment-respond input[type="month"]::-ms-input-placeholder, .comments-area .comment-respond input[type="text"]::-ms-input-placeholder, .comments-area .comment-respond input[type="email"]::-ms-input-placeholder, .comments-area .comment-respond input[type="url"]::-ms-input-placeholder, .comments-area .comment-respond input[type="password"]::-ms-input-placeholder, .comments-area .comment-respond input[type="search"]::-ms-input-placeholder, .comments-area .comment-respond input[type="tel"]::-ms-input-placeholder, .comments-area .comment-respond input[type="number"]::-ms-input-placeholder, .comments-area .comment-respond textarea::-ms-input-placeholder {
  color: var(--optionalColor);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.comments-area .comment-respond input[type="date"]::placeholder, .comments-area .comment-respond input[type="time"]::placeholder, .comments-area .comment-respond input[type="datetime-local"]::placeholder, .comments-area .comment-respond input[type="week"]::placeholder, .comments-area .comment-respond input[type="month"]::placeholder, .comments-area .comment-respond input[type="text"]::placeholder, .comments-area .comment-respond input[type="email"]::placeholder, .comments-area .comment-respond input[type="url"]::placeholder, .comments-area .comment-respond input[type="password"]::placeholder, .comments-area .comment-respond input[type="search"]::placeholder, .comments-area .comment-respond input[type="tel"]::placeholder, .comments-area .comment-respond input[type="number"]::placeholder, .comments-area .comment-respond textarea::placeholder {
  color: var(--optionalColor);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.comments-area .comment-respond input[type="date"]:focus::-webkit-input-placeholder, .comments-area .comment-respond input[type="time"]:focus::-webkit-input-placeholder, .comments-area .comment-respond input[type="datetime-local"]:focus::-webkit-input-placeholder, .comments-area .comment-respond input[type="week"]:focus::-webkit-input-placeholder, .comments-area .comment-respond input[type="month"]:focus::-webkit-input-placeholder, .comments-area .comment-respond input[type="text"]:focus::-webkit-input-placeholder, .comments-area .comment-respond input[type="email"]:focus::-webkit-input-placeholder, .comments-area .comment-respond input[type="url"]:focus::-webkit-input-placeholder, .comments-area .comment-respond input[type="password"]:focus::-webkit-input-placeholder, .comments-area .comment-respond input[type="search"]:focus::-webkit-input-placeholder, .comments-area .comment-respond input[type="tel"]:focus::-webkit-input-placeholder, .comments-area .comment-respond input[type="number"]:focus::-webkit-input-placeholder, .comments-area .comment-respond textarea:focus::-webkit-input-placeholder {
  color: transparent;
}

.comments-area .comment-respond input[type="date"]:focus:-ms-input-placeholder, .comments-area .comment-respond input[type="time"]:focus:-ms-input-placeholder, .comments-area .comment-respond input[type="datetime-local"]:focus:-ms-input-placeholder, .comments-area .comment-respond input[type="week"]:focus:-ms-input-placeholder, .comments-area .comment-respond input[type="month"]:focus:-ms-input-placeholder, .comments-area .comment-respond input[type="text"]:focus:-ms-input-placeholder, .comments-area .comment-respond input[type="email"]:focus:-ms-input-placeholder, .comments-area .comment-respond input[type="url"]:focus:-ms-input-placeholder, .comments-area .comment-respond input[type="password"]:focus:-ms-input-placeholder, .comments-area .comment-respond input[type="search"]:focus:-ms-input-placeholder, .comments-area .comment-respond input[type="tel"]:focus:-ms-input-placeholder, .comments-area .comment-respond input[type="number"]:focus:-ms-input-placeholder, .comments-area .comment-respond textarea:focus:-ms-input-placeholder {
  color: transparent;
}

.comments-area .comment-respond input[type="date"]:focus::-ms-input-placeholder, .comments-area .comment-respond input[type="time"]:focus::-ms-input-placeholder, .comments-area .comment-respond input[type="datetime-local"]:focus::-ms-input-placeholder, .comments-area .comment-respond input[type="week"]:focus::-ms-input-placeholder, .comments-area .comment-respond input[type="month"]:focus::-ms-input-placeholder, .comments-area .comment-respond input[type="text"]:focus::-ms-input-placeholder, .comments-area .comment-respond input[type="email"]:focus::-ms-input-placeholder, .comments-area .comment-respond input[type="url"]:focus::-ms-input-placeholder, .comments-area .comment-respond input[type="password"]:focus::-ms-input-placeholder, .comments-area .comment-respond input[type="search"]:focus::-ms-input-placeholder, .comments-area .comment-respond input[type="tel"]:focus::-ms-input-placeholder, .comments-area .comment-respond input[type="number"]:focus::-ms-input-placeholder, .comments-area .comment-respond textarea:focus::-ms-input-placeholder {
  color: transparent;
}

.comments-area .comment-respond input[type="date"]:focus::placeholder, .comments-area .comment-respond input[type="time"]:focus::placeholder, .comments-area .comment-respond input[type="datetime-local"]:focus::placeholder, .comments-area .comment-respond input[type="week"]:focus::placeholder, .comments-area .comment-respond input[type="month"]:focus::placeholder, .comments-area .comment-respond input[type="text"]:focus::placeholder, .comments-area .comment-respond input[type="email"]:focus::placeholder, .comments-area .comment-respond input[type="url"]:focus::placeholder, .comments-area .comment-respond input[type="password"]:focus::placeholder, .comments-area .comment-respond input[type="search"]:focus::placeholder, .comments-area .comment-respond input[type="tel"]:focus::placeholder, .comments-area .comment-respond input[type="number"]:focus::placeholder, .comments-area .comment-respond textarea:focus::placeholder {
  color: transparent;
}

.comments-area .comment-respond textarea {
  height: auto !important;
  padding-top: 15px;
}

.comments-area .comment-respond .comment-form-author {
  float: left;
  width: 50%;
  padding-right: 10px;
  margin-bottom: 20px;
}

.comments-area .comment-respond .comment-form-email {
  float: left;
  width: 50%;
  padding-left: 12px;
  margin-bottom: 20px;
}

.comments-area .comment-respond .comment-form-url {
  float: left;
  width: 100%;
  margin-bottom: 20px;
}

.comments-area .comment-respond .comment-form-cookies-consent {
  width: 100%;
  float: left;
  position: relative;
  padding-left: 20px;
  margin-bottom: 20px;
  margin-top: 15px;
}

.comments-area .comment-respond .comment-form-cookies-consent input {
  position: absolute;
  left: 0;
  top: 6px;
}

.comments-area .comment-respond .comment-form-cookies-consent label {
  margin: 0;
  display: inline-block;
  color: var(--optionalColor);
  font-weight: normal;
  font-size: var(--fontSize);
}

.comments-area .comment-respond .form-submit {
  float: left;
  width: 100%;
}

.comments-area .comment-respond .form-submit input {
  border: none;
  cursor: pointer;
  padding: 10px 30px;
  display: inline-block;
  color: var(--whiteColor);
  background: var(--mainColor);
  -webkit-transition: var(--transition);
  transition: var(--transition);
  font-weight: 700;
  font-size: var(--fontSize);
}

.comments-area .comment-respond .form-submit input:hover, .comments-area .comment-respond .form-submit input:focus {
  color: var(--whiteColor);
  background-color: var(--blackColor);
}

/*================================================
FAQ Area CSS
=================================================*/
.faq-accordion {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.faq-accordion .accordion-item {
  margin-bottom: 15px;
  border: 1px solid #eeeeee;
}

.faq-accordion .accordion-item .accordion-button {
  border: none;
  padding: 20px 20px 20px 45px;
  position: relative;
  border: none;
  -webkit-box-shadow: unset !important;
          box-shadow: unset !important;
  text-align: left;
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

.faq-accordion .accordion-item .accordion-button:not(.collapsed) {
  color: var(--blackColor);
  background-color: transparent;
}

.faq-accordion .accordion-item .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-accordion .accordion-item .accordion-button::after {
  position: absolute;
  left: 20px;
  top: 25px;
  width: 15px;
  height: 15px;
  background-size: 15px;
}

.faq-accordion .accordion-item .accordion-collapse {
  border: none;
}

.faq-accordion .accordion-item .accordion-body {
  padding: 0 20px 20px 45px;
}

.faq-accordion .accordion-item .accordion-body p strong {
  color: var(--blackColor);
}

.faq-accordion .accordion-item .accordion-body ul {
  margin-bottom: 15px;
}

.faq-accordion .accordion-item .accordion-body ul li {
  margin-bottom: 12px;
  color: var(--optionalColor);
}

.faq-accordion .accordion-item .accordion-body ul li:last-child {
  margin-bottom: 0;
}

.faq-accordion .accordion-item .accordion-body ul:last-child {
  margin-bottom: 0;
}

.faq-accordion .accordion-item:last-child {
  margin-bottom: 0;
}

.faq-accordion .accordion-item:first-of-type .accordion-button {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

/*================================================
Subscribe Area CSS
=================================================*/
.subscribe-area {
  background-color: #E5F3FE;
  position: relative;
  padding-top: 25px;
  z-index: 1;
}

.subscribe-area::before {
  background-color: #F9F5F2;
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  height: 45px;
}

.subscribe-content {
  text-align: center;
  position: relative;
  top: -45px;
}

.subscribe-content .sub-title {
  display: block;
  margin-bottom: 8px;
  color: var(--mainColor);
  font-size: 15px;
  font-weight: 600;
  font-family: var(--headingFontFamily);
}

.subscribe-content h2 {
  margin-bottom: 0;
  font-size: 34px;
}

.subscribe-content .newsletter-form {
  margin-top: 30px;
  position: relative;
}

.subscribe-content .newsletter-form .input-newsletter {
  height: 50px;
  display: block;
  width: 100%;
  background-color: var(--whiteColor);
  border: none;
  font-size: var(--fontSize);
  padding-left: 15px;
  color: var(--blackColor);
  border-radius: 5px;
}

.subscribe-content .newsletter-form .input-newsletter::-webkit-input-placeholder {
  color: #999999;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.subscribe-content .newsletter-form .input-newsletter:-ms-input-placeholder {
  color: #999999;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.subscribe-content .newsletter-form .input-newsletter::-ms-input-placeholder {
  color: #999999;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.subscribe-content .newsletter-form .input-newsletter::placeholder {
  color: #999999;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.subscribe-content .newsletter-form .input-newsletter:focus::-webkit-input-placeholder {
  color: transparent;
}

.subscribe-content .newsletter-form .input-newsletter:focus:-ms-input-placeholder {
  color: transparent;
}

.subscribe-content .newsletter-form .input-newsletter:focus::-ms-input-placeholder {
  color: transparent;
}

.subscribe-content .newsletter-form .input-newsletter:focus::placeholder {
  color: transparent;
}

.subscribe-content .newsletter-form button {
  top: 0;
  right: 0;
  height: 50px;
  border-radius: 5px;
  position: absolute;
  color: var(--whiteColor);
  border: none;
  padding: 0 30px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  background-color: var(--mainColor);
  font-size: var(--fontSize);
  font-weight: 700;
}

.subscribe-content .newsletter-form button:hover {
  background-color: var(--blackColor);
  color: var(--whiteColor);
}

.shape3 {
  position: absolute;
  bottom: 43px;
  right: 10%;
  z-index: 1;
}

/*================================================
Page Title Area CSS
=================================================*/
.page-title-area {
  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);
  padding-bottom: 100px;
  padding-top: 180px;
}

.page-title-content {
  text-align: center;
}

.page-title-content h1 {
  margin-bottom: 12px;
  font-size: 50px;
}

.page-title-content p {
  font-size: 17px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/*================================================
Pagination Area CSS
=================================================*/
.pagination-area {
  margin-top: 20px;
}

.pagination-area .page-numbers {
  width: 40px;
  height: 40px;
  line-height: 39.5px;
  position: relative;
  text-align: center;
  border-radius: 50%;
  display: inline-block;
  color: var(--optionalColor);
  border: 1px solid #eeeeee;
  background-color: transparent;
  font-size: 16px;
  font-weight: 700;
  margin-left: 3px;
  margin-right: 3px;
}

.pagination-area .page-numbers i {
  font-size: 20px;
  position: relative;
  top: 3px;
  left: 1px;
}

.pagination-area .page-numbers:hover, .pagination-area .page-numbers.current {
  color: var(--whiteColor);
  border-color: var(--mainColor);
  background-color: var(--mainColor);
}

/*================================================
Widget Area CSS
=================================================*/
.widget-area {
  padding-left: 15px;
}

.widget-area .widget {
  margin-bottom: 35px;
}

.widget-area .widget .widget-title {
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 12px;
  margin-bottom: 30px;
  position: relative;
  font-size: 21px;
}

.widget-area .widget .widget-title::before {
  left: 0;
  width: 70px;
  height: 1px;
  content: '';
  bottom: -1px;
  position: absolute;
  background-color: var(--mainColor);
}

.widget-area .widget:last-child {
  margin-bottom: 0;
}

.widget-area .widget_search {
  -webkit-box-shadow: 0px 0px 29px 0px rgba(102, 102, 102, 0.1);
          box-shadow: 0px 0px 29px 0px rgba(102, 102, 102, 0.1);
  background-color: var(--whiteColor);
  padding: 15px;
}

.widget-area .widget_search form {
  position: relative;
}

.widget-area .widget_search form label {
  display: block;
  margin-bottom: 0;
}

.widget-area .widget_search form .screen-reader-text {
  display: none;
}

.widget-area .widget_search form .search-field {
  outline: 0;
  width: 100%;
  height: 50px;
  display: block;
  padding: 0 0 0 15px;
  font-size: var(--fontSize);
  border: 1px solid #eeeeee;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  background-color: transparent;
}

.widget-area .widget_search form .search-field:focus {
  border-color: var(--mainColor);
}

.widget-area .widget_search form button {
  right: 0;
  bottom: 0;
  outline: 0;
  width: 50px;
  height: 50px;
  border: none;
  position: absolute;
  color: var(--whiteColor);
  font-size: var(--fontSize);
  -webkit-transition: var(--transition);
  transition: var(--transition);
  background-color: var(--mainColor);
}

.widget-area .widget_search form button:hover {
  color: var(--whiteColor);
  background-color: var(--blackColor);
}

.widget-area .widget_search form button i {
  position: relative;
  top: 2px;
  left: 2px;
}

.widget-area .widget_fidio_posts_thumb {
  position: relative;
}

.widget-area .widget_fidio_posts_thumb .item {
  margin-bottom: 20px;
  position: relative;
  padding-left: 115px;
}

.widget-area .widget_fidio_posts_thumb .item .thumb {
  top: 0;
  left: 0;
  width: 100px;
  float: unset;
  height: 100%;
  display: block;
  position: absolute;
}

.widget-area .widget_fidio_posts_thumb .item .thumb .fullimage {
  width: 100px;
  height: 100%;
  display: inline-block;
  background-repeat: no-repeat;
  background-size: cover !important;
  background-position: center center !important;
}

.widget-area .widget_fidio_posts_thumb .item .thumb .fullimage.bg1 {
  background-image: url(../image/blog1.jpg);
}

.widget-area .widget_fidio_posts_thumb .item .thumb .fullimage.bg2 {
  background-image: url(../image/blog2.jpg);
}

.widget-area .widget_fidio_posts_thumb .item .thumb .fullimage.bg3 {
  background-image: url(../image/blog3.jpg);
}

.widget-area .widget_fidio_posts_thumb .item .thumb .fullimage.bg4 {
  background-image: url(../image/blog4.jpg);
}

.widget-area .widget_fidio_posts_thumb .item .thumb::before, .widget-area .widget_fidio_posts_thumb .item .thumb::after {
  content: '';
  z-index: 1;
  top: 50%;
  left: 50%;
  opacity: 0;
  position: absolute;
  background-color: var(--whiteColor);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all 0.8s cubic-bezier(0.2, 1, 0.22, 1);
  transition: all 0.8s cubic-bezier(0.2, 1, 0.22, 1);
}

.widget-area .widget_fidio_posts_thumb .item .thumb::before {
  width: 40px;
  height: 1px;
  left: 100%;
}

.widget-area .widget_fidio_posts_thumb .item .thumb::after {
  height: 40px;
  width: 1px;
  top: 0;
}

.widget-area .widget_fidio_posts_thumb .item .info .title {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 7px;
}

.widget-area .widget_fidio_posts_thumb .item .info .title a {
  display: inline-block;
}

.widget-area .widget_fidio_posts_thumb .item .info .date {
  padding-left: 22px;
  position: relative;
  color: var(--optionalColor);
}

.widget-area .widget_fidio_posts_thumb .item .info .date i {
  left: 0;
  top: 2px;
  position: absolute;
  color: var(--mainColor);
}

.widget-area .widget_fidio_posts_thumb .item:last-child {
  margin-bottom: 0;
}

.widget-area .widget_fidio_posts_thumb .item:hover .thumb::before, 
.widget-area .widget_fidio_posts_thumb .item:hover .thumb::after {
  opacity: 1;
  top: 50%;
  left: 50%;
}

.widget-area .widget_categories ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.widget-area .widget_categories ul li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 15px;
}

.widget-area .widget_categories ul li::before {
  left: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  content: '';
  position: absolute;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: var(--mainColor);
}

.widget-area .widget_categories ul li a {
  font-weight: 600;
  display: inline-block;
  color: var(--blackColor);
}

.widget-area .widget_categories ul li a:hover {
  color: var(--mainColor);
}

.widget-area .widget_categories ul li:last-child {
  margin-bottom: 0;
}

.widget-area .widget_newsletter {
  background-color: #f9f9f9;
  text-align: center;
  padding: 30px;
}

.widget-area .widget_newsletter h4 {
  font-size: 21px;
  margin-bottom: 8px;
}

.widget-area .widget_newsletter .newsletter-form {
  margin-top: 20px;
}

.widget-area .widget_newsletter .newsletter-form .input-newsletter {
  width: 100%;
  height: 50px;
  display: block;
  padding-left: 15px;
  color: var(--blackColor);
  border: 1px solid #eeeeee;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  background-color: var(--whiteColor);
}

.widget-area .widget_newsletter .newsletter-form .input-newsletter:focus {
  border-color: var(--blackColor);
}

.widget-area .widget_newsletter .newsletter-form button {
  width: 100%;
  border: none;
  display: block;
  margin-top: 15px;
  margin-bottom: 5px;
  padding: 13px 30px;
  text-align: center;
  color: var(--whiteColor);
  -webkit-transition: var(--transition);
  transition: var(--transition);
  background-color: var(--blackColor);
  font-size: var(--fontSize);
  font-weight: 700;
}

.widget-area .widget_newsletter .newsletter-form button:hover {
  background-color: var(--optionalColor);
}

.widget-area .widget_tag_cloud .tagcloud {
  margin-bottom: -8px;
}

.widget-area .widget_tag_cloud .tagcloud a {
  padding: 6px 13px;
  display: inline-block;
  color: var(--blackColor);
  border: 1px solid #eeeeee;
  margin-right: 8px;
  margin-bottom: 8px;
  font-size: 14.5px !important;
  font-weight: 600;
}

.widget-area .widget_tag_cloud .tagcloud a:hover {
  background-color: var(--mainColor);
  border-color: var(--mainColor);
  color: var(--whiteColor);
}

.widget-area .widget_archive ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.widget-area .widget_archive ul li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 15px;
}

.widget-area .widget_archive ul li::before {
  left: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  content: '';
  position: absolute;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: var(--mainColor);
}

.widget-area .widget_archive ul li a {
  font-weight: 600;
  display: inline-block;
  color: var(--blackColor);
}

.widget-area .widget_archive ul li a:hover {
  color: var(--mainColor);
}

.widget-area .widget_archive ul li:last-child {
  margin-bottom: 0;
}

.widget-area .widget_service_categories ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.widget-area .widget_service_categories ul li {
  font-weight: 600;
  overflow: hidden;
  margin-bottom: 13px;
  padding-bottom: 13px;
  color: var(--blackColor);
  border-bottom: 1px dashed #eeeeee;
}

.widget-area .widget_service_categories ul li a {
  display: block;
  position: relative;
  color: var(--blackColor);
}

.widget-area .widget_service_categories ul li a i {
  top: 50%;
  right: 5px;
  position: absolute;
  font-size: var(--fontSize);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: var(--optionalColor);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.widget-area .widget_service_categories ul li a:hover {
  color: var(--mainColor);
}

.widget-area .widget_service_categories ul li a:hover i {
  right: 0;
  color: var(--mainColor);
}

.widget-area .widget_service_categories ul li:last-child {
  margin-bottom: 0;
}

/*================================================
404 Error Area CSS
=================================================*/
.error-area {
  padding-bottom: 100px;
  padding-top: 160px;
}

.error-content {
  text-align: center;
}

.error-content h3 {
  font-size: 30px;
  margin-bottom: 20px;
  margin-top: 45px;
}

.error-content p {
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
}

.error-content .default-btn {
  margin-top: 30px;
  line-height: 1.7;
}

/*================================================
Contact Area CSS
=================================================*/
.contact-info {
  margin-bottom: 0;
  list-style-type: none;
  padding-left: 0;
  padding-right: 5px;
}

.contact-info li {
  margin-bottom: 30px;
  position: relative;
  padding-left: 90px;
  color: var(--optionalColor);
  font-size: var(--fontSize);
  font-weight: 600;
}

.contact-info li h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.contact-info li .icon {
  top: 0;
  left: 0;
  width: 70px;
  height: 70px;
  font-size: 30px;
  position: absolute;
  border-radius: 50%;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  background-color: var(--mainColor);
  color: var(--whiteColor);
  text-align: center;
  -webkit-box-shadow: 3px 5px 25px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 3px 5px 25px 0 rgba(0, 0, 0, 0.15);
}

.contact-info li .icon i {
  position: absolute;
  left: 0;
  right: 0;
  font-weight: normal;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.contact-info li p {
  margin-bottom: 5px;
  color: var(--optionalColor);
}

.contact-info li p a {
  color: var(--optionalColor);
}

.contact-info li p a:hover {
  color: var(--mainColor);
}

.contact-info li:last-child {
  margin-bottom: 0;
}

.contact-info li:hover .icon {
  background-color: var(--blackColor);
  color: var(--whiteColor);
}

.contact-social-links {
  margin-bottom: 0;
  padding-left: 90px;
  list-style-type: none;
  margin-bottom: 0;
  margin-top: 30px;
}

.contact-social-links li {
  display: inline-block;
  margin-right: 7px;
}

.contact-social-links li a {
  display: block;
  line-height: 1;
  font-size: 20px;
  color: var(--optionalColor);
}

.contact-social-links li a:hover {
  color: var(--mainColor);
}

.contact-social-links li:last-child {
  margin-right: 0;
}

.contact-form .form-group {
  margin-bottom: 25px;
}

.contact-form .form-group select.form-control {
  color: #999999;
  background-image: url(../image/select-icon.png);
  background-position: 100%;
  background-repeat: no-repeat;
}

.contact-form .form-check .form-check-label {
  color: var(--optionalColor);
  position: relative;
  top: 1px;
}

.contact-form .form-check .form-check-label a {
  color: var(--mainColor);
}

.contact-form .default-btn {
  width: 100%;
  display: block;
  margin-top: 20px;
  padding-top: 13px;
  padding-bottom: 13px;
  padding-left: 30px;
  padding-right: 30px;
}

.contact-form .help-block.with-errors {
  color: red;
  margin-bottom: 0;
  margin-top: 15px;
}

.contact-form #msgSubmit {
  margin: 0;
}

.contact-form #msgSubmit.text-danger {
  margin-top: 15px;
}

.contact-form #msgSubmit.text-success {
  margin-top: 15px;
}

.contact-form #msgSubmit {
  text-align: center;
  margin-top: 20px;
}

#maps iframe {
  margin-bottom: -7px;
  height: 500px;
  border: none;
  width: 100%;
}

/*================================================
Footer Area CSS
=================================================*/
.footer-area {
	padding-top:20px;
	background:#E5F3FE;
	margin-top:25px;
  position: relative;
  z-index: 1;
  color:#fff;
}

.footer-area .logo{
	max-width:100px;
	}
.footer-area .copyright-area{		
  padding-top: 20px;
  color:#fff;
  background-color: #2d6cff;
	}

.single-footer-widget {
  margin-bottom: 30px;
}

.single-footer-widget .logo {  
  margin-bottom: 15px;
}

.single-footer-widget h3 {
  font-size: 22px;
  margin-bottom: 20px;
}
.er-wm { padding-bottom:10px; text-align:center;}
.er-wm img {
	max-width:100px;
	margin-bottom:10px;
}

.single-footer-widget .newsletter-form {
  margin-bottom: 20px;
  position: relative;
}

.single-footer-widget .newsletter-form .input-newsletter {
  height: 50px;
  display: block;
  width: 100%;
  background-color: var(--whiteColor);
  border: none;
  padding-left: 15px;
  color: var(--blackColor);
  border-radius: 5px;
}

.single-footer-widget .newsletter-form .input-newsletter::-webkit-input-placeholder {
  color: #999999;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.single-footer-widget .newsletter-form .input-newsletter:-ms-input-placeholder {
  color: #999999;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.single-footer-widget .newsletter-form .input-newsletter::-ms-input-placeholder {
  color: #999999;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.single-footer-widget .newsletter-form .input-newsletter::placeholder {
  color: #999999;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.single-footer-widget .newsletter-form .input-newsletter:focus::-webkit-input-placeholder {
  color: transparent;
}

.single-footer-widget .newsletter-form .input-newsletter:focus:-ms-input-placeholder {
  color: transparent;
}

.single-footer-widget .newsletter-form .input-newsletter:focus::-ms-input-placeholder {
  color: transparent;
}

.single-footer-widget .newsletter-form .input-newsletter:focus::placeholder {
  color: transparent;
}

.single-footer-widget .newsletter-form button {
  top: 0;
  right: 0;
  height: 50px;
  border-radius: 5px;
  position: absolute;
  color: var(--whiteColor);
  border: none;
  padding: 0 30px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  background-color: var(--mainColor);
  font-size: var(--fontSize);
  font-weight: 700;
}

.single-footer-widget .newsletter-form button:hover {
  background-color: var(--blackColor);
  color: var(--whiteColor);
}

.single-footer-widget .newsletter-form .validation-danger {
  color: red;
  margin-top: 15px;
}

.single-footer-widget .newsletter-form .validation-success {
  margin-top: 15px;
  color: #198754;
}

.single-footer-widget .social-links {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.single-footer-widget .social-links li {
  display: inline-block;
  margin-right: 7px;
}

.single-footer-widget .social-links li a {
  display: block;
  line-height: 1;
  font-size: 20px;
  color: var(--optionalColor);
}

.single-footer-widget .social-links li a:hover {
  color: var(--mainColor);
}

.single-footer-widget .social-links li:last-child {
  margin-right: 0;
}

.single-footer-widget .links-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.single-footer-widget .links-list li {
  color: var(--optionalColor);
  margin-bottom: 12px;
  font-size: 15px;
  font-weight: 600;
}

.single-footer-widget .links-list li a {
  display: inline-block;
  color: var(--optionalColor);
}

.single-footer-widget .links-list li a:hover {
  color: var(--mainColor);
}

.single-footer-widget .links-list li:last-child {
  margin-bottom: 0;
}

.single-footer-widget .footer-contact-info {
  padding-left: 0;
  margin-bottom: 15px;
  list-style-type: none;
}

.single-footer-widget .footer-contact-info li {
  margin-bottom: 12px;
  color: var(--optionalColor);
  font-size: 15px;
  font-weight: 600;
}

.single-footer-widget .footer-contact-info li span {
  font-weight: 700;
  color: var(--blackColor);
}

.single-footer-widget .footer-contact-info li a {
  color: var(--optionalColor);
}

.single-footer-widget .footer-contact-info li a:hover {
  color: var(--mainColor);
}

.single-footer-widget .footer-contact-info li:last-child {
  margin-bottom: 0;
}

.single-footer-widget .payment-types {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.single-footer-widget .payment-types li {
  display: inline-block;
}

.single-footer-widget .payment-types li:last-child {
  margin-bottom: 0;
}

.single-footer-widget.pr-5 {
  padding-right: 5rem;
}

.copyright-area {
  position: relative;
  z-index: 1;
  padding-bottom: 20px;
}

.copyright-area p {
  font-weight: 600;
}

.copyright-area p a {
  color: var(--mainColor);
}

.copyright-area p a:hover {
  color: var(--blackColor);
  text-decoration: underline;
}

.copyright-area ul {
  padding-left: 0;
  margin-bottom: 0;
  text-align: right;
  list-style-type: none;
}

.copyright-area ul li {
  display: inline-block;
  color: var(--optionalColor);
  font-weight: 600;
  position: relative;
  margin-left: 10px;
  margin-right: 10px;
}

.copyright-area ul li a {
  display: block;
  color:#fff;
}

.copyright-area ul li a:hover {
  color: #ccc;
}

.copyright-area ul li::before {
  top: 50%;
  width: 8px;
  height: 1px;
  content: '';
  right: -16px;
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: var(--optionalColor);
}

.copyright-area ul li:last-child {
  margin-right: 0;
}

.copyright-area ul li:last-child::before {
  display: none;
}

.copyright-area ul li:first-child {
  margin-left: 0;
}

.shape1 {
  right: 27%;
  z-index: -1;
  bottom: 85px;
  position: absolute;
}

.shape2 {
  right: 35%;
  z-index: -1;
  bottom: 85px;
  position: absolute;
}

/*================================================
Go Top CSS
=================================================*/
.go-top {
  z-index: 4;
  opacity: 0;
  right: 20px;
  width: 43px;
  height: 45px;
  bottom: 20px;
  position: fixed;
  cursor: pointer;
  font-size: 35px;
  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 {
  left: 0;
  top: 50%;
  right: 0;
  text-align: center;
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin-left: auto;
  margin-right: auto;
}

.go-top.active {
  opacity: 1;
  bottom: 20px;
  visibility: visible;
}

.go-top:hover {
  color: var(--whiteColor);
  background-color: var(--blackColor);
}

/*================================================
Youtube Feed Area CSS
=================================================*/


.have-line-bottom {
  position: relative;
  padding-bottom: 20px;
}
.have-line-bottom:after {
  content: "";
  position: absolute;
  height: 2px;
  width: 100px;
  bottom: 0;
  right: 0;
  background:#000;
  z-index: 1;
}
.style-black div, .style-black p, .style-black a, .style-black h6, .style-black .h6, .style-black h5, .style-black .h5, .style-black h4, .style-black .h4, .style-black h3, .style-black .h3, .style-black h2, .style-black .h2, .style-black h1, .style-black .h1 {
  color: var(--bs-black);
}
.style-black .hover-underline:hover {
  color: var(--bs-black);
}
.style-black .hover-underline:hover:after {
  background: var(--bs-black);
}
.style-black .breadcrumb-item + .breadcrumb-item::before {
  color: var(--bs-secondary);
}
.style-black .btn-close {
  filter: grayscale(100%) brightness(200%);
}
.style-black .form-style-1 .form-control {
  color: var(--bs-black);
  border-color: var(--bs-dark);
  background: transparent;
}
.style-black .form-style-1 .form-control:focus, .style-black .form-style-1 .form-control:active, .style-black .form-style-1 .form-control:hover, .style-black .form-style-1 .form-select:focus, .style-black .form-style-1 .form-select:active, .style-black .form-style-1 .form-select:hover {
  border-color: var(--bs-black);
}
.style-black input::-webkit-input-placeholder, .style-black textarea::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: var(--bs-dark);
}
.style-black input::-moz-placeholder, .style-black textarea::-moz-placeholder { /* Firefox 19+ */
  color: var(--bs-dark);
}
.style-black input:-ms-input-placeholder, .style-black textarea:-ms-input-placeholder { /* IE 10+ */
  color: var(--bs-dark);
}
.style-black input:-moz-placeholder, .style-black textarea:-moz-placeholder { /* Firefox 18- */
  color: var(--bs-dark);
}
.hover-underline {
  position: relative;
  text-decoration: none;
  transition: all 0.4s linear;
}
.hover-underline:hover {
  color: var(--bs-bg-mode);
}
.hover-underline:after {
  transition: all 0.4s linear;
  content: "";
  position: absolute;
  bottom: 0;
  left: auto;
  right: 0;
  width: 0;
  height: 1px;
  background: var(--bs-body-color);
}
.hover-underline.line-center:after {
  bottom: 40%;
  transform: translateY(-50%);
}
.hover-underline.line-white {
  color: var(--bs-white);
}
.hover-underline.line-white:after {
  background: var(--bs-white);
}
.hover-underline:hover:after, .hover-underline.active:after {
  width: 100%;
  left: 0;
  right: auto;
}
.item-box .item-top {
  margin-bottom: 1rem;
  transition: all 0.3s;
}
.item-box .item-hover {
	display:inline-block;
	padding:5px 0;
	font-size:16px;
  	transition: opacity 0.3s, transform 0.3s;
  opacity: 0.8;
  transform: translateY(0px);
}
.item-box:hover .item-top {
  margin-bottom: 2rem;
}
.item-box:hover .item-hover {
  transform: translateY(0px);
  opacity: 1;
}
.hover-underline {
  position: relative;
  text-decoration: none;
  transition: all 0.4s linear;
  display: inline-block;
}
.hover-underline:hover {
  color: var(--bs-bg-mode);
}
.hover-underline:after {
  transition: all 0.4s linear;
  content: "";
  position: absolute;
  bottom: 0;
  left: auto;
  right: 0;
  width: 0;
  height: 2px;
  background: #333;
}

.item-box .item-hover i{}
.icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.feature-box .icon {
  width: auto;
}
.feature-box .icon svg, .feature-box .icon img {
  height: 50px;
  width: auto;
  max-width: 70%;
}
.feature-box .icon svg path {
  fill: var(--bs-primary);
  height: 50px;
  width: auto;
}

.fidio-responsive-menu .logo{font-size:40px;}


/* case */
.case-list{ padding-left:0;}
.case-list li{ list-style:none;}
/* 在div的背景上使用径向渐变 */
.radial-gradient-example {
  background: radial-gradient(shape size at position, start-color, ..., last-color);
}
 
/* 示例：一个简单的径向渐变 */
.radial-gradient-example {
  background: radial-gradient(red, yellow, green);
}
 
/* 示例：指定形状和大小的径向渐变 */
.radial-gradient-example {
  background: radial-gradient(circle, red, yellow, green); /* 圆形 */
  background: radial-gradient(ellipse at center, red, yellow, green); /* 椭圆形 */
}

.linear-gradient01 {
  background: linear-gradient(45deg,#f8f1d7,#f1d267,#ffe080);
}


.linear-gradient02 {
  background: linear-gradient(-45deg,#dfe2f3,#9ebffb);
}

.linear-gradient03 {
  background: linear-gradient(75deg,#a6f3c6,#ddede3,#bee2ce);
}


/* 在div上使用多个渐变 */
.multiple-gradients-example {
 background: radial-gradient(#fff, #9c87fc, #63d5f2);
}

/* 使用背景剪裁和线性渐变实现文本渐变效果 */
.text-gradient {
  background: -webkit-linear-gradient(blue, #f65d8c); /* 对于非webkit浏览器，可以使用标准语法 */
  -webkit-background-clip: text; /* 仅剪裁文字部分 */
  color: transparent !important; /* 文字颜色设置为透明，以便显示背景颜色 */
}
.fs-40{ font-size:35px;}
.item-box { padding:1.5rem 3rem;}
.item-box .icon-box{ float:left; margin-top:15px;}

.banner-wrapper-area .er-wm-link {}
.er-wm-link img{ max-width:120px; margin-bottom:0px;}

.about-area .about-text .er-wm-text{ font-size:14px;}
.er-wm-link .er-wm-text{ font-size:14px;}