@import '/common/assets/css/lib/bootstrap.min.css';
@import url("//fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap");
@import '/common/assets/css/lib/all.min.css';
@import '/common/assets/css/lib/line-awesome.css';
@import '/common/assets/css/lib/ionicons.css';
@import '/common/assets/css/lib/animate.css';
@import '/common/assets/css/lib/jquery.fancybox.css';
@import '/common/assets/css/lib/lity.css';
@import '/common/assets/css/lib/swiper8.min.css';
@import '/common/assets/css/common_style.css';
/* ========= [ * page-home_3 ]  =========*/
/* --------------- side_menu_style4 --------------- */
.side_menu_style4 {
  position: fixed;
  z-index: 9999;
  right: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  min-height: max-content;
  background-color: #DFE3EC;
  padding: 0 4vw;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  transition: all 0.5s ease-in-out;
  transition-delay: 0.4s;
}
.side_menu_style4.show {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
.side_menu_style4.show .side_shape {
  transform: rotate(0) scale(1);
  opacity: 1;
}
.side_menu_style4.show .side_shape2 {
  transform: rotate(180deg) scale(1);
  opacity: 1;
}
.side_menu_style4.show .main_links {
  text-align: center;
  transform: scaleX(1) scaleY(1);
  opacity: 1;
  filter: blur(0);
}
.side_menu_style4 .side_shape {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 40%;
  transform: rotate(-60deg) scale(0.5);
  opacity: 0;
  transition: all 0.5s ease;
  transition-delay: 0.7s;
}
.side_menu_style4 .side_shape2 {
  position: absolute;
  left: 0;
  top: 0;
  width: 40%;
  transform: rotate(120deg) scale(0.5);
  opacity: 0;
  transition: all 0.5s ease;
  transition-delay: 0.7s;
}
.side_menu_style4 .links_group {
  width: max-content;
  display: block;
}
.side_menu_style4 .main_links {
  text-align: center;
  transform: scaleX(1.4) scaleY(1.8);
  filter: blur(2px);
  opacity: 0;
  transition: all 0.7s ease;
  transition-delay: 1s;
}
.side_menu_style4 .main_links .main_link {
  font-size: calc(3vw + 15px);
  font-weight: 400;
  margin: 10px 0;
  text-transform: uppercase;
  font-weight: 700;
}
.side_menu_style4 .main_links .main_link:hover {
  text-decoration: underline;
}
.side_menu_style4 .social_links a {
  font-size: 24px;
  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: 30px;
  right: 60px;
  cursor: pointer;
}

.side_menu4_overlay {
  position: absolute;
  z-index: 90;
  right: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--color-orange1);
  clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  transition: all 0.5s ease-in-out;
}
.side_menu4_overlay.show {
  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(--color-orange1);
  clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  transition: all 0.5s ease-in-out;
  transition-delay: 0.7s;
}
.side_menu4_overlay2.show {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  transition-delay: 0.1s;
}

/* --------------- inner-navbar-style1 --------------- */
.inner-navbar-style1 {
  position: relative;
  padding: 50px 4vw;
}
.inner-navbar-style1 .logo {
  width: 240px;
}
@media screen and (max-width: 991px) {
  .inner-navbar-style1 {
    padding: 15px;
  }
}
.inner-navbar-style1 .navbar-nav .nav-link {
  font-size: 14px;
  font-weight: 600;
  color: #000;
  margin-inline-start: 30px;
}
.inner-navbar-style1 .navbar-nav .nav-link:focus {
  color: black;
}
.inner-navbar-style1 .nav-side {
  position: relative;
}
.inner-navbar-style1 .nav-side a {
  font-size: 14px;
  font-weight: 600;
  color: #000;
}
.inner-navbar-style1 .nav-search-box {
  position: absolute;
  background-color: #fff;
  box-shadow: 5px 5px 20px rgba(255, 255, 255, 0.0666666667);
  right: 0;
  top: calc(100% + 15px);
  width: 100%;
  min-width: 250px;
  padding: 15px;
  border-radius: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.0666666667);
}
.inner-navbar-style1 .nav-search-box.show {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.inner-navbar-style1 .nav-search-box .form-group {
  display: flex;
}
.inner-navbar-style1 .nav-search-box .form-group input {
  width: 100%;
  background-color: transparent;
  border: 1px solid rgba(153, 153, 153, 0.2);
  border-right: 0;
  border-radius: 8px 0 0 8px;
  min-height: 50px;
  color: #000;
  padding: 12px 15px;
}
.inner-navbar-style1 .nav-search-box .form-group button {
  flex-shrink: 0;
  border-radius: 0 8px 8px 0;
  border: 1px solid rgba(153, 153, 153, 0.2);
  background-color: rgba(153, 153, 153, 0.2);
  padding: 10px;
  color: #000;
  margin-left: -2px;
  transition: all 0.3s ease;
}
.inner-navbar-style1 .nav-search-box .form-group button:hover {
  background-color: var(--color-orange1);
  color: #fff;
}

@media screen and (max-width: 991px) {
  .inner-navbar-style1 .navbar-nav {
    margin-top: 30px;
  }
  .inner-navbar-style1 .navbar-nav .nav-link {
    margin-inline-start: 0;
  }
  .inner-navbar-style1 .ms-3 {
    margin-left: 0 !important;
    margin-right: 1rem !important;
  }

  body:not(.about-pg-style1) .navbar-dark .navbar-toggler-icon {
    filter: invert(1) !important;
  }
}
.ln-sl ul {
  display: flex;
  gap: 20px;
}
.ln-sl ul li.selected {
  opacity: 0.5;
}
.ln-sl ul a {
  text-transform: uppercase;
}

/* --------------- portfolio pg style1 --------------- */
@media screen and (max-width: 991px) {
  .tc-latest-posts-style1 .fsz-45 {
    font-size: 35px !important;
  }
  .tc-latest-posts-style1 .mb-70 {
    margin-bottom: 50px !important;
  }
}
.tc-latest-posts-style1 .content {
  position: relative;
}
.tc-latest-posts-style1 .content .arrows {
  position: relative;
  display: flex;
  align-items: center;
  width: max-content;
}
.tc-latest-posts-style1 .content .arrows .swiper-button-prev,
.tc-latest-posts-style1 .content .arrows .swiper-button-next {
  position: static;
  margin: 0;
  margin-inline-start: 40px;
}
.tc-latest-posts-style1 .content .arrows .swiper-button-prev::after,
.tc-latest-posts-style1 .content .arrows .swiper-button-next::after {
  font-size: 18px;
  color: #000;
}
.tc-latest-posts-style1 .content .posts-slider {
  position: relative;
  overflow: hidden;
}
.tc-latest-posts-style1 .content .post-card:hover .img img {
  transform: scale(1.5);
}
.tc-latest-posts-style1 .content .post-card .img img {
  transform: scale(1);
  transition: all 10s linear;
}

.tc-filter-posts-style1 {
  position: relative;
  padding: 150px 0;
}
.tc-filter-posts-style1 .filter .links a {
  font-size: 18px;
  line-height: 24px;
  color: #666;
  background-color: transparent;
  padding: 0;
  margin-inline-end: 50px;
  text-transform: uppercase;
}
.tc-filter-posts-style1 .filter .links a.active {
  color: var(--color-orange1);
}
.tc-filter-posts-style1 .search-group {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #222;
}
.tc-filter-posts-style1 .search-group .form-control {
  border: 0;
  border-radius: 0;
  background-color: transparent;
  padding: 10px 0;
  font-size: 14px;
}
.tc-filter-posts-style1 .search-group button {
  border: 0;
  background-color: transparent;
}

.tc-latest-posts-style1 .content .arrows .swiper-button-prev,
.tc-latest-posts-style1 .content .arrows .swiper-button-next {
  margin-inline-start: 0;
  margin-inline-end: 30px;
}

.tc-filter-posts-style1 {
  padding: 100px 0;
}
.tc-filter-posts-style1 .filter .links a {
  font-size: 12px;
  margin-inline-end: 25px;
  font-weight: bold;
}

.filter-posts-list .filter .links a {
  font-size: 18px;
  font-weight: normal;
}
.filter-posts-list .post-card {
  animation-delay: 0s !important;
}

.blog-pg-style1 {
  position: relative;
}
.blog-pg-style1.tc-main-slider-style1 {
  padding: 150px 3vw 0;
}
.blog-pg-style1.tc-main-slider-style1 .main-slider {
  position: relative;
  overflow: hidden;
}
.blog-pg-style1.tc-main-slider-style1 .main-slider .swiper-slide-active .slider-card .content {
  opacity: 1;
  transform: translateY(0);
}
.blog-pg-style1.tc-main-slider-style1 .main-slider .arrows {
  position: absolute;
  right: 10vw;
  bottom: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #000;
  padding: 15px 10px;
  border-radius: 30px;
  z-index: 20;
  min-width: 140px;
}
.blog-pg-style1.tc-main-slider-style1 .main-slider .arrows .swiper-button-prev,
.blog-pg-style1.tc-main-slider-style1 .main-slider .arrows .swiper-button-next {
  position: static;
  margin: 0;
  height: max-content;
}
.blog-pg-style1.tc-main-slider-style1 .main-slider .arrows .swiper-button-prev::after,
.blog-pg-style1.tc-main-slider-style1 .main-slider .arrows .swiper-button-next::after {
  font-size: 10px;
  color: #fff;
}
.blog-pg-style1.tc-main-slider-style1 .main-slider .swiper-pagination {
  position: absolute;
  color: #fff;
  left: auto;
  width: max-content;
  right: calc(10vw + 58px);
  bottom: 90px;
  z-index: 50;
}
.blog-pg-style1.tc-main-slider-style1 .main-slider .slider-card {
  position: relative;
  height: 800px;
  min-height: max-content;
  border-radius: 30px;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .blog-pg-style1.tc-main-slider-style1 .main-slider .slider-card {
    height: 400px;
  }
}
.blog-pg-style1.tc-main-slider-style1 .main-slider .slider-card::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.6862745098), rgba(0, 0, 0, 0.3607843137), transparent);
  z-index: 1;
}
.blog-pg-style1.tc-main-slider-style1 .main-slider .slider-card picture.bg {
  height: 100%;
  width: 100%;
}
.blog-pg-style1.tc-main-slider-style1 .main-slider .slider-card .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.blog-pg-style1.tc-main-slider-style1 .main-slider .slider-card .content {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  color: #fff;
  z-index: 5;
  padding: 70px 0;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.6s ease;
}

/* --------------- about pg style1 --------------- */
.about-pg-style1 {
  position: relative;
  /* ------ navbar ------- */
}
.about-pg-style1 .inner-navbar-style1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
}
.about-pg-style1 .inner-navbar-style1 .navbar-nav .nav-link {
  color: #fff;
}
.about-pg-style1 .inner-navbar-style1 .nav-side a {
  color: #fff;
}
@media screen and (max-width: 991px) {
  .about-pg-style1 .inner-navbar-style1 {
    position: relative;
    background-color: #dd052b;
  }
}

/* ------ header ------- */
.tc-header-preview {
  position: relative;
}
.tc-header-preview .slider-card {
  position: relative;
  height: 100svh;
}
.tc-header-preview .slider-card .img, .tc-header-preview .slider-card video, .tc-header-preview .slider-card picture, .tc-header-preview .slider-card picture img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.tc-header-preview .slider-card .img {
  position: relative;
}
.tc-header-preview .slider-card .img::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 40%;
  pointer-events: none;
}
.tc-header-preview .slider-card .info {
  position: absolute;
  left: 0;
  bottom: 30px;
  width: 100%;
  z-index: 20;
  color: #fff;
}
.tc-header-preview .slider-card .info h1 {
  font-size: calc(4vw + 15px);
  font-weight: 500;
  line-height: 1;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.tc-header-preview .slider-card .info h1.fsz-145 {
  font-size: 145px !important;
}
@media screen and (max-width: 991px) {
  .tc-header-preview .slider-card .info h1.fsz-145 {
    font-size: 70px !important;
  }
}
.tc-header-preview .features-txt {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  margin-top: 50px;
}
.tc-header-preview .rotate-box {
  position: relative;
  width: 220px;
  height: 220px;
  display: block;
  margin: 0 90px 0 auto;
  bottom: -80px;
}
.tc-header-preview .rotate-box .num {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 70px;
  font-family: "Instrument Serif", serif;
}
.tc-header-preview .rotate-box .rotate-text {
  animation: rotateText 20s linear infinite;
  font-weight: 400;
  text-transform: uppercase;
  position: absolute;
  left: 0;
  border-radius: 50%;
}
.tc-header-preview .rotate-box .rotate-circle {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(75px);
}
.tc-header-preview .rotate-box .rotate-circle svg {
  width: 220px;
  height: 220px;
  fill: #fff;
  transform: scale(1.2);
}
@keyframes rotateText {
  0% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.tc-header-preview .float-social-links {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 1vw;
  z-index: 20;
}
.tc-header-preview .float-social-links a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.2705882353);
  font-size: 16px;
  color: #fff;
  margin: 10px;
}
.tc-header-preview .float-social-links a:hover {
  background-color: var(--color-orange1);
}
.tc-header-preview .float-icons {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1vw;
  z-index: 20;
}
.tc-header-preview .float-icons a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.2705882353);
  font-size: 16px;
  color: #fff;
  margin: 10px;
}
.tc-header-preview .float-icons a:hover {
  background-color: var(--color-orange1);
}

@media screen and (max-width: 991px) {
  .tc-header-preview {
    overflow: hidden;
  }
  .tc-header-preview .features-txt {
    display: block;
    line-height: 2.2;
  }
  .tc-header-preview .info {
    padding-bottom: 100px;
  }
  .tc-header-preview .float-icons {
    top: 50px;
    width: 100%;
  }
  .tc-header-preview .float-icons ul {
    display: flex;
    justify-content: center;
  }
  .tc-header-preview .float-icons ul a {
    width: 35px;
    height: 35px;
    font-size: 12px;
  }
  .tc-header-preview .float-social-links {
    top: auto;
    bottom: 0;
    width: 100%;
  }
  .tc-header-preview .float-social-links ul {
    display: flex;
    justify-content: center;
  }
  .tc-header-preview .float-social-links ul a {
    width: 35px;
    height: 35px;
    font-size: 12px;
  }
  .tc-header-preview .rotate-box {
    display: none;
  }
  .tc-header-preview .slider-card {
    height: 166vw;
  }
  .tc-header-preview .slider-card .img {
    height: 600px;
  }
}
/* --------------- about style7 --------------- */
.tc-about-style7 {
  position: relative;
  padding: 160px 0;
}
.tc-about-style7 .rotate-box {
  position: relative;
  width: 220px;
  height: 220px;
  display: block;
  margin: 0 auto 30px;
}
.tc-about-style7 .rotate-box .icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 80px;
}
.tc-about-style7 .rotate-box .rotate-text {
  animation: rotateText 20s linear infinite;
  font-weight: 300;
  text-transform: uppercase;
  position: absolute;
  left: 0;
  border-radius: 50%;
}
.tc-about-style7 .rotate-box .rotate-circle svg {
  width: 220px;
  height: 220px;
  fill: #000;
  transform: scale(1);
}
@keyframes rotateText {
  0% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.tc-about-style7 .numbers .number-card {
  position: relative;
  margin-bottom: 75px;
}
.tc-about-style7 .numbers .number-card h2 {
  font-size: 60px;
  color: var(--color-orange1);
  font-weight: 400;
  margin-bottom: 15px;
}
.tc-about-style7 .numbers .number-card small {
  font-size: 16px;
  text-transform: uppercase;
  color: #666;
}

@media screen and (max-width: 991px) {
  .tc-about-style7 {
    padding: 50px 0;
    overflow: hidden;
  }
}
/* --------------- process style2 --------------- */
.tc-process-style2 {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
}
.tc-process-style2 .container {
  position: relative;
  z-index: 10;
}
.tc-process-style2 .bg {
  position: absolute;
  left: 0;
  top: -15%;
  width: 100%;
  height: 130%;
  object-fit: cover;
  background-image: url(../img/prc_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  max-height: inherit;
}
.tc-process-style2 .accordion-item {
  border: 0;
  border-radius: 20px;
  margin-bottom: 5px;
}
.tc-process-style2 .accordion-item .accordion-button {
  color: #000;
  background-color: transparent;
  box-shadow: none;
  border-radius: 0;
  padding: 30px;
  border: 0;
}
.tc-process-style2 .accordion-item .accordion-button:not(.collapsed) h3 {
  color: var(--color-orange1);
}
.tc-process-style2 .accordion-item .accordion-button:not(.collapsed)::after {
  background-image: none;
  content: "\f068";
  font-family: "Font Awesome 5 Pro";
  transform: rotate(0) !important;
}
.tc-process-style2 .accordion-item .accordion-button h3 {
  font-size: 24px;
}
.tc-process-style2 .accordion-item .accordion-button .num {
  font-size: 24px;
  color: #999;
  font-weight: 200;
  margin-inline-end: 30px;
  font-family: "Instrument Serif", serif;
}
.tc-process-style2 .accordion-item .accordion-button::after {
  background-image: none;
  content: "\f067";
  font-family: "Font Awesome 5 Pro";
  transform: rotate(0) !important;
}
.tc-process-style2 .accordion-item .accordion-body {
  padding-inline-start: 85px;
  padding-inline-end: 50px;
  padding-top: 0;
  padding-bottom: 30px;
}
.tc-process-style2 .accordion-item .accordion-body .text {
  font-size: 15px;
  color: #666;
}
.tc-process-style2 .imgs {
  position: relative;
  background-image: url(../img/bubbles.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.tc-process-style2 .imgs .img {
  position: relative;
  margin: 0 auto;
}
.tc-process-style2 .imgs .img img {
  border-radius: 50%;
}
.tc-process-style2 .imgs .img:nth-of-type(1) {
  width: 360px;
  height: 360px;
  border-radius: 50%;
  transform: translateX(50px);
}
.tc-process-style2 .imgs .img:nth-of-type(1) .txt {
  font-size: 35px;
  position: absolute;
  top: 65px;
  right: -65px;
  z-index: 10;
  border: 1px solid #ccc;
  background-color: #F1EEE9;
  border-radius: 15px;
  padding: 0 30px;
  text-transform: capitalize;
}
.tc-process-style2 .imgs .img:nth-of-type(2) {
  position: absolute;
  right: -100px;
  top: 150px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
}
.tc-process-style2 .imgs .img:nth-of-type(2)::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.7725490196), transparent);
  border-radius: 50%;
}
.tc-process-style2 .imgs .img:nth-of-type(2) .txt {
  font-size: 25px;
  position: absolute;
  bottom: 15px;
  right: 0;
  z-index: 10;
  color: #fff;
  text-transform: capitalize;
}
.tc-process-style2 .imgs .img:nth-of-type(3) {
  position: absolute;
  left: 70px;
  top: 300px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
}
.tc-process-style2 .imgs .img:nth-of-type(3)::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.7725490196), transparent);
  border-radius: 50%;
}
.tc-process-style2 .imgs .img:nth-of-type(3) .txt {
  font-size: 30px;
  position: absolute;
  bottom: 15px;
  right: 50%;
  transform: translateX(50%);
  z-index: 10;
  color: #fff;
  text-transform: capitalize;
}
.tc-process-style2 .imgs .img:nth-of-type(4) {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  margin-top: 40px;
  transform: translateX(100%);
}
.tc-process-style2 .imgs .img:nth-of-type(4) .txt {
  font-size: 30px;
  position: absolute;
  top: 65px;
  left: -65px;
  z-index: 10;
  background-color: #000;
  color: #fff;
  border-radius: 15px;
  padding: 5px 30px;
  text-transform: capitalize;
}

@media screen and (max-width: 991px) {
  .tc-process-style2 {
    padding: 80px 0;
  }
  .tc-process-style2 .imgs {
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
  }
  .tc-process-style2 .imgs .img {
    width: 48% !important;
    height: 250px !important;
    border-radius: 30px !important;
    margin: 1% !important;
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    transform: translate(0) !important;
  }
  .tc-process-style2 .imgs .img::after {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.7725490196), transparent);
    border-radius: 30px !important;
  }
  .tc-process-style2 .imgs .img img {
    border-radius: 30px !important;
  }
  .tc-process-style2 .imgs .img .txt {
    font-size: 30px !important;
    position: absolute !important;
    top: auto !important;
    bottom: 15px !important;
    right: 50% !important;
    transform: translateX(50%) !important;
    z-index: 10 !important;
    color: #fff !important;
    text-transform: capitalize !important;
    background-color: transparent !important;
    border: 0 !important;
  }
}
/* --------------- footer style2 --------------- */
.tc-projects-style2 {
  position: relative;
  padding-top: 110px;
}
.tc-projects-style2 .tabs-links .nav-pills .nav-link {
  background-color: transparent;
  padding: 0;
  margin-inline-end: 40px;
  font-size: 18px;
  font-weight: 500;
  border-radius: 0;
  text-transform: capitalize;
  color: #666;
}
.tc-projects-style2 .tabs-links .nav-pills .nav-link.active, .tc-projects-style2 .tabs-links .nav-pills .nav-link:hover {
  color: #000;
}
.tc-projects-style2 .projects-slider-content {
  padding: 0 45px;
  position: relative;
  overflow: hidden;
  max-width: 1330px;
  margin: 0 auto;
}
.tc-projects-style2 .projects-slider-content .projects-slider {
  position: relative;
  overflow: hidden;
}
.tc-projects-style2 .projects-slider-content .projects-slider .controls {
  position: absolute;
  bottom: 0;
  width: 100%;
}
.tc-projects-style2 .projects-slider-content .projects-slider .controls .swiper-pagination {
  display: flex;
  bottom: 0;
  position: static;
}
.tc-projects-style2 .projects-slider-content .projects-slider .controls .swiper-pagination .swiper-pagination-bullet {
  margin: 0;
  flex-grow: 1;
  height: 1px;
  border-radius: 0;
  background-color: #ccc;
  opacity: 1;
}
.tc-projects-style2 .projects-slider-content .projects-slider .controls .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  height: 3px;
  background-color: var(--color-orange1);
  margin-top: -1px;
}
.tc-projects-style2 .project-card {
  position: relative;
}
.tc-projects-style2 .project-card:hover .img .arrow {
  background-color: var(--color-orange1);
  color: #fff;
}
.tc-projects-style2 .project-card .img {
  height: 650px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  display: block;
}
.tc-projects-style2 .project-card .img::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.3;
}
.tc-projects-style2 .project-card .img .year {
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  padding: 30px 20px 40px 10px;
  text-align: center;
  color: #000;
  z-index: 10;
}
.tc-projects-style2 .project-card .img .year .txt {
  position: relative;
  z-index: 10;
  font-size: 18px;
}
.tc-projects-style2 .project-card .img .year .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.tc-projects-style2 .project-card .img .arrow {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #fff;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}
.tc-projects-style2 .project-card .info {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 90%;
  padding: 40px;
  color: #fff;
}
.tc-projects-style2 .project-card .info .title {
  font-size: 35px;
  font-weight: 500;
}
.tc-projects-style2 .project-card .info .tags {
  margin-bottom: 30px;
  display: flex;
}
.tc-projects-style2 .project-card .info .tags a {
  padding: 8px 20px;
  border-radius: 30px;
  background-color: #fff;
  color: #000;
  font-weight: 500;
  font-size: 12px;
}

@media screen and (max-width: 991px) {
  .tc-projects-style2 {
    padding-top: 80px;
  }
  .tc-projects-style2 .tabs-links .nav-pills .nav-link {
    margin-inline-end: 15px;
    font-size: 12px;
    font-weight: 600;
  }
  .tc-projects-style2 .project-card .img {
    height: 400px;
  }
  .tc-projects-style2 .project-card .info .title {
    font-size: 25px;
  }
}
/* --------------- awards style2 --------------- */
.tc-awards-style2 {
  position: relative;
  padding: 110px 0;
}
.tc-awards-style2 .award-card {
  border: 1px solid #ccc;
  border-radius: 15px;
  padding: 30px;
  margin-top: 30px;
  transition: all 0.3s ease;
}
.tc-awards-style2 .award-card:hover {
  border-color: var(--color-orange1);
}
.tc-awards-style2 .award-card:hover a {
  color: #000 !important;
  text-decoration: underline;
}
.tc-awards-style2 .award-card .logo {
  height: 35px;
}
.tc-awards-style2 .award-card .title {
  display: flex;
  align-items: end;
  margin: 15px 0;
  min-height: 90px;
}

@media screen and (max-width: 991px) {
  .tc-awards-style2 {
    padding: 80px 0;
  }
}
/* --------------- process style1 --------------- */
.tc-process-style1 {
  position: relative;
  padding: 150px 0;
  background-color: #fff;
  z-index: 10;
  border-radius: 40px 40px 0 0;
}
.tc-process-style1 .c-line {
  position: absolute;
  bottom: 100px;
  right: 0;
  width: 50%;
  height: 550px;
  z-index: 10;
  pointer-events: none;
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  transition: all 2s linear;
}
.tc-process-style1 .c-line.animated {
  clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%);
}
.tc-process-style1 .accordion-item {
  border: 0;
  border-radius: 0;
}
.tc-process-style1 .accordion-item .accordion-button {
  color: #000;
  background-color: transparent;
  box-shadow: none;
  border-top: 1px solid #ccc;
  border-radius: 0;
  padding: 30px;
}
@media screen and (max-width: 991px) {
  .tc-process-style1 .accordion-item .accordion-button {
    padding: 30px 0;
  }
}
.tc-process-style1 .accordion-item .accordion-button:not(.collapsed) {
  border-color: #000;
}
.tc-process-style1 .accordion-item .accordion-button:not(.collapsed) h3 {
  color: var(--color-orange1);
}
.tc-process-style1 .accordion-item .accordion-button h3 {
  font-size: 24px;
}
.tc-process-style1 .accordion-item .accordion-button .num {
  font-size: 24px;
  color: #999;
  font-weight: 200;
  margin-inline-end: 30px;
}
.tc-process-style1 .accordion-item .accordion-body {
  padding-inline-start: 85px;
  padding-inline-end: 50px;
  padding-top: 0;
  padding-bottom: 30px;
}
.tc-process-style1 .accordion-item .accordion-body .text {
  font-size: 15px;
  color: #666;
}
.tc-process-style1 .img {
  height: 550px;
  border-radius: 20px;
  overflow: hidden;
  transform: rotate(-30deg) scale(1.3);
  transition: all 1s ease;
  transition-delay: 0.4s;
  opacity: 0;
}
.tc-process-style1 .img.animated {
  transform: rotate(15deg) scale(1);
  opacity: 1;
}

@media screen and (max-width: 991px) {
  .tc-process-style1 {
    padding: 80px 0;
  }
  .tc-process-style1 .accordion-item .accordion-button .num {
    display: none;
  }
  .tc-process-style1 .accordion-item .accordion-button h3 {
    font-size: 21px;
  }
  .tc-process-style1 .accordion-item .accordion-body {
    padding-inline-start: 30px;
  }
}
@media screen and (max-width: 991px) and (max-width: 991px) {
  .tc-process-style1 .accordion-item .accordion-body {
    padding-inline-start: 0px;
  }
}
@media screen and (max-width: 991px) {
  .tc-process-style1 .img {
    transform: rotate(0);
    margin-top: 50px;
    height: 350px;
  }
}
/* --------------- testimonials style1 --------------- */
.tc-testimonials-style1 {
  position: relative;
  padding: 150px 0;
}
.tc-testimonials-style1 .c-line {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 25%;
  z-index: 5;
  pointer-events: none;
}
.tc-testimonials-style1 .lg-icon {
  font-size: 170px;
  margin-inline-start: -15px;
  display: block;
}
.tc-testimonials-style1 .tc-clients-style1 {
  position: relative;
  overflow: hidden;
}
.tc-testimonials-style1 .tc-clients-style1 .clients-slider1 {
  position: relative;
  overflow: hidden;
}
.tc-testimonials-style1 .tc-clients-style1 .author {
  display: flex;
  align-items: center;
  padding-top: 50px;
  margin-top: 80px;
  border-top: 1px solid #ccc;
}
.tc-testimonials-style1 .tc-clients-style1 .author .au-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  margin-inline-end: 20px;
}
.tc-testimonials-style1 .tc-clients-style1 .slider-controls {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border-radius: 30px;
  border: 1px solid #ccc;
  position: absolute;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 10;
}
.tc-testimonials-style1 .tc-clients-style1 .slider-controls .swiper-button-next,
.tc-testimonials-style1 .tc-clients-style1 .slider-controls .swiper-button-prev {
  position: static;
  height: max-content;
  margin: 0;
}
.tc-testimonials-style1 .tc-clients-style1 .slider-controls .swiper-button-next::after,
.tc-testimonials-style1 .tc-clients-style1 .slider-controls .swiper-button-prev::after {
  color: #000;
  font-size: 12px;
}
.tc-testimonials-style1 .tc-clients-style1 .slider-controls .swiper-button-next:hover::after,
.tc-testimonials-style1 .tc-clients-style1 .slider-controls .swiper-button-prev:hover::after {
  color: var(--color-orange1);
}
.tc-testimonials-style1 .tc-clients-style1 .slider-controls .swiper-pagination {
  position: static;
  margin: 0 10px;
}
.tc-testimonials-style1 .tc-clients-style1 .slider-controls .swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 5px;
}
.tc-testimonials-style1 .tc-clients-style1 .slider-controls .swiper-pagination .swiper-pagination-bullet .swiper-pagination-bullet-active {
  width: 10px;
  height: 10px;
}
.tc-testimonials-style1 .marq-slider {
  position: relative;
  overflow: hidden;
  padding-top: 100px;
}
.tc-testimonials-style1 .marq-slider .swiper-wrapper {
  transition-timing-function: linear !important;
  position: relative;
}
.tc-testimonials-style1 .marq-slider .swiper-wrapper .swiper-slide {
  width: max-content !important;
}
.tc-testimonials-style1 .marq-slider a {
  font-size: 150px;
  font-weight: 500;
  -webkit-text-stroke: 1px #000;
  color: transparent;
}
.tc-testimonials-style1 .marq-slider a:hover {
  color: #000;
}

@media screen and (max-width: 991px) {
  .tc-testimonials-style1 {
    padding: 50px 0;
  }
  .tc-testimonials-style1 .lg-icon {
    font-size: 120px;
  }
  .tc-testimonials-style1 .marq-slider a {
    font-size: 50px;
  }
}
/* --------------- footer style1 --------------- */
.tc-footer-style1 .foot-social a, .tc-contact-info-style1 .foot-social a {
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  border-radius: 50%;
  margin-inline-end: 10px;
  background-color: #fff;
  border: 1px solid #ccc;
  font-size: 14px;
}
.tc-footer-style1 .foot-social a:hover, .tc-contact-info-style1 .foot-social a:hover {
  background-color: var(--color-orange1);
  border-color: var(--color-orange1);
  color: #fff;
}
.tc-footer-style1 .footer-links a, .tc-contact-info-style1 .footer-links a {
  font-size: 14px;
  color: #666;
}
.tc-footer-style1 .footer-links a:hover, .tc-contact-info-style1 .footer-links a:hover {
  color: #000;
  text-decoration: underline;
}
.tc-footer-style1 .foot, .tc-contact-info-style1 .foot {
  padding: 30px 0;
  border-top: 1px solid #ccc;
}
.tc-footer-style1 .foot .foot-links a, .tc-contact-info-style1 .foot .foot-links a {
  font-size: 14px;
  margin-inline-end: 4vw;
}
.tc-footer-style1 .foot .foot-links a:last-of-type, .tc-contact-info-style1 .foot .foot-links a:last-of-type {
  margin: 0;
}

/* MODIFICHE UMBERTO */
.heading1 {
  font-size: 6rem !important;
}

.h-100 {
  height: 100vh !important;
  overflow: hidden;
}

.align-bottom-section {
  align-content: center;
}

.swiper-wrapper-products {
  display: flex;
  gap: 5%;
  justify-content: center;
}

.overlay-black {
  height: 100%;
  width: 100%;
  background: black;
  opacity: 0.4;
  position: absolute;
  top: 0;
  left: 0;
}

.border-black {
  border: 2px solid black;
}

.certifications-box-home {
  display: flex;
  flex-direction: column;
}

.certificazioni {
  width: 10vw;
}

@media only screen and (max-width: 700px) {
  .swiper-wrapper-products {
    display: flex;
    flex-direction: column;
    gap: 5%;
    justify-content: space-between !important;
  }

  .certificazioni {
    width: 30vw !important;
    margin-bottom: 10%;
  }

  .swiper-wrapper-products .project-card {
    margin-bottom: 5%;
  }

  .blog-pg-style1 .tc-latest-posts-style1 .content, .blog-pg-style1 .tc-latest-posts-style2 .content {
    padding: 0px 0px !important;
  }

  .h-100 {
    height: auto !important;
  }
}
.inner-pages-style1 .tc-inner-header-style1 {
  position: relative;
}
.inner-pages-style1 .tc-inner-header-style1 h1 {
  font-size: 150px;
  font-weight: 500;
  line-height: 1.25em;
  letter-spacing: -0.05em;
  color: #000;
  margin-bottom: 100px;
}
.inner-pages-style1 .tc-inner-header-style1 h1.small {
  font-size: 100px;
}
.inner-pages-style1 .pagination {
  justify-content: center;
}
.inner-pages-style1 .pagination .page-link {
  border-radius: 50%;
  color: #000;
  border: 1px solid #ccc;
  margin: 0 5px;
  width: 45px;
  height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.inner-pages-style1 .pagination .page-link.active {
  border-color: var(--color-orange1);
  color: var(--color-orange1);
}

@media screen and (max-width: 991px) {
  .inner-pages-style1 br {
    display: none;
  }
  .inner-pages-style1 .fsz-50 {
    font-size: 30px !important;
  }
  .inner-pages-style1 .fsz-40 {
    font-size: 25px !important;
  }
  .inner-pages-style1 .mb-90 {
    margin-bottom: 40px !important;
  }
  .inner-pages-style1 .fsz-30 {
    font-size: 18px !important;
  }
  .inner-pages-style1 .tc-inner-header-style1 {
    padding-top: 50px;
  }
  .inner-pages-style1 .tc-inner-header-style1 h1 {
    font-size: 70px;
    line-height: 100px;
    margin-bottom: 30px;
  }
  .inner-pages-style1 .tc-inner-header-style1 h1.small {
    font-size: 70px;
  }
}
/* END MODIFICHE UMBERTO */
.tc-header-preview h1, .tc-header-preview h5:last-child {
  margin-bottom: 0 !important;
}

.dropdown-item.active, .dropdown-item:active {
  background-color: inherit;
}

.blog-pg-style1 .tc-latest-posts-style1 .content {
  position: relative;
  padding: 150px 0;
  border-bottom: 0px;
}

.navbar-nav > li > a:hover, .navbar-nav > li > a.show {
  color: var(--color-orange1) !important;
}

picture.img-cover {
  width: 100%;
  height: 100%;
}
picture.img-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inherit * {
  font-size: inherit;
  line-height: inherit;
}

h4 {
  font-size: 45px !important;
  font-weight: 700 !important;
}

h5 {
  font-weight: 600 !important;
  margin-bottom: 20px !important;
}
h5:not(:first-child) {
  margin-top: 3rem !important;
}

.tc-header-preview h5:not(:first-child) {
  margin-top: 20px !important;
}

h6 {
  font-size: 24px !important;
  margin-bottom: 15px !important;
  font-weight: 700 !important;
}

h4:not(:last-child), h5:not(:last-child), h6:not(:last-child) {
  margin-bottom: 1em;
}

p.big {
  font-weight: 500 !important;
  font-size: 24px !important;
}
p.big:not(:last-child) {
  margin-bottom: 1em;
}

ul {
  color: #666 !important;
  line-height: 2 !important;
}

main > header, main > section {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin-bottom: 150px !important;
}
main > header[style*=background-color], main > section[style*=background-color] {
  padding-top: 150px !important;
  padding-bottom: 150px !important;
}
main > header[style*=background-color]:last-child, main > section[style*=background-color]:last-child {
  margin-bottom: 0 !important;
}
main > header[style*=background-color]:first-child, main > section[style*=background-color]:first-child {
  margin-top: 0 !important;
}
main > header:first-child, main > section:first-child {
  margin-top: 150px !important;
}
@media screen and (max-width: 991px) {
  main > header, main > section {
    margin-bottom: 100px !important;
  }
  main > header:first-child, main > section:first-child {
    margin-top: 100px !important;
  }
  main > header[style*=background-color], main > section[style*=background-color] {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
  }
}

@media screen and (max-width: 991px) {
  .box05 .col-lg-6:not(:first-child) {
    margin-top: 50px !important;
  }

  footer.tc-footer-style1 .branch-card {
    margin-top: 50px !important;
  }
  footer.tc-footer-style1 .foot-social {
    margin-bottom: 30px !important;
  }

  .tc-project-style1 .th-600 {
    height: 400px !important;
  }
}
.box08 .main-slider-img {
  position: relative;
  margin-top: -30px;
  border-radius: 30px 30px 0 0;
  z-index: 10;
  overflow: hidden;
}
.box08 .main-slider-img .img {
  height: 900px;
}
@media screen and (max-width: 991px) {
  .box08 .main-slider-img .img {
    height: 400px;
  }
}
.box08 .main-slider-img .arrows {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 90px;
  display: inline-flex;
  align-items: center;
  background-color: #000;
  padding: 5px 15px;
  border-radius: 30px;
  z-index: 20;
  min-width: max-content;
}
.box08 .main-slider-img .arrows .swiper-button-prev,
.box08 .main-slider-img .arrows .swiper-button-next {
  position: static;
  margin: 0;
  height: max-content;
}
.box08 .main-slider-img .arrows .swiper-button-prev::after,
.box08 .main-slider-img .arrows .swiper-button-next::after {
  font-size: 10px;
  color: #fff;
}
.box08 .main-slider-img .arrows .swiper-pagination {
  position: static;
  margin-bottom: 4px;
}
.box08 .main-slider-img .arrows .swiper-pagination .swiper-pagination-bullet {
  width: 5px;
  height: 5px;
  background-color: #fff;
  margin: 0 10px;
}
.box08 .main-slider-img .arrows .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--color-orange1);
}

.tc-map-style1 {
  position: relative;
  padding: 90px 45px 120px;
  max-width: 1330px;
  margin-inline: auto;
  border-radius: 0 0 30px 30px;
  margin-bottom: -30px;
  background-color: #fff;
  z-index: 10;
}
.tc-map-style1 .map-card {
  border-radius: 15px;
  overflow: hidden;
  height: 700px;
}
@media screen and (max-width: 991px) {
  .tc-map-style1 .map-card {
    height: 400px;
  }
}
.tc-map-style1 .map-card iframe {
  border: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin-bottom: -6px;
  filter: grayscale(0.7);
}

.news-list-item.hide {
  width: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
}

.blog-pg-style1.tc-main-slider-style1 {
  padding: 0px 3vw 0;
}

.news-widget .content {
  border-top: 1px solid #ccc;
  padding-top: 150px;
}
@media screen and (max-width: 991px) {
  .news-widget .content {
    padding-top: 100px;
  }
}

.branch-card:not(:last-child) {
  margin-bottom: 30px;
}

.umbraco-forms-container .row {
  display: flex;
  margin: 0 -15px;
}
.umbraco-forms-container .row .form-group:not(:last-child) {
  margin-bottom: 20px;
}
.umbraco-forms-container .row .form-group.mandatory > label:after {
  content: "*";
  color: red;
}
.umbraco-forms-container .row .form-group.dataconsent > label {
  display: inline;
}
.umbraco-forms-container .row .form-group.dataconsent > label:first-child {
  display: block;
  margin-bottom: 10px;
}
.umbraco-forms-container .row .form-group.dataconsent .field-validation-error {
  margin-top: 0;
}
.umbraco-forms-container .row .form-group.col-6 {
  width: 50%;
}
@media screen and (max-width: 991px) {
  .umbraco-forms-container .row .form-group.col-sm-12 {
    width: 100%;
  }
}
.umbraco-forms-container .row .form-group > label {
  margin-bottom: 10px;
  text-transform: uppercase;
  display: block;
}
.umbraco-forms-container .row .form-group input:not([type=submit]), .umbraco-forms-container .row .form-group textarea, .umbraco-forms-container .row .form-group select {
  background-color: transparent;
  border: 0;
  border-bottom: 1px solid #ccc;
  padding: 8px 0;
  border-radius: 0;
  font-size: 1em;
}
.umbraco-forms-container .row .form-group textarea {
  height: 10em;
}
.umbraco-forms-container .row .form-group .field-validation-error {
  margin-top: 10px;
  color: red;
}
.umbraco-forms-container input[type=submit] {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  background: var(--color-orange1);
  border-color: var(--color-orange1);
  color: #fff;
  border-radius: 50rem;
  padding: 15px 40px;
  transition: all 0.2s ease;
}
.umbraco-forms-container input[type=submit]:hover {
  background-color: #000;
  border-color: #000;
  box-shadow: 7px 10px 15px rgba(0, 0, 0, 0.2666666667);
  transform: translateY(-2px);
}

section ul {
  list-style-type: disc !important;
  margin-left: 1rem !important;
}
section a {
  text-decoration: underline;
}

h1 a, h2 a, h3 a {
  text-decoration: none;
}
/*# sourceMappingURL=maps/innerpages.css.map */
