* {
  font-family: "Averta", sans-serif;
}

.card-hover {
  width: 100%;
  height: 400px;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 0 32px -10px rgba(0, 0, 0, 0.08);
}

.card-hover:hover .card-hover__extra {
  transform: translateY(0);
  transition: transform 0.35s;
}

.card-hover:hover .card-hover__content {
  background-color: #dee8c2;
  bottom: 100%;
  transform: translateY(100%);
  padding: 70px 60px;
  transition: all 0.35s cubic-bezier(0.1, 0.72, 0.4, 0.97);
}

.card-hover:hover .card-hover__link {
  opacity: 1;
  transform: translate(-50%, 0);
  transition: all 0.3s 0.35s cubic-bezier(0.1, 0.72, 0.4, 0.97);
}

.card-hover:hover img {
  transform: scale(1);
  transition: 0.35s 0.1s transform cubic-bezier(0.1, 0.72, 0.4, 0.97);
}

.card-hover__content {
  width: 100%;
  text-align: center;
  background-color: #86b971;
  padding: 0 60px 50px;
  flex-direction: column;
  gap: 21px;
  display: flex;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateY(0);
  transition: all 0.35s 0.35s cubic-bezier(0.1, 0.72, 0.4, 0.97);
  will-change: bottom, background-color, transform, padding;
  z-index: 1;
}

.card-hover__content::before,
.card-hover__content::after {
  content: "";
  width: 100%;
  height: 120px;
  background-color: inherit;
  position: absolute;
  left: 0;
  z-index: -1;
}

.card-hover__content::before {
  top: -80px;
  clip-path: ellipse(60% 80px at bottom center);
}

.card-hover__content::after {
  bottom: -80px;
  clip-path: ellipse(60% 80px at top center);
}

.card-hover:hover .card-hover__title {
  color: #000;
}

.card-hover__title {
  font-size: 1.5rem;
  color: #fff;
  font-weight: 600;
  transition: 0.4s all ease;
}

.card-hover__title span {
  color: #2d7f0b;
}

.card-hover__text {
  font-size: 0.75rem;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  display: -webkit-box;
  line-height: 16px;
}

.card-hover__link {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translate(-50%, 10%);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  text-decoration: none;
  color: #2d7f0b;
  opacity: 0;
  padding: 10px;
  transition: all 0.35s;
}

.card-hover__link:hover svg {
  transform: translateX(4px);
}

.card-hover__link:hover .card-hover__extra {
  transform: translateY(0);
  transition: transform 0.35s;
}

.card-hover__link svg {
  width: 18px;
  margin-left: 4px;
  transition: transform 0.3s;
}

.card-hover img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  /*z-index: -1;*/
  /*transform: scale(1.2);*/
  transition: 0.35s 0.35s transform cubic-bezier(0.1, 0.72, 0.4, 0.97);
}

.card-hover:hover img {
  transform: scale(1.2);
}

.innocarousel {
  width: 100%;
  /*overflow-x: scroll;*/
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.carousel__container {
  /*width: 100;*/
  /*white-space: nowrap;*/
  /*margin: 70px 0px;*/
  /*padding-bottom: 10px;*/
  /*display: inline-block;*/
}

.categories__title {
  color: rgb(77, 55, 102);
  font-size: 28px;
  position: absolute;
  padding-left: 30px;
}

.carousel-item {
  width: 100%;
  height: 300px;
  border-radius: 20px;
  background-color: #95bcd6;
  overflow: hidden;
  margin-right: 10px;
  display: inline-block;
  cursor: pointer;
  -webkit-transition: 1000ms all;
  transition: 1000ms all;
  /*-webkit-transform-origin: center left;*/
  /*transform-origin: center left;*/
  position: relative;
}

.carousel-item:hover ~ .carousel-item {
  -webkit-transform: translate3d(100px, 0, 0);
  transform: translate3d(100px, 0, 0);
}

.carousel-item {
  opacity: 0.7;
}

.carousel-item:hover {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
  opacity: 1;
}

.carousel-item__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.carousel-item__details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(rgba(0, 0, 0, 0.9)),
    to(rgba(0, 0, 0, 0))
  );
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  font-size: 10px;
  opacity: 1;
  -webkit-transition: 450ms opacity;
  transition: 450ms opacity;
  padding: 10px;
  padding-top: 210px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.carousel-item__details p {
  font-size: 11px;
  display: -webkit-box;
  color: #fff;
  line-height: 15px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.carousel-item__details:hover {
  opacity: 1;
}

.carousel-item__details span {
  /* width: 10px;
  height: 10px; */
  font-size: 0.9rem;
  color: #2ecc71;
  /* background-color: white; */
}

.carousel-item__details .controls {
  padding-top: 180px;
}

.carousel-item__details .carousel-item__details--title {
  color: #fff;
  font-size: 17px;
}

.carousel-item__details--subtitle {
  font-size: 8px;
  color: #fff;
}

.product-img {
  position: relative;
  height: 200px; /* adjust the height as needed */
  overflow: hidden;
  white-space: nowrap;
}

.img-container {
  display: inline-block;
  opacity: 1;
  width: 100%;
  height: 100%;
  display: none;
}

.img-container.active {
  display: block;
}

.static-whatsapp {
  position: fixed;
  right: 40px;
  border-radius: 50%;
  z-index: 9999;
  bottom: 80px;
  background: #e21e23;
  border: 1px solid transparent;
  transition: 0.4s all ease;
}

.static-whatsapp:hover {
  border: 1px solid #000;
  background: green;
}

.static-whatsapp a {
  display: inline-block;
  padding: 10px 11px;
}

.static-whatsapp img {
  width: 100%;
  filter: invert(1);
  width: 28px;
  transition: 0.4s all ease;
}

#loading-overlay {
  position: fixed;
  overflow: hidden;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#loading-overlay h2 {
  font-size: 35px;
  color: #fff;
  font-weight: 600;
}

#loading-spinner {
  border: 4px solid #f3f3f3;
  border-top: 4px solid #3498db;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

body.active {
  overflow: hidden;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

/* modal */

.modal-dialog {
  max-width: 70%;
}

.modal-body {
  padding-top: 0;
}

.all-modal-bodies {
  display: flex;
  align-items: center;
  padding: 2rem 1rem;
}

.modal-img {
  width: 400px;
}

.modal-img img {
  width: 100%;
  height: 100%;
}

.modal-body :is(input, select, textarea) {
  width: 100%;
  padding: 10px 20px;
  border: 2px solid #e6ecf2;
}

.modal-body textarea {
  height: 160px;
  padding: 20px;
}

.modal-body :is(input, select, textarea):focus-visible {
  border-color: #e21e23;
}

.modal-body .row {
  row-gap: 1.5rem;
}

.modal-body button {
  position: relative;
  letter-spacing: 1px;
  font-size: 18px;
  text-transform: capitalize;
  text-decoration: none;
  padding: 1em 2.5em;
  display: inline-block;
  border-radius: 6em;
  transition: all 0.2s;
  width: 100%;
  border: 1px solid #000;
  font-weight: 500;
  color: black;
  background-color: white;
}

.modal-body button:hover {
  border: 1px solid transparent;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.modal-body button:active {
  transform: translateY(-1px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.modal-body button::after {
  content: "";
  display: inline-block;
  height: 100%;
  width: 100%;
  border-radius: 100px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.4s;
}

.modal-body button::after {
  background-color: #fff;
}

.modal-body button:hover::after {
  transform: scaleX(1.4) scaleY(1.6);
  opacity: 0;
}

/* header */

header {
  position: sticky;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 99;
  padding: 1rem 0;
  background-color: #fff;
  transition: 0.4s all ease;
}

header.sticky {
  background: #fff !important;
  box-shadow: 10px -6px 15px black;
  transition: all 0.4s ease;
  animation: smoothScroll 1s;
  border-top: none;
  padding: 1.1rem 0;
}

header.fixed {
  position: fixed !important;
}

@keyframes smoothScroll {
  0% {
    transform: translateY(-30px);
  }
  100% {
    transform: translateY(0px);
  }
}

header .logo,
footer .logo {
  width: 150px;
}

header .logo img,
footer .logo img {
  width: 100%;
}

.call-option {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
}

.call-option i {
  font-size: 20px;
}

.call-option a {
  position: relative;
  transition: 0.4s all ease;
  color: #000;
}

.call-option span {
  position: absolute;
  top: 23px;
  font-size: 16px;
  font-weight: 300;
  color: rgba(23, 24, 28, 0.56);
}

.call-option a:hover {
  color: #e21e23;
}

.big-dropdown {
  display: none;
}

header nav ul {
  display: flex;
}

header nav ul li a {
  transition: 0.4s all ease;
  font-size: 0.9rem;
  background: #e21e23;
  color: #fff;
  padding: 0.3rem 1rem;
  border-radius: 3rem;
  text-transform: uppercase;
}

header nav ul i {
  padding-left: 5px;
  transition: 0.4s all ease;
}

header nav ul i.active {
  transform: rotateX(-180deg);
}

header nav ul li span {
  cursor: pointer;
  font-size: 0.9rem;
  background: #e21e23;
  color: #fff;
  padding: 0.3rem 1rem;
  border-radius: 3rem;
  text-transform: uppercase;
}

header nav ul li a:hover,
header nav ul li span:hover {
  color: #fff;
  background: #000;
}

.toggle-switch {
  background-color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 0 50px 20px rgba(0, 0, 0, 0.1);
  line-height: 1;
}

.input {
  display: none;
}

.icon {
  grid-column: 1 / 1;
  grid-row: 1 / 1;
  transition: transform 500ms;
  transform: rotate(0deg);
}

.icon--moon {
  transition-delay: 200ms;
}

.icon--sun {
  transform: scale(0);
}

body.dark-mode #switch:checked + .icon--moon {
  transform: rotate(360deg) scale(0);
}

body.light-mode #switch:checked + .icon--moon {
  transform: rotate(0deg) scale(0);
}

body.light-mode #switch:checked ~ .icon--sun {
  transition-delay: 200ms;
  transform: scale(1);
}

body.dark-mode #switch:checked ~ .icon--sun {
  transition-delay: 200ms;
  transform: scale(1) rotate(360deg);
}

#mode-toggle {
  border: none;
  position: relative;
  height: 30px;
  width: 30px;
  background: none;
}

#mode-toggle i {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  transition: 0.4s all ease;
  width: 100%;
}

body.light-mode .dark-m {
  font-size: 25px;
  visibility: visible;
  color: #000;
}

body.light-mode .light-m,
body.dark-mode .dark-m {
  visibility: hidden;
}

body.dark-mode .light-m {
  visibility: visible;
  font-size: 25px;
  opacity: 1;
  color: #ffeb3e;
}

.get-price a {
  background-color: #e21e23;
  border-radius: 48px;
  letter-spacing: -1px;
  padding: 0.8rem 2rem;
  transition: 0.4s all ease;
  box-shadow: 0 0 0 18px transparent;
  animation: inf-pulse 1s;
  animation-iteration-count: infinite;
}

@keyframes inf-pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 #e21e23;
    -moz-box-shadow: 0 0 0 0 #e21e23;
    -o-box-shadow: 0 0 0 0 #e21e23;
    box-shadow: 0 0 0 0 #e21e23;
  }
}

.get-price a:hover {
  background: #000;
  color: #fff;
}

.big-dropdown {
  position: absolute;
  background-color: #fff;
  z-index: 4;
  width: 100%;
  border-top: 1px solid #eee;
  margin-top: 1rem;
  padding-top: 3rem;
  padding-bottom: 7rem;
}

p.drop-title {
  color: #b2b7ca;
}

.dropdown-content .row {
  padding-top: 50px;
}

.drop-inside {
  display: flex;
  align-items: center;
  gap: 15px;
}

.drop-text h2 {
  font-weight: 600;
  font-size: 17px;
  color: #000;
}

.drop-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
  max-width: 70%;
}

.drop-text p {
  color: #b2b7ca;
  font-size: 14px;
  line-height: 18px;
}

.drop-img img {
  width: 75px;
  height: 75px;
  object-fit: contain;
}

.hamburger-menu {
  display: none;
}

.ham-menu {
  position: fixed;
  left: -200%;
  background: #fff;
  height: 100%;
  padding: 50px 30px;
  z-index: 6;
  transition: 0.4s all ease;
}

.ham-menu.active {
  width: 100%;
  left: 0;
}

/* ------ */

/* slider */

#slider {
  height: 583px;
}

.both-slider {
  display: flex;
  overflow: hidden;
}

.left-content {
  padding-top: 6vw;
  text-align: center;
}

.left-content h1 {
  transform: skewY(20deg);
  -webkit-transform: skewY(-7deg);
  -moz-transform: skewY(-7deg);
  -o-transform: skewY(-7deg);
  -ms-transform: skewY(-7deg);
  font-weight: 600;
  text-shadow: 0px 1px 6px rgb(209, 200, 200);
  font-size: 70px;
  letter-spacing: -3px;
  text-transform: uppercase;
}

.paint-container {
  width: 100%;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-45deg) scale(1.5);
}

.roller {
  width: 100px;
  height: 30px;
  border: 3px solid #040e35;
  border-radius: 5px;
  position: relative;
  bottom: 50px;
  animation: roller 2s infinite;
}

.left-slider-content:first-child .roller {
  background-image: linear-gradient(
    to bottom,
    rgb(226, 30, 35) 70%,
    rgb(226, 30, 35) 30%
  );
}

.left-slider-content:nth-child(2) .roller {
  background-image: linear-gradient(
    to bottom,
    rgb(0, 0, 0) 70%,
    rgb(0, 0, 0) 30%
  );
}

.left-slider-content:nth-child(3) .roller {
  background-image: linear-gradient(
    to bottom,
    rgb(37, 58, 1) 70%,
    rgb(37, 58, 1) 30%
  );
}

@keyframes roller {
  0%,
  100% {
    top: -70px;
  }

  40% {
    top: 30px;
  }
}

.roller:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  width: 60px;
  height: 5px;
  background-color: #fff;
  opacity: 0.8;
}

.roller:after {
  content: "";
  position: absolute;
  width: 50px;
  height: 25px;
  border: 4px solid #040e35;
  border-left: none;
  right: -15px;
  top: 15px;
  z-index: -1;
}

.roller > div.handle {
  width: 15px;
  height: 40px;
  background-color: #040e35;
  position: relative;
  top: 60px;
  left: 55px;
  border-radius: 3px;
}

.handle:before {
  content: "";
  position: absolute;
  width: 5px;
  height: 20px;
  background-color: #040e35;
  top: -15px;
  left: 5px;
}

.paint {
  width: 100px;
  height: 20px;
  position: absolute;
  top: 90px;
  z-index: -1;
  animation: paint 2s infinite;
}

.left-slider-content:first-child .paint {
  background-color: rgb(226, 30, 35);
}

.left-slider-content:nth-child(2) .paint {
  background-color: #000;
}

.left-slider-content:nth-child(3) .paint {
  background-color: rgb(37, 58, 1);
}

@keyframes paint {
  40% {
    height: 100px;
  }
}

.left-slider {
  background: rgb(228, 228, 228);
  background: linear-gradient(
      118deg,
      rgba(228, 228, 228, 1) 0%,
      rgba(255, 255, 255, 0.8393951330532212) 100%
    ),
    url(/assets/img/paintbg.jpeg) center/cover;
  height: 100%;
  width: 60%;
  position: relative;
}

.left-content {
  width: 100%;
  margin: 0 auto;
}

.left-slider-content:not(.active) {
  content-visibility: hidden;
}

.left-slider-content.active {
  content-visibility: visible;
}

.slider-navs {
  position: absolute;
  display: flex;
  top: 27%;
  right: -26px;
  z-index: 5;
  flex-direction: column;
  gap: 130px;
}

.slider-navs i {
  cursor: pointer;
  font-size: 20px;
  background-color: #e21e23;
  color: #fff;
  padding: 15px;
  border: 1px solid #000;
  border-radius: 50%;
  transition: 0.4s all ease;
}

.slider-navs i:hover {
  background-color: #000;
}

.right-slider {
  background-color: #e21e23;
  height: 100%;
  position: relative;
  overflow: hidden;
  width: 40%;
}

.lamp {
  position: absolute;
  width: 100%;
  z-index: 3;
  height: 100%;
  top: 0%;
}

.lamp img {
  width: 100%;
  height: 100%;
}

.light {
  width: 100%;
  position: absolute;
  z-index: 3;
  margin: 0 auto;
  top: 35%;
  left: 20px;
  animation: lightOpacity 3.5s;
}

@keyframes lightOpacity {
  0% {
    opacity: 0.2;
  }

  100% {
    opacity: 1;
  }
}

.light img {
  width: 100%;
}

.right-content {
  position: absolute;
  z-index: 3;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding-top: 10rem;
  padding-left: 15px;
  text-align: center;
}

.right-content a {
  border-radius: 15px;
  border: 1px solid #eee;
  padding: 15px 50px;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  background-color: transparent;
  transition: 0.4s all ease;
}

.right-content a:hover {
  background-color: #000;
  border-color: transparent;
}

.rainbow-text {
  text-shadow: #a3a3a3 1px 1px 1px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  font-size: 26px;
  transition: 0.4s all ease;
  line-height: 1.2;
}

.rainbow-text:not(.active) {
  display: none;
}

.rainbow-text .block-line > span {
  display: inline-block;
}

.right-content h4 {
  font-size: 35px;
  font-weight: 600;
  color: #fff;
}

/* ustunlukler */

#advantages {
  padding: 60px 0;
}

.advantages-title h2 {
  font-size: 40px;
  font-weight: 600;
}

.advantage-logo img {
  /* max-width: 100%; */
  object-fit: cover;
  width: 100%;
  height: 335px;
}

.advantage-left-content {
  display: flex;
  gap: 15px;
  flex-direction: column;
}

.advantage-left-content h3 {
  font-size: 36px;
  color: #141733;
  font-weight: 600;
}

.advantage-left-content p {
  color: #8e8f9a;
  font-size: 17px;
  line-height: 21px;
  word-spacing: 1px;
  font-weight: 100;
}

.advantage-left-content a {
  color: #e21e23;
  font-size: 18px;
  font-weight: 600;
}

.advantage-numbers {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 45px;
}

.advantage-number h4 {
  color: #141733;
  font-size: 70px;
  font-weight: 600;
}

.advantage-number h4::after,
.advantage-left-content h3::after,
.call-to-action-title h2::after {
  content: "";
  display: inline-block;
  margin-left: 0.25rem;
  height: 8px;
  width: 8px;
  background-color: #e21e23;
}

.advantage-number p {
  color: #141733;
  text-align: center;
  font-weight: 600;
  font-size: 1.1rem;
}

.attachment-large {
  object-fit: contain;
  width: 100%;
}

/* mehsullar */

#products {
  padding-block: 60px;
  background-color: #f5f5f5;
}

a.product-wp {
  position: absolute;
  right: 2rem;
  top: 2.8rem;
}

a.product-link {
  display: inline-flex;
  flex-direction: column;
  width: 100%;
  justify-content: space-between;
  height: 100%;
}

.product-wp img {
  width: 19px !important;
  filter: opacity(0.5);
}

.products-title h2 {
  font-size: 40px;
  font-weight: 600;
}

.products-title a {
  color: #000;
  font-size: 17px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.products-card {
  padding: 3rem 2.5rem 2.5rem;
  position: relative;
  border-radius: 8px;
  height: 496px;
  background-color: #fff;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.general-title {
  display: flex;
  justify-content: space-between;
}

.product-general-title p {
  color: rgba(7, 2, 3, 0.5);
  font-size: 14px;
  letter-spacing: 1px;
}

.product-info {
  padding-top: 10px;
}

.product-info h3 {
  color: #000;
  font-weight: 600;
  font-size: 20px;
}

.product-info p {
  color: rgba(7, 2, 3, 0.5);
  font-size: 14px;
  padding-top: 10px;
  display: -webkit-box;
  line-height: 21px;
  width: 90%;
  -webkit-box-orient: VERTICAL;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-genereal-icon {
  height: 25px;
  width: 25px;
}

.product-genereal-icon img {
  height: 100%;
  filter: invert(0.7);
  object-fit: contain;
}

.product-img {
  padding-top: 30px;
  width: 100%;
  height: 230px;
}

.product-button {
  width: 100%;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-bottom-info {
  padding-top: 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-button span {
  display: inline-block;
  width: 100%;
  text-align: center;
  background-color: #ec1b30;
  color: #fff;
  letter-spacing: 1px;
  padding: 0.8rem 1.25rem;
  transition: 0.4s;
  border-radius: 1.5rem;
}

.products-card:hover .product-button span {
  background-color: #000;
}

/* services */

#services {
  padding-top: 60px;
}

.services-title h2 {
  font-size: 40px;
  font-weight: 600;
}

.services-title a {
  color: #000;
  font-size: 17px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.service-card {
  padding: 2.5rem 3rem 3rem;
  background-color: #f5f5f5;
  border-radius: 0.5rem;
  display: flex;
  position: relative;
  flex-direction: column;
  gap: 60px;
  height: 300px;
}

.service-card a {
  position: absolute;
  top: 0;
  width: 100%;
  left: 0;
  height: 100%;
  z-index: 2222;
}

.service-card svg {
  color: #e21e23;
}

.service-desc h3 {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 1rem;
}

.service-icon img {
  width: 72px;
  height: 72px;
}

.service-desc p {
  font-size: 14px;
  line-height: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  overflow: hidden;
  -webkit-box-orient: vertical;
}

.service-contact {
  background-color: #000;
  padding: 12rem 0 7rem;
  margin-top: -13rem;
}

.service-contact h2 {
  font-size: 30px;
  font-weight: 600;
  color: #fff;
}

.service-contact p {
  font-size: 14px;
  line-height: 21px;
  color: #fff;
  width: 80%;
}

.service-contact a {
  display: inline-block;
  background-color: #ec1b30;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 2.5rem;
  transition: 0.4s all ease;
  border: 1px solid transparent;
}

.service-contact a:hover {
  background-color: #000;
  color: #fff;
  border: 1px solid #fff;
}

/* ------ */

/* application */

#applications {
  padding-block: 60px;
  background-color: #f5f5f5;
}

.applications-title h2 {
  font-size: 40px;
  font-weight: 600;
}

.application-img img {
  height: 100%;
  width: 100%;
  transition: 0.4s all ease;
  border-radius: 1rem;
}

.application-img {
  height: 300px;
  margin-bottom: 15px;
  border-radius: 1rem;
  overflow: hidden;
}

.application-title h3 {
  font-size: 22px;
  font-weight: 600;
  color: #000;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.application-card:hover .application-img img {
  transform: scale(1.1);
}

/* application */

/* sertificates */

#sertificates {
  padding-block: 60px;
}

.sertificates-title h2 {
  font-size: 40px;
  font-weight: 600;
}

.sertificates-btn a {
  background-color: #e21e23;
  color: #fff;
  border-radius: 8px;
  padding: 17px;
  /* width: 100%; */
  text-align: center;
  display: inline-block;
  transition: 0.4s all ease;
}

.sertificates-btn a:hover {
  background-color: #000;
}

.sertificates-all {
  display: flex;
  gap: 20px;
}

.sertificate-card {
  display: flex;
  cursor: pointer;
  flex-direction: column;
  gap: 50px;
  background-color: #f5f5f5;
  padding: 35px;
  border-radius: 16px;
}

.sertificate-title h2 {
  font-size: 38px;
  font-weight: 600;
  color: #000;
}

.sertificate-desc p {
  color: gray;
  font-weight: 400;
  /* height: 80px; */
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
}

.sertificate-img img {
  width: 50%;
  height: 104px;
  border-radius: 10px;
  object-fit: cover;
}

.sertificate-btn {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sertificate-btn i {
  background-color: #e21e23;
  padding: 10px 14px;
  color: #fff;
  font-size: 18px;
  border-radius: 50%;
  transition: 0.4s all ease;
}

.sertificate-card:hover i {
  background-color: #000;
}

.sertificate-btn span {
  color: #000;
}

/* innovations */

#innovations {
  padding-block: 60px;
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
  background: url(/assets/img/darkbg.png) center/cover;
}

.innovation-title h2 {
  color: #fff;
  font-size: 40px;
  font-weight: 600;
}

.innovation-title p {
  color: #ffffff99;
}

.inno-card {
  background-color: #1f2026;
  border-radius: 20px;
}

.inno-card:hover img {
  transform: scale(1.1);
}

.inno-img {
  height: 310px;
  border-radius: 30px;
  overflow: hidden;
}

.inno-img img {
  border-radius: 30px;
  width: 100%;
  height: 100%;
  transition: 0.4s all ease;
}

.inno-desc {
  padding: 15px;
}

.inno-desc p {
  opacity: 0.5;
  color: #fff;
  text-transform: uppercase;
  font-size: 12px;
}

.inno-desc h4 {
  font-weight: 600;
  font-size: 18px;
  color: #fff;
  overflow-wrap: break-word;
}

/* references */

#references {
  padding-block: 60px;
}

.references-title h2 {
  font-size: 40px;
  font-weight: 600;
}

.references-title p {
  color: #1e2423;
  font-weight: 400;
  width: 50%;
  line-height: 21px;
}

.reference {
  height: 100px;
  width: 224px;
  transition: 0.4s all ease;
}

.reference:hover {
  filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.2));
}

.references-all {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
  max-width: 75%;
  margin: 0 auto;
  columns: 2;
}

.references-all span {
  border-radius: 8px;
  padding: 5px;
  background-color: #fff;
  height: 100%;
  width: 100%;
  display: inline-block;
  filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.1));
}

.references-all .reference img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.references-all::after {
  content: "";
  z-index: -1;
  width: 100%;
  height: 120px;
  top: 60px;
  left: 0;
  position: absolute;
  background-color: #f4e8d4;
  border-radius: 16px;
}

.references-bottom-all {
  display: flex;
  flex-wrap: wrap;
  max-width: 60%;
  margin: 0 auto;
  justify-content: center;
}

.reference-mini {
  width: 160px;
}

.reference-mini img {
  width: 100%;
  height: 64px;
}

/* call-to-action */

#call-to-action {
  background: url(/assets/img/call-to-action-bg.jpeg) center/cover no-repeat;
  background-size: auto;
  background-position: left;
  height: 650px;
  padding: 100px 0px 90px 0px;
}

.call-to-action-content {
  width: 50%;
  /* text-align: center; */
  margin-left: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.call-to-action-title h2 {
  font-size: 40px;
  font-weight: 600;
  color: #fff;
}

.call-to-action-title h2 span:first-child {
  color: #e21e23;
}

.call-to-action-title h2 span:nth-child(2) {
  color: #000;
}

.call-to-action-form .row {
  row-gap: 1rem;
}

.call-to-action-form input {
  width: 100%;
  padding: 7px 10px;
  border: 2px solid transparent;
  border-radius: 4px;
  outline: none;
  background-color: #f5f5f5;
  transition: 0.4s all ease;
  border-radius: 10px;
  padding: 17px;
}

.call-to-action-form input:focus,
.call-to-action-form textarea:focus {
  border: 2px solid #e21e23;
}

.call-to-action-form textarea {
  border-radius: 10px;
  outline: none;
  padding: 20px;
  border: 2px solid transparent;
  transition: 0.4s all ease;
  background-color: #f5f5f5;
}

.call-to-action-form input[type="submit"] {
  background-color: #e21e23;
  color: #fff;
  transition: 0.4s all ease;
  font-size: 19px;
  font-weight: 600;
}

.call-to-action-form input[type="submit"]:hover {
  background-color: #000;
  /* border: 1px solid #fff; */
}

/* call-to-action */

/* footer */

footer {
  background-color: #f2f2f2;
  padding-top: 3.5rem;
  padding-bottom: 3rem;
}

footer .extra-infos {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
}

footer .extra-infos h2 {
  font-size: 1.2rem;
  color: #000;
  font-weight: 600;
  margin-bottom: 10px;
}

footer .number a {
  color: #000;
}

footer .logo {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
}

footer .adress a {
  color: #fff;
  line-height: 21px;
}

.social a {
  background-color: #fff;
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #17181c;
  transition: 0.4s all ease;
}

.social a:hover {
  background-color: #e21e23;
  color: #fff;
}

.social a:hover img {
  filter: invert(1);
}

.social img {
  width: 17px;
}

.social ul {
  display: flex;
  gap: 10px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-nav li a {
  color: #000;
  font-size: 14px;
  font-weight: 600;
  transition: 0.4s all ease;
}

.footer-nav li a:hover {
  color: #e21e23;
}

.footer-tel {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-tel a {
  color: #000;
  font-size: 1.5rem;
  font-weight: 600;
  transition: 0.4s all ease;
}

.footer-tel a:hover {
  color: #e21e23;
}

.footer-tel p {
  color: #000;
  font-size: 14px;
}

.footer-address {
  padding-top: 5rem;
}

.footer-address p {
  color: #fff;
  line-height: 21px;
  font-size: 13px;
}

footer .row:nth-child(2) {
  padding-top: 2rem;
  color: #b2b7ca;
}

footer .row:nth-child(2) div:last-child {
  text-align: end;
}

footer .row:nth-child(2) .text-center a {
  color: #000;
  transition: 0.4s all ease;
}

footer .row:nth-child(2) .text-end a {
  color: #fff;
  transition: 0.4s all ease;
}

footer .row:nth-child(2) .text-center a:hover {
  color: #fff;
}

footer .row:nth-child(2) .text-end a:hover {
  color: #e21e23;
}

footer .footer-siteby img {
  width: 100px;
  object-fit: contain;
}

footer .footer-siteby a {
  color: #000;
  gap: 15px;
  display: inline-flex;
  align-items: center;
}

/* inside pages */

header.not-main {
  position: fixed;
  box-shadow: none;
  background: transparent;
}

.upper-bg {
  position: relative;
  background: url(/assets/img/upperbgnew.jpg) center/cover;
  background-position: 0 -200px;
  height: 300px;
  z-index: 1;
}

.upper-bg h2 {
  height: 100%;
  display: flex;
  flex-direction: column;
  font-size: 40px;
  letter-spacing: 1px;
  font-weight: 600;
  align-items: center;
  justify-content: center;
  color: #fff;
  gap: 15px;
}

.upper-bg span {
  font-size: 14px;
  color: #eee;
  opacity: 0.6;
}

.upper-bg a {
  color: #fff;
  opacity: 1;
}

.upper-bg::before {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  background: linear-gradient(
    360deg,
    rgb(0 0 0 / 30%) 0%,
    rgb(0 0 0 / 8%) 100%
  );
  background: #0000003b;
  width: 100%;
  z-index: -1;
}

span.nowrap span {
  color: #fff;
  font-size: 14px;
}

.zibil-simvol i {
  font-size: 12px;
  color: #fff;
}

.speedbar a.active {
  font-size: 17px;
  color: #fff;
  opacity: 0.4;
}

.speedbar-self {
  display: flex;
  gap: 9px;
  align-items: center;
}

.inner-content {
  position: relative;
  z-index: 2;
}

.gallery-img img {
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  width: 100%;
}

header.not-main nav ul li span,
header.not-main nav ul li a,
header.not-main .call-option a,
header.not-main .call-option i {
  color: #fff;
}

header.not-main .call-option span {
  color: rgb(252 253 255 / 77%);
}

header.active {
  background: #fff;
}

header nav ul li span.active {
  color: #fff;
  background: #000;
}

header.active .call-option a,
header.active .call-option i {
  color: #000;
}

header.active .call-option span {
  color: rgba(23, 24, 28, 0.56);
}

.inner-content {
  padding: 50px 0 26px;
  background: #f4f4f4;
}

.inner-content.feedback-content {
  padding: 50px 0 0 0;
}

.inner-bg.full {
  padding: 0;
}

span.detailed-info,
.full-info p {
  line-height: 21px;
}

span.detailed-info {
  max-height: 265px;
  display: inline-block;
  overflow: auto;
}

.full-info span {
  font-weight: 400;
}

.other-products h2 {
  font-size: 32px;
  font-weight: 600;
}

.other-products-title a {
  display: flex;
  gap: 10px;
  transition: 0.4s all ease;
  color: #000;
  font-size: 17px;
}

.other-products-title a:hover {
  gap: 15px;
}

.left-line {
  writing-mode: vertical-rl;
  -webkit-writing-mode: vertical-rl;
  background: #e21e23;
  /*height: 100%;*/
  padding: 25px;
}

.left-line p {
  color: #fff;
  text-align: center;
  font-size: 20px;
}

.full-desc-img {
  /*padding-top: 40px;*/
}

.full-desc-img img {
  width: 200px;
  height: 100%;
  object-fit: contain;
}

.full-info {
  display: none;
  padding-top: 40px;
}

.full-info p {
  padding: 15px;
  font-weight: 600;
  font-size: 15px;
}

.full-info.active {
  display: block;
}

.full-show {
  padding: 15px 40px;
  background: #e21e23;
  color: #fff;
  border-radius: 7px;
  outline: none;
  transition: 0.4s all ease;
  border: 1px solid transparent;
}

.full-buttons {
  display: flex;
  gap: 50px;
}

.full-title h2 {
  font-size: 35px;
  font-weight: 600;
}

.full-show.active {
  opacity: 0.5;
}

.full-show:not(.active) {
  opacity: 1;
}

.full-desc-content {
  display: flex;
  flex-direction: column;
  /*padding: 25px;*/
}

.full-img {
  height: 350px;
  padding-left: 15px;
}

.full-img img {
  object-fit: cover;
  border-radius: 8px;
}

.full-desc {
  line-height: 23px;
}

.inner-bg {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
}

.static-title h2 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -1px;
  line-height: 1.4;
  padding-bottom: 20px;
  margin-bottom: 0;
  position: relative;
  display: inline-block;
}

.static-title h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #e21e23;
}

.static-title {
  position: relative;
  margin-bottom: 35px;
}

.static-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(215, 221, 227, 0.6);
}

.static-content p {
  line-height: 23px;
}

.all-sertifikatlar.row {
  padding-top: 50px;
}

.all-sertifikatlar.row img {
  width: 100%;
}

.sertifikatlar-title h2 {
  font-size: 40px;
  font-weight: 600;
}

.contact-text {
  padding: 30px 0 80px 0;
}

.contact-title h2 {
  font-size: 35px;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
}

.contact-desc p {
  font-size: 18px;
  line-height: 23px;
  margin: 0 auto;
  max-width: 700px;
  text-align: center;
}

.contact-info {
  background: #fefefe;
  padding: 70px 0;
}

.contact-info .row.main-row {
  box-shadow: 0 15px 55px -5px rgb(9 31 67 / 10%);
}

.contact-left {
  background: #4d4c4b;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}

.contact-info .contact-left .wrapper {
  padding: 45px;
}

.contact-right-title h2 {
  font-size: 22px;
  font-weight: 600;
}

.contact-info .contact-right .wrapper {
  padding: 20px;
}

.contact-info .contact-right h2 {
  font-size: 22px;
  color: #301f27;
  margin-top: 30px;
}

.input-box {
  position: relative;
  width: 100%;
}

.input-box label {
  color: #3f2121;
  font-weight: 600;
  font-size: 13px;
  margin: 0;
  position: absolute;
  left: 0;
  z-index: 1;
  bottom: 15px;
  transition: all 0.3s ease;
}

.input-box input:focus + label,
.input-box textarea:focus + label {
  bottom: 35px;
}

.input-box label:hover {
  cursor: auto;
}

.contact-right input,
.contact-right textarea {
  transition: all 0.3s ease;
  width: 100%;
  border: none;
  border-bottom: 1px solid #bab9ba;
  font-size: 14px !important;
  outline: none;
  position: relative;
  -webkit-appearance: none;
  border-radius: 0;
  height: 44px;
  line-height: 44px;
}

.contact-right input:valid ~ label {
  bottom: 35px;
}

.contact-right textarea:valid ~ label {
  top: -5px;
}

.contact-right textarea {
  height: 140px;
}

.contact-right textarea ~ label {
  top: 15px;
}

.contact-right textarea:focus ~ label {
  top: -5px;
}

.contact-right button {
  color: #ffffff;
  border: none;
  float: right;
  height: 44px;
  width: 194px;
  font-size: 15px;
  text-align: center;
  border-radius: 3px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.8px;
  background: #e21e23;
  border: 2px solid transparent;
}

.contact-right button:hover {
  background: transparent;
  border: 2px solid #000;
  color: #000;
}

.contact-left h2 {
  font-size: 22px;
  color: white;
  font-weight: 600;
  margin-bottom: 20px;
}

.contact-left .number a {
  color: white;
  border-bottom: 1px solid white;
  font-size: 16px;
  transition: all 0.3s ease;
}

.contact-left .number a:hover {
  border-bottom: 1px solid transparent;
}

.contact-left p {
  color: #fff;
  line-height: 23px;
}

.innermehsul-card {
  position: relative;
  width: 100%;
  height: 450px;
  background: #d2d3d5;
  border-radius: 20px;
  overflow: hidden;
}

.innermehsul-circle {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /*background: #606062 !important;*/
  clip-path: circle(115px at 80% 20%);
  transition: 0.5s ease-in-out;
}

.innermehsul-card:hover .innermehsul-circle {
  clip-path: circle(300px at 80% -20%);
}

.innermehsul-card:hover:before {
  clip-path: circle(300px at 80% -20%);
}

.innermehsul-bg {
  position: absolute;
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
  width: 100%;
  z-index: 0;
  font-size: 10em;
  font-weight: 800;
  font-style: italic;
  color: rgb(0 0 0 / 3%);
}

.innermehsul-img {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  z-index: 10000;
  width: 100%;
  height: 130px;
  transition: 0.5s;
}

.innermehsul-card:hover .innermehsul-img {
  top: 0%;
  transform: translateY(0%);
}

.innermehsul-card .innermehsul-img img {
  position: absolute;
  top: 24%;
  left: 55%;
  transform: translate(-59%, 20%);
  width: 140px;
  height: 100%;
  object-fit: contain;
  transition: 0.4s all ease;
}

.innermehsul-card:hover .innermehsul-img img {
  transform: translate(-50%, -50%) rotate(0deg);
  left: 70%;
  top: 50%;
}

.innermehsul-content {
  position: absolute;
  bottom: 38px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
  height: 50px;
  text-align: center;
  transition: 1s;
  z-index: 10;
}

.innermehsul-card:hover .innermehsul-content {
  height: 210px;
}

.innermehsul-content h2 {
  position: relative;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #fff;
  margin: 0;
}

.innermehsul-content .size,
.innermehsul-content .color {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 20px;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
  padding-top: 0;
  padding-bottom: 0;
}

.innermehsul-card:hover .innermehsul-content .size {
  opacity: 1;
  visibility: visible;
  transition-delay: 0.5s;
}

.innermehsul-card:hover .innermehsul-content .color {
  opacity: 1;
  visibility: visible;
  transition-delay: 0.6s;
}

.innermehsul-card .innermehsul-content .size h3,
.innermehsul-card .innermehsul-content .color h3 {
  color: #fff;
  display: -webkit-box;
  font-weight: 300;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.innermehsul-content .size span {
  width: 26px;
  height: 26px;
  text-align: center;
  line-height: 26px;
  font-size: 14px;
  display: inline-block;
  color: #111;
  background: #fff;
  margin: 0 5px;
  transition: 0.5s;
  color: #111;
  border-radius: 4px;
  cursor: pointer;
}

.innermehsul-content .size span:hover {
  background: #9bdc28;
}

.innermehsul-content .color span {
  width: 20px;
  height: 20px;
  background: #ff0;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
}

.innermehsul-content .color span:nth-child(2) {
  background: #9bdc28;
}

.innermehsul-content .color span:nth-child(3) {
  background: #03a9f4;
}

.innermehsul-content .color span:nth-child(4) {
  background: #e91e63;
}

.innermehsul-content span {
  display: inline-block;
  width: 50%;
  margin: 0 auto;
  padding: 10px 20px;
  background: #fff;
  border: 1px solid transparent;
  border-radius: 4px;
  margin-top: 10px;
  text-decoration: none;
  font-weight: 600;
  color: #111;
  opacity: 0;
  transform: translateY(50px);
  transition: 0.5s;
  transition-delay: 0.5s;
  margin-top: 0;
}

.innermehsul-card:hover .innermehsul-content span {
  opacity: 1;
  transform: translateY(0px);
  transition-delay: 0.75s;
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}

.innerservice-card {
  position: relative;
  width: 100%;
  height: 350px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  transition: 0.5s all ease;
}

.innerservice-card .innerservice-circle {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 20px;
}

.innerservice-card .innerservice-circle::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #d83133;
  clip-path: circle(175px at center);
  transition: 0.5s all ease;
}

.innerservice-card:hover .innerservice-circle::before {
  background-color: #0065c3;
  clip-path: circle(400px at center);
}

.innerservice-card img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 250px;
  pointer-events: none;
  transition: 0.5s all ease;
}

.innerservice-card:hover img {
  left: 72%;
  height: 300px;
}

.innerservice-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 52%;
  left: 20%;
  padding: 20px 20px 20px 40px;
  transition: 0.5s all ease;
  opacity: 0;
  visibility: hidden;
}

.innerservice-card:hover .innerservice-content {
  left: 0;
  opacity: 1;
  visibility: visible;
}

.innerservice-content h2 {
  color: #fff;
  text-transform: uppercase;
  font-size: 2em;
  line-height: 1em;
}

.innerservice-content p {
  color: #fff;
  line-height: 22px;
}

.innerservice-content span {
  position: relative;
  color: #fff;
  padding: 10px 20px;
  border-radius: 10px;
  background-color: #fff;
  color: #111;
  width: fit-content;
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  transition: 0.4s all ease;
}

.innerservice-card .innerservice-content span:hover {
  background-color: #000;
  color: #fff;
}

/* menu */
.menu {
  margin: 0;
  display: none;
  justify-content: space-between;
  width: 100%;
  font-size: 1.5em;
  padding: 0 8px;
  position: fixed;
  z-index: 999;
  bottom: 0;
  align-items: center;
  /* justify-content: center; */
  background-color: #fff;
}

.menu img {
  width: 25px;
  height: 25px;
}

.menu__item {
  all: unset;
  z-index: 100;
  cursor: pointer;
  align-items: center;
  padding: 0.55em 0 0.85em;
  transition: transform var(--timeOut, var(--duration));
}

.menu__item.active p {
  color: #fff;
}

.menu__item.active {
  transform: translate3d(0, -0.8em, 0);
  background: #e21e23;
  border-radius: 50%;
  padding: 12px;
  /* filter: invert(1); */
}

.menu__item.active img {
  filter: invert(1);
}

.menu__item.active::before {
  transform: scale(1);
  background-color: var(--bgColorItem);
}

.icon {
  width: 1.8em;
  height: 1.8em;
  stroke: white;
  fill: transparent;
  stroke-width: 1pt;
  stroke-miterlimit: 10;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 400;
}

.menu__item.active .icon {
  animation: strok 1.5s reverse;
}

@keyframes strok {
  100% {
    stroke-dashoffset: 400;
  }
}

.menu__border {
  left: 0;
  bottom: 99%;
  width: 10.9em;
  height: 2.4em;
  position: absolute;
  clip-path: url(#menu);
  will-change: transform;
  background-color: var(--bgColorMenu);
  transition: transform var(--timeOut, var(--duration));
}

.svg-container {
  width: 0;
  height: 0;
}

@media screen and (max-width: 1201px) {
  .menu {
    font-size: 0.8em;
    display: flex;
  }
}

/* yenilikler ic sehife */
.card-front__heading {
  text-align: center;
  font-size: 1.5rem;
  margin-top: 0.25rem;
}

.card-back img {
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
  height: 100%;
}

.card-front img {
  height: 50px;
  filter: invert(1);
}

/* Main heading for inside page */
.inside-page__heading {
  padding-bottom: 1rem;
  width: 100%;
}

/* Mixed */

/* For both inside page's main heading and 'view me' text on card front cover */
.inside-page__heading,
.card-front__text-view {
  font-size: 1.3rem;
  font-weight: 800;
  margin-top: 0.2rem;
}

.inside-page__heading--city,
.card-front__text-view--city {
  color: #ff62b2;
}

.inside-page__heading--ski,
.card-front__text-view--ski {
  color: #2aaac1;
}

.inside-page__heading--beach,
.card-front__text-view--beach {
  color: #fa7f67;
}

.inside-page__heading--camping,
.card-front__text-view--camping {
  color: #00b97c;
}

/* Front cover */

.card-front__tp {
  color: #fafbfa;
}

/* For pricing text on card front cover */
.card-front__text-price {
  font-size: 1.2rem;
  margin-top: -0.2rem;
}

/* Back cover */

/* For inside page's body text */
.inside-page__text {
  color: #333;
  font-size: 13px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  overflow-wrap: break-word;
  line-height: 19px;
  width: 100%;
}

/* Icons ===========================================*/

.card-front__icon {
  fill: #fafbfa;
  font-size: 3vw;
  height: 3.25rem;
  margin-top: -0.5rem;
  width: 3.25rem;
}

/* Buttons =================================================*/

.inside-page__btn {
  background-color: transparent;
  border: 3px solid;
  border-radius: 0.5rem;
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 1rem;
  overflow: hidden;
  padding: 0.7rem 0.75rem;
  position: relative;
  text-decoration: none;
  transition: all 0.3s ease;
  width: 90%;
  z-index: 10;
}

.inside-page__btn::before {
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transform: scaleY(0);
  transition: all 0.3s ease;
  width: 100%;
  z-index: -1;
}

.inside-page__btn--city {
  border-color: #ff40a1;
  color: #ff40a1;
}

.inside-page__btn--city::before {
  background-color: #ff40a1;
}

.inside-page__btn--ski {
  border-color: #279eb2;
  color: #279eb2;
}

.inside-page__btn--ski::before {
  background-color: #279eb2;
}

.inside-page__btn--beach {
  border-color: #fa7f67;
  color: #fa7f67;
}

.inside-page__btn--beach::before {
  background-color: #fa7f67;
}

.inside-page__btn--camping {
  border-color: #00b97d;
  color: #00b97d;
}

.inside-page__btn--camping::before {
  background-color: #00b97d;
}

.inside-page__btn:hover {
  color: #fafbfa;
}

.inside-page__btn:hover::before {
  transform: scaleY(1);
}

/* Layout Structure=========================================*/

/* Container to hold all cards in one place */
.card-area {
  align-items: center;
  display: flex;
  flex-wrap: nowrap;
  height: 100%;
  justify-content: space-evenly;
  padding: 1rem;
}

/* Card ============================================*/

/* Area to hold an individual card */
.card-section {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  width: 100%;
}

/* A container to hold the flip card and the inside page */
.innerservice-innovations {
  background-color: rgba(0, 0, 0, 0.05);
  box-shadow: -0.1rem 1.7rem 6.6rem -3.2rem rgba(0, 0, 0, 0.5);
  height: 15rem;
  position: relative;
  transition: all 1s ease;
  width: 100%;
}

/* Flip card - covering both the front and inside front page */

/* An outer container to hold the flip card. This excludes the inside page */
.flip-card {
  height: 15rem;
  perspective: 100rem;
  position: absolute;
  right: 0;
  transition: all 1s ease;
  visibility: hidden;
  width: 15rem;
  z-index: 100;
}

/* The outer container's visibility is set to hidden. This is to make everything within the container NOT set to hidden  */
/* This is done so content in the inside page can be selected */
.flip-card > * {
  visibility: visible;
}

/* An inner container to hold the flip card. This excludes the inside page */
.flip-card__container {
  height: 100%;
  position: absolute;
  right: 0;
  transform-origin: left;
  transform-style: preserve-3d;
  transition: all 1s ease;
  width: 100%;
}

.card-front,
.card-back {
  backface-visibility: hidden;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

/* Styling for the front side of the flip card */

/* container for the front side */
.card-front {
  background-color: #fafbfa;
  height: 15rem;
  width: 15rem;
}

/* Front side's top section */
.card-front__tp {
  border-radius: 4px;
  align-items: center;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 57% 90%, 50% 100%, 43% 90%, 0 90%);
  display: flex;
  flex-direction: column;
  height: 12rem;
  justify-content: center;
  padding: 0.75rem;
}

.card-front__tp--city {
  background: linear-gradient(to bottom, #ff73b9, #ff40a1);
}

.card-front__tp--ski {
  background: linear-gradient(to bottom, #47c2d7, #279eb2);
}

.card-front__tp--beach {
  background: linear-gradient(to bottom, #fb9b88, #f86647);
}

.card-front__tp--camping {
  background: linear-gradient(to bottom, #00db93, #00b97d);
}

/* Front card's bottom section */
.card-front__bt {
  align-items: center;
  display: flex;
  justify-content: center;
}

/* Styling for the back side of the flip card */

.card-back {
  background-color: #fafbfa;
  transform: rotateY(180deg);
}

/* Specifically targeting the <video> element */
.video__container {
  clip-path: polygon(0% 0%, 100% 0%, 90% 50%, 100% 100%, 0% 100%);
  height: auto;
  min-height: 100%;
  border-radius: 4px;
  object-fit: cover;
  width: 100%;
}

/* Inside page */

.inside-page {
  background-color: #fafbfa;
  box-shadow: inset 20rem 0px 5rem -2.5rem rgba(0, 0, 0, 0.25);
  height: 100%;
  padding: 1rem;
  position: absolute;
  right: 0;
  transition: all 1s ease;
  width: 15rem;
  z-index: 1;
}

.inside-page__container {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  height: 100%;
  text-align: center;
  width: 100%;
}

/* Functionality ====================================*/

/* This is to keep the card centered (within its container) when opened */
.innerservice-innovations:hover {
  box-shadow: -0.1rem 1.7rem 6.6rem -3.2rem rgba(0, 0, 0, 0.75);
  width: 30rem;
}

/* When the card is hovered, the flip card container will rotate */
.innerservice-innovations:hover .flip-card__container {
  transform: rotateY(-180deg);
}

/* When the card is hovered, the shadow on the inside page will shrink to the left */
.innerservice-innovations:hover .inside-page {
  box-shadow: inset 1rem 0px 5rem -2.5rem rgba(0, 0, 0, 0.1);
}

/* responsiv */

@media screen and (max-width: 768px) {
  .products-title,
  .services-title {
    flex-direction: column;
    gap: 12px;
  }

  .left-content {
    width: 100%;
  }

  .modal-dialog {
    max-width: 100%;
  }

  .modal-img {
    width: 200px;
    margin: 0 auto;
  }

  .all-modal-bodies {
    flex-direction: column;
  }

  .full-buttons {
    flex-direction: column;
    gap: 5px;
  }

  .full-show {
    padding: 15px;
  }

  .other-products {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .full-inside .row {
    margin: 0 auto;
  }

  .left-content h1 {
    font-size: 45px;
  }

  .flip-card {
    display: none;
  }

  .inside-page {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    width: 100%;
    left: 0;
  }

  .innerservice-innovations,
  .inside-page {
    width: 100%;
  }

  .left-slider-content:not(.active) {
    display: none;
  }

  .left-slider-content.active {
    visibility: visible;
  }

  .left-slider-content.active {
    font-size: 55px;
  }

  /*.get-price{*/
  /*    display: none;*/
  /*}*/

  header nav {
    display: none;
  }

  /*.navbar{*/
  /*    flex-direction: row-reverse;*/
  /*}*/

  .both-slider {
    flex-direction: column;
  }

  .left-slider {
    width: 100%;
  }

  .right-slider {
    display: none;
  }

  .slider-navs {
    display: none;
  }

  .advantage-logo {
    text-align: center;
  }

  #advantages img {
    width: 100%;
    object-fit: contain;
  }

  .advantage-numbers {
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: row;
  }

  .advantage-number p {
    text-align: start;
  }

  .service-contact-desc,
  #innovations .row,
  #applications .row {
    gap: 1rem;
  }

  .references-title p {
    width: 100%;
  }

  .references-all,
  .references-bottom-all {
    max-width: 100%;
  }

  .references-all::after {
    height: 90%;
    width: 90%;
    top: 15px;
    left: 15px;
  }

  .reference {
    width: 100%;
  }

  .references-all {
    padding: 0 10px;
  }

  #call-to-action {
    height: 100%;
    position: relative;
    padding: 0;
  }

  #call-to-action::before {
    content: "";
    background: rgb(0, 0, 0);
    background: linear-gradient(
      180deg,
      rgb(0 0 0 / 43%) 0%,
      rgba(255, 255, 255, 0.8393951330532212) 100%
    );
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
  }

  .call-to-action-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 14px 0;
  }

  .call-to-action-form .row {
    row-gap: 1rem;
  }

  footer .row:nth-child(2) {
    row-gap: 20px;
    padding-top: 3rem;
    text-align: center;
  }

  .social ul {
    justify-content: center;
  }

  .footer-tel {
    padding-top: 30px;
    text-align: center;
  }

  footer .row:nth-child(2) div:last-child {
    text-align: center;
  }

  .full-desc-content {
    padding: 0;
  }

  .full-inside {
    flex-direction: column;
  }

  .left-line {
    writing-mode: horizontal-rl;
    -webkit-writing-mode: horizontal-tb;
    padding: 15px;
  }

  .full-title h2 {
    font-size: 30px;
    text-align: center;
  }

  .other-products-title {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .other-products .row {
    --bs-gutter-y: 1rem;
  }

  .inner-bg {
    padding: 20px;
  }
}

@media screen and (max-width: 991px) {
  .upper-bg {
    background-position: 0;
  }

  .slider-advantages {
    padding: 2rem;
  }

  .slider-advantages .row {
    gap: 20px;
  }

  .slider-content-top {
    gap: 60px;
  }

  .slider-content {
    padding-block: 50px;
  }

  header nav ul {
    display: none;
  }

  header .call-option {
    display: none;
  }

  .hamburger-menu {
    display: flex;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
  }

  header .navbar {
    gap: 12px;
  }

  .line {
    width: 20px;
    height: 2px;
    background-color: #000;
  }

  header.not-main .line {
    background-color: #fff;
  }

  header.bg-light .hamburger-menu .line {
    background: #000;
  }

  .line:first-child {
    width: 15px;
  }

  .big-dropdown {
    display: none;
  }

  header .logo img {
    width: 150px;
  }

  .slider-content-top {
    flex-direction: column-reverse;
  }

  .swiper-service {
    margin: 0;
    width: 100%;
    padding: 22px;
  }

  .slider-card {
    width: 100%;
    padding: 2rem 1.75rem;
  }

  .get-price a {
    width: 100%;
    text-align: center;
    display: inline-block;
    margin-bottom: 10px;
  }

  .all-modal-bodies {
    padding: 2rem 0;
  }

  .slider-card-img {
    top: -25px;
    right: -9px;
  }

  .ham-menu-content ul {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .ham-menu-content ul li:first-child {
    cursor: pointer;
  }

  .ham-menu-content a,
  .ham-menu-content span {
    color: #000;
    font-weight: 600;
  }

  .ham-menu-drop {
    display: none;
    padding-top: 20px;
  }

  .ham-menu-drop ul {
    padding-left: 2rem;
  }

  .ham-menu-drop ul li {
    list-style-type: initial;
  }

  #sertificates .sertificates-all {
    flex-direction: column;
  }

  .innermehsul-circle {
    clip-path: circle(300px at 80% -20%) !important;
  }

  .innermehsul-img {
    top: 0% !important;
    transform: translateY(0%) !important;
  }

  .innermehsul-img img {
    transform: translate(-50%, -50%) rotate(0deg) !important;
    left: 70% !important;
    top: 50% !important;
  }

  .innermehsul-content {
    height: 210px !important;
  }

  .innermehsul-content .color {
    opacity: 1 !important;
    visibility: visible !important;
    transition-delay: 0.6s !important;
  }

  .innermehsul-content span {
    opacity: 1 !important;
    transform: translateY(0px) !important;
    transition-delay: 0.75s !important;
  }

  .innerservice-card {
    width: auto;
    max-width: 350px;
    align-items: flex-start;
  }

  .innerservice-card:hover {
    height: 600px;
  }

  .innerservice-card .innerservice-content {
    width: 100%;
    left: 0;
    padding: 30px;
  }

  .innerservice-card img {
    top: 70%;
    left: 50% !important;
    height: 320px !important;
  }
}
@media screen and (max-width:576px) {
    header .logo img {
        width: 120px;
      }
}
/* language */
.header_own_right{
    display: flex;
    align-items: center;
    gap: 5px;
}
.language {
  position: relative;
}

.language button {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #000;
  font-size: 16px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.language button i {
  position: relative;
  top: 2px;
  font-size: 14px;
  transition: 0.3s ease-in;
}

.language button i.rotate {
  transform: rotate(180deg);
  transition: 0.3s ease-out;
}


.language .language-dropdown {
  position: absolute;
  width: 100px;
  left: -10px;  background-color: #fff;
  display: none;
  padding: 0;
  z-index: 999;
  border-radius: 5px;
  margin: 0;
  top: 40px;
  box-shadow: rgba(59, 89, 153, 0.24) 0px 3px 8px;
}

.language .language-dropdown::after {
  border-style: solid;
  border-width: 0 10px 10px;
  bottom: 100%;
  height: 0;  border-color: transparent transparent #fff;
  left: 10px;
  position: absolute;
  width: 0;
  transition: 0.3s ease-in;
  top: -9px;
  z-index: 99;
  content: "";
}

.language .language-dropdown li {
  padding: 5px 20px;
  border-bottom: 1px solid #ddd;
  line-height: 28px;
  text-transform: capitalize;
  cursor: pointer;
  width: 100%;
  background-color: transparent;
  transition: 0.3s ease-in-out;
}
.language .language-dropdown li:last-child {
  border: none;
}
.language .language-dropdown li a {
  text-decoration: none;
  width: 100%;
  height: 100%;
  color: #000;
  display: block;
}
