@charset "UTF-8";
/* ========= [ * page-home_1 ]  =========*/
/* --------------- navbar st1 --------------- */
.tc-navbar-st1 {
  position: relative;
  padding: 30px 4vw;
}
.tc-navbar-st1 .navbar-nav .navbar-brand .logo {
  height: 30px;
}
.tc-navbar-st1 .navbar-nav .nav-link {
  font-size: 16px;
  margin: 0 15px;
  font-weight: 500;
  position: relative;
}
.tc-navbar-st1 .navbar-nav .nav-link::before {
  position: absolute;
  content: "";
  font-family: "Font Awesome 6 pro";
  left: 0;
  top: 50%;
  font-size: 10px;
  -webkit-transform: translate(-200%, -50%);
          transform: translate(-200%, -50%);
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.tc-navbar-st1 .navbar-nav .nav-link:hover, .tc-navbar-st1 .navbar-nav .nav-link.active {
  color: var(--cr-orange1);
}
.tc-navbar-st1 .navbar-nav .nav-link:hover::before, .tc-navbar-st1 .navbar-nav .nav-link.active::before {
  opacity: 1;
  -webkit-transform: translate(-100%, -50%);
          transform: translate(-100%, -50%);
}
.tc-navbar-st1 .chat-btn {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  border-radius: 50px;
  padding: 5px 5px 5px 20px;
  overflow: hidden;
}
.tc-navbar-st1 .chat-btn::after {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  width: 0;
  height: 100%;
  background-image: var(--ln-orange1);
  border-radius: 50px;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.tc-navbar-st1 .chat-btn .txt {
  position: relative;
  z-index: 5;
}
.tc-navbar-st1 .chat-btn .arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--cr-orange1);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-margin-start: 10px;
          margin-inline-start: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: var(--cr-orange1);
  font-size: 12px;
  position: relative;
  z-index: 5;
}
.tc-navbar-st1 .chat-btn:hover::after {
  opacity: 1;
  width: 100%;
}
.tc-navbar-st1 .chat-btn:hover * {
  color: #fff;
}

/* --------------- side_menu_style4 --------------- */
.side_menu_style4 {
  position: fixed;
  z-index: 9999;
  right: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  min-height: -webkit-max-content;
  min-height: -moz-max-content;
  min-height: max-content;
  background-color: #f9f9f9;
  background-image: linear-gradient(126deg, #08B25933 22.58%, #F3E51A33 73.54%);
  background-size: cover;
  background-repeat: repeat;
  padding: 0 4vw;
  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-clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
          clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.side_menu_style4.show {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
.side_menu_style4.show .side_shape {
  -webkit-transform: rotate(0) scale(1);
          transform: rotate(0) scale(1);
  opacity: 1;
}
.side_menu_style4.show .side_shape2 {
  -webkit-transform: rotate(180deg) scale(1);
          transform: rotate(180deg) scale(1);
  opacity: 1;
}
.side_menu_style4.show .main_links {
  text-align: center;
  -webkit-transform: scaleX(1) scaleY(1);
          transform: scaleX(1) scaleY(1);
  opacity: 1;
  -webkit-filter: blur(0);
          filter: blur(0);
}
.side_menu_style4 .links_group {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  display: block;
}
.side_menu_style4 .main_links {
  text-align: center;
  -webkit-transform: scaleX(1.4) scaleY(1.8);
          transform: scaleX(1.4) scaleY(1.8);
  -webkit-filter: blur(2px);
          filter: blur(2px);
  opacity: 0;
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
.side_menu_style4 .main_links .main_link {
  font-size: calc(2vw + 10px);
  font-weight: bolder;
  margin: 5px 0;
  text-transform: uppercase;
  -webkit-text-stroke: 1px var(--cr-orange1);
  color: transparent;
  text-shadow: 2px 2px 0 var(--cr-orange1);
}
.side_menu_style4 .main_links .main_link:hover {
  color: var(--cr-orange1);
  text-shadow: 2px 2px 15px var(--cr-orange1);
}
.side_menu_style4 .social_links a {
  font-size: 24px;
  -webkit-margin-end: 15px;
          margin-inline-end: 15px;
  border-bottom: 3px solid transparent;
}
.side_menu_style4 .social_links a:hover {
  border-color: #000;
}
.side_menu_style4 .clss {
  font-size: 30px;
  position: absolute;
  top: 50px;
  right: 5vw;
  cursor: pointer;
}

.side_menu4_overlay {
  position: absolute;
  z-index: 90;
  right: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--cr-orange1);
  -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
          clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.side_menu4_overlay.show {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.side_menu4_overlay2 {
  position: absolute;
  z-index: 80;
  right: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--cr-orange1);
  -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
          clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}
.side_menu4_overlay2.show {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

/* --------------- header st1 --------------- */
.tc-header-st1 {
  position: relative;
  padding: 50px 0 100px;
}
.tc-header-st1 .social-links {
  position: absolute;
  left: 2vw;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.tc-header-st1 .social-links a {
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 10px 0;
  font-weight: bold;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.tc-header-st1 .social-links a:hover {
  color: var(--cr-orange1);
}
.tc-header-st1 .social-links .line {
  height: 90px;
  width: 1px;
  background-color: #000;
  margin: 10px 10px 0;
}
.tc-header-st1 .container {
  position: relative;
  z-index: 10;
}
.tc-header-st1 .info h1 {
  font-size: 82px;
  line-height: 1.1;
}
.tc-header-st1 .contact-card {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 20px;
  border: 1px solid #FF5F6D11;
  border-radius: 10px;
  margin-top: 50px;
  -webkit-margin-start: 50px;
          margin-inline-start: 50px;
}
.tc-header-st1 .contact-card .icon {
  -webkit-margin-end: 20px;
          margin-inline-end: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.tc-header-st1 .contact-card small {
  display: block;
  font-size: 16px;
  margin-bottom: 5px;
}
.tc-header-st1 .contact-card .lnk {
  font-size: 18px;
  font-weight: bold;
}
.tc-header-st1 .contact-card .lnk:hover {
  color: var(--cr-orange1);
}
.tc-header-st1 .bg-shap {
  position: absolute;
  bottom: 50px;
  left: 0;
  width: 100%;
  z-index: 1;
  max-height: unset;
  pointer-events: none;
}
.tc-header-st1 .line-circle {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  max-height: unset;
  pointer-events: none;
}
.tc-header-st1 .float-circle {
  position: absolute;
  top: 0;
  left: 40%;
  pointer-events: none;
  width: 150px;
  height: 150px;
  -webkit-animation-duration: 20s;
          animation-duration: 20s;
}
.tc-header-st1 .circle-3d {
  position: absolute;
  bottom: 20%;
  left: 35%;
  pointer-events: none;
  height: 100px;
  -webkit-animation-duration: 40s;
          animation-duration: 40s;
  animation-direction: reverse;
}

@media screen and (max-width: 991px) {
  .tc-header-st1 .info h1 {
    font-size: 55px;
  }
  .tc-header-st1 .social-links {
    display: none;
  }
}
/* --------------- service st1 --------------- */
.tc-service-st1 {
  position: relative;
}
.tc-service-st1 .services-cards {
  position: relative;
  background-color: #fff;
  border-radius: 30px;
  -webkit-box-shadow: 0 94px 94px 0 rgba(0, 0, 0, 0.03);
          box-shadow: 0 94px 94px 0 rgba(0, 0, 0, 0.03);
  padding-bottom: 50px;
}
.tc-service-st1 .services-cards .service-card {
  position: relative;
  text-align: center;
  padding: 50px;
}
.tc-service-st1 .services-cards .service-card .icon {
  height: 75px;
  width: 75px;
  margin: 0 auto 10px;
}
.tc-service-st1 .services-cards .service-card p {
  font-size: 16px;
  margin-bottom: 20px;
}
.tc-service-st1 .services-cards .service-card .title {
  font-size: 24px;
  margin-bottom: 20px;
}
.tc-service-st1 .services-cards .btm-text {
  position: relative;
  margin: 0 50px;
  text-align: center;
}
.tc-service-st1 .services-cards .btm-text::before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background-color: #9993;
}
.tc-service-st1 .services-cards .btm-text .text {
  font-size: 16px;
  padding: 10px 50px;
  background-color: #fff;
  position: relative;
  z-index: 10;
}

/* --------------- about st1 --------------- */
.tc-about-st1 {
  position: relative;
  padding: 120px 0;
}
.tc-about-st1 .container {
  position: relative;
  z-index: 20;
}
.tc-about-st1 .img {
  position: relative;
}
.tc-about-st1 .img .main-img {
  position: relative;
  z-index: 10;
}
.tc-about-st1 .img .sub-img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.tc-about-st1 .clients-cards {
  background-color: #fff;
  border-radius: 30px;
  -webkit-box-shadow: 0 94px 94px 0 rgba(0, 0, 0, 0.03);
          box-shadow: 0 94px 94px 0 rgba(0, 0, 0, 0.03);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 4vw;
  margin-top: 130px;
}
.tc-about-st1 .clients-cards img {
  height: 50px;
  width: 150px;
  -o-object-fit: contain;
     object-fit: contain;
}
.tc-about-st1 .marq-text {
  position: relative;
  overflow: hidden;
  margin-top: 250px;
}
.tc-about-st1 .marq-text .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
  position: relative;
}
.tc-about-st1 .marq-text .swiper-slide {
  width: -webkit-max-content !important;
  width: -moz-max-content !important;
  width: max-content !important;
}
.tc-about-st1 .marq-text h2 {
  font-size: 120px;
  white-space: nowrap;
}
.tc-about-st1 .line {
  position: absolute;
  left: 0;
  bottom: 300px;
  width: 100%;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
          clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  -webkit-transition: all 3s ease-in-out;
  transition: all 3s ease-in-out;
}
.tc-about-st1 .line.animated {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
.tc-about-st1 .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% + 600px);
  max-height: unset;
  top: -500px;
}

@media screen and (max-width: 991px) {
  .tc-about-st1 .clients-cards {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .tc-about-st1 .clients-cards img {
    margin: 10px;
  }
  .tc-about-st1 .marq-text h2 {
    font-size: 60px;
  }
}
/* --------------- video st1 --------------- */
.tc-video-st1 {
  position: relative;
}
.tc-video-st1 .video-card {
  position: relative;
}
.tc-video-st1 .video-card .bg {
  height: 700px;
  width: 100%;
  border-radius: 30px;
  -o-object-fit: cover;
     object-fit: cover;
}
.tc-video-st1 .video-card .float-cont {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 80px 4vw;
  z-index: 2;
}
.tc-video-st1 .video-card .float-cont .play-btn {
  width: 150px;
  height: 150px;
  background-image: var(--ln-orange1);
  border-radius: 50%;
  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;
  font-size: 30px;
  color: #fff;
}
.tc-video-st1 .video-card .float-cont .title {
  font-size: 52px;
  color: #fff;
  margin-top: 40px;
}

/* --------------- choose st1 --------------- */
.tc-choose-st1 {
  position: relative;
  padding: 120px 0;
  background-image: url(https://www.mrdigitalmedia.com/wp-content/uploads/2025/06/choose_bg-scaled.webp);
  background-size: cover;
  background-position: bottom;
}
.tc-choose-st1 .num-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
          clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  -webkit-transition: all 3s ease-in-out;
  transition: all 3s ease-in-out;
}
.tc-choose-st1 .num-line.animated {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
.tc-choose-st1 .choose-card {
  display: block;
  position: relative;
  margin-bottom: 40px;
}
.tc-choose-st1 .choose-card:hover .arrow {
  color: var(--cr-orange1);
}
.tc-choose-st1 .choose-card:hover .arrow::before {
  background-color: var(--cr-orange1);
}
.tc-choose-st1 .choose-card .icon {
  height: 90px;
  margin-bottom: 30px;
}
.tc-choose-st1 .choose-card .arrow {
  position: relative;
  margin-top: 40px;
  font-size: 15px;
  -webkit-padding-start: 32px;
          padding-inline-start: 32px;
  color: #ccc;
}
.tc-choose-st1 .choose-card .arrow::before {
  position: absolute;
  content: "";
  left: 0;
  top: calc(50% - 2px);
  width: 40px;
  height: 2px;
  background-color: #ccc;
}
.tc-choose-st1 .numbers {
  position: relative;
  background-color: #fff;
  border-radius: 30px;
  padding: 4vw;
  -webkit-box-shadow: 0 94px 94px 0 rgba(0, 0, 0, 0.03);
          box-shadow: 0 94px 94px 0 rgba(0, 0, 0, 0.03);
}
.tc-choose-st1 .numbers .num-card {
  position: relative;
  text-align: center;
  padding-top: 40px;
}
.tc-choose-st1 .numbers .num-card .shap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

@media screen and (max-width: 991px) {
  .tc-choose-st1 {
    padding-bottom: 0;
  }
  .tc-choose-st1 .numbers .num-card {
    margin: 25px 0;
  }
}
/* --------------- blog st1 --------------- */
.tc-case-st1 {
  position: relative;
  padding: 120px 0;
  background-image: url(../img/blog_bg.png);
  background-size: cover;
  background-position: top;
  overflow: hidden;
}
.tc-case-st1 .cases-slider {
  padding-bottom: 80px;
}
.tc-case-st1 .cases-slider .swiper-wrapper {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}
.tc-case-st1 .cases-slider .swiper-wrapper .swiper-slide:nth-of-type(even) .case-card .img {
  height: 520px;
}
.tc-case-st1 .case-card {
  position: relative;
  background-color: #fff;
  border-radius: 30px;
  overflow: hidden;
  -webkit-box-shadow: 0 94px 94px 0 rgba(0, 0, 0, 0.03);
          box-shadow: 0 94px 94px 0 rgba(0, 0, 0, 0.03);
}
.tc-case-st1 .case-card:hover .img .float-arrow {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.tc-case-st1 .case-card .img {
  display: block;
  position: relative;
  height: 370px;
  border-radius: 30px;
  overflow: hidden;
}
.tc-case-st1 .case-card .img .float-arrow {
  position: absolute;
  left: calc(50% - 50px);
  top: calc(50% - 50px);
  -webkit-transform: scale(0.7);
          transform: scale(0.7);
  width: 100px;
  height: 100px;
  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;
  border-radius: 50%;
  background-image: var(--ln-orange1);
  color: #fff;
  font-size: 30px;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.tc-case-st1 .case-card .info {
  padding: 30px;
}

/* --------------- faq st1 --------------- */
.tc-faq-st1 {
  position: relative;
  padding: 50px 0;
}
.tc-faq-st1 .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.tc-faq-st1 .accordion .accordion-item {
  margin-bottom: 20px;
  background-color: transparent;
  border: 1px solid #9994;
  border-radius: 0;
}
.tc-faq-st1 .accordion .accordion-item .accordion-button {
  font-size: 24px;
  padding: 20px 30px;
  color: #191919;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  background-color: transparent;
}
.tc-faq-st1 .accordion .accordion-item .accordion-button::after {
  background-size: 15px;
  margin-left: 0;
  margin-right: 10px;
}
.tc-faq-st1 .accordion .accordion-item .accordion-button:not(.collapsed) {
  -webkit-box-shadow: none;
          box-shadow: none;
  background-color: transparent;
}
.tc-faq-st1 .accordion .accordion-item .accordion-body {
  padding: 0 30px 30px;
}
.tc-faq-st1 .line {
  position: absolute;
  top: 150px;
  right: 0;
  max-width: 10%;
  -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
          clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  -webkit-transition: all 3s ease-in-out;
  transition: all 3s ease-in-out;
}
.tc-faq-st1 .line.animated {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

/* --------------- pricing st1 --------------- */
.tc-pricing-st1 {
  position: relative;
  padding: 100px 0 175px;
  background-image: url(../img/pricing_bg.png);
  background-size: cover;
}
.tc-pricing-st1 .line {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
          clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  -webkit-transition: all 5s ease-in-out;
  transition: all 5s ease-in-out;
}
.tc-pricing-st1 .line.animated {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
.tc-pricing-st1 .row .col-lg-4:nth-of-type(2) .price-card .card-body::before {
  background-image: var(--ln-green1);
}
.tc-pricing-st1 .row .col-lg-4:nth-of-type(3) .price-card .card-body::before {
  background-image: var(--ln-blue1);
}
.tc-pricing-st1 .price-card {
  position: relative;
  padding: 30px;
  background-color: #fff;
  border-radius: 30px;
  -webkit-box-shadow: 0px 94px 94px 0px rgba(0, 0, 0, 0.03);
          box-shadow: 0px 94px 94px 0px rgba(0, 0, 0, 0.03);
}
.tc-pricing-st1 .price-card .card-head {
  padding: 20px 0;
}
.tc-pricing-st1 .price-card .card-body {
  position: relative;
  padding: 30px 20px;
  border-radius: 30px;
  overflow: hidden;
  margin-top: 30px;
}
.tc-pricing-st1 .price-card .card-body::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: var(--ln-orange1);
  opacity: 0.1;
}
.tc-pricing-st1 .price-card .card-body .price {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 20px;
}
.tc-pricing-st1 .price-card .card-body .price small {
  font-size: 16px;
}
.tc-pricing-st1 .price-card .card-body .card-list li {
  font-size: 16px;
  margin: 15px 0;
}
.tc-pricing-st1 .price-card .card-body .card-list li strong {
  color: #191919;
}
.tc-pricing-st1 .price-card .card-body .card-list li .fa-check {
  font-size: 13px;
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
}

@media screen and (max-width: 991px) {
  .tc-pricing-st1 .price-card {
    margin-top: 30px;
  }
}
/* --------------- testimonials st1 --------------- */
.tc-testimonials-st1 {
  position: relative;
  padding: 50px 0;
  overflow: hidden;
}
.tc-testimonials-st1 .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 80%;
}
.tc-testimonials-st1 .testimonials-slider {
  position: relative;
}
.tc-testimonials-st1 .testimonials-slider .swiper-slide {
  opacity: 0;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.tc-testimonials-st1 .testimonials-slider .swiper-slide.swiper-slide-active {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.tc-testimonials-st1 .testimonials-slider .arrows {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  margin-top: -50px;
  z-index: 50;
}
.tc-testimonials-st1 .testimonials-slider .arrows .swiper-next,
.tc-testimonials-st1 .testimonials-slider .arrows .swiper-prev {
  font-size: 18px;
  margin: 10px;
}
.tc-testimonials-st1 .testimonials-slider .arrows .swiper-next:hover,
.tc-testimonials-st1 .testimonials-slider .arrows .swiper-prev:hover {
  color: var(--cr-orange1);
}
.tc-testimonials-st1 .img {
  position: relative;
  z-index: 30;
}
.tc-testimonials-st1 .testi-card .rate {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
}
.tc-testimonials-st1 .testi-card .rate .icon {
  height: 30px;
  -webkit-margin-end: 20px;
          margin-inline-end: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.tc-testimonials-st1 .testi-card .rate .stars i {
  font-size: 18px;
  background-image: var(--ln-orange1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.tc-testimonials-st1 .testi-card .text-main {
  position: relative;
  padding: 30px 30px 30px 0;
  font-size: 32px;
  color: #191919;
  line-height: 1.3;
  margin-bottom: 30px;
  z-index: 30;
}
.tc-testimonials-st1 .testi-card .text-main::before {
  position: absolute;
  content: "";
  left: -150px;
  top: 0;
  height: 100%;
  width: calc(100% + 150px);
  border-radius: 30px;
  background: #FFF;
  -webkit-box-shadow: 0px 94px 94px 0px rgba(0, 0, 0, 0.03);
          box-shadow: 0px 94px 94px 0px rgba(0, 0, 0, 0.03);
  z-index: -1;
}

/* --------------- blog st1 --------------- */
.tc-blog-st1 {
  position: relative;
  padding: 50px 0 120px;
}
.tc-blog-st1 .post-card {
  position: relative;
  background-color: #fff;
  border-radius: 30px;
  overflow: hidden;
  -webkit-box-shadow: 0 94px 94px 0 rgba(0, 0, 0, 0.03);
          box-shadow: 0 94px 94px 0 rgba(0, 0, 0, 0.03);
}
.tc-blog-st1 .post-card:hover .img .float-arrow {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.tc-blog-st1 .post-card .img {
  display: block;
  position: relative;
  height: 300px;
  border-radius: 30px;
  overflow: hidden;
}
.tc-blog-st1 .post-card .img .float-arrow {
  position: absolute;
  left: calc(50% - 50px);
  top: calc(50% - 50px);
  -webkit-transform: scale(0.7);
          transform: scale(0.7);
  width: 100px;
  height: 100px;
  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;
  border-radius: 50%;
  background-image: var(--ln-orange1);
  color: #fff;
  font-size: 30px;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.tc-blog-st1 .post-card .info {
  padding: 30px;
}

/* --------------- footer st1 --------------- */
.tc-footer-st1 {
  position: relative;
}
.tc-footer-st1 .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.tc-footer-st1 .links-content {
  position: relative;
  padding: 180px 0 100px;
}
.tc-footer-st1 .links-content * {
  color: #fff;
}
.tc-footer-st1 .links a {
  margin: 8px 0;
  font-size: 16px;
}
.tc-footer-st1 .links a:hover {
  color: var(--cr-orange1);
}
.tc-footer-st1 .subscribe {
  padding-bottom: 170px;
}
.tc-footer-st1 .subscribe * {
  color: #fff;
}
.tc-footer-st1 .subscribe .form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.tc-footer-st1 .subscribe .form-group input {
  min-height: 60px;
  background-color: #fff3;
  border-radius: 100px;
  width: 100%;
  border: 0;
  color: #fff;
  padding: 15px 30px;
}
.tc-footer-st1 .subscribe .form-group input::-webkit-input-placeholder {
  color: #fff9;
}
.tc-footer-st1 .subscribe .form-group input::-moz-placeholder {
  color: #fff9;
}
.tc-footer-st1 .subscribe .form-group input:-ms-input-placeholder {
  color: #fff9;
}
.tc-footer-st1 .subscribe .form-group input::-ms-input-placeholder {
  color: #fff9;
}
.tc-footer-st1 .subscribe .form-group input::placeholder {
  color: #fff9;
}
.tc-footer-st1 .subscribe .form-group .arrow {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-image: var(--ln-orange1);
  border: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

@media screen and (max-width: 991px) {
  .tc-footer-st1 .bg {
    -o-object-fit: cover;
       object-fit: cover;
  }
  .tc-footer-st1 .subscribe .form-group {
    margin-top: 30px;
  }
}
.home-st1 {
  color: #5b5b5b;
}
.home-st1 h1, .home-st1 h2, .home-st1 h3, .home-st1 h4, .home-st1 h5, .home-st1 h6 {
  color: #191919;
}
.home-st1 .swiper-pagination .swiper-pagination-bullet {
  width: 5px;
  height: 5px;
  background-color: #000;
  margin: 10px;
  opacity: 1;
}
.home-st1 .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  outline: 1px solid var(--cr-orange1);
  background-color: var(--cr-orange1);
  outline-offset: 8px;
}
.home-st1 .loader-wrap svg {
  fill: var(--cr-orange1);
}

@media screen and (max-width: 991px) {
  .home-st1 br {
    display: none;
  }
  .home-st1 .fsz-50 {
    font-size: 30px !important;
  }
  .home-st1 .fsz-45 {
    font-size: 25px !important;
  }
  .home-st1 .fsz-40 {
    font-size: 25px !important;
  }
  .home-st1 .mb-90 {
    margin-bottom: 40px !important;
  }
  .home-st1 .fsz-30 {
    font-size: 18px !important;
  }
  .home-st1 .mb-50 {
    margin-bottom: 30px !important;
  }
  .home-st1 .mt-5 {
    margin-top: 2rem !important;
  }
}