

/*
=================================
|***    Table of contents:   ***|
=================================

1. General styles
2. Typography
3. Helpers
4. Preloader
5. Go up button
6. Header and navigation
7. Hero Section
8. About us
9. Services
10. Fun facts
11. Projects
12. Pricing
13. Testimonial
14. CTA
15. Team
16. Video Banner
17. Shop
18. Marquee
19. Blog
20. Footer

Main Style file-> assets/css/main.css 
*/


.apply-btn {
    background-color: #410841;
    font-weight: 400;
    color: var(--white);
    transition: all 0.4s ease-in-out;
    text-transform: capitalize;
    position: relative;
    overflow: hidden;
    font-size: 14px;
    padding: 15px;
    border-radius: 0;
    z-index: 9;
    display: inline-block;
    line-height: 1;
    border-radius: 5px;
    }
    .apply-btn:hover{
        background-color: #ffbc09;
    }


/*
* service styles
*/
.service-one {
  background-color: var(--thm-gray-color);
  background-image: url(../images/background/service-bg-1-1.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  margin-top: -215px;
  padding-top: 355px;
  padding-bottom: 90px;
}

.service-one__single {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -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: #fff;
  position: relative;
  text-align: center;
  padding: 74px 0;
  padding-left: 55px;
  padding-right: 55px;
  margin-bottom: 60px;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}

.service-one__single::before {
  background-color: var(--thm-primary-color);
}

.service-one__single:hover {
  -webkit-box-shadow: 0px 50px 120px 0px rgba(26, 46, 85, 0.2);
          box-shadow: 0px 50px 120px 0px rgba(26, 46, 85, 0.2);
}

.service-one__single:hover .service-one__link {
  opacity: 1;
  -webkit-transform: perspective(60px) translate(-50%, 50%) translatez(0px);
          transform: perspective(60px) translate(-50%, 50%) translatez(0px);
}

.service-one__single:hover .service-one__title {
  color: #fff;
}

.service-one__single:hover .service-one__icon img {
  -webkit-transform-origin: top center;
          transform-origin: top center;
}

.service-one__single:hover .service-one__icon img.normal-icon {
  -webkit-transform: translate(-50%, -50%) scale(1, 0);
          transform: translate(-50%, -50%) scale(1, 0);
}

.service-one__single:hover .service-one__icon img.hvr-icon {
  -webkit-transform: translate(-50%, -50%) scale(1, 1);
          transform: translate(-50%, -50%) scale(1, 1);
}

.service-one__icon {
  width: 70px;
  height: 70px;
  position: relative;
}

.service-one__icon > img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: -webkit-transform .4s ease;
  transition: -webkit-transform .4s ease;
  transition: transform .4s ease;
  transition: transform .4s ease, -webkit-transform .4s ease;
  -webkit-transform-origin: bottom center;
          transform-origin: bottom center;
}

.service-one__icon > img.normal-icon {
  -webkit-transform: translate(-50%, -50%) scale(1, 1);
          transform: translate(-50%, -50%) scale(1, 1);
}

.service-one__icon > img.hvr-icon {
  -webkit-transform: translate(-50%, -50%) scale(1, 0);
          transform: translate(-50%, -50%) scale(1, 0);
}

.service-one__title {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  color: var(--thm-black-color);
  margin-top: 20px;
  margin-bottom: 25px;
}

.service-one__title a {
  color: inherit;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}

.service-one__title a:hover {
  color: var(--thm-base-color);
}

.service-one__text {
  margin: 0;
}

.service-one__link {
  width: 60px;
  height: 60px;
  background-color: var(--thm-base-color);
  text-align: center;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  -webkit-transition: opacity .4s ease, background .4s ease, -webkit-transform .4s ease;
  transition: opacity .4s ease, background .4s ease, -webkit-transform .4s ease;
  transition: opacity .4s ease, transform .4s ease, background .4s ease;
  transition: opacity .4s ease, transform .4s ease, background .4s ease, -webkit-transform .4s ease;
  position: absolute;
  bottom: 0;
  left: 50%;
  opacity: 0;
  -webkit-transform: perspective(60px) translate(-50%, 50%) translatez(10px);
          transform: perspective(60px) translate(-50%, 50%) translatez(10px);
}

.service-one__link:hover {
  color: #fff;
  background-color: var(--thm-black-color);
}

.service-one__link i {
  color: inherit;
  font-size: 30px;
}

.service-one__home-two {
  margin-top: 0;
  padding-top: 110px;
  padding-bottom: 210px;
}

.service-one__home-three {
  padding: 0;
  background-image: none;
  background-color: transparent;
  position: relative;
  z-index: 100;
  margin-top: -115px;
}

.service-one__home-three .inner-container {
  -webkit-box-shadow: 0px 50px 120px 0px rgba(26, 46, 85, 0.1);
          box-shadow: 0px 50px 120px 0px rgba(26, 46, 85, 0.1);
}

.service-one__home-three .service-one__single {
  margin-bottom: 0;
}

.service-three {
  padding-top: 150px;
  padding-bottom: 90px;
  background-color: #f5f6fa;
}

.service-three__single {
  padding-left: 25px;
  padding-top: 40px;
  padding-bottom: 40px;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
}

.service-three__single::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0px;
  right: -25px;
  bottom: 0;
  background-color: #fff;
  -webkit-box-shadow: 0px 20px 70px 0px rgba(26, 46, 85, 0.15);
          box-shadow: 0px 20px 70px 0px rgba(26, 46, 85, 0.15);
  -webkit-transform: scale(1, 0);
          transform: scale(1, 0);
  -webkit-transform-origin: top center;
          transform-origin: top center;
  -webkit-transition: -webkit-transform .4s ease;
  transition: -webkit-transform .4s ease;
  transition: transform .4s ease;
  transition: transform .4s ease, -webkit-transform .4s ease;
}

.service-three__single:hover:before {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  -webkit-transform-origin: bottom center;
          transform-origin: bottom center;
}

.service-three__icon {
  position: relative;
}

.service-three__icon img {
  max-width: 53px;
}

.service-three__content {
  position: relative;
  padding-left: 30px;
}

.service-three__title {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  margin-top: -8px;
  margin-bottom: 15px;
  color: var(--thm-black-color);
}

.service-three__title a {
  color: inherit;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}

.service-three__title a:hover {
  color: var(--thm-base-color);
}

.service-three__text {
  margin: 0;
  font-size: 15px;
  line-height: 26px;
  color: var(--thm-text-color);
}

.service-three__link {
  display: inline-block;
  vertical-align: middle;
  color: var(--thm-base-color);
  font-size: 15px;
  font-family: var(--heading-font);
  margin-top: 15px;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}

.service-three__link:hover {
  color: var(--thm-primary-color);
}

.services-details .testimonials-one {
  padding-top: 140px;
}

.services-details .testimonials-one .container hr.style-one {
  display: none;
}

.services-details__content .about-two__tab-title {
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
}

.services-details__content .about-two__tab-title-item {
  width: 100%;
}

.services-details__content .about-two__tab-title-item .about-two__tab-title-link {
  display: inline-block;
}

.services-details__content {
  background-color: #f0f1f5;
  padding-top: 150px;
  padding-bottom: 150px;
}

.services-details__content .block-title {
  margin-bottom: 0;
}

.services-details__content-info {
  background-color: #fff;
  padding: 0 50px;
  padding-top: 50px;
  padding-bottom: 45px;
  -webkit-box-shadow: 0px 50px 120px 0px rgba(26, 46, 85, 0.1);
          box-shadow: 0px 50px 120px 0px rgba(26, 46, 85, 0.1);
}

.services-details__content-info-title {
  margin: 0;
  color: var(--thm-black-color);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
}

.services-details__content-info-text {
  margin: 0;
  color: var(--thm-text-color);
  font-size: 15px;
  line-height: 26px;
  margin-bottom: 10px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e5e5e5;
}

.services-details__sub-title {
  margin: 0;
  color: var(--thm-black-color);
  font-size: 24px;
  font-weight: 600;
}

.services-details__content-text {
  margin: 0;
  color: #848484;
  font-size: 15px;
  line-height: 26px;
}

.service-details__client-block {
  background-color: #fff;
  -webkit-box-shadow: 0px 50px 120px 0px rgba(26, 46, 85, 0.1);
          box-shadow: 0px 50px 120px 0px rgba(26, 46, 85, 0.1);
}

.service-details__client-block [class*=col-] {
  padding: 17px;
}

.service-details__client-block [class*=col-] + [class*=col-] {
  border-left: 1px solid #e1e2e6;
}

.service-details__client-block [class*=col-] img {
  opacity: 0.2;
}

.service-details__client-block [class*=col-]:nth-child(2),
.service-details__client-block [class*=col-]:nth-child(3),
.service-details__client-block [class*=col-]:nth-child(1) {
  border-bottom: 1px solid #e1e2e6;
}

.service-details__client-block [class*=col-]:last-child {
  border-right: 1px solid #e1e2e6;
}

.services-details__image {
  position: relative;
}

.services-details__image::before {
  content: '';
  width: 138px;
  height: 403px;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: translateX(40%) translateY(-20%);
          transform: translateX(40%) translateY(-20%);
  background-repeat: repeat;
  background-position: 0 0;
  opacity: 0.2;
}
  /*
*  about styles
*/
.about-one,
.about-two {
  padding-top: 140px;
  padding-bottom: 150px;
}

.about-one .block-title,
.about-two .block-title {
  margin-bottom: 40px;
}

.about-one__content {
  padding-right: 32px;
}

.about-one__tab-title {
  border: none;
  margin-left: -5px;
  margin-right: -5px;
  margin-bottom: 30px;
}

.about-one__tab-title .about-one__tab-title-item {
  margin: 0;
  padding-left: 5px;
  padding-right: 5px;
}

.about-one__tab-title .about-one__tab-title-link {
  border: 0;
  border-style: solid;
  border-width: 1px;
  border-color: #e5e5e5;
  border-radius: 0;
  padding: 16px 38px;
  font-weight: 500;
  font-size: 15px;
  font-family: var(--heading-font);
  color: var(--thm-black-color);
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}

.about-one__tab-title .about-one__tab-title-link:hover, .about-one__tab-title .about-one__tab-title-link.active {
  color: var(--thm-base-color);
  border-color: var(--thm-base-color);
}

.about-two__text,
.about-one__text {
  margin: 0;
  font-size: 15px;
  line-height: 26px;
  color: var(--thm-text-color);
}

.about-two__list,
.about-one__list {
  margin: 0;
  margin-top: 20px;
  margin-bottom: 20px;
}

.about-two__list-item,
.about-one__list-item {
  color: var(--thm-text-color);
  font-size: 15px;
  position: relative;
  padding-left: 20px;
}

.about-two__list-item + .about-two__list-item,
.about-one__list-item + .about-two__list-item, .about-two__list-item +
.about-one__list-item,
.about-one__list-item +
.about-one__list-item {
  margin-top: 5px;
}

.about-two__list-item:before,
.about-one__list-item:before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #dcdde0;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.about-two .block-title__title + .block-title__text {
  margin-top: 40px;
}

.about-two__content {
  padding-right: 37px;
}

.about-two__tab-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.about-two__tab-title {
  width: 170px;
}

.about-two__tab-content {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% - 170px);
          flex: 0 0 calc(100% - 170px);
  border-left: 1px solid #e5e5e5;
  padding-left: 50px;
}

.about-two__tab-title {
  border: none;
  margin: 0;
}

.about-two__tab-title .about-two__tab-title-item {
  margin: 0;
  padding-left: 0px;
  padding-right: 0px;
  width: 100%;
}

.about-two__tab-title .about-two__tab-title-link {
  border: 0;
  border-radius: 0;
  font-weight: 500;
  font-size: 15px;
  font-family: var(--heading-font);
  color: var(--thm-black-color);
  padding-left: 0;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
  position: relative;
}

.about-two__tab-title .about-two__tab-title-link:before {
  content: '';
  width: 20px;
  height: 2px;
  background-color:#410841;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%) scale(1, 0);
          transform: translateY(-50%) scale(1, 0);
  -webkit-transition: -webkit-transform .4s ease;
  transition: -webkit-transform .4s ease;
  transition: transform .4s ease;
  transition: transform .4s ease, -webkit-transform .4s ease;
}

.about-two__tab-title .about-two__tab-title-link:hover, .about-two__tab-title .about-two__tab-title-link.active {
  color:#410841;
  border-color: #ffbc09;
  padding-left: 35px;
}

.about-two__tab-title .about-two__tab-title-link:hover::before, .about-two__tab-title .about-two__tab-title-link.active::before {
  -webkit-transform: translateY(-50%) scale(1, 1);
          transform: translateY(-50%) scale(1, 1);
}

.about-three {
  background-color: #f0f1f5;
  background-image: url(../images/resources/about-3-map.png);
  background-position: top right;
  background-repeat: no-repeat;
}

.about-three .block-title__title + .block-title__text {
  margin-top: 25px;
}

.about-three .block-title {
  margin-bottom: 60px;
}

.about-three__img {
  float: right;
}

.about-three__content {
  width: 100%;
  max-width: 695px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1550px) {
  .about-three__content {
    padding-left: 80px;
    padding-right: 70px;
  }
}

.about-three__single {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.about-three__single + .about-three__single {
  margin-top: 40px;
}

.about-three__icon {
  width: 100px;
}

.about-three__title {
  font-size: 20px;
  font-weight: 600;
  color: var(--thm-black-color);
  margin: 0;
  margin-bottom: 15px;
  margin-top: -5px;
}

.about-three__para {
  font-size: 15px;
  line-height: 26px;
  color: #848484;
  margin: 0;
}

.about-four {
  padding-top: 180px;
  padding-bottom: 190px;
}

.about-four .about-one__list {
  margin-bottom: 44px;
}

.about-four .block-title {
  margin-bottom: 35px;
}

.about-four__content {
  padding-left: 37px;
}

.about-four__image {
  position: relative;
  display: inline-block;
  margin-left: 40px;
}

.about-four__image > img {
  max-width: 100%;
  -webkit-box-shadow: 0px 20px 40px 0px rgba(14, 40, 41, 0.25);
          box-shadow: 0px 20px 40px 0px rgba(14, 40, 41, 0.25);
}

.about-four__image-content {
  position: absolute;
  right: -24.5%;
  top: 30%;
  background-color: var(--thm-primary-color);
  text-align: center;
  z-index: 100;
  font-size: 24px;
  line-height: 30px;
  font-weight: 500;
  color: #fff;
  font-family: var(--heading-font);
  padding: 49px 35px;
}

.about-four__image-content span {
  color: var(--thm-base-color);
  font-size: 50px;
  font-weight: 700;
  line-height: 1em;
  display: inline-block;
  margin-top: -8px;
}

.about-four__about-page {
  background-color: #F5F6FA;
}

  