/* ========= [ * page-home_3 ]  =========*/
.side_menu.style-4 {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  background-color: #f3f3f3;
  height: 100vh;
  width: 40%;
  min-width: -webkit-max-content;
  min-width: -moz-max-content;
  min-width: max-content;
  opacity: 0;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  pointer-events: none;
  border-top-right-radius: 100%;
  border-bottom-right-radius: 100%;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  z-index: 99999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.side_menu.style-4 .content {
  width: 100%;
}
.side_menu.style-4 .content .logo {
  padding: 35px 5vw;
  border-bottom: 1px solid rgba(153, 153, 153, 0.2);
}
.side_menu.style-4 .content .logo img {
  max-width: 35%;
}
.side_menu.style-4 .content .side_foot {
  padding: 30px 5vw;
  border-top: 1px solid rgba(153, 153, 153, 0.2);
}
.side_menu.style-4 .content .side_foot h5 {
  text-transform: uppercase;
  margin-bottom: 20px;
}
.side_menu.style-4 .pages_links {
  padding: 15px 5vw;
  height: calc(100vh - 230px);
  overflow: auto;
  background-color: #f9f9f9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.side_menu.style-4 .pages_links::-webkit-scrollbar {
  height: 5px;
  width: 3px;
  background: rgba(129, 105, 241, 0.1333333333);
  border-radius: 10px;
}
.side_menu.style-4 .pages_links::-webkit-scrollbar-thumb {
  background: #000;
  border-radius: 10px;
}
.side_menu.style-4 .pages_links::-webkit-scrollbar-corner {
  background: rgba(129, 105, 241, 0.1333333333);
  border-radius: 10px;
}
.side_menu.style-4 .pages_links li {
  opacity: 0;
  -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
          clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
}
.side_menu.style-4 .pages_links li a {
  color: #222;
  font-size: calc(10px + 0.8vw);
  font-weight: bold;
  margin: 10px 0;
  position: relative;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  text-transform: capitalize;
}
.side_menu.style-4 .pages_links li a::after {
  position: absolute;
  content: "";
  left: 110%;
  top: 60%;
  width: 0;
  height: 2px;
  background-color: #000;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.side_menu.style-4 .pages_links li a.active {
  color: #000;
}
.side_menu.style-4 .pages_links li a.active::after {
  width: 50px;
}
.side_menu.style-4 .pages_links ul li {
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}
.side_menu.style-4 .pages_links ul li:nth-of-type(1) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.side_menu.style-4 .pages_links ul li:nth-of-type(2) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.side_menu.style-4 .pages_links ul li:nth-of-type(3) {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.side_menu.style-4 .pages_links ul li:nth-of-type(4) {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.side_menu.style-4 .pages_links ul li:nth-of-type(5) {
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}
.side_menu.style-4 .pages_links ul li:nth-of-type(6) {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}
.side_menu.style-4 .pages_links ul li:nth-of-type(7) {
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}
.side_menu.style-4 .pages_links ul li:nth-of-type(8) {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
.side_menu.style-4 .side_menu_cls {
  position: absolute;
  top: 40px;
  right: 30px;
}
.side_menu.style-4 .side_menu_cls:hover {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.side_menu.style-4.show {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  pointer-events: all;
  border-radius: 0;
}
.side_menu.style-4.show li {
  opacity: 1;
  -webkit-clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%);
          clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%);
}
.side_menu.style-4.dark_theme {
  background-color: #000;
  color: #fff;
}
.side_menu.style-4.dark_theme .pages_links li a {
  color: #999;
}
.side_menu.style-4.dark_theme .pages_links li a::after {
  background: #999;
}
.side_menu.style-4.dark_theme .pages_links li a:hover {
  color: #fff;
}
.side_menu.style-4.dark_theme .pages_links li a:hover::after {
  background: #999;
}
.side_menu.style-4.dark_theme::-webkit-scrollbar {
  background: rgba(255, 255, 255, 0.2);
}
.side_menu.style-4.dark_theme::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
}
.side_menu.style-4.dark_theme::-webkit-scrollbar-corner {
  background: rgba(255, 255, 255, 0.2);
}

.side_overlay {
  position: fixed;
  z-index: 99998;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  top: 0;
  left: 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.side_overlay.show {
  opacity: 1;
  visibility: visible;
}

@media screen and (max-width: 480px) {
  .side_menu.style-4 {
    width: 100%;
  }
  .side_menu.style-4 .pages_links {
    height: calc(100vh - 273px);
  }
}
/* --------------- navbar style4 --------------- */
.tc-navbar-style4 {
  padding: 40px 5vw;
  background-color: #dfe1ef;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.tc-navbar-style4 .navbar-nav .nav-item .nav-link {
  margin: 0;
  padding: 12px 35px;
  border-radius: 30px;
  border: 1px solid #000;
  color: #000;
  text-transform: uppercase;
}
.tc-navbar-style4 .navbar-nav .nav-item .nav-link:hover, .tc-navbar-style4 .navbar-nav .nav-item .nav-link.active {
  background-color: #000;
  color: #fff;
}
.tc-navbar-style4 .canvas-btn-style3 {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  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;
  border: 1px solid rgba(153, 153, 153, 0.4);
  -webkit-margin-start: 15px;
  margin-inline-start: 15px;
  font-size: 21px;
  cursor: pointer;
  -webkit-transition: all 0.1s linear;
  transition: all 0.1s linear;
}
.tc-navbar-style4 .canvas-btn-style3:hover {
  border-color: #000;
  background-color: #000;
  color: #fff;
}

/* --------------- header style4 --------------- */
.tc-header-style4 {
  position: relative;
  padding: 200px 0;
  background-color: #dfe1ef;
  z-index: 10;
  border-radius: 0 0 20px 20px;
  overflow: hidden;
}
.tc-header-style4 .info h1 {
  font-size: 180px;
}
.tc-header-style4 .info h1 span {
  display: block;
  text-align: end;
}
.tc-header-style4 .info .btns {
  text-align: end;
  margin-top: 50px;
}
.tc-header-style4 .info .btns a {
  -webkit-margin-start: 20px;
          margin-inline-start: 20px;
  max-height: 60px;
  max-width: 40%;
}
.tc-header-style4 .shaps {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.tc-header-style4 .shap-1 {
  position: absolute;
  bottom: 0;
  right: 10%;
  max-height: 60%;
  z-index: -1;
}
.tc-header-style4 .shap-2 {
  position: absolute;
  top: 150px;
  left: 20%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background-color: #cfd1e0;
  z-index: -1;
}
.tc-header-style4 .img {
  position: absolute;
  bottom: -30px;
  left: 10%;
  max-height: 40%;
  z-index: -1;
}

@media screen and (max-width: 991px) {
  .tc-header-style4 {
    padding: 150px 0 200px;
  }
  .tc-header-style4 .shap-2 {
    top: 30px;
    left: 10%;
    width: 100px;
    height: 100px;
  }
  .tc-header-style4 .info h1 {
    font-size: 50px;
  }
  .tc-header-style4 .info h1 span {
    display: inline-block;
    text-align: start;
  }
  .tc-header-style4 .info .btns {
    text-align: start;
  }
  .tc-header-style4 .info .btns a {
    -webkit-margin-start: 0;
            margin-inline-start: 0;
    -webkit-margin-end: 20px;
            margin-inline-end: 20px;
  }
}
/* --------------- features style4 --------------- */
.tc-features-style4 {
  padding: 120px 0 0;
  position: relative;
  overflow: hidden;
}
.tc-features-style4 .shap-1 {
  position: absolute;
  left: 0;
  top: 85px;
  max-width: 12%;
  z-index: 6;
  pointer-events: none;
}
.tc-features-style4 .shap-2 {
  position: absolute;
  left: 40%;
  top: 50%;
  z-index: 7;
  pointer-events: none;
}
.tc-features-style4 .info-side .content {
  position: relative;
  z-index: 10;
}
.tc-features-style4 .info-side::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: calc(50% - 15px);
  height: 100%;
  background-color: #fff;
  z-index: 5;
}
.tc-features-style4 .tc-features-slider4 {
  position: relative;
  z-index: 1;
}
.tc-features-style4 .features-card {
  position: relative;
  z-index: 10;
}
.tc-features-style4 .features-card:hover::before {
  left: -12px;
  top: 12px;
  opacity: 1;
}
.tc-features-style4 .features-card::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #000;
  border-radius: 10px;
  z-index: -1;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.tc-features-style4 .features-card .cont {
  position: relative;
  padding: 45px;
  border: 1px solid #000;
  border-radius: 10px;
  background-color: #fff;
  z-index: 10;
}
.tc-features-style4 .features-card .cont .icon {
  height: 140px;
  margin-bottom: 20px;
}
.tc-features-style4 .features-card .cont .icon img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.tc-features-style4 .features-card .cont .info h2 {
  font-size: 100px;
  color: var(--color-blue1);
  margin-bottom: 15px;
}
.tc-features-style4 .swiper-pagination {
  position: relative;
  bottom: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 120px;
}
.tc-features-style4 .swiper-pagination::before {
  position: absolute;
  content: "";
  left: 0;
  top: 3px;
  height: 1px;
  width: 100%;
  background-color: rgba(153, 153, 153, 0.2);
}
.tc-features-style4 .swiper-pagination .swiper-pagination-bullet {
  position: relative;
  z-index: 10;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin: 0;
  border-radius: 0;
  height: 7px;
  background-color: var(--color-blue1);
  opacity: 0;
}
.tc-features-style4 .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}

@media screen and (max-width: 991px) {
  .tc-features-style4 .info-side::after {
    display: none;
  }
  .tc-features-style4 .tc-features-slider4 {
    margin-top: 30px;
  }
}
/* --------------- partners style4 --------------- */
.tc-partners-style4 {
  padding: 120px 0;
  border-top: 1px solid rgba(153, 153, 153, 0.2666666667);
}
.tc-partners-style4 .logos {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.tc-partners-style4 .logos .logo {
  max-height: 70px;
}

@media screen and (max-width: 991px) {
  .tc-partners-style4 {
    border-top: 1px solid #999;
  }
  .tc-partners-style4 .logos .logo {
    max-width: 30%;
    margin: 15px;
  }
}
/* --------------- works style4 --------------- */
.tc-works-style4 {
  position: relative;
  background-color: #f4f3ec;
  padding-bottom: 120px;
  border-radius: 30px;
  z-index: 10;
}
.tc-works-style4 .about-marqee-style4 {
  color: #000;
  padding: 40px 0;
  overflow: hidden;
}
.tc-works-style4 .about-marqee-style4 a {
  font-size: 120px;
  font-weight: bold;
  font-family: "Darker Grotesque", sans-serif !important;
}
.tc-works-style4 .about-marqee-style4 .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
  position: relative;
}
.tc-works-style4 .about-marqee-style4 .swiper-slide {
  width: -webkit-max-content !important;
  width: -moz-max-content !important;
  width: max-content !important;
}
.tc-works-style4 .works {
  position: relative;
}
.tc-works-style4 .works::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 33.3%;
  height: 100%;
  border-left: 1px solid #000;
  border-right: 1px solid #000;
  pointer-events: none;
}
.tc-works-style4 .works::after {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  width: 33.3%;
  height: 100%;
  border-left: 1px solid #000;
  border-right: 1px solid #000;
  pointer-events: none;
}
.tc-works-style4 .works .work-card {
  position: relative;
  padding: 30px;
  z-index: 10;
}
.tc-works-style4 .works .work-card .tag {
  padding: 8px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #000;
  border-radius: 30px;
  margin-bottom: 20px;
  font-weight: 500;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.tc-works-style4 .works .work-card .img {
  display: block;
  height: 260px;
  border-radius: 15px;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.tc-works-style4 .works .work-card .img img {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.tc-works-style4 .works .work-card .img:hover {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}
.tc-works-style4 .works .work-card .img:hover img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.tc-works-style4 .works .work-card h4 {
  min-height: 90px;
}

@media screen and (max-width: 991px) {
  .tc-works-style4 {
    padding-bottom: 70px;
  }
  .tc-works-style4 .works::before, .tc-works-style4 .works::after {
    display: none;
  }
  .tc-works-style4 .works .work-card {
    padding: 0;
    margin-bottom: 50px;
  }
  .tc-works-style4 .works .work-card h4 {
    min-height: -webkit-max-content;
    min-height: -moz-max-content;
    min-height: max-content;
  }
  .tc-works-style4 .about-marqee-style4 a {
    font-size: 50px;
  }
}
/* --------------- newsletter style4 --------------- */
.tc-newsletter-style4 {
  padding-top: 30px;
  position: relative;
  margin-top: -30px;
  border-radius: 0 0 30px 30px;
  background-color: #000;
  color: #fff;
}
.tc-newsletter-style4 .newsletter-content {
  padding: 120px 0;
  border-bottom: 1px solid #666;
}
.tc-newsletter-style4 .newsletter-content .form .form-group {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.tc-newsletter-style4 .newsletter-content .form .form-group .form-control {
  background-color: transparent;
  border-radius: 30px;
  border: 1px solid #fff;
  -webkit-padding-start: 50px;
          padding-inline-start: 50px;
  min-height: 50px;
}
.tc-newsletter-style4 .newsletter-content .form .form-group .icon {
  position: absolute;
  left: 25px;
  top: 17px;
}

@media screen and (max-width: 991px) {
  .tc-newsletter-style4 .newsletter-content .form .form-group {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .tc-newsletter-style4 .newsletter-content .form .form-group .button_su {
    margin-top: 20px;
  }
}
/* --------------- screens style4 --------------- */
.tc-screens-style4 {
  position: relative;
  padding: 180px 0 120px;
  overflow: hidden;
  border-bottom: 1px solid #dcdcdc;
}
.tc-screens-style4 .title {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 20;
  text-shadow: 2px 3px 0 #fff;
  border-radius: 30px;
  min-width: 80vw;
}
.tc-screens-style4 .lines {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.tc-screens-style4 .lines span {
  height: 100%;
  width: 1px;
  background-color: #dcdcdc;
}
.tc-screens-style4 .sliders {
  height: 1300px;
}
.tc-screens-style4 .sliders .slider-colmn {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.tc-screens-style4 .sliders .slider-colmn .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
  position: relative;
}
.tc-screens-style4 .sliders .slider-colmn .swiper-slide {
  width: -webkit-max-content !important;
  width: -moz-max-content !important;
  width: max-content !important;
}
.tc-screens-style4 .sliders .slider-colmn .img {
  width: 500px;
  height: 300px;
  background-color: #fff;
  border-radius: 30px;
  overflow: hidden;
  -webkit-box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.0666666667);
          box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.0666666667);
}

@media screen and (max-width: 991px) {
  .tc-screens-style4 .lines {
    display: none;
  }
}
/* --------------- testimonials style4 --------------- */
.tc-testimonials-style4 {
  padding: 120px 0;
}
.tc-testimonials-style4 .tc-testimonials-slider4 {
  position: relative;
  overflow: hidden;
  padding-bottom: 80px;
}
.tc-testimonials-style4 .tc-testimonials-slider4 .swiper-pagination {
  position: absolute;
  bottom: 10px;
}
.tc-testimonials-style4 .tc-testimonials-slider4 .swiper-pagination .swiper-pagination-bullet {
  opacity: 0.3;
  width: 4px;
  height: 4px;
  background-color: #000;
  border-radius: 50%;
  outline: 1px solid transparent;
  outline-offset: 5px;
  margin: 0 7px;
}
.tc-testimonials-style4 .tc-testimonials-slider4 .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
  outline: 1px solid #000;
}
.tc-testimonials-style4 .testimonial-card {
  position: relative;
  padding: 40px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #000;
}
.tc-testimonials-style4 .testimonial-card .stars {
  position: absolute;
  right: 0;
  top: 0;
  padding: 5px 15px;
  border-radius: 0 20px 0 20px;
  border: 1px solid #000;
  border-top: 0;
  border-right: 0;
}
.tc-testimonials-style4 .testimonial-card .logo {
  height: 50px;
  margin-bottom: 40px;
}

/* --------------- download style4 --------------- */
.tc-download-style4 {
  padding: 70px 0 100px;
  background-color: var(--color-blue1);
  color: #fff;
  border-radius: 30px 30px 0 0;
}
.tc-download-style4 .btns a {
  height: 55px;
}

/* --------------- blog style4 --------------- */
.tc-blog-style4 {
  padding: 120px 0;
  background-color: #f4f3ec;
  position: relative;
  z-index: 20;
  margin-top: -30px;
  border-radius: 30px 30px 0 0;
}
.tc-blog-style4 .tags a {
  font-size: 12px;
  text-transform: uppercase;
  padding: 7px 15px;
  border: 1px solid #000;
  border-radius: 30px;
  margin: 0;
}
.tc-blog-style4 .main-post {
  position: relative;
}
.tc-blog-style4 .main-post .img {
  position: relative;
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
}
.tc-blog-style4 .main-post .img::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.5;
}
.tc-blog-style4 .main-post .info {
  padding: 40px;
  position: absolute;
  z-index: 10;
  bottom: 0;
  left: 0;
  color: #fff;
}
.tc-blog-style4 .sub-post {
  padding: 30px 0;
  border-top: 1px solid #000;
}
.tc-blog-style4 .sub-post .img {
  position: relative;
  height: 100px;
  border-radius: 7px;
  overflow: hidden;
}

@media screen and (max-width: 991px) {
  .tc-blog-style4 .sub-post:first-of-type {
    border: 0;
  }
}
/* --------------- footer style4 --------------- */
.tc-footer-style4 .footer-content {
  padding: 120px 0 60px;
}
.tc-footer-style4 .links li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  color: #666;
  margin: 10px 0;
}
.tc-footer-style4 .links li.half-link a {
  width: 50%;
}
.tc-footer-style4 .foot {
  padding: 30px 0;
  border-top: 1px solid rgba(153, 153, 153, 0.2);
}
.tc-footer-style4 .foot .social-links a {
  -webkit-margin-end: 40px;
          margin-inline-end: 40px;
}
.tc-footer-style4 .foot .social-links a:hover {
  color: var(--color-blue1);
}

.home-style4 .dr_item {
  display: none;
}
.home-style4 h1, .home-style4 h2, .home-style4 h3, .home-style4 h4, .home-style4 h5, .home-style4 h6 {
  font-family: "Darker Grotesque", sans-serif;
  line-height: 1;
  font-weight: 700;
}
.home-style4 .sub_font {
  font-family: "Darker Grotesque", sans-serif !important;
}

@media screen and (max-width: 991px) {
  .home-style4 br {
    display: none;
  }
  .home-style4 .fsz-75 {
    font-size: 50px !important;
  }
  .home-style4 .fsz-60 {
    font-size: 40px !important;
  }
  .home-style4 .fsz-50 {
    font-size: 30px !important;
  }
  .home-style4 .fsz-40 {
    font-size: 25px !important;
  }
  .home-style4 .mb-90 {
    margin-bottom: 40px !important;
  }
  .home-style4 .fsz-30 {
    font-size: 18px !important;
  }
}
.home-style4.dark-theme {
  color: #fff;
  background-color: #222;
}
.home-style4.dark-theme .lt_item {
  display: none;
}
.home-style4.dark-theme .dr_item {
  display: block;
}
.home-style4.dark-theme .tc-navbar-style4 .navbar-nav .nav-item .nav-link {
  border-color: #fff;
  color: #fff;
}
.home-style4.dark-theme .tc-navbar-style4 .navbar-nav .nav-item .nav-link:hover,
.home-style4.dark-theme .tc-navbar-style4 .navbar-nav .nav-item .nav-link.active {
  background-color: #fff;
  color: #000;
}
.home-style4.dark-theme .tc-navbar-style4,
.home-style4.dark-theme .tc-header-style4,
.home-style4.dark-theme .tc-works-style4,
.home-style4.dark-theme .tc-blog-style4 {
  background-color: #2e2e31;
}
.home-style4.dark-theme .tc-features-style4 .info-side::after,
.home-style4.dark-theme .tc-features-style4 .features-card .cont {
  background-color: #222;
}
.home-style4.dark-theme .tc-header-style4 .shap-2 {
  opacity: 0.1;
}
.home-style4.dark-theme .tc-features-style4 .features-card::before,
.home-style4.dark-theme .tc-features-style4 .features-card .cont,
.home-style4.dark-theme .tc-partners-style4,
.home-style4.dark-theme .tc-works-style4 .works .work-card .tag,
.home-style4.dark-theme .tc-testimonials-style4 .testimonial-card,
.home-style4.dark-theme .tc-testimonials-style4 .testimonial-card .stars,
.home-style4.dark-theme .tc-works-style4 .works::after,
.home-style4.dark-theme .tc-works-style4 .works::before,
.home-style4.dark-theme .tc-blog-style4 .tags a,
.home-style4.dark-theme .tc-blog-style4 .sub-post {
  border-color: rgba(255, 255, 255, 0.2);
}
.home-style4.dark-theme .color-666,
.home-style4.dark-theme .tc-footer-style4 .links li {
  color: #ccc !important;
}
.home-style4.dark-theme .color-000,
.home-style4.dark-theme .tc-works-style4 .about-marqee-style4,
.home-style4.dark-theme button {
  color: #fff !important;
}
.home-style4.dark-theme .butn {
  color: #fff;
}
.home-style4.dark-theme .butn:hover {
  color: #000;
}
.home-style4.dark-theme .bg-000,
.home-style4.dark-theme .tc-testimonials-style4 .tc-testimonials-slider4 .swiper-pagination .swiper-pagination-bullet {
  background-color: #fff !important;
}
.home-style4.dark-theme .bg-white {
  background-color: #000 !important;
}
.home-style4.dark-theme .tc-screens-style4 .lines span {
  background-color: rgba(255, 255, 255, 0.2);
}
.home-style4.dark-theme .tc-screens-style4 .title {
  text-shadow: 2px 3px 0 #000;
}
.home-style4.dark-theme .tc-testimonials-style4 .tc-testimonials-slider4 .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  outline: 1px solid #fff;
}
.home-style4.dark-theme .side_menu.style-4 .pages_links {
  background-color: #222 !important;
}
.home-style4.dark-theme .bg-white, .home-style4.dark-theme .side_menu.style-4 {
  background-color: #2e2e31 !important;
}
.home-style4.dark-theme .side_menu.style-4 .pages_links li a.active {
  color: #fff !important;
}
.home-style4.dark-theme .side_menu.style-4 .pages_links li a {
  color: #ccc !important;
}
.home-style4.dark-theme .side_menu.style-4 .pages_links li a::after {
  background-color: #fff;
}