@import url("base.css");

/*** 

====================================================================
Banner Section
====================================================================

***/
.banner-section {
  position: relative;
  padding: 98px 0 121px;
  background-color: var(--theme-color-gray);
  overflow: hidden;
}
@media (max-width: 575.98px) {
  .banner-section {
    padding: 80px 0;
  }
}
.banner-section .content-column .inner-column {
  margin-left: -148px;
  padding-right: 94px;
}
@media only screen and (max-width: 1699px) {
  .banner-section .content-column .inner-column {
    margin-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 991.98px) {
  .banner-section .content-column .inner-column {
    text-align: center;
    max-width: 100%;
  }
}
.banner-section .content-column .inner-column .play-btn {
  font-size: 18px;
  font-weight: 700;
  color: var(--theme-color-dark);
  margin-bottom: 20px;
}
.banner-section .content-column .inner-column .play-btn .icon {
  width: 50px;
  height: 50px;
  line-height: 48px;
  text-align: center;
  color: var(--theme-color-dark);
  border: 2px solid var(--theme-color-dark);
  border-radius: 50%;
  margin-right: 20px;
}
.banner-section .content-column .inner-column .title {
  position: relative;
  font-family: Arimo;
  font-size: 88px;
  font-weight: 700;
  line-height: 90px;
  margin-bottom: 30px;
}
@media (max-width: 1399.98px) {
  .banner-section .content-column .inner-column .title {
    font-size: 70px;
    line-height: 1.2em;
    margin-bottom: 25px;
  }
}
@media (max-width: 991.98px) {
  .banner-section .content-column .inner-column .title {
    font-size: 64px;
  }
}
@media (max-width: 767.98px) {
  .banner-section .content-column .inner-column .title {
    font-size: 54px;
  }
}
@media (max-width: 575.98px) {
  .banner-section .content-column .inner-column .title {
    font-size: 42px;
  }
}
.banner-section .content-column .inner-column .text {
  color: var(--theme-color-dark);
  margin-bottom: 40px;
}
.banner-section .content-column .inner-column .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 991.98px) {
  .banner-section .content-column .inner-column .btn-box {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
@media (max-width: 575.98px) {
  .banner-section .content-column .inner-column .btn-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.banner-section .content-column .inner-column .btn-box .theme-btn {
  margin-right: 42px;
}
@media (max-width: 575.98px) {
  .banner-section .content-column .inner-column .btn-box .theme-btn {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
.banner-section .content-column .inner-column .info-btn {
  position: relative;
  padding-left: 47px;
  -webkit-transform: all 300ms ease;
  transform: all 300ms ease;
}
.banner-section .content-column .inner-column .info-btn:hover .icon {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}
.banner-section .content-column .inner-column .info-btn .icon {
  position: absolute;
  left: 0;
  top: 5px;
  font-size: 33px;
  line-height: 1.5em;
  color: var(--theme-color-dark);
  text-align: center;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.banner-section .content-column .inner-column .info-btn small {
  display: block;
  font-size: 16px;
  line-height: 1.6em;
  font-weight: 400;
  color: var(--theme-color-dark);
  margin-bottom: 3px;
}
.banner-section .content-column .inner-column .info-btn strong {
  font-size: 20px;
  line-height: 28px;
  color: var(--theme-color-dark);
  font-weight: 500;
  letter-spacing: -0.8px;
  font-family: var(--title-font);
}
.banner-section .image-box {
  position: absolute;
  top: 0;
  right: 0%;
  width: 50%;
  height: 100%;
}
@media (max-width: 991.98px) {
  .banner-section .image-box {
    display: none;
  }
}
.banner-section .bg-image {
  position: absolute;
  top: 0;
  right: 0;
  left: -30px;
  height: 100%;
  overflow: hidden;
  -webkit-clip-path: polygon(12% 35%, 0 0, 100% 0, 100% 100%, 14% 100%, 2% 64%);
  clip-path: polygon(12% 35%, 0 0, 100% 0, 100% 100%, 14% 100%, 2% 64%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media only screen and (max-width: 1699px) {
  .banner-section .bg-image {
    -webkit-clip-path: polygon(
      12% 35%,
      0 0,
      100% 0,
      100% 100%,
      14% 100%,
      2% 70%
    );
    clip-path: polygon(12% 35%, 0 0, 100% 0, 100% 100%, 14% 100%, 2% 70%);
  }
}
@media (max-width: 1399.98px) {
  .banner-section .bg-image {
    -webkit-clip-path: none;
    clip-path: none;
  }
}
.banner-section .overlay-shape {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 370px;
  background-image: url(../images/banner/shape-1.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  margin-left: -40px;
}
@media only screen and (max-width: 1699px) {
  .banner-section .overlay-shape {
    margin-left: -70px;
  }
}
@media (max-width: 1399.98px) {
  .banner-section .overlay-shape {
    display: none;
  }
}

 
/*** 

====================================================================
Banner Section Six
====================================================================

***/
.banner-section-six {
  position: relative;
  padding: 85px 0 100px;
  background-color: var(--theme-color-light);
}
.banner-section-six .content-column .inner-column {
  position: relative;
  margin-right: -35px;
  padding-top: 15px;
}
@media (max-width: 1199.98px) {
  .banner-section-six .content-column .inner-column {
    margin-right: 0;
  }
  .banner-section-six .content-column .inner-column br {
    display: none;
  }
}
@media (max-width: 991.98px) {
  .banner-section-six .content-column .inner-column {
    max-width: 100%;
    text-align: center;
  }
}
.banner-section-six .content-column .inner-column:before {
  content: "";
  position: absolute;
  top: -15px;
  left: -45px;
  width: 184px;
  height: 121px;
  background-image: url(../images/banner/icon-dots.png);
  background-repeat: no-repeat;
  background-size: auto;
}
@media (max-width: 991.98px) {
  .banner-section-six .content-column .inner-column:before {
    display: none;
  }
}
.banner-section-six .content-column .inner-column .title {
  position: relative;
  font-family: Arimo;
  font-size: 80px;
  font-weight: 700;
  line-height: 90px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
@media (max-width: 1199.98px) {
  .banner-section-six .content-column .inner-column .title {
    font-size: 62px;
    line-height: 1.2em;
  }
}
@media (max-width: 767.98px) {
  .banner-section-six .content-column .inner-column .title {
    font-size: 60px;
  }
}
@media (max-width: 575.98px) {
  .banner-section-six .content-column .inner-column .title {
    font-size: 40px;
  }
}
.banner-section-six .content-column .inner-column .text {
  margin-bottom: 50px;
}
.banner-section-six .content-column .inner-column .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 991.98px) {
  .banner-section-six .content-column .inner-column .btn-box {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
@media (max-width: 575.98px) {
  .banner-section-six .content-column .inner-column .btn-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.banner-section-six .content-column .inner-column .btn-box .theme-btn {
  margin-right: 40px;
}
@media (max-width: 575.98px) {
  .banner-section-six .content-column .inner-column .btn-box .theme-btn {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
.banner-section-six .content-column .inner-column .info-btn {
  position: relative;
  padding-left: 75px;
  -webkit-transform: all 300ms ease;
  transform: all 300ms ease;
}
.banner-section-six .content-column .inner-column .info-btn:hover .icon {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}
.banner-section-six .content-column .inner-column .info-btn .icon {
  position: absolute;
  left: 0;
  top: 5px;
  font-size: 20px;
  color: var(--theme-color1);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  line-height: 55px;
  width: 55px;
  height: 55px;
  background: var(--theme-color-dark);
  border-radius: 50%;
  text-align: center;
}
.banner-section-six .content-column .inner-column .info-btn small {
  display: block;
  font-size: 16px;
  line-height: 30px;
  font-weight: 400;
  color: var(--theme-color-dark);
  margin-bottom: 0;
}
.banner-section-six .content-column .inner-column .info-btn strong {
  font-size: 20px;
  line-height: 28px;
  color: var(--theme-color-dark);
  font-family: var(--title-font);
}
.banner-section-six .image-column .inner-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding-right: 15px;
  padding-right: 0;
  margin-left: 30px;
}
.banner-section-six .image-column .image-box {
  position: relative;
  display: inline-block;
}
@media (max-width: 991.98px) {
  .banner-section-six .image-column .image-box {
    display: none;
  }
}
.banner-section-six .image-column .image-box .overlay-circle {
  position: absolute;
  left: -22px;
  top: -22px;
  right: -22px;
  bottom: -22px;
  background-image: url(../images/banner/shape-4.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  -webkit-animation: fa-spin 100s infinite linear;
  animation: fa-spin 100s infinite linear;
}
.banner-section-six .image-column .image-box .image {
  text-align: center;
}

/*** 

====================================================================
		About Section
====================================================================

***/
.about-section {
  position: relative;
  padding: 120px 0 70px;
  overflow: hidden;
}
.about-section .icon-about-1 {
  position: absolute;
  top: 0;
  right: 0;
}
@media (max-width: 1199.98px) {
  .about-section .icon-about-1 {
    display: none;
  }
}
.about-section .content-column {
  position: relative;
  margin-bottom: 50px;
  z-index: 1;
}
.about-section .content-column .inner-column {
  position: relative;
}
.about-section .content-column .sec-title {
  margin-bottom: 30px;
}
.about-section .content-column .title-box {
  margin-bottom: 40px;
}
.about-section .content-column .title-box .title {
  color: var(--theme-color1);
  font-size: 24px;
  font-family: var(--text-font);
  font-weight: 700;
}
.about-section .content-column .info-block {
  position: relative;
}
.about-section .content-column .info-block:before {
  content: "";
  position: absolute;
  top: 7px;
  left: 41%;
  width: 3px;
  height: 54px;
  background-color: #f2f2f2;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (max-width: 767.98px) {
  .about-section .content-column .info-block:before {
    display: none;
  }
}
.about-section .content-column .skills {
  margin-bottom: 35px;
}
.about-section .content-column .skills .bar-inner {
  border-radius: 0;
}
.about-section .content-column .skills .bar-inner .bar {
  border-radius: 0;
}
.about-section .content-column .bottom-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 575.98px) {
  .about-section .content-column .bottom-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
}
.about-section .content-column .bottom-box .author-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 575.98px) {
  .about-section .content-column .bottom-box .author-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 20px;
  }
}
.about-section .content-column .bottom-box .author-box img {
  border-radius: 50%;
  margin-right: 20px;
  border: 2px solid var(--theme-color1);
  padding: 5px;
}
.about-section .content-column .bottom-box .author-box .name {
  margin-bottom: 5px;
}
@media (max-width: 575.98px) {
  .about-section .content-column .bottom-box .author-box .name {
    margin-top: 10px;
  }
}
.about-section .image-column {
  position: relative;
  margin-bottom: 30px;
}
@media (max-width: 991.98px) {
  .about-section .image-column {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.about-section .image-column .inner-column {
  position: relative;
  margin-bottom: 70px;
}
@media (max-width: 991.98px) {
  .about-section .image-column .inner-column {
    margin-bottom: 0;
    text-align: center;
  }
}
.about-section .image-column .image-box {
  position: relative;
}
.about-section .image-column .image-box:before {
  content: "";
  position: absolute;
  bottom: -40px;
  left: 235px;
  width: 80px;
  height: 92px;
  background-color: var(--theme-color1);
}
@media (max-width: 1399.98px) {
  .about-section .image-column .image-box:before {
    display: none;
  }
}
.about-section .image-column .image-1 {
  position: relative;
  margin-bottom: 0;
}
@media (max-width: 1399.98px) {
  .about-section .image-column .image-1 img {
    max-width: 100%;
    width: 100%;
  }
}
.about-section .image-column .image-2 {
  position: absolute;
  left: -65px;
  bottom: -85px;
  margin-bottom: 0;
}
@media (max-width: 1399.98px) {
  .about-section .image-column .image-2 {
    display: none;
  }
}
.about-section .image-column .image-2:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 15px solid var(--theme-color-light);
}
.about-section .image-column .image-2 img {
  width: 100%;
}
@media (max-width: 991.98px) {
  .about-section .image-column .image-2 {
    display: none;
  }
}
.about-section .image-column .icon-dots-4 {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-80%, -60%);
          transform: translate(-80%, -60%);
}
.about-section .image-column .circle-text {
  position: absolute;
  top: -65px;
  left: -115px;
}
@media (max-width: 1399.98px) {
  .about-section .image-column .circle-text {
    display: none;
  }
}
.about-section .image-column .circle-text img {
  -webkit-animation: fa-spin 30s infinite linear;
          animation: fa-spin 30s infinite linear;
}
.about-section .image-column .circle-text .word {
  position: absolute;
  top: 56%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 72px;
  letter-spacing: -0.4;
}
.about-section .image-column .exp-box {
  position: absolute;
  right: 83px;
  bottom: 0;
  width: 257px;
  -webkit-box-shadow: 0 33px 87px rgba(0, 0, 0, 0.07);
          box-shadow: 0 33px 87px rgba(0, 0, 0, 0.07);
  background-color: var(--theme-color-light);
  padding: 15px;
  text-align: left;
}
@media (max-width: 1399.98px) {
  .about-section .image-column .exp-box {
    position: relative;
    right: 0;
    width: 100%;
    margin-top: 20px;
  }
}
.about-section .image-column .exp-box .inner {
  position: relative;
  padding: 20px 25px 20px;
  background-color: var(--theme-color-light);
  border: 2px solid var(--theme-color1);
}
@media (max-width: 1399.98px) {
  .about-section .image-column .exp-box .inner {
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.about-section .image-column .exp-box .icon-box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 90px;
  min-height: 64px;
  margin-bottom: 10px;
}
.about-section .image-column .exp-box .icon {
  position: absolute;
  left: 0px;
  top: 0px;
  display: block;
  font-size: 64px;
  font-weight: 400;
  line-height: 1em;
  color: var(--theme-color1);
  z-index: 2;
  margin-bottom: 5px;
}
.about-section .image-column .exp-box .count {
  font-family: var(--title-font);
  font-size: 48px;
  line-height: 40px;
  color: var(--theme-color-dark);
  font-weight: 400;
  margin-bottom: 0;
}
.about-section .image-column .exp-box .title {
  margin-bottom: 0;
  color: #717070;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-block {
  position: relative;
  margin-bottom: 35px;
}
.about-block .inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.about-block .inner:hover .icon {
  color: var(--theme-color1);
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
.about-block .icon {
  font-size: 60px;
  color: var(--theme-color1);
  margin-right: 18px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.about-block .title {
  position: relative;
  top: 5px;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 0;
}
.about-block .text {
  margin-bottom: 0;
}



.skills .skill-item .skill-bar .bar-inner .bar {
  position: absolute;
  left: 0px;
  top: 0px;
  height: 14px;
  width: 0px;
  -webkit-transition: all 3000ms ease;
  transition: all 3000ms ease;
  border-radius: 10px;
  background: var(--bg-theme-color1);
}

.skills .skill-item .skill-bar .bar-inner .skill-percentage {
  position: absolute;
  right: 0;
  bottom: 100%;
  font-weight: 400;
  color: #6f7174;
  line-height: 25px;
  margin-bottom: 10px;
}

.about-section .content-column .skills .bar-inner .bar{
  border-radius: 0px;
}

/*** 

====================================================================
Services Section
====================================================================

***/
.services-section {
  position: relative;
  padding: 120px 0 90px;
  z-index: 3;
  background-color: var(--theme-color-dark);
}
@media (max-width: 1199.98px) {
  .services-section .sec-title br {
    display: none;
  }
}
.services-section .sec-title .text {
  margin-top: 45px;
}
@media (max-width: 991.98px) {
  .services-section .sec-title .text {
    margin-top: 20px;
  }
}

.service-block {
  position: relative;
  margin-bottom: 30px;
}
.service-block .inner-box {
  position: relative;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 5px;
}
@media (max-width: 1399.98px) {
  .service-block .inner-box {
    padding: 25px;
  }
}
@media (max-width: 767.98px) {
  .service-block .inner-box {
    padding: 45px;
  }
}
@media (max-width: 575.98px) {
  .service-block .inner-box {
    padding: 24px 21px 30px;
  }
}
.service-block .inner-box:hover .image-box .image a:after {
  left: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}
.service-block .inner-box:hover .image-box .image img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.service-block .inner-box:hover .icon {
  background-color: var(--bg-theme-color1);
  color: var(--theme-color-dark);
  border: 1px solid var(--theme-color-dark);
}
.service-block .image-box {
  position: relative;
}
.service-block .image-box .image {
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
  border-radius: 5px;
}
.service-block .image-box .image img {
  display: block;
  width: 100%;
  -webkit-transition: all 400ms ease;
  transition: all 400ms ease;
}
.service-block .image-box .image a:after {
  background: rgba(255, 255, 255, 0.3);
  bottom: 0;
  content: "";
  left: 50%;
  position: absolute;
  right: 51%;
  top: 0;
  opacity: 1;
  pointer-events: none;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}
.service-block .image-box .icon {
  position: absolute;
  bottom: -20px;
  right: 20px;
  font-size: 35px;
  width: 59px;
  height: 59px;
  line-height: 59px;
  color: var(--theme-color1);
  text-align: center;
  background-color: var(--theme-color-dark);
  border: 1px solid #ffffff;
  -webkit-box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
@media (max-width: 1399.98px) {
  .service-block .image-box .icon {
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
.service-block .content-box {
  position: relative;
  padding-top: 40px;
  text-align: center;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.service-block .content-box .title {
  margin-bottom: 13px;
  color: var(--theme-color-light);
}
.service-block .content-box .title a:hover {
  color: var(--theme-color1);
}
.service-block .content-box .text {
  margin-bottom: 30px;
  color: var(--theme-color-light);
}
@media (max-width: 1399.98px) {
  .service-block .content-box .text {
    font-size: 14px;
  }
}
.service-block .content-box .theme-btn {
  border: 2px solid #333f4d;
}

/***

====================================================================
    Services Section Six
====================================================================

***/
.services-section-six {
  position: relative;
  padding: 120px 0 90px;
  background: var(--theme-color-dark);
}

.service-block-six {
  position: relative;
  margin-bottom: 30px;
}
.service-block-six .inner-box {
  position: relative;
  background-color: rgb(45, 45, 53);
  padding: 70px 30px 55px;
  border-radius: 10px;
  text-align: center;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 575.98px) {
  .service-block-six .inner-box {
    padding: 45px 28px 40px;
  }
}
.service-block-six .inner-box:hover {
  background-color: #fff;
}
.service-block-six .inner-box:hover .icon,
.service-block-six .inner-box:hover .title,
.service-block-six .inner-box:hover .text,
.service-block-six .inner-box:hover .btn-box .theme-btn {
  color: var(--theme-color-dark);
}
.service-block-six .inner-box .icon {
  position: relative;
  font-size: 65px;
  color: var(--theme-color1);
  margin-bottom: 30px;
  line-height: 60px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.service-block-six .inner-box .title {
  position: relative;
  color: var(--theme-color-light);
  margin-bottom: 20px;
  line-height: 31px;
}
.service-block-six .inner-box .text {
  position: relative;
  margin-bottom: 20px;
  color: var(--theme-color-light);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 575.98px) {
  .service-block-six .inner-box .text {
    font-size: 14px;
  }
}
.service-block-six .inner-box .btn-box .theme-btn {
  color: var(--theme-color-light);
  font-size: 14px;
  letter-spacing: 1.4px;
  line-height: 14px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.service-block-six .inner-box .btn-box .theme-btn i {
  margin-left: 10px;
}
.service-block-six .inner-box .btn-box .theme-btn:hover {
  color: var(--theme-color1);
}


/*** 

====================================================================
    Project Section Nine
====================================================================

***/
.project-section-nine {
  padding: 120px 0 90px;
  position: relative;
  background: var(--theme-color-dark);
}

.project-block-nine .inner-box:hover .image-box .image img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.project-block-nine .inner-box:hover .image-box .overlay-box {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.project-block-nine .inner-box:hover .image-box .overlay-box .title {
  top: 0;
  opacity: 1;
  -webkit-transition-delay: 300ms;
  transition-delay: 300ms;
}
.project-block-nine .inner-box:hover .image-box .overlay-box .text {
  top: 0;
  opacity: 1;
  -webkit-transition-delay: 450ms;
  transition-delay: 450ms;
}
.project-block-nine .inner-box:hover .image-box .overlay-box .read-more {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition-delay: 600ms;
  transition-delay: 600ms;
}
.project-block-nine .inner-box .image-box {
  position: relative;
}
.project-block-nine .inner-box .image-box .image {
  margin-bottom: 30px;
  overflow: hidden;
}
.project-block-nine .inner-box .image-box .image img {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 100%;
  min-height: 280px;
  -o-object-fit: cover;
  object-fit: cover;
}
.project-block-nine .inner-box .image-box .overlay-box {
  padding: 0 59px;
  position: absolute;
  top: 33px;
  left: 27px;
  bottom: 32px;
  right: 28px;
  opacity: 0;
  background: var(--theme-color-dark);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.project-block-nine .inner-box .image-box .overlay-box:before {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  width: 150px;
  height: 140px;
  background-image: url(../images/icons/bg-border.png);
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 9;
}
.project-block-nine .inner-box .image-box .overlay-box:after {
  content: "";
  position: absolute;
  bottom: 15px;
  right: 15px;
  width: 150px;
  height: 140px;
  background-image: url(../images/icons/bg-border-2.png);
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 9;
}
.project-block-nine .inner-box .image-box .overlay-box .text {
  color: var(--theme-color-light);
  position: relative;
  z-index: 99;
  top: 20px;
  opacity: 0;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.project-block-nine .inner-box .image-box .overlay-box .title {
  font-weight: 700;
  margin-bottom: 22px;
  line-height: 31px;
  color: var(--theme-color-light);
  top: 20px;
  opacity: 0;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.project-block-nine .inner-box .image-box .overlay-box .read-more {
  position: relative;
  width: 50px;
  height: 50px;
  background-color: var(--theme-color1);
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  font-size: 20px;
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
  margin: 0 auto 20px;
  margin-top: 10px;
  color: var(--theme-color-dark);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

/*** 

====================================================================
    Subscribe Section six
====================================================================

***/
.subscribe-section-six {
  position: relative;
  background-color: var(--theme-color-dark);
  padding: 108px 0;
}
.subscribe-section-six .outer-box {
  background-color: var(--theme-color1);
  padding: 54px 60px;
  border-radius: 5px;
}
@media (max-width: 767.98px) {
  .subscribe-section-six .outer-box {
    padding: 60px 20px 29px;
  }
}
.subscribe-section-six .outer-box .content-column .inner-column {
  position: relative;
  padding-left: 130px;
}
@media (max-width: 1199.98px) {
  .subscribe-section-six .outer-box .content-column .inner-column {
    padding-left: 0;
    text-align: center;
  }
}
.subscribe-section-six .outer-box .content-column .inner-column .icon-box {
  position: absolute;
  left: 0;
  top: 15px;
}
@media (max-width: 1199.98px) {
  .subscribe-section-six .outer-box .content-column .inner-column .icon-box {
    position: relative;
    top: 0;
    display: inline-block;
    margin-bottom: 10px;
  }
}
.subscribe-section-six
  .outer-box
  .content-column
  .inner-column
  .icon-box
  .icon {
  font-size: 95px;
  color: var(--theme-color-dark);
  line-height: 95px;
}
.subscribe-section-six .outer-box .content-column .inner-column .title {
  margin-bottom: 0;
}
@media (max-width: 1399.98px) {
  .subscribe-section-six .outer-box .content-column .inner-column .title {
    font-size: 40px;
  }
}
@media (max-width: 575.98px) {
  .subscribe-section-six .outer-box .content-column .inner-column .title {
    font-size: 27px;
  }
}
.subscribe-section-six .outer-box .form-column .inner-column {
  padding-left: 70px;
  padding-top: 30px;
}
@media (max-width: 1199.98px) {
  .subscribe-section-six .outer-box .form-column .inner-column {
    padding-left: 0;
  }
}

.subscribe-form-six {
  position: relative;
}
.subscribe-form-six .form-group {
  position: relative;
  background-color: var(--theme-color-light);
}
.subscribe-form-six .form-group input[type="text"],
.subscribe-form-six .form-group input[type="email"] {
  position: relative;
  display: block;
  border: 0;
  height: 58px;
  width: 100%;
  line-height: 28px;
  padding: 15px 30px;
  padding-right: 180px;
  color: var(--theme-color-dark);
  background-color: var(--theme-color-light);
}
@media (max-width: 575.98px) {
  .subscribe-form-six .form-group input[type="text"],
  .subscribe-form-six .form-group input[type="email"] {
    padding-right: 30px;
  }
}
.subscribe-form-six .form-group input[type="text"]::-webkit-input-placeholder,
.subscribe-form-six .form-group input[type="email"]::-webkit-input-placeholder {
  color: var(--theme-color-dark);
}
.subscribe-form-six .form-group input[type="text"]::-moz-placeholder,
.subscribe-form-six .form-group input[type="email"]::-moz-placeholder {
  color: var(--theme-color-dark);
}
.subscribe-form-six .form-group input[type="text"]:-ms-input-placeholder,
.subscribe-form-six .form-group input[type="email"]:-ms-input-placeholder {
  color: var(--theme-color-dark);
}
.subscribe-form-six .form-group input[type="text"]::-ms-input-placeholder,
.subscribe-form-six .form-group input[type="email"]::-ms-input-placeholder {
  color: var(--theme-color-dark);
}
.subscribe-form-six .form-group input[type="text"]::placeholder,
.subscribe-form-six .form-group input[type="email"]::placeholder {
  color: var(--theme-color-dark);
}
.subscribe-form-six .form-group .theme-btn {
  position: absolute;
  right: 0px;
  top: 0px;
  line-height: 28px;
  padding: 15px 30px;
  border-radius: 0;
}
@media (max-width: 767.98px) {
  .subscribe-form-six .form-group .theme-btn {
    position: relative;
    width: 100%;
    text-align: center;
  }
}

/*** 

====================================================================
    Team Section two
====================================================================

***/
.team-section-two {
  position: relative;
  padding: 120px 0 80px;
  background-color: var(--theme-color-light);
  overflow: hidden;
}
@media (max-width: 767.98px) {
  .team-section-two {
    padding: 80px 0 60px;
  }
}
.team-section-two .four-items-carousel {
  z-index: 9;
}
.team-section-two
  .four-items-carousel
  .owl-item:nth-child(even)
  .team-block-two {
  margin-top: 40px;
}
@media (max-width: 575.98px) {
  .team-section-two
    .four-items-carousel
    .owl-item:nth-child(even)
    .team-block-two {
    margin-top: 0;
  }
}
.team-section-two .four-items-carousel .owl-nav {
  position: absolute;
  right: 0;
  top: -120px;
  z-index: 8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 1199.98px) {
  .team-section-two .four-items-carousel .owl-nav {
    position: relative;
    top: 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 40px;
  }
}
.team-section-two .four-items-carousel .owl-nav .owl-prev,
.team-section-two .four-items-carousel .owl-nav .owl-next {
  border: 0;
  color: var(--theme-color-dark);
  background-color: var(--theme-color-gray);
}
.team-section-two .four-items-carousel .owl-nav .owl-prev:hover,
.team-section-two .four-items-carousel .owl-nav .owl-next:hover {
  background-color: var(--theme-color1);
}
.team-section-two .sec-title {
  margin-bottom: 35px;
}

.team-block-two {
  position: relative;
  margin-bottom: 40px;
}
.team-block-two .inner-box {
  position: relative;
  background: #f6f6f6;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  border-radius: 5px 5px 10px 10px;
}
.team-block-two .inner-box:hover {
  background: #27272f;
}
.team-block-two .inner-box:hover .info-box .name {
  color: var(--theme-color-light);
}
.team-block-two .inner-box:hover .info-box .designation {
  color: var(--theme-color-light);
}
.team-block-two .inner-box:hover .image img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.team-block-two .inner-box:hover .social-links {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  opacity: 1;
  visibility: visible;
}
.team-block-two .image-box {
  position: relative;
}
.team-block-two .image-box .image {
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
  border-radius: 5px;
  z-index: 1;
}
.team-block-two .image-box .image img {
  width: 100%;
  -webkit-transition: all 400ms ease;
  transition: all 400ms ease;
}
.team-block-two .info-box {
  padding: 30px 30px 26px;
  text-align: center;
}
@media (max-width: 767.98px) {
  .team-block-two .info-box {
    padding: 21px 20px 26px;
  }
}
.team-block-two .info-box .name {
  margin-bottom: 3px;
}
.team-block-two .info-box .name:hover {
  color: var(--theme-color2);
}
@media (max-width: 767.98px) {
  .team-block-two .info-box .name {
    font-size: 19px;
  }
}
.team-block-two .info-box .designation {
  position: relative;
  display: block;
  -webkit-transition: all 400ms ease;
  transition: all 400ms ease;
}
@media (max-width: 767.98px) {
  .team-block-two .info-box .designation {
    font-size: 14px;
  }
}
.team-block-two .share-icon {
  position: absolute;
  bottom: 20px;
  right: 20px;
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 14px;
  color: var(--theme-color-dark);
  background-color: var(--theme-color1);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  border-radius: 10px;
  z-index: 3;
}
.team-block-two .social-links {
  position: absolute;
  right: 20px;
  bottom: 70px;
  margin-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background-color: var(--theme-color-light);
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: bottom;
  transform-origin: bottom;
  border-radius: 5px;
  z-index: 3;
  padding: 20px 12px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 400ms ease;
  transition: all 400ms ease;
}
.team-block-two .social-links a {
  position: relative;
  line-height: 20px;
  font-size: 16px;
  margin-top: 20px;
  color: var(--theme-color-dark);
  border-radius: 50px;
  border-radius: 0 0 50px 50px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.team-block-two .social-links a:first-child {
  margin-top: 0;
}
/***

====================================================================
    Process Section Eight
====================================================================

***/
.process-section-eight {
  position: relative;
  padding: 120px 0 90px;
  background: var(--theme-color-gray);
}

.process-block-eight {
  position: relative;
  margin-bottom: 30px;
}
.process-block-eight .inner-box {
  position: relative;
  text-align: center;
  padding: 49px 30px 58px;
  background-color: var(--theme-color-light);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
@media (max-width: 767.98px) {
  .process-block-eight .inner-box {
    padding: 40px 24px 40px;
  }
}
.process-block-eight .inner-box:hover .icon {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
  background-color: var(--theme-color-dark);
  color: var(--theme-color1);
}
.process-block-eight .inner-box .icon {
  width: 85px;
  height: 85px;
  background-color: var(--theme-color1);
  line-height: 85px;
  text-align: center;
  display: inline-block;
  font-size: 54px;
  color: var(--theme-color-dark);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  margin-bottom: 32px;
}
.process-block-eight .inner-box .title {
  color: var(--theme-color-dark);
  margin-bottom: 21px;
}
.process-block-eight .inner-box .title a:hover {
  color: var(--theme-color1);
}
.process-block-eight .inner-box .text {
  margin-bottom: 30px;
}
.process-block-eight .inner-box .theme-btn {
  padding: 9px 30px;
}

/*** 

====================================================================
  Testimonial Section five
====================================================================

***/
.testimonial-section-five {
  position: relative;
  padding: 120px 0 120px;
  background: var(--theme-color-dark);
}
.testimonial-section-five .default-dots-three .owl-dot.active {
  background-color: var(--theme-color1);
}
.testimonial-section-five .default-dots-three .owl-dot.active::before {
  -webkit-transform: scale(1);
  transform: scale(1);
}
.testimonial-section-five .sec-title {
  margin-bottom: 40px;
}
.testimonial-section-five .carousel-outer {
  margin: 0 -20px;
}
.testimonial-section-five .carousel-outer .owl-stage-outer {
  padding: 20px;
}
.testimonial-section-five .carousel-outer .owl-dots {
  margin-top: 30px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.testimonial-block-five {
  position: relative;
  margin-bottom: 30px;
}
.testimonial-block-five .inner-box {
  position: relative;
  border-radius: 10px;
  background-color: rgb(43, 43, 51);
  padding: 46px 30px 30px;
}
@media (max-width: 1199.98px) {
  .testimonial-block-five .inner-box {
    padding: 20px 20px 20px;
  }
}
.testimonial-block-five .inner-box:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 113px;
  width: 100%;
  background-image: url(../images/icons/testi-bg.png);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
}
.testimonial-block-five .inner-box:hover .info-box .icon {
  background-color: var(--theme-color-dark);
  color: var(--theme-color-light);
}
.testimonial-block-five .content-box {
  position: relative;
}
@media (max-width: 575.98px) {
  .testimonial-block-five .content-box {
    text-align: center;
  }
}
.testimonial-block-five .content-box .icon {
  position: absolute;
  top: 40px;
  right: 40px;
  color: var(--theme-color1);
  font-size: 40px;
  line-height: 40px;
}
.testimonial-block-five .content-box .text {
  position: relative;
  color: var(--theme-color-light);
  margin-bottom: 0px;
}
.testimonial-block-five .info-box {
  position: relative;
  display: inline-block;
  text-align: left;
  z-index: 2;
  border-radius: 0 0 10px 10px;
  width: 100%;
  padding: 0 0 39px 130px;
}
@media (max-width: 575.98px) {
  .testimonial-block-five .info-box {
    padding-left: 0;
    text-align: center;
  }
}
.testimonial-block-five .info-box .image-box {
  position: absolute;
  left: 0;
  top: 0px;
}
@media (max-width: 575.98px) {
  .testimonial-block-five .info-box .image-box {
    position: relative;
    display: inline-block;
    text-align: center;
  }
}
.testimonial-block-five .info-box .image-box .thumb {
  width: 110px;
  height: 110px;
  border-radius: 5px;
  overflow: hidden;
}
.testimonial-block-five .info-box .image-box .icon {
  position: absolute;
  bottom: -5px;
  left: 32px;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  font-size: 24px;
  width: 45px;
  height: 45px;
  background-color: var(--theme-color-light);
  color: var(--theme-color-dark);
  border-radius: 50%;
  text-align: center;
  line-height: 45px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.testimonial-block-five .info-box .name {
  margin-bottom: 10px;
  color: var(--theme-color-light);
}
@media (max-width: 1399.98px) {
  .testimonial-block-five .info-box .name {
    font-size: 22px;
  }
}
@media (max-width: 1199.98px) {
  .testimonial-block-five .info-box .name {
    font-size: 17px;
  }
}
.testimonial-block-five .info-box .designation {
  display: block;
  margin-bottom: 10px;
  color: var(--theme-color-light);
}
.testimonial-block-five .info-box .rating {
  position: relative;
  font-size: 14px;
  padding-left: 10px;
  z-index: 2;
  line-height: 20px;
  display: inline-block;
  color: var(--theme-color-dark);
  background-color: var(--reivew-color);
  border-radius: 5px;
}
.testimonial-block-five .info-box .rating i {
  margin-right: 4px;
}
@media (max-width: 1199.98px) {
  .testimonial-block-five .info-box .rating i {
    margin-right: 0;
  }
}
.testimonial-block-five .info-box .rating span {
  color: var(--theme-color-light);
  position: relative;
  right: -1px;
  border-radius: 0px 5px 5px 0px;
  background: #35353c;
  width: 33px;
  height: 32px;
  text-align: center;
  line-height: 32px;
  display: inline-block;
}



/*** 

====================================================================
    Fun Fact Section six
====================================================================

***/
.fun-fact-section-six {
  position: relative;
  padding: 120px 0 70px;
  background-color: var(--theme-color-gray);
}
.fun-fact-section-six:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  height: 66px;
  background-color: var(--theme-color-dark);
}

.counter-block-six {
  position: relative;
  margin-bottom: 76px;
}
.counter-block-six .inner {
  position: relative;
  -webkit-box-shadow: 0px 0px 18px 3px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 0px 18px 3px rgba(0, 0, 0, 0.05);
  background-color: var(--theme-color-light);
  border-radius: 5px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  text-align: center;
  padding: 60px 40px 99px;
  height: 100%;
}
@media (max-width: 1199.98px) {
  .counter-block-six .inner {
    padding: 60px 28px 72px;
  }
}
.counter-block-six .inner:hover .icon {
  background-color: var(--theme-color-dark);
  color: var(--theme-color1);
}
.counter-block-six .icon {
  position: absolute;
  bottom: -26px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 85px;
  height: 85px;
  line-height: 85px;
  text-align: center;
  border-radius: 5px;
  background-color: var(--theme-color1);
  display: inline-block;
  color: var(--theme-color-dark);
  font-size: 60px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  margin-bottom: 0;
}
.counter-block-six .count-box {
  color: var(--theme-color-dark);
  margin-bottom: 0;
  font-family: Arimo;
  font-size: 68px;
  font-weight: 700;
  line-height: 62.4px;
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--theme-color-dark);
}
.counter-block-six .count-box .count-text {
  color: var(--theme-color-dark);
  margin-bottom: 0;
  font-family: Arimo;
  font-size: 68px;
  font-weight: 700;
  line-height: 62.4px;
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--theme-color-dark);
}
.counter-block-six .counter-title {
  color: var(--theme-color-dark);
  margin-bottom: 20px;
  font-family: Arimo;
  font-size: 20px;
  font-weight: 700;
  line-height: 27px;
}




/*** 

====================================================================
    News Section six
====================================================================

***/
.news-section-six {
  position: relative;
  padding: 120px 0 90px;
  background: var(--theme-color-gray);
  z-index: 3;
}
.news-section-six .owl-carousel {
  z-index: 10;
}
.news-section-six .owl-carousel .owl-nav {
  position: absolute;
  right: 0;
  left: 0;
  z-index: 8;
  top: -120px;
  max-width: 1290px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
@media (max-width: 1199.98px) {
  .news-section-six .owl-carousel .owl-nav {
    position: relative;
    top: 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.news-section-six .owl-carousel .owl-nav .owl-prev,
.news-section-six .owl-carousel .owl-nav .owl-next {
  background-color: rgba(201, 243, 29, 0.1);
  color: var(--theme-color-dark);
  border: 0;
}
.news-section-six .owl-carousel .owl-nav .owl-prev:hover,
.news-section-six .owl-carousel .owl-nav .owl-next:hover {
  background-color: var(--bg-theme-color1);
}
.news-section-six .outer-box {
  margin: 0 -225px;
}
@media (max-width: 1399.98px) {
  .news-section-six .outer-box {
    margin: 0;
  }
}

.news-block-six {
  position: relative;
  margin-bottom: 30px;
}
.news-block-six .inner-box {
  position: relative;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.news-block-six .inner-box:hover .image-box .image a:after {
  left: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}
.news-block-six .inner-box:hover .image-box .image img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.news-block-six .image-box {
  position: relative;
}
.news-block-six .image-box .image {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}
.news-block-six .image-box .image img {
  display: block;
  width: 100%;
  -webkit-transition: all 400ms ease;
  transition: all 400ms ease;
}
.news-block-six .image-box .image a:after {
  background: rgba(255, 255, 255, 0.3);
  bottom: 0;
  content: "";
  left: 50%;
  position: absolute;
  right: 51%;
  top: 0;
  opacity: 1;
  pointer-events: none;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}
.news-block-six .content-box {
  position: relative;
  margin-top: -90px;
  border-radius: 5px;
  margin-left: 30px;
  padding: 42px 27px 34px 27px;
  background-color: var(--theme-color-light);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
@media (max-width: 1199.98px) {
  .news-block-six .content-box {
    margin-left: 0;
  }
}
.news-block-six .content-box .date {
  position: absolute;
  top: -25px;
  right: 0px;
  z-index: 99;
  font-size: 16px;
  text-align: center;
  min-width: 180px;
  min-height: 50px;
  line-height: 25px;
  border-radius: 5px 0 0 0;
  background-color: var(--theme-color-dark);
  color: var(--theme-color-light);
  border-left: 5px solid var(--brand-primary, var(--theme-color1));
  display: inline-block;
  padding: 12px;
}
.news-block-six .content-box .post-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.news-block-six .content-box .post-meta li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 26px;
  margin-bottom: 10px;
  color: #9094a3;
  font-family: Manrope;
  font-size: 12px;
  font-weight: 500;
  line-height: 160%;
}
@media (max-width: 767.98px) {
  .news-block-six .content-box .post-meta li {
    margin-right: 16px;
  }
}
.news-block-six .content-box .post-meta li i {
  font-size: 12px;
  font-weight: 400;
  margin-right: 10px;
  color: var(--theme-color-dark);
}
.news-block-six .content-box .post-meta li a {
  color: #777;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.news-block-six .content-box .post-meta li a:hover {
  color: var(--theme-color1);
}
.news-block-six .content-box .title {
  margin-bottom: 0;
  color: var(--theme-color-dark);
  font-family: DM Sans;
  font-size: 24px;
  font-weight: 500;
  line-height: 31px;
  letter-spacing: 0.15px;
}
.news-block-six .content-box .title a:hover {
  color: var(--theme-color1);
}


/***

====================================================================
	Services Section
====================================================================

***/

.services-section {
  position: relative;
  padding: 60px 0px 60px;
}

.services-section .top-divider {
  position: relative;
  width: 2px;
  height: 70px;
  left: 50%;
  margin-left: -1px;
  margin-bottom: 70px;
  background-color: #555555;
}

.services-section .top-divider:before {
  position: absolute;
  content: "";
  left: -4px;
  bottom: -6px;
  width: 10px;
  height: 10px;
  background: var(--bg-theme-color1);
  transform: rotate(-45deg);
}

/* Bottom Divider */

.services-section .bottom-divider {
  position: relative;
  width: 2px;
  height: 70px;
  left: 50%;
  margin-top: 40px;
  margin-left: -1px;
  background-color: #555555;
}

.services-section .bottom-divider:before {
  position: absolute;
  content: "";
  left: -4px;
  top: -6px;
  width: 10px;
  height: 10px;
  background: var(--bg-theme-color1);
  transform: rotate(-45deg);
}

.services-section .text-bar {
  position: relative;
  color: #111111;
  font-size: 18px;
  padding: 20px 15px;
  text-align: center;
  font-weight: 700;
  margin-top: 30px;
  margin-bottom: 35px;
  text-transform: capitalize;
  background: url(../moron/images/background/pattern-12.png) repeat;
}

.solution-pattern-layer {
  background: url(../moron/images/background/pattern-2.png);
}

/***

====================================================================
	Solution Section
====================================================================

***/

.solution-section {
  position: relative;
  padding: 110px 0px 120px;
  background-color: #222222;
}

.solution-section .pattern-layer {
  position: absolute;
  right: 0px;
  bottom: 0px;
  width: 100%;
  height: 605px;
  background-repeat: no-repeat;
  background-position: right bottom;
}

.solution-section .owl-nav {
  display: none;
}

.solution-section .owl-dots {
  position: relative;
  text-align: center;
  margin-top: 20px;
}

.solution-section .owl-dots .owl-dot {
  position: relative;
  width: 10px;
  height: 10px;
  margin: 0px 5px;
  display: inline-block;
  background-color: #111111;
  transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
}

.solution-section .owl-dots .owl-dot.active,
.solution-section .owl-dots .owl-dot:hover {
  width: 30px;
  background-color: var(--bg-theme-color1);
}

.solution-block {
  position: relative;
  margin-bottom: 30px;
}

.solution-block .inner-box {
  position: relative;
  overflow: hidden;
  padding: 40px 30px 40px 30px;
  background-color: #111111;
  transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
}

.solution-block .inner-box:before {
  position: absolute;
  content: "";
  left: 0px;
  top: 0px;
  width: 30%;
  height: 100%;
  opacity: 0;
  background-color: #ffffff;
  transition: all 600ms ease;
  -webkit-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
  -moz-transition: all 600ms ease;
}

.solution-block .inner-box:hover::before {
  width: 100%;
  opacity: 1;
}

.solution-block .inner-box .icon-box {
  position: relative;
  font-size: 70px;
  color: var(--bg-theme-color1);
  line-height: 1em;
  margin-bottom: 25px;
  display: inline-block;
  transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
}

.solution-block .inner-box:hover .icon-box {
  color: #2a2a2a;
  -webkit-transform: scale(-1) rotate(180deg);
  -moz-transform: scale(-1) rotate(180deg);
  -ms-transform: scale(-1) rotate(180deg);
  -o-transform: scale(-1) rotate(180deg);
  transform: scale(-1) rotate(180deg);
}

.solution-block .inner-box h3 {
  position: relative;
  line-height: 1.2em;
  font-family: "Conv_AGENCYR";
  text-transform: uppercase;
}

.solution-block .inner-box h3 a {
  position: relative;
  color: #ffffff;
  transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
}

.solution-block .inner-box:hover h3 a {
  color: var(--bg-theme-color1);
}

.solution-block .inner-box .text {
  position: relative;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.6em;
  margin-top: 18px;
  transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
}

.solution-block .inner-box:hover .text {
  color: #555555;
}

.solution-block .inner-box .side-icon {
  position: absolute;
  right: 0px;
  bottom: 0px;
  opacity: 0.05;
  font-size: 100px;
  color: #ffffff;
  line-height: 1em;
  transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
}

.solution-block .inner-box .solution-pattern-layer {
  position: absolute;
  right: -10px;
  top: 0px;
  width: 155px;
  height: 144px;
  transform: translate(80px, -80px);
  background-repeat: no-repeat;
  transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
}

.solution-block .inner-box:hover {
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
}

.solution-block .inner-box:hover .solution-pattern-layer {
  transform: translate(0px, 0px);
  -webkit-transition-delay: 300ms;
  -moz-transition-delay: 300ms;
  -ms-transition-delay: 300ms;
  -o-transition-delay: 300ms;
  transition-delay: 300ms;
}

.solution-block.style-two {
  margin-bottom: 60px;
}

.solution-block.style-two .inner-box {
  margin-right: 40px;
  overflow: visible;
  padding: 40px 40px;
}

@media screen and (max-width: 1080px) {
  .solution-block.style-two .inner-box {
    height: 500px;
  }
}

.solution-block.style-two .inner-box .solution-pattern-layer-two {
  position: absolute;
  top: 20px;
  right: -25px;
  bottom: -25px;
  width: 330px;
  height: 370px;
  z-index: -1;
  background-repeat: no-repeat;
}

/***

====================================================================
	Success Section
====================================================================

***/
.services-section .sec-title h2 span {
  color: var(--bg-theme-color1);
}

.services-section .btn-style-five {
  background-color: var(--bg-theme-color1);
}
.services-section .btn-style-five {
  position: relative;
  font-size: 16px;
  line-height: 30px;
  color: #111111;
  font-weight: 700;
  border-radius: 0px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 13px 40px 18px;
  background-color: var(--bg-theme-color1);
  text-transform: uppercase;
  font-family: "Conv_AGENCYR";
}

.services-section .theme-btn {
  display: inline-block;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.services-section .btn-style-five:before {
  position: absolute;
  content: "";
  right: -10px;
  bottom: -10px;
  left: 10px;
  top: 10px;
  z-index: -1;
  opacity: 1;
  background-color: #e8e8e8;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  border-radius: 0px;
}

.services-section .btn-style-five:after {
  position: absolute;
  content: "";
  left: 0px;
  bottom: 5px;
  right: 0px;
  height: 3px;
  background-color: #222222;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.services-section a {
  text-decoration: none;
  cursor: pointer;
  color: #ffb32f;
}

/* Btn Style Five */

.btn-style-five {
  position: relative;
  font-size: 16px;
  line-height: 30px;
  color: #111111;
  font-weight: 700;
  border-radius: 0px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 13px 40px 18px;
  background-color: var(--bg-theme-color1);
  text-transform: uppercase;
  font-family: "Conv_AGENCYR";
}

.btn-style-five:before {
  position: absolute;
  content: "";
  right: -10px;
  bottom: -10px;
  left: 10px;
  top: 10px;
  z-index: -1;
  opacity: 1;
  background-color: #e8e8e8;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  border-radius: 0px;
}

.btn-style-five:after {
  position: absolute;
  content: "";
  left: 0px;
  bottom: 5px;
  right: 0px;
  height: 3px;
  background-color: #222222;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}

.btn-style-five:hover::after {
  background-color: #ffffff;
}

.btn-style-five .txt {
  position: relative;
  z-index: 1;
}

.btn-style-five:hover {
  color: #ffffff;
  background-color: #222222;
}

.btn-style-five:hover::before {
  opacity: 1;
  background-color: var(--bg-theme-color1);
}

.circular-image {
  width: 500px;
  height: 500px;
  border-radius: 50%;
  overflow: hidden;
  object-fit: cover;
}

/***

====================================================================
  Services Page Section
====================================================================

***/

.services-page-section {
  position: relative;
  padding: 100px 0px 60px;
}

.auto-container {
  position: static;
  max-width: 1200px;
  padding: 0px 15px;
  margin: 0 auto;
}

/***

====================================================================
  MORON SECTIONS
====================================================================

***/

.solution-block.style-two .inner-box .solution-pattern-layer-two {
  position: absolute;
  top: 20px;
  right: -25px;
  bottom: -25px;
  width: 330px;
  height: 370px;
  z-index: -1;
  background-repeat: no-repeat;
}

.sec-title {
  position: relative;
  margin-bottom: 70px;
}

.sec-title h2 {
  position: relative;
  color: #000000;
  font-weight: 700;
  line-height: 1.2em;
  margin-top: 15px;
  text-transform: uppercase;
  font-family: "Conv_AGENCYR";
}

.sec-title h2 span {
  color: #ffaa17;
}

.sec-title .text {
  position: relative;
  color: #555555;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6em;
  margin-top: 20px;
}

.sec-title.light h2 {
  color: #ffffff;
}

.sec-title.light .text {
  color: #bbbbbb;
}

.sec-title.centered {
  text-align: center !important;
}

.cta-section {
  position: relative;
  padding: 130px 0px 130px;
  background-attachment: fixed;
  background-size: cover;
}

.cta-section:before {
  position: absolute;
  content: "";
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  background-color: rgba(255, 170, 23, 0.9);
}

.cta-section .icon {
  position: relative;
  line-height: 1em;
  font-size: 90px;
  color: #ffffff;
  text-align: center;
  margin-bottom: 30px;
}

.cta-section h2 {
  position: relative;
  color: #222222;
  font-size: 62px;
  line-height: 1.2em;
  text-align: center;
  font-weight: 700;
  margin-bottom: 40px;
  font-family: "Conv_AGENCYR";
}

.cta-section h2 span {
  color: #ffffff;
}

.cta-section .btn-box {
  position: relative;
  z-index: 1;
}

/* Btn Style Four */

.btn-style-four {
  position: relative;
  font-size: 16px;
  line-height: 30px;
  color: #ffffff;
  font-weight: 700;
  margin-left: 7px;
  border-radius: 0px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 13px 50px 18px;
  background-color: #222222;
  text-transform: uppercase;
  font-family: "Conv_AGENCYR";
}

.btn-style-four:before {
  position: absolute;
  content: "";
  right: -10px;
  bottom: -10px;
  left: 10px;
  top: 10px;
  z-index: -2;
  opacity: 1;
  opacity: 0.15;
  background-color: #000000;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  border-radius: 0px;
}

.btn-style-four:after {
  position: absolute;
  content: "";
  left: 0px;
  bottom: 4px;
  right: 0px;
  height: 4px;
  background-color: #ffaa17;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}

.btn-style-four .txt {
  position: relative;
  z-index: 2;
}

.btn-style-four:hover {
  color: #000000;
  background-color: #ffffff;
}

.btn-style-four:hover::after {
  background-color: #111111;
}

/***

====================================================================
  Solution Section Three
====================================================================

***/

.solution-section-three {
  position: relative;
  padding: 60px 0px 60px;
}

.solution-section-three .top-divider {
  position: relative;
  width: 2px;
  height: 70px;
  left: 50%;
  margin-left: -1px;
  margin-bottom: 70px;
  background-color: #555555;
}

.solution-section-three .top-divider:before {
  position: absolute;
  content: "";
  left: -4px;
  bottom: -6px;
  width: 10px;
  height: 10px;
  background: #ffaa17;
  transform: rotate(-45deg);
}

/* Bottom Divider */

.solution-section-three .bottom-divider {
  position: relative;
  width: 2px;
  height: 70px;
  left: 50%;
  margin-top: 40px;
  margin-left: -1px;
  background-color: #555555;
}

.solution-section-three .bottom-divider:before {
  position: absolute;
  content: "";
  left: -4px;
  top: -6px;
  width: 10px;
  height: 10px;
  background: #ffaa17;
  transform: rotate(-45deg);
}

.solution-section-three .inner-container {
  position: relative;
}

.solution-section-three .inner-container:before {
  position: absolute;
  content: "";
  left: 0px;
  bottom: 170px;
  height: 1px;
  width: 100%;
  background-color: #dddddd;
}

.solution-block-two {
  position: relative;
  margin-bottom: 30px;
}

.solution-block-two .inner-box {
  position: relative;
  padding: 45px 35px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 1080px) {
  .solution-block-two .inner-box {
    height: 450px;
  }
}

@media screen and (max-width: 1000px) {
  .solution-block-two .inner-box {
    height: auto;
  }
}

.solution-block-two .block-inner {
  position: relative;
}

.solution-block-two .inner-box .color-layer-one {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 50%;
  height: 0px;
  background-color: #222222;
  transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  -webkit-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
}

.solution-block-two .inner-box .color-layer-two {
  position: absolute;
  right: 0px;
  bottom: 0px;
  width: 50%;
  height: 0px;
  background-color: #222222;
  transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  -webkit-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
}

.solution-block-two .block-inner:hover .color-layer-one,
.solution-block-two .block-inner:hover .color-layer-two {
  height: 100%;
}

.solution-block-two .inner-box .side-icon {
  position: absolute;
  right: 10px;
  bottom: 10px;
  opacity: 0.1;
  color: #ffaa17;
  font-size: 100px;
  line-height: 1em;
  transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  -webkit-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
}

.solution-block-two .inner-box h3 {
  position: relative;
  line-height: 1.3em;
  font-weight: 700;
  font-family: "Conv_AGENCYR";
}

.solution-block-two .inner-box h3 a {
  position: relative;
  color: #222222;
  transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  -webkit-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
}

.solution-block-two .inner-box .text {
  position: relative;
  color: #555555;
  font-size: 16px;
  line-height: 1.6em;
  margin-top: 18px;
  margin-bottom: 18px;
  transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  -webkit-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
}

.solution-block-two .inner-box .read-more {
  position: relative;
  color: #ffaa17;
  font-size: 18px;
  font-weight: 700;
  font-family: "Conv_AGENCYR";
  transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  -webkit-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
}

.solution-block-two .inner-box .read-more .arrow {
  position: relative;
  font-size: 16px;
  margin-left: 5px;
}

.solution-block-two .block-inner:hover .text,
.solution-block-two .block-inner:hover h3 a,
.solution-block-two .block-inner:hover .side-icon {
  color: #ffffff;
}

.solution-block-two .lower-box {
  position: relative;
  padding-top: 50px;
}

.solution-block-two .lower-box .box {
  position: relative;
  width: 20px;
  height: 20px;
  margin: 0 auto;
  margin-bottom: 50px;
  background-color: #222222;
  transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  -webkit-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
}

.solution-block-two .block-inner:hover .lower-box .box {
  background-color: #eeeeee;
}

.solution-block-two .lower-box .icon-box {
  position: relative;
  width: 80px;
  height: 80px;
  color: #000000;
  margin: 0 auto;
  font-size: 46px;
  line-height: 80px;
  text-align: center;
  background-color: #eeeeee;
  transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  -webkit-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
  border-radius: 20px 0px 20px 0px;
}

.solution-block-two .lower-box:before {
  position: absolute;
  content: "";
  left: 50%;
  top: 0px;
  width: 1px;
  height: 100%;
  background-color: #dddddd;
}

.solution-block-two .block-inner:hover .lower-box .icon-box {
  background-color: #ffaa17;
  border-radius: 0px 20px 0px 20px;
}

/***

====================================================================
  Quote Section
====================================================================

***/

.quote-section {
  position: relative;
  padding: 110px 0px 80px;
  background: url(../moron/images/background/pattern-13.png) repeat;
}

.quote-section .form-column {
  position: relative;
  margin-bottom: 30px;
}

.quote-section .form-column .inner-column {
  position: relative;
  padding: 35px 40px;
  border-radius: 4px;
  background-color: #ffffff;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
}

.quote-section .form-column h2 {
  position: relative;
  color: #222222;
  font-weight: 700;
  margin-bottom: 25px;
  text-transform: uppercase;
  font-family: "Conv_AGENCYR";
}

.quote-section .form-column h2 span {
  position: relative;
  color: #ffaa17;
}

.quote-section.style-two {
  padding-bottom: 180px;
  margin-bottom: -90px;
}

/* Default Form */

.default-form {
  position: relative;
  z-index: 1;
}

.default-form .form-group {
  position: relative;
  margin-bottom: 20px;
}

.ui-selectmenu-button.ui-button,
.default-form .form-group input[type="text"],
.default-form .form-group input[type="email"],
.default-form .form-group input[type="tel"],
.default-form .form-group input[type="url"],
.default-form .form-group textarea,
.default-form .form-group select {
  position: relative;
  display: block;
  width: 100%;
  font-size: 18px;
  line-height: 20px;
  color: #555555;
  font-weight: 400;
  padding: 14px 28px;
  z-index: 1;
  height: 60px;
  background-color: #eeeeee;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  transition: all 300ms ease;
}

.default-form .form-group input:focus,
.default-form .form-group select:focus,
.default-form .form-group textarea:focus {
  border-color: #fda700;
}

.default-form .form-group textarea {
  height: 120px;
  resize: none;
  border-radius: 0px;
}

.default-form .form-group input[type="submit"],
.default-form button {
  margin-top: 15px;
}

.default-form .form-group input[type="submit"]:hover,
.default-form button:hover {
}

.quote-section .content-column {
  position: relative;
}

.quote-section .content-column .sec-title {
  margin-bottom: 40px;
}

.quote-section .content-column .inner-column {
  position: relative;
  padding-left: 70px;
}

.quote-section .content-column .numbering-list {
  position: relative;
}

.quote-section .content-column .numbering-list li {
  position: relative;
  color: #555555;
  font-size: 16px;
  padding-left: 45px;
  line-height: 2.2em;
  margin-bottom: 35px;
}

.quote-section .content-column .numbering-list li strong {
  position: relative;
  color: #222222;
  font-size: 24px;
  font-weight: 700;
  display: block;
  font-family: "Conv_AGENCYR";
}

.quote-section .content-column .numbering-list li .number {
  position: absolute;
  left: 0px;
  top: 8px;
  color: #ffaa17;
  font-size: 30px;
  font-weight: 700;
  line-height: 1em;
  font-family: "Conv_AGENCYR";
}

.servicek-page-title {
  font-family: "Conv_AGENCYR";
  text-align: center;
}

/* Heading Styles  */
/* STYLE 6
   ----------------------------- */

/* === BASE HEADING === */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400;1,500;1,600&family=Raleway:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500;1,600&display=swap");

.custom_style_title {
  font-family: "Conv_AGENCYR";
}

.heading_style {
  border: 1px solid;
  padding: 100px 0;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 50px;
}

.heading_style h1 {
  position: relative;
  padding: 0;
  margin: 0;
  font-family: "Raleway", sans-serif;
  font-weight: 300;
  font-size: 40px;
  color: #080808;
  -webkit-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

.heading_style h1 span {
  display: block;
  font-size: 0.5em;
  line-height: 1.3;
}
.heading_style h1 em {
  font-style: normal;
  font-weight: 600;
}

.heading_style .six h1 {
  text-align: center;
  color: #222;
  font-size: 30px;
  font-weight: 400;
  text-transform: uppercase;
  word-spacing: 1px;
  letter-spacing: 2px;
  color: var(--theme-color2);
}
.heading_style .six h1 span {
  line-height: 2em;
  padding-bottom: 15px;
  text-transform: none;
  font-size: 0.7em;
  font-weight: bold;
  font-style: italic;
  font-family: "Playfair Display", "Bookman", serif;
  color: #999;
  letter-spacing: -0.005em;
  word-spacing: 1px;
  letter-spacing: none;
}
.heading_style .six h1:after,
.six h1:before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 45px;
  height: 4px;
  content: "";
  right: 45px;
  margin: auto;
  background-color: #ccc;
}
.heading_style .six h1:before {
  background-color: #d78b8b;
  left: 45px;
  width: 90px;
}

.special_border {
  --offset: 10px;
  --border-size: 2px;
  position: relative;
  padding: 1.5em 3em;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0;
  background: transparent;
  color: #d78b8b;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  outline: none;
  cursor: pointer;
  font-weight: bold;
  border-radius: 0;
  box-shadow: inset 0 0 0 var(--border-size) currentcolor;
  transition: background 0.8s ease;
  background-color: darkslategray;
}
.special_border:hover {
  /*background: rgba(100, 0, 0, 0.03);*/
  background: var(--theme-color-dark);
}
.special_border__horizontal,
.special_border__vertical {
  position: absolute;
  top: var(--horizontal-offset, 0);
  right: var(--vertical-offset, 0);
  bottom: var(--horizontal-offset, 0);
  left: var(--vertical-offset, 0);
  transition: transform 0.8s ease;
  will-change: transform;
}
.special_border__horizontal::before,
.special_border__vertical::before {
  content: "";
  position: absolute;
  border: inherit;
}
.special_border__horizontal {
  --vertical-offset: calc(var(--offset) * -1);
  border-top: var(--border-size) solid currentcolor;
  border-bottom: var(--border-size) solid currentcolor;
}
.special_border__horizontal::before {
  top: calc(var(--vertical-offset) - var(--border-size));
  bottom: calc(var(--vertical-offset) - var(--border-size));
  left: calc(var(--vertical-offset) * -1);
  right: calc(var(--vertical-offset) * -1);
}
.special_border:hover .special_border__horizontal {
  transform: scaleX(0);
}
.special_border__vertical {
  --horizontal-offset: calc(var(--offset) * -1);
  border-left: var(--border-size) solid currentcolor;
  border-right: var(--border-size) solid currentcolor;
}
.special_border__vertical::before {
  top: calc(var(--horizontal-offset) * -1);
  bottom: calc(var(--horizontal-offset) * -1);
  left: calc(var(--horizontal-offset) - var(--border-size));
  right: calc(var(--horizontal-offset) - var(--border-size));
}
.special_border:hover .special_border__vertical {
  transform: scaleY(0);
}

/* Service Details Section  */

.service-list li {
  position: relative;
  color: #222222;
  font-size: 18px;
  padding-left: 35px;
  margin-bottom: 10px;
  font-family: "Conv_AGENCYR";
}

.service-list li:before {
  position: absolute;
  content: "\f13e";
  left: 0px;
  top: 3px;
  font-size: 16px;
  color: #111111;
  line-height: 1em;
  font-family: "Flaticon";
}







