@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

/* Averta Demo PE ExtraBold Italic */
@font-face {
  font-family: "Averta";
  src: url("../font/AvertaDemoPE-ExtraboldItalic.otf") format("opentype");
  font-weight: 800;
  font-style: italic;
}

/* Averta Demo PE Regular */
@font-face {
  font-family: "Averta";
  src: url("../font/AvertaDemoPE-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}

section:nth-child(even) {
  background: #f6f6f6 !important;
}

section:nth-child(odd) {
  background: #fff !important;
}

html,
body {
  scroll-behavior: smooth !important;
}

:root {
  --radius: 4px;
  --color-1: #e85e2e;
  --color-1-hover: #f4815a;
  --color-2: #333;
  --color-3: #8f8f8f;
}

body {
  /* font-family: "Inter", sans-serif; */
  /* font-family: "Averta"; */
  font-family: "Montserrat";
}

/* innerpages */

.innerGrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    padding-bottom: 80px;
}

.innerGrid.innerXidmetler {
    grid-template-columns: repeat(2 ,1fr);
}

.innerGrid.blogg {
    grid-template-columns: repeat(3 ,1fr);
}

.innerGrid.innerKlient {
    grid-template-columns: repeat(6 ,1fr);
}

.innerGrid.blogg .blog {
    width: 100%;
}

/* innerpages code end */

.scroll-to-up {
  border-radius: var(--radius);
  background: white;
  color: var(--color-1);
  padding: 10px;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 990;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: none;
  opacity: 0;
  transform: translateY(20px);
  animation-fill-mode: forwards;

  &.show {
    display: block;
    animation: fadeInUp 0.5s forwards;
  }

  &.hide {
    animation: fadeOutDown 0.5s forwards;
  }

  &:hover {
    background: var(--color-1);
    color: white;
  }

  svg {
    min-width: 25px;
    max-width: 30px;
  }
}

/* Animasiya */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeOutDown {
  0% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(20px);
  }
}

.hero-section {
  /* Slider */
  .swiper {
    width: 100%;
    height: calc(100dvh - 130px);
    background: #000000d5;
  }

  .swiper-slide {
    display: flex;
    align-items: center;
    color: white;

    .container {
      position: relative;
    }
  }

  /* ITEM */
  .swiper-slide {
  }

  @keyframes smoothAnimation {
    0% {
      transform: scaleY(0);
      transform-origin: top;
      opacity: 0;
    }

    100% {
      transform: scaleY(1);
      transform-origin: top;
      opacity: 1;
    }
  }

  .swiper__content {
    max-width: 680px;

    h3 {
      text-transform: uppercase;
      margin-bottom: 20px;
    }

    p {
      margin-bottom: 35px;
    }

    h3,
    p {
      font-size: 18px;

      display: inline-block;
      transform-origin: top;
      animation: smoothAnimation 1s ease-out forwards;
    }

    h1 {
      font-size: 51px;
      font-weight: 700 !important;
      margin-bottom: 20px;

      span {
        color: var(--color-1);
      }

      display: inline-block;
      transform-origin: top;
      animation: smoothAnimation 1s ease-out forwards;
    }
  }

  .swiper-buttons-container {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 80px;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    z-index: 99;

    .swiper-pagination {
      position: static;
      transform: translateY(0%);

      .swiper-pagination-bullet {
        width: 8px;
        height: 38px;
        border-radius: 0px;
        background-color: #fff;
        transition: 0.7s;
      }
    }

    .btnn {
      position: static;
      color: var(--color-1);
      transform: rotate(90deg);

      &:last-child {
        margin-top: 5px;
        rotate: 0deg;
      }

      &::after {
        font-size: 30px;
        background: rgb(254, 245, 245);
        padding: 10px 16px;
        border-radius: var(--radius);
        transition: 0.7s;
      }

      &:hover::after {
        background: var(--color-1);
        color: white;
        transform: scale(1.1);
      }
    }
  }

  .swiper__card-container {
    align-items: center;
    overflow: hidden;
    max-width: fit-content;
    border-radius: var(--radius);
    margin: -100px auto;
    position: relative;
    z-index: 20;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;

    color: white;

    .swiper__card {
      display: flex;
      gap: 20px;

      padding: 50px 35px;
      background: var(--color-2);

      &:nth-child(even) {
        background: var(--color-1);
        color: var(--color-2);

        .swiper__card-icon {
          color: var(--color-2);
        }
      }

      .swiper__card-icon {
        width: 70px;
        color: var(--color-1);
      }

      .swiper__card-text {
        span {
          font-size: 50px;
          font-weight: 700;
        }

        p {
          font-size: 18px;
          font-weight: 600;
        }
      }
    }
  }

  /* Slider end */
}

@media (max-width: 768px) {
  .hero-section {
    .swiper__content {
      h1 {
        font-size: 31px;
      }
    }

    .swiper-buttons-container {
      width: fit-content;
      top: 80%;
      left: 50%;
      transform: translateX(-50%);
      flex-direction: row;

      .swiper-pagination {
        display: flex;
        align-items: center;
        gap: 4px;

        .swiper-pagination-bullet {
          width: 38px; /* İndi enini artırdıq çünki artıq üfüqi düzülür */
          height: 8px; /* Hündürlüyü azaltdıq */
          border-radius: 0px;
          background-color: #fff;
          transition: 0.7s;
        }
      }

      .btnn {
        transform: rotate(0deg); /* Artıq 90 dərəcə çevirməyə ehtiyac yoxdur */
        margin: 0;

        &:last-child {
          margin-left: 5px; /* Margin soldan verildi çünki yan-yana gəlirlər */
          rotate: 0deg;
        }

        &::after {
          font-size: 30px;
          background: rgb(254, 245, 245);
          padding: 10px 16px;
          border-radius: var(--radius);
          transition: 0.7s;
        }

        &:hover::after {
          background: var(--color-1);
          color: white;
          transform: scale(1.1);
        }
      }
    }
  }
}

.theme-btn {
  border-radius: var(--radius);
  background-color: var(--color-1);
  padding: 17px 42px;
  color: white;
  text-decoration: none;
  transition: 0.3s;
  font-weight: bolder;
  border: 1px solid transparent;

  display: inline-block;
  transform-origin: top;
  animation: smoothAnimation 1s ease-out forwards;

  &:hover {
    background-color: white;
    color: black;
    border-color: rgba(0, 0, 0, 0.448);
  }
}

/* header */

header .small-logo {
  width: 70px !important;
}

header.home {
  margin-bottom: 0;
}

header .social-medias {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}

header .social-medias li {
  list-style-type: none !important;
  width: 35px;
  height: 35px;
  border-radius: 30%;
  background-color: var(--color-1);
  margin-right: 15px;
  -webkit-transition: 300ms all ease;
  -moz-transition: 300ms all ease;
  -o-transition: 300ms all ease;
  transition: 300ms all ease;
}

header .social-medias li:last-child {
  margin-right: 0;
}

header .social-medias li:hover {
  background-color: var(--color-1);
}

header .social-medias li a {
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  height: 100%;
}

header .social-medias li a svg {
  width: 20px;
  color: #262626;
  color: #fff;
  -webkit-transition: 300ms all ease;
  -moz-transition: 300ms all ease;
  -o-transition: 300ms all ease;
  transition: 300ms all ease;
}

header .social-medias li a:hover > svg {
  color: #fff;
  -webkit-transform: rotateY(360deg);
  transform: rotateY(360deg);
}

header {
  position: relative;
  z-index: 999;
  background-color: #fff;
  position: sticky;
  top: 0;
  width: 100%;
}

.header-menu .container {
  /* max-width: 1400px !important; */
}

header .top {
  display: flex;
  align-items: center;
  background-color: #fff;
  gap: 10px;
  height: 4.3125rem;
  justify-content: flex-end;
}

header .top ul {
  padding: 0;
  margin: 0;
}

header .top li {
  list-style: disc;
  color: #000;
  margin-right: 1.5rem;
}

header .top ul li a {
  color: #000;
  font-size: 15px;
}

.header__contact {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header__contact-item {
  color: #c7c7c7;
  display: flex;
  align-items: center;
  gap: 3px;

  svg {
    width: 20px;
  }
}

.header__contact-item.language a {
  color: #000;
  border: 1px solid #eee;
  padding: 10px;
  border-radius: 50%;
  font-size: 13px;
  text-transform: uppercase;
}

.header__contact-item {
  display: flex;
  gap: 10px;
  position: relative;
  text-align: left !important;

  svg {
    color: var(--color-1);
  }
}

.header__contact-item--clock:before {
  content: url(https://reynolds.az/img/clock.png);
}

.header__contact-item--mail:before {
  content: url(https://reynolds.az/img/mail.png);
}

/* .header__contact-item--phone:before {
  content: url(https://reynolds.az/img/phone.png);
} */

.header__contact-item:before {
  display: block;
}

.header__contact-item span {
  color: #424242;
  font-weight: 400;
}

.header__email {
  text-decoration: none;
  color: #c7c7c7;
}

.header__contact-item--phone {
  margin-bottom: 0px;
}

.header__contact-item--phone {
  position: relative;
  text-align: left !important;
}

header .top .phone {
  font-size: 2rem;
}

header .top .phone {
  margin-right: 4.625rem;
  text-decoration: none;
  color: #272222;
  font-size: 1.375rem;
  font-weight: 700;
  z-index: 2;
}

.header__contact a.phone {
  margin-right: 0px !important;
  font-weight: 400;
}

.phone {
  text-decoration: none;
}

header .social {
  width: 1.95rem;
  height: 1.95rem;
  border-radius: 50%;
  border: 1px solid #000;
  color: #000;
  text-decoration: none;
  text-align: center;
  line-height: 1.8rem;
  display: inline-block;
  margin: 0;
}

header .social .fa {
  font-size: 14px;
}

header i.fa {
  font-style: normal !important;
}

header .header-menu {
  /* position: absolute; */
  /* margin-bottom: -3.75rem; */
  width: 100%;
  bottom: -3.75rem;
  left: 0;
  z-index: 1;
  padding: 5px 0;
}

header .header-menu:before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: #000;
  opacity: 0.8;
}

.menu-burger {
  display: none;
  position: absolute;
  top: 50%;
  margin-top: 1rem;
  right: 3rem;
  height: 2rem;
  width: 2.5rem;
}

header .header-menu .container {
  position: relative;
}

header .header-menu .logo-back {
  position: absolute;
  height: 3.125rem;
  width: 240px;
  /* background-color: var(--color-2); */
  top: -1px;
  left: 2.5rem;
}

header .header-menu .logo-back:before {
  position: absolute;
  /* content: ""; */
  top: 0;
  left: -35px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 2.25rem 3.125rem 0;
  border-color: transparent var(--color-2) transparent transparent;
}

header .header-menu .logo-back .logo {
  /* position: absolute; */
  /*left: 8px;*/
  display: inline-block;
  text-decoration: none;
  z-index: 1;
}

img.logo-desktop {
  display: block;
  width: 230px;
  /* position: relative; */
  left: -10px;
  /* top: -15px; */
}

img.logo-mobile {
  display: none;
}

header .header-menu .container .logo-back:after {
  position: absolute;
  /* content: ""; */
  top: 0;
  right: -36px;
  width: 120px;
  height: 0px;
  border-style: solid;
  border-width: 3.125rem 2.25rem 0 0;
  border-color: #ffffff transparent transparent transparent;
}

header .header-menu .container > ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 20rem;
  margin-bottom: 0;
}

header .header-menu .container > ul > li {
  display: inline-block;
  position: relative;
}

header .header-menu .container > ul > li > a {
  color: #fff;
  padding: 0 15px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 700;
  height: 3.75rem;
  font-size: 14px;
  line-height: 3.75rem;
  display: inline-block;
  position: relative;
}

header .header-menu .container > ul > li > a:hover {
  background-color: var(--color-1-hover);
  color: #000;
}

header .header-menu .container > ul > li > ul {
  position: absolute;
  left: 0;
  background: #fff;
}

header .header-menu .container > ul > li ul {
  padding: 0;
  min-width: max-content;
  opacity: 0;
  visibility: hidden;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

header .header-menu .container > ul > li > ul {
  top: 100%;
  left: -36px;
  width: 350px;
}

li.open_drop:hover > ul {
  opacity: 1 !important;
  visibility: visible !important;
}

li.open_drop {
  position: relative;
}

.open_drop ul.drop_2 {
  /* left: -252px !important; */
  top: 428% !important;
  width: 100%;
  min-width: 322px !important;
  box-shadow: none !important;
}

header .header-menu .container > ul > li ul a {
  padding: 10px;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-size: 13px;
  width: 100%;
}

header .header-menu .container > ul > li ul a:hover {
  background: #eee;
  /*color: yellow;*/
}

.open_drop ul {
  position: absolute;
  left: 100%;
  top: 0;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s all ease;
}

.order-call {
  background-color: var(--color-1);
  color: #000 !important;
}

.search-container {
  position: relative;
}

header.home .search-container:before {
  border-color: transparent #fff transparent transparent;
}

.search-container:before {
  border-color: transparent var(--color-1) transparent transparent;
}

.search-container:before {
  position: absolute;
  content: "";
  bottom: -2rem;
  left: -15.78rem;
  opacity: 0;
  transition: 0.2s all ease;
  pointer-events: none;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 2.8125rem 3.125rem 0;
  border-color: transparent #fff transparent transparent;
}

.search-container button {
  color: #fff;
  background-color: transparent;
  border: none;
  outline: none;
  font-size: 1.375rem;
  height: 3.75rem;
}

.search-container input {
  position: absolute;
  height: 3.125rem;
  width: 15rem;
  bottom: -2rem;
  right: 0;
  padding: 0.625rem;
  color: #000;
  border: none;
  outline: none;
  opacity: 0;
  transition: 0.2s all ease;
  pointer-events: none;
}

.search-container button:active {
  transform: translateY(2px);
}

.search-container.active input,
.search-container.active:before {
  bottom: -3.125rem;
  opacity: 1;
  pointer-events: auto;
}

header.home .search-container.active input {
  background: #fff;
}

.mob_logo img {
  width: 150px;
}

/* Menü ve alt menüler için temel stil */
.menu {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 100vh;
  background: #fff;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.menu.open {
  transform: translateX(0);
}

.submenu {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 100vh;
  background: #f0f0f0;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.submenu.open {
  transform: translateX(0);
}

.back-btn {
  padding: 10px;
  background: #ccc;
  cursor: pointer;
}

/* Hamburger menüsünün stilini tanımlıyoruz */

.offcanvas-title {
  font-weight: 600;
}

.hamburger {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
}

.hamburger div {
  width: 100%;
  height: 4px;
  background: #000;
}

/* header end */

/* left side */
.right-panel {
  width: 100%;
}

@media screen and (max-width: 1501px) {
  header.sticky {
    padding: 0 60px;
  }

  .navbar-brand img {
    width: 160px;
  }

  .nav-link {
    font-size: 16px;
  }

  .right-menu a {
    white-space: nowrap;
    margin: 0;
  }
}

/* Desktop üçün (1025px - 1439px arası) */
@media (min-width: 1025px) and (max-width: 1439px) {
  .desktop_img {
    display: block !important;
  }

  .mainCarousel,
  .owl-carousel .owl-stage-outer,
  .owl-carousel .owl-stage,
  .owl-carousel .owl-item {
    height: 100%;
  }

  #main .controls-wrapper {
    height: unset;
  }

  header .header-menu .container > ul > li > a {
    font-size: 12px !important;
    padding: 0 5px !important;
  }
}

/* Tablet üçün (768px - 1024px arası) */
@media (min-width: 768px) and (max-width: 1024px) {
  .mainCarousel,
  .owl-carousel .owl-stage-outer,
  .owl-carousel .owl-stage,
  .owl-carousel .owl-item {
    height: 100%;
  }

  #main .controls-wrapper {
    height: unset;
  }

  .tablet_slide {
    display: block !important;
  }

  header .header-menu .container > ul > li > a {
    font-size: 12px !important;
    padding: 0 5px !important;
  }
}

/* About_us */
.about_us {
  padding: 80px 0;
  background: #f6f6f6;
}

.about_us--inner {
  display: flex;
  align-items: center;
  gap: 120px;
  justify-content: space-between;
}

.about_us--img_container {
  position: relative;

  .img-1,
  .img-2 {
    position: relative;
    width: fit-content;
    object-fit: cover;

    &::after {
      content: "";
      font-size: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;

      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      width: 90%;
      height: 90%;
      border: 4px solid rgba(255, 255, 255, 0.65);
      z-index: 1;
      transition: 0.3s;
    }

    &:hover::after {
      content: "";
      font-weight: 700;

      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.482);
    }
  }

  .img-1 img {
    width: 500px;
  }

  .img-2 {
    position: absolute;
    left: inherit;
    top: 50%;
    transform: translate(70%, -50%);
    z-index: 20;

    img {
      width: 350px;
    }
  }
}

@media (max-width: 1400px) {
  .about_us--img_container {
    .img-1 img {
      max-width: 450px;
    }

    .img-2 {
      transform: translate(48%, -50%) !important;
    }
  }
}

@media (max-width: 992px) {
  .about_us--inner {
    flex-direction: column-reverse;

    .about_us--img_container {
      .img-1 img {
        width: 100%;
      }
      .img-2 {
        transform: translate(20vw, -50%) !important;
        img {
          width: 300px;
        }
      }
    }
  }
}

.about_us--text-container {
  max-width: 600px;
  text-align: center;

  hgroup {
    position: relative;
    padding: 30px 0 20px;
  }

  hgroup:before {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    content: "";
    display: inline-block;
    width: 57px;
    height: 15px;
    border-color: var(--color-1-hover);
    border-style: solid;
    border-width: 5px 5px 0 5px;
  }

  hgroup::after {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    content: "";
    display: inline-block;
    width: 57px;
    height: 15px;
    border-color: var(--color-1-hover);
    border-style: solid;
    border-width: 5px 0 0 0px;
  }

  .desc {
    font-size: 18px;
    color: var(--color-3);
    margin-top: 20px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .theme-btn {
    padding: 10px 20px;
  }
}

@media (max-width: 768px) {
  .about_us--text-container {
    .desc {
      font-size: 14px;
    }
  }
}

/* About us end */

/* Products */
section.product-innerr-page {
  background: white !important;
}

section.product-page {
  background: #fff !important;
  margin-top: -10px;
  padding-bottom: 80px;
}

.section-padding {
  /* margin-top: 80px; */
  padding: 60px 0;
  padding-bottom: 80px;
  /* background: #f6f6f6; */
}

.section-title {
  margin-bottom: 65px;
}

.section-title .banner {
  margin-bottom: 15px;
  padding: 10px 23px 10px 44px;
  border-radius: 30px;
  width: fit-content;
  position: relative;
  background: white;
  font-size: 20px;
  display: flex;
  align-items: center;
  line-height: 1;
  letter-spacing: 0.5px;
  color: #404a3d;
  text-transform: capitalize;
  font-style: normal;
  font-weight: normal;
}

.section-title .banner:before {
  content: "*";
  position: absolute;
  left: 10px;
  top: 50%;
  font-size: 28px;
  line-height: 1;
  color: var(--color-1);
  transform: translateX(0%) translateY(-50%);
}

@media screen and (min-width: 768px) {
  .section-title .banner {
    font-size: 28px;
  }
}

.products-section {
  position: relative;
}

.products-navigation {
  display: flex;
  align-items: center;

  width: 100%;
  justify-content: space-between;
  height: fit-content;
}

.products-navigation button {
  width: 40px;
  border: none;
  position: absolute;
  transition: 0.3s ease-in-out;
  top: 50%;
  z-index: 10;
  transform: translateY(-50%);
  height: 40px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-1);
  border-radius: var(--radius);
  cursor: pointer;
  background: white;

  svg {
    width: 140px !important;
    height: 100px !important;
  }
}

.product-navigation-prev {
  left: 0;
}

.product-navigation-next {
  right: 0;
}

.products-navigation button:hover {
  background: var(--color-1);
  color: white;
  width: 45px;
  height: 45px;
}

.products-card {
  width: 100%;
  background: #eee;
  padding: 1rem;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.products-card:hover > article a {
  border: 1px solid var(--color-1);
  background-color: var(--color-1-hover);
  color: white;
  scale: 1.1;
}

.products-card img {
  transition: 0.2s;
}

.products-card:hover img {
  scale: 1.1;
}

.products-card-overlay {
  height: 66%;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  transform: translateY(-100%);
  transition: 0.3s ease-in-out;
  padding: 20px 10px;
  text-align: center;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  background: #ffffff;

  display: none;
}

.producst-card-overlay-content {
  color: black;
  font-size: 13px;
  line-height: 1.2;
  overflow: hidden;
  text-align: start;
  /* border: 1px solid var(--color-1); */
  border-bottom: 0;
}

.producst-card-overlay-content ul {
  padding: 5px;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.producst-card-overlay-content ul li {
  display: flex;
  align-items: flex-end;
}

.producst-card-overlay-content ul li:not(:last-child) {
  margin-bottom: 10px;
}

.producst-card-header {
  font-size: 12px;
  /* text-align: center; */
  font-weight: 700;
}

.producst-card-overlay-content ul li {
  font-size: 12px;
  text-align: left;
  width: 100%;
  gap: 4px;
  display: flex;
  align-items: flex-end;
}

.products-card figure {
  border-radius: 0.5rem;
  overflow: hidden;
  height: 240px;
}

.products-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.products-card article {
  padding: 10px 0;
}

.products-card article h4 {
  font-size: 16px;
  font-weight: 500;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  line-height: 1.2;
  text-overflow: ellipsis;
  overflow: hidden;
  text-transform: capitalize;
  height: 45px;
  color: var(--color-2);
  margin-bottom: 0.5rem;
}

.products-card article .btn {
  display: flex;
  height: 45px;
  margin-top: 10px;
  color: rgb(255, 255, 255);
  align-items: center;
  justify-content: center;
  transition: 0.3s ease-in-out;
  width: 100%;
  border-radius: 4px;

  background: var(--color-1);

  &:hover {
    background-color: var(--color-1-hover);
    color: white;
    border-color: var(--color-1);
  }
}

@media screen and (min-width: 992px) {
  .products-card:hover .products-card-overlay {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    border: 1px solid rgb(219, 219, 219);
    border-radius: 10px 10px 0;
  }
}

@media screen and (min-width: 992px) {
  .products-card article h4 {
    font-size: 18px;
  }
}

/* Medical */
.ui-field__input:focus-visible {
  border-color: #d4d4dd;
  background-color: rgba(0, 0, 0, 0.555);
  outline: 0;
}

/* input:focus ~ .floating-label,
input:not(:focus):valid ~ .floating-label */
.ui-field__input:not(:focus):valid ~ .ui-field__name {
  top: 4px;
  font-size: 13px;
  opacity: 1;
  left: 20px;
  color: #cecece;
}

@media only screen and (max-width: 320px) {
  p {
    font-size: clamp(10px, 10vw, 22px);
  }
}

@media (max-width: 768px) {
  .medical_turizm_card {
    width: 100% !important;
  }
}

.world_tour_card {
  position: relative;
  border-radius: 15px;
  cursor: pointer;
  overflow: hidden;
  display: inline-block;
}

.world_tour_card_img {
  overflow: hidden;
  height: 100%;
}

.world_tour_card img {
  width: 100%;
  height: 100%;
  transition: 0.3s;
  object-fit: cover;
  z-index: 2;
}

.world_tour_card:hover img {
  filter: brightness(0.7);
  transform: scale(1.09);
}

.medical_turizm_card .world_tour_card_desc {
  bottom: 0;
  width: 100%;
  padding-bottom: 30px;
  background: linear-gradient(to top, black, transparent);
}

.medical_turizm_card h4 {
  font-size: 22px !important;
}

.world_tour_card_desc h4 {
  font-size: 29px;
  font-weight: 500;
}

.world_toru_card_info p {
  margin: 0 !important;
}

.world_toru_card_info {
  padding: 8px 20px;
  background: #000000c2;
  top: 20px;
  bottom: inherit;
  left: inherit;
  font-weight: 500;
  right: 20px;
  border-radius: 7px;
  color: #555;
  width: 100px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.world_tour_card_desc,
.world_toru_card_info {
  position: absolute;
  padding: 0 15px;
  z-index: 3;
  gap: 10px;
  color: #fff;
  bottom: 0;
  font-size: 12px;
}

.medical_turizm_card {
  max-height: 240px;
  width: 100%;
}

.medical__inner {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 10px;

  .c2 {
    width: 80%;
    max-height: 487px;
  }
}

.medical {
  margin-top: 80px;

  .sectionTitle {
    margin-bottom: 70px;
  }
}

.world_tour_card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
}

@keyframes titleAnimation {
  0% {
    width: 0%;
  }

  50% {
    width: 100%;
  }

  100% {
    width: 0%;
  }
}

/* Referances */
/*references styling start*/
#references {
  background: #f6f6f6;
  /* margin-top: 80px; */
  padding: 60px 0;

  &.pp {
    background: white !important;
  }
}

.customers-page {
  margin-top: -10px;
}

#references .row.justify-content-center {
  margin-top: 40px;
}

#references h3 {
  text-align: center;
  margin-bottom: 25px;
}

#references .ref-box {
  padding: 10px;
  margin: 15px 0;
  background-color: #fff;
  border: 1px solid #e6e6e6;
  height: 150px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  cursor: pointer;
}

#references .ref-box p {
    height: 100%;
}

#references .ref-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /*opacity: .7;*/
  -webkit-transition: 300ms all ease;
  -moz-transition: 300ms all ease;
  -o-transition: 300ms all ease;
  transition: 300ms all ease;
}

#references .ref-box:hover img {
  -webkit-filter: none;
  filter: none;
  opacity: 1;
}

@media (max-width: 992px) {
  #references {
    padding: 50px 0 50px 0;
  }

  #references .row.justify-content-center {
    margin-top: 0;
  }
}

h2.sectionTitle {
  position: relative;
}

h2.sectionTitle::after {
  content: "";
  height: 3px;
  width: 80px;
  left: 0;
  bottom: -15px;
  position: absolute;
  background-color: var(--color-1);
  animation: titleAnimation 10s infinite;
}

/* Blogs */

.blogs {
  margin-top: 50px;
  padding-bottom: 80px;
  border-bottom: 1px solid #3333;
}

.blogs h2 {
  margin-bottom: 30px;
  text-align: left;
}

.blogsBox {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.blog {
  color: #000;
  width: 32%;
  box-shadow: 0 0 31px #3334;
  overflow: hidden;
  padding: 10px 10px 40px;
  border-radius: 8px;
  height: 380px;
  display: block;
}

@media (max-width: 1200px) {
  .blog {
    width: 100%;
  }
}

.blog-page .blog {
  width: 100%;
  box-shadow: 0 0 31px rgba(51, 51, 51, 0.129);
}
section.blog-page {
  padding: 0 0 80px 0;
  background: white !important;
}

.blog img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}

.blog:hover img {
  scale: 120%;
}

.blogImg {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  height: 60%;
}

.blogDate {
  position: absolute;
  left: 10px;
  bottom: 10%;
  background: #fff;
  padding: 10px;
  border-radius: 5px;
  font-size: 13px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.blogContents h3 {
  margin: 10px 0 20px;
}

.blogContents h3,
.blogContents p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.blogsBox.descBlog {
  display: flex;
  justify-content: space-between;
}

.blogsBox.mobileBlog {
  display: none;
}

#blogsTop {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#blogsTop a {
  color: #000;
}

#blogsTop a svg {
  height: 14px;
}

.blogsBox {
  margin-top: 30px;
}

.wp-btns a {
  margin-bottom: 15px;
  display: block;
}

.news-all-btn {
  background-color: var(--color-1);
  min-width: 150px;
  color: #fff;
  text-align: center;
  border-radius: var(--radius);
  padding: 12px 22px;
  font-size: 15px;
  line-height: 22px;
  display: inline-block;
  border: 1px solid #fff0;
  transition: 0.4s all ease;
  font-weight: 700;
}

.news-all-btn:hover {
  background-color: #fff0;
  border: 1px solid var(--color-1);
  color: #000;
}

/* Call section */
/*call-to-action*/
#call-to-action {
  padding: 36px 0;
  background-color: #eeeeee;
}

#call-to-action .content_area {
  background-color: #fff;
  border-radius: 30px;
  padding: 24px 18px;
}

#call-to-action .call_to_action_content h3 {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 5px;
  font-weight: 700;
  color: #000;
  font-size: 22px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.forms_input {
  flex: 0 0 50%;
  position: relative;
}

#call-to-action .forms_textarea textarea,
.forms_input input {
  display: block;
  min-height: 56px;
  padding: 17px 18px;
  color: var(--white);
  opacity: 0.6;
  font-size: 14px;
  line-height: 20px;
  background-color: #e4e4e4;
  outline: 0;
  width: 100%;
  font-family: inherit;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#call-to-action .call_to_action_content h3 img {
  width: 35px;
  height: 35px;
}

#call-to-action .call_to_action_content p {
  margin-top: 50px;
}

#call-to-action .forms_area {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 20px;
}

#call-to-action .forms_area .forms_textarea {
  position: relative;
  width: 100%;
}

#call-to-action .forms_textarea textarea {
  border: 1px solid #e4e4e4;
  border-radius: 10px;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transition: border-color 0.2s ease-in-out;
  transition: border-color 0.2s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  max-height: 200px;
  resize: vertical;
}

.call_label {
  position: absolute;
  top: 20px;
  left: 25px;
  color: #000;
  font-size: 12px;
  line-height: 1;
  opacity: 0.9;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  pointer-events: none;
}

.forms_input input,
.forms_input select {
  border: 1px solid #e4e4e4;
  border-radius: 10px;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transition: border-color 0.2s ease-in-out;
  transition: border-color 0.2s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

#call-to-action .forms_textarea textarea:focus + .call_label,
#call-to-action .forms_textarea textarea:valid + .call_label {
  position: absolute;
  top: 5px;
  font-size: 13px;
  width: 100%;
}

#call-to-action .forms_input input:focus + .call_label,
#call-to-action .forms_input input:valid + .call_label {
  position: absolute;
  top: 5px;
  font-size: 13px;
  width: 100%;
}

.forms_btn,
.forms_input {
  width: 50%;
}

.forms_btn,
.forms_input,
.forms_textarea {
  padding: 0 10px;
}

.forms_btn button {
  width: 100%;
  font-family: inherit;
  font-size: 16px;
  background: var(--color-1);
  color: #fff;
  padding: 0.8em 1.2em;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 12px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
}

#call-to-action .forms_textarea textarea,
.forms_input select,
.forms_input input {
  display: block;
  min-height: 56px;
  padding: 17px 18px;
  color: var(--white);
  opacity: 0.6;
  font-size: 14px;
  line-height: 20px;
  background-color: #f7f7f5;
  outline: 0;
  width: 100%;
  font-family: inherit;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.forms_input select {
  color: black;
}

.forms_btn button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

.forms_btn button:active {
  transform: scale(0.95);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.forms_btn button span {
  display: block;
  transition: 0.3s;
}

.forms_btn button svg {
  width: 18px;
  height: 18px;
  fill: white;
  transition: 0.3s;
}

.forms_btn button .svg-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  margin-right: 0.5em;
  transition: 0.3s;
}

.forms_btn button:hover .svg-wrapper {
  background-color: rgba(255, 255, 255, 0.5);
}

.forms_btn button:hover svg {
  transform: rotate(45deg);
}

/* Footer */

footer {
  padding: 40px 0 30px;
  background-color: #333333;
}

footer .online-order {
  color: #93c24f;
  border: 2px solid;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  margin-top: 30px;
  padding: 8px 20px;
  font-size: 16px;
  display: block;
  width: fit-content;
}

footer .footer-menu {
  padding-top: 83px;
}

footer .footer-menu .nav-link {
  color: #cfd9e2;
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  font-weight: 600;
}

footer .footer-menu .nav-link:hover {
  color: #fff;
}

footer .social-medias {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}

footer .social-medias li {
  width: 35px;
  height: 35px;
  border-radius: 30%;
  background-color: #fff;
  margin-right: 15px;
  -webkit-transition: 300ms all ease;
  -moz-transition: 300ms all ease;
  -o-transition: 300ms all ease;
  transition: 300ms all ease;
}

footer .social-medias li:last-child {
  margin-right: 0;
}

footer .social-medias li:hover {
  background-color: var(--color-1);
}

footer .social-medias li a {
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  height: 100%;
}

footer .social-medias li a svg {
  width: 20px;
  color: #262626;
  -webkit-transition: 300ms all ease;
  -moz-transition: 300ms all ease;
  -o-transition: 300ms all ease;
  transition: 300ms all ease;
}

footer .social-medias li a:hover > svg {
  color: #fff;
  -webkit-transform: rotateY(360deg);
  transform: rotateY(360deg);
}

footer .info-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  padding: 0;
}

footer .info-contact li {
  width: 100%;
  margin-top: 16px;
  text-align: right;
}

footer .info-contact li a {
  color: #fff;
  font-size: 18px;
}

footer .info-contact li:not(:last-child) a {
  font-size: 20px;
  font-weight: 600;
  line-height: 0;
  display: block;
  max-width: 100%;
  overflow: visible;
}

footer .info-contact li:not(:last-child) a i {
  color: #93c24f;
  margin-right: 8px;
}

footer .copyright {
  padding: 30px 15px 0;
  display: flex;
  justify-content: space-between;
  align-items: end;
}

footer .copy_item {
  display: block;
  padding-bottom: 12px;
}

footer .site_bt {
  padding-bottom: 13px;
}

footer .copyright a img {
  width: 220px;
}

footer .copyright span {
  color: #cfd9e2;
  font-size: 13px;
  font-weight: 500;
}

footer .copyright span:last-child {
  color: #8b95a1;
}

@media (max-width: 768px) {
  footer .copyright a img {
    width: 180px;
  }

  footer .footer-menu .nav-link {
    font-size: 12px;
  }

  footer .info-contact li a {
    font-size: 17px;
  }

  footer .copyright span {
    width: 100%;
  }

  footer .copyright span {
    text-align: center;
  }

  footer {
    padding: 30px 0 20px;
  }

  footer .online-order {
    float: right;
  }

  footer .footer-menu ul {
    padding: 0;
  }

  footer .footer-menu ul:nth-child(1) {
    padding-left: 15px;
  }

  footer .footer-menu ul:nth-child(3) {
    padding-right: 15px;
  }

  footer .footer-menu ul {
    width: 33.33%;
  }

  footer .social-medias,
  footer .info-contact {
    justify-content: center;
  }

  footer .info-contact li {
    text-align: center;
  }

  footer .info-contact li:not(:last-child) a {
    font-size: 18px;
  }

  footer .footer-menu {
    padding-top: 80px;
  }
}

@media (max-width: 600px) {
  footer .copyright {
    flex-direction: column-reverse !important;
  }
}
@media (max-width: 575.5px) {
  footer .footer-menu {
    padding-top: 0px;
  }
}

/* Projects */

/*.productSwiper .swiper-slide {*/
/*  width: auto !important;*/
/*  padding: 10px 0;*/
/*}*/

.new-projects-section {
  padding: 50px;
  background: #f6f6f6;
  padding-bottom: 90px;
}

@media (max-width: 600px) {
  .new-projects-section {
    padding: 50px 20px;
  }
}

@media (max-width: 400px) {
  .new-projects-section {
    padding: 50px 0px;
  }
}

.all-projects {
  /*margin: -20px;*/
  display: flex;
  flex-wrap: wrap;
}

.new-projects-title h2,
.blog-title h2 {
  /*font-size: 38px;*/
  padding-bottom: 30px;
  font-size: 44px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

@media (max-width: 768px) {
  .blog-title h2 {
    font-size: 34px;
  }
}

.ashade-grid:not(.is-masonry) .ashade-grid-item {
  transition: opacity 0.5s, transform 0.5s;
}

.ashade-album-item {
  position: relative;
  overflow: hidden;
  max-width: 500px;
  width: 100%;
}

.projects-page .ashade-album-item {
  /*margin-right: 30px;*/
  margin-bottom: 30px;
  width: 530px;
}

@media screen and (min-width: 1367px) {
  .projects-page .ashade-album-item {
    width: 612px;
  }
}

.ashade-album-item img {
  object-fit: cover;
}

.ashade-grid .ashade-grid-item {
  margin: 20px;
  backface-visibility: visible;
  transition: opacity 0.5s;
  overflow: visible;
}

.all-projects .ashade-grid-item {
  width: 415px;
  transition: opacity 0.5s, transform 0.5s;
  /*margin: 20px;*/
  backface-visibility: visible;
  transition: opacity 0.5s;
  overflow: visible;
}

@media screen and (max-width: 1400px) {
  .all-projects .ashade-grid-item {
    width: 360px;
  }
}

.ashade-grid:not(.is-masonry) .ashade-grid-item {
  transition: opacity 0.5s, transform 0.5s;
}

.ashade-grid-item--inner {
  transition: transform 0.5s;
  backface-visibility: visible;
  overflow: hidden;
  position: relative;
}

.ashade-grid-item:hover .ashade-grid-item--inner,
.ashade-grid-item:hover span {
  transform: scale(1.03);
  /*color: #cba37c;*/
}

.ashade-album-item .ashade-album-item__image {
  overflow: hidden;
  backface-visibility: hidden;
  height: 300px;
}

.ashade-album-item img {
  width: 100%;
  height: 100%;
  display: block;
  transition: transform 0.5s;
  backface-visibility: hidden;
}

.ashade-album-item__image:after {
  content: "";
  position: absolute;
  left: 20px;
  top: 250px;
  right: 20px;
  z-index: 99;
  bottom: 17px;
  opacity: 0.9;
  border: 1px solid #fff;
  border-width: 1px 1px 0;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.portfolio-item-info {
  padding: 25px 50px 25px;
  -webkit-transition: -webkit-transform 0.2s ease-out;
  transition: -webkit-transform 0.2s ease-out;
  transition: transform 0.2s ease-out;
  transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
  position: relative;
  /*bottom: 72px;*/
  background-color: #333;
}

.portfolio-item-title {
  position: relative;
  /*overflow: hidden;*/
  font-size: 20px;
  margin-left: -30px;
  margin-right: -30px;
  padding: 0 30px;
}

.portfolio-item-title span {
  position: relative;
  color: #fff;
  display: inline-block;
  transition: 0.4s;
}

.portfolio-item-title span:before,
.portfolio-item-title span:after {
  content: "";
  position: absolute;
  top: 27px;
  height: 1px;
  width: 650px;
  background-color: #fff;
  opacity: 0.9;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.portfolio-item-title span:before {
  left: 100%;
  margin-left: 15px;
}

.ashade-album-item a.ashade-album-item__link {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  z-index: 100;
}

.portfolio-item-title span:after {
  right: 100%;
  margin-right: 15px;
}

.sec {
  height: 193px;
}

/* projects */

/* Modal */

/*****PRICE-FORM START*****/
#price-form .modal-content {
  padding: 20px 0 0 0;
  max-width: 500px;
  margin: auto;
}

#price-form .modal-body {
  padding: 10px 40px 40px 40px;
}

#price-form .modal-title {
  font-size: 18px !important;
}

#price-form .modal-header {
  margin: 0 40px 10px 40px;
  padding-left: 0;
  padding-right: 0;
  border: none;
  border-bottom: 1px solid var(--color-1);
}

#price-form .modal-title {
  font-weight: 700;
  color: #000;
}

#price-form input.effect,
#price-form .custom-form select.effect {
  height: 50px;
}

#price-form .effect,
.projects-full-story__form .effect {
  width: 100%;
  border: 2px solid #e6ecf2;
  padding: 12px 20px;
  margin: 0 0 16px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
  font-size: 14px;
  -webkit-appearance: none;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
}

#price-form .modal-content .btn-close {
  display: block;
  height: 20px;
  opacity: 0.5;
  position: absolute;
  right: 50px;
  top: 34px;
  width: 20px;
  z-index: 100;
  padding: 0;
  outline: transparent;
}

.modal-backdrop {
  opacity: 0.8 !important;
}

#price-form .btn-close:focus {
  box-shadow: none !important;
}

#price-form .submit-btn:hover {
  background-color: #742220;
}

#price-form .submit-btn,
.projects-full-story__form .submit-btn {
  background-color: var(--color-1);
  color: #fff;
  border-radius: 4px;
  height: 50px;
  line-height: 50px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  padding: 0 26px;
  width: 100%;
  font-size: 15px;
  font-weight: 500;
}

/* Services */

section.services-page {
  background: #fff !important;
  padding: 0 0 80px 0;
}

#services {
  padding: 60px 0;
  position: relative;
  z-index: 222;
}

.box {
  box-shadow: 0 7px 20px rgb(195 199 206 / 0.35);
  border-radius: 4px;
  padding: 15px;
  font-weight: 700;
  background: #fff;
  width: 100%;
  transition: 500ms all ease;
  min-height: 178px;
}

.box br {
    display: none;
}

.box:hover {
  box-shadow: 0 0 5px rgb(195 199 206 / 0.35);
}

.box .table_img img {
  width: 60px;
}

.text1 {
  margin-top: 10px;
  color: #231f27;
  font-size: 12px;
  min-height: 59px;
  display: flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
}

/* Brand */

/*brands styling start*/
#brands {
  padding: 2rem 0;
}

#brands img {
  width: 100%;
  height: 100%;
}

#brands h2 {
  color: #b3b3b3;
  font-size: 18px;
  margin: 0;
}

#brands img {
  height: 100px;
  width: 140px;
  -o-object-fit: contain;
  object-fit: contain;
  transition: all 0.3s ease;
}

#brands img:hover {
  -webkit-filter: none;
  filter: none;
  opacity: 1;
}

#brands .swiper-slide {
  max-width: fit-content;
}

#brands .swiper {
  margin-left: 60px;
  margin-right: 40px;
}

#brands .carousel {
  position: relative;
}

.container-swp {
  position: relative;
  z-index: 10;
}

.brand_swiper-button-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  z-index: 10;

  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  z-index: 10;
  /* background: #000; */
  height: 100px;
  width: 98%;

  .btnsw {
    width: 38px;
    height: 38px;
    border: none;
    transition: 0.3s ease-in-out;
    top: 50%;
    z-index: 10;
    /* box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px; */
    display: flex;
    align-items: center;
    justify-content: center;
    /* color: var(--color-1); */
    /* color: ; */
    border-radius: 100%;
    cursor: pointer;
    background: white;
    transition: 0.3s;
    border: 1px solid #c8c8c8;

    &:hover {
      scale: 1.1;
      /* background: var(--color-1); */
      /* color: white; */
      color: var(--color-1);
    }
  }
}

/* Xidmetler */

/* About */
.about {
  padding: 80px 0;
  background: #fdfbfb;
}

.about-title-container {
  margin-bottom: 40px;
}

.about-title-container h2 {
  font-size: 26px;
  color: #1d1d1d;
  text-align: center;
  position: relative;
  display: table;
  margin-left: auto;
  margin-right: auto;
}

.about-title-container h2::before {
  content: "";
  position: absolute;
  left: 1px;
  bottom: -5px;
  width: 65px;
  height: 2px;
  background: #b12933;
}

.about-descripton {
  font-size: 17px;
  margin-top: 20px;
}

.about-descripton p {
  text-align: justify;

  span {
    color: #3366ff;
  }
}

.about-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 768px) {
  .about-blocks {
    grid-template-columns: 1fr;
  }
}

.block-item-text-description {
  transition: all 0.3s ease-in-out;
  color: #000;
  position: relative;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 24px;
}

.about-block-item {
  padding: 70px 25px;
  position: relative;
  overflow: hidden;
  height: 100%;
}

/*.overlay-service {*/
/*    position: absolute;*/
/*    top:0;*/
/*    left:0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    background: #0000004d;*/
/*}*/

.block-item-count {
  position: absolute;
  display: inline-block;
  /* font-weight: 400; */
  left: 10px;
  bottom: 0px;
  top: auto;
  font-size: 210px;
  font-weight: bold;
  line-height: 0.75;
  color: #ff7b00;
  opacity: 0.15;
  z-index: 0;
  /* -webkit-transition: 0.4s; */
  -o-transition: 0.4s;
  transition: 0.4s;
}

.block-item-text {
  position: absolute;
  top: 20px;
  font-weight: bold;
  transition: 0.4s;
  color: black;
}

/*newProdutcs*/
.new-products {
  padding: 40px 0;
  background: #eee;
}

.new-products__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
}

.new-products__inner div,
.new-products__inner a {
  background: #fff;
  box-shadow: 0 0 4rem rgb(0 0 0 / 8%);
  border-radius: 0.3125rem;
}

.new-product__short {
  padding: 20px;
}

.new-product__short h2 {
  text-align: center;
  font-size: 22px;
  color: black;
}

.new-products__inner div img,
.new-products__inner a img {
  width: 100%;
  height: 300px;
  object-fit: contain;
}

.about-block-container:hover * {
  color: #fff;
}

.about-block-container {
  cursor: pointer;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
  background: #ffffff;
  width: 100%;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  background-position: center bottom;
  background-size: cover;
  transition: background-position 0.5s ease, color 0.5s ease;
  height: 220px;
}

.about-block-container:nth-child(1):hover {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(https://strom-trade.ru/uploads/image/36efc57fb8a4f2ba2c845b8076cc9c8c.jpg);
  background-position: center;
  background-size: cover;
}

.about-block-container:nth-child(3):hover {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(https://avatars.mds.yandex.net/get-altay/2389272/2a000001743f3f1e775fcb689818d1d37785/XXL);
  background-position: center;
  background-size: cover;
}

.about-block-container:nth-child(4):hover {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(https://abseronmakina.az/img/gen2.webp);
  background-position: center;
  background-size: cover;
}

.about-block-container:nth-child(2):hover {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(https://bst2813.ru/wp-content/uploads/2023/04/ustanovka-bordiurnogo-kamnia3.jpg);
  background-position: center;
  background-size: cover;
}

.about-block-container:hover .block-item-text {
  color: #fff !important;
}

.about-block-container:hover {
  background-position: center top;
}

#page-banner {
  margin-bottom: 80px;

  background: linear-gradient(
      to bottom,
      rgb(45, 45, 45) 0%,
      rgba(60, 54, 51, 0.377) 100%
    ),
    url("https://havasas.com.tr/tema/genel/uploads/haberler/2.jpg") center/cover
      no-repeat !important;
  height: 350px;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;

  h2,
  h1 {
    /* background: var(--color-1); */
    color: white;
    padding: 4px 20px;
    border-radius: 20px;
    /* box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px; */
    font-size: 20px;
  }

  h1 {
    font-size: 70px;
    text-transform: uppercase;
  }
}

@media (max-width: 768px) {
  #page-banner {
    h2,
    h1 {
      color: white;
      padding: 4px 20px;
      border-radius: 20px;
      font-size: 20px;
    }

    h1 {
      font-size: clamp(28px, 4vw, 40px);
      text-transform: uppercase;
    }
  }
}

#page-banner.contactt {
  background: linear-gradient(
      to bottom,
      rgb(45, 45, 45) 0%,
      rgba(60, 54, 51, 0.377) 100%
    ),
    url("https://www.softil.com/wp-content/uploads/2017/07/contact-banner.jpg")
      center/cover no-repeat !important;
}

#page-banner.blogg {
  background: linear-gradient(
      to bottom,
      rgb(45, 45, 45) 0%,
      rgba(60, 54, 51, 0.377) 100%
    ),
    url("https://st37.stpulscen.ru/images/product/449/270/706_big.jpg")
      center/cover no-repeat !important;
}

#page-banner.productt {
  background: linear-gradient(
      to bottom,
      rgba(102, 64, 21, 0.705) 0%,
      rgba(60, 54, 51, 0.377) 100%
    ),
    url("https://img.goodfon.com/original/1600x900/0/ae/tekstury-plitka-volny-fon.jpg")
      center/cover no-repeat !important;
}

#page-banner.customerr {
  background: linear-gradient(
      to bottom,
      rgba(102, 64, 21, 0.705) 0%,
      rgba(60, 54, 51, 0.377) 100%
    ),
    url("https://images.homify.com/v1439436226/p/photo/image/818955/H7.jpg")
      center/cover no-repeat !important;
}

#about-page {
  padding: 0 0 80px 0;
  background: white !important;
  .inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;

    img {
      width: 40%;
    }

    .text {
      margin-top: 20px;
      p {
        margin-top: 10px;
      }
    }
  }



}
@media (min-width: 768px){
.text-img-mobile{
  display: none;
}
.text-img{
  display: block;
  float: left;
  /* margin-top: 20px; */
  margin-right: 20px;
  margin-bottom: 20px;
}
}


@media (max-width: 768px) {
  .text-img-mobile{
    display: block;
  }
  .text-img{
    display: none;
  }
  
  #about-page {
    .inner {
      gap: 40px;
      flex-direction: column;

      img {
        width: 100%;
      }

      .text {
        margin-top: 20px;
        p {
          margin-top: 10px;
        }
      }
    }
  }
}

.main-blog {
  padding: 55px 0px;
}
.blog-bx {
  margin-bottom: 20px;
  padding: 30px;
  background-color: #ffffff;
  border-radius: 5px;
  box-shadow: 0px 0px 15px 0px rgba(24, 24, 24, 0.15);
}
.blog-title a {
  display: inline-block;
}
.blog-title a h2 {
  font-size: 44px;
  color: #303030;
  margin: 0px;
  font-weight: 700;
  margin-bottom: 30px !important;
}
.blog-meta {
  margin: 20px 0px;
  font-size: 12px;
  color: #404040;
}

.subwidget {
  background: linear-gradient(to right, #f1740094 0%, #f17400 100%);
  text-align: center;
  padding: 25px;
  margin-bottom: 25px;
  border-radius: 5px;
}

.subwidget h3 {
  margin: 15px 0px;
  font-size: 30px;
  color: #ffffff;
  font-weight: 700;
  padding: 0px 60px;
}

.subwidget p {
  color: #ffffff;
  font-size: 15px;
}

.subwidgetform {
  border-top: 1px solid #acb846;
  padding-top: 20px;
}

.subwidgetform h4 {
  font-size: 21px;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 15px;
}

.subwidgetform input[type="email"],
.subwidgetform input[type="text"],
.subwidgetform input[type="number"],
.subwidgetform textarea {
  width: 100% !important;
  margin-bottom: 1px;
  border: 0px !important;
  padding: 15px !important;
  border-radius: 5px !important;
  font-size: 13px;
  color: #707070;
  margin-bottom: 10px;
}

.subwidgetform input[type="submit"] {
  width: 100% !important;
  border: 0px !important;
  background-color: #93c24f !important;
  font-size: 14px !important;
  color: #ffffff !important;
  text-transform: uppercase;
  padding: 15px !important;
  line-height: normal !important;
  border-radius: 5px !important;
  cursor: pointer !important;
  margin-bottom: 5px !important;
  font-weight: 700 !important;
  height: auto !important;
  margin-bottom: 10px;
}
/*body.single.single-post  .qoute-now {
    display: none;
} */
li#text-3,
li#custom_html-2 {
  display: block;
}
.service-full-story img {
  width: 100%;
  object-fit: cover;
  max-height: 400px;
  border-radius: 10px;
}

/* contact */
.contact-page .contact-main {
  padding: 120px 0 100px;
}
.contact-page .contact-info {
  min-height: 104px;
  padding-left: 15px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px,
    rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
  padding: 5px 5px 5px 25px;
  font-variant: var(--radius);
  padding-top: 10px;
}
.contact-page .contact-info h3 {
  font-size: 22px;
  font-weight: 700;
  position: relative;
  letter-spacing: 0;
}

.contact-page .send_inp {
  border-radius: var(--radius);
}

.contact-page .contact-info .det-info {
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin-top: 8px;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
}
.contact-info .det-info a {
  font-weight: 400;
  color: #3f4144;
  transition: all 0.15s ease-in-out;
  width: max-content;
}
.contact-page .contact-info a:hover {
  color: #ff9a00;
}
.contact-page .contact-info h3::before {
  content: "";
  position: absolute;
  top: 10px;
  left: -15px;
  width: 8px;
  height: 8px;
  background-color: #f7931e;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
.contact-page #map {
  height: 490px;
  margin: 90px 0;
}
.contact-page .contact-social-media {
  padding: 65px 0;
  background: #f5f7fa;
}
.social-title {
  text-align: center;
}

@media (max-width: 768px) {
  .social-title h2 {
    font-size: 26px !important;
  }
  .contact-form {
    padding: 20px !important;
  }

  .social-icon {
    margin: 10px !important;
  }
}

.contact-page .contact-social-media h2 {
  color: #000;
  margin-top: 0;
  font-weight: 900;
  line-height: 1.7;
  font-size: 35px;
}
.contact-page .contact-social-media p {
  color: #666;
  margin-top: 17px;
  font-size: 17px;
  line-height: 1.7;
}
.socials {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}
.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px;
  padding: 17px 10px;
  min-width: 60px;
  height: 60px;
  border: 1px solid #656d78;
  border-radius: 100%;
  transition: background-color 0.15s ease, border-color 0.15s ease,
    box-shadow 0.15s ease, transform 0.15s ease, -webkit-box-shadow 0.15s ease,
    -webkit-transform 0.15s ease, -moz-transform 0.15s ease,
    -o-transform 0.15s ease;
}
.social-icon a img {
  display: inline-block;
  max-width: 100%;
  max-height: 100%;
  vertical-align: middle;
  height: 24px;
}
.social-icon:not(:last-child) img {
  transition: filter 0.15s ease, -webkit-filter 0.15s ease;
  -webkit-filter: invert(60%);
  filter: invert(60%);
}
.social-icon:last-child img {
  transition: filter 0.15s ease, -webkit-filter 0.15s ease;
  -webkit-filter: invert(60%);
  /*filter: invert(40%);*/
}
.social-icon.contact-yt:hover {
  transform: scale(1.45);
  background-color: #ec6060;
  border-color: #ec6060;
  -webkit-box-shadow: 0 7px 14px 0 rgb(236 96 96 / 87%);
  box-shadow: 0 7px 14px 0 rgb(236 96 96 / 87%);
}
.social-icon.contact-fb:hover {
  transform: scale(1.45);
  background-color: #6389c8;
  border-color: #6389c8;
  -webkit-box-shadow: 0 7px 14px 0 rgb(99 137 200 / 80%);
  box-shadow: 0 7px 14px 0 rgb(99 137 200 / 80%);
}
.social-icon.contact-ig:hover {
  background-color: #f15274;
  border-color: #f15274;
  outline: 0;
  -webkit-box-shadow: 0 7px 14px 0 rgb(227 97 131 / 79%);
  box-shadow: 0 7px 14px 0 rgb(227 97 131 / 79%);
  transform: scale(1.45);
}
.social-icon.contact-tw:hover {
  background-color: #6aa1df;
  border-color: #6aa1df;
  -webkit-box-shadow: 0 7px 14px 0 rgb(106 161 223 / 63%);
  box-shadow: 0 7px 14px 0 rgb(106 161 223 / 63%);
  transform: scale(1.45);
}
.social-icon:nth-child(2) img {
  filter: invert(30%);
}
.social-icon:nth-child(2):hover img {
  filter: invert(1);
}
.social-icon:hover img {
  filter: none;
}
.form-container h2 {
  margin-top: 65px;
  font-size: 35px;
  line-height: 48px;
  color: #000;
  font-weight: bold;
  text-align: center;
}
.contact-form {
  max-width: 830px;
  margin-top: 55px;
  background: #fff;
  -webkit-box-shadow: 0 0 30px rgb(0 0 0 / 10%);
  box-shadow: 0 0 30px rgb(0 0 0 / 10%);
  margin-inline: auto;
  border-radius: 10px;
  /*padding: 50px 100px;*/
}

.form-item {
  margin: 12px 0;
}
.form-item label {
  margin-bottom: 6px;
  display: block;
  max-width: 100%;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
  color: #000;
}
.form-item input,
.form-item textarea.contact-field,
.form-item textarea {
  padding: 6px 15px;
  display: block;
  width: 100%;
  height: 50px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  -webkit-appearance: none;
  color: #000;
  background-color: #fff;
  background-image: none;
  border: 1px solid #e3e3e3;
  -webkit-border-radius: var(--radius);
  border-radius: var(--radius) !important;
  -webkit-transition: border-color 0.15s ease-in-out;
  -moz-transition: border-color 0.15s ease-in-out;
  -o-transition: border-color 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out;
}
.form-item textarea.contact-field {
  padding-top: 13px;
  padding-bottom: 13px;
  height: auto;
  max-height: 380px;
  border-radius: var(--radius) !important;
}
.contact-field::placeholder {
  font-size: 15px;
}
.form-item input:focus,
.form-item textarea.contact-field:focus {
  border-color: #a6a6a6;
  outline: none;
}
.form-item.error input {
  border-color: #f10000;
}
.form-item.submit {
  text-align: center;
}
.gonder {
  position: relative;
  padding: 15px 39px;
  display: inline-block;
  max-width: 100%;
  font-size: 15px;
  font-weight: 500 !important;
  line-height: 1.2;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  background-color: transparent;
  background-image: none;
  border: 1px solid transparent;
  -webkit-border-radius: 54px;
  border-radius: 54px;
  -webkit-transition: all 0.15s ease-in-out;
  -moz-transition: all 0.15s ease-in-out;
  -o-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  color: #fff !important;
  background-color: #ff9a00 !important;
  border-color: #ff9a00 !important;
}
.gonder:hover {
  background-color: #ffaf07 !important;
  border-color: #ffaf07 !important;
}

/*contact*/

.projects-main .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.projects-main .owl-item,
.projects .owl-item {
  transition: 0.4s;
  border-radius: 5px;
  box-shadow: 0 0 20px 3px #efefef;
}
.owl-content {
  padding: 35px 0 30px 25px;
}
.projects-main .owl-item:hover,
.projects .owl-item:hover {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
/*.owl-item img{*/
/*    object-fit: none;*/
/*}*/
/*.projects-main .owl-item:not(:nth-child(1)):not(:nth-child(2)){*/
/*    margin-top: 50px;*/
/*}*/

.projects-page .projects-main .owl-item {
  margin-bottom: 40px;
  margin-right: 20px;
  width: 300px;
}
.projects-page .projects-main .owl-item:nth-child(n + 3) {
  margin-right: 0;
}
.projects-page .projects-main .owl-item img {
  width: 100%;
  /*border-radius: 5px;*/
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.contact-form iframe {
  padding: 50px 100px;
}

.blog_wrapper {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.blog_static_area {
  max-width: 400px;
  width: 100%;
  background: #ffed00;
  padding: 55px 45px;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.blog_static_area h6 {
  font-size: 20px;
  color: #000;
  font-family: "averta";
}

.blog_static_area h3 {
  color: #000;
  font-weight: 700;
  font-size: 48px;
}

.blog_static_area p {
  font-size: 20px;
  color: #000;
  font-family: "averta";
}

.blog_static_area a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  color: #000;
  background: #fff;
  transition: 0.3s ease-in-out;
  background: #fdfca0;
  padding: 10px 20px;
  width: fit-content;
  font-size: 20px;
  margin-top: 30px;
}

.blog_static_area a:hover {
  color: #fff;
  background: #000;
}

.blog_swiper_slide_area {
  width: 100%;
}

.blog_card {
  border: 1px solid #ddd;
}

.blog_card figure {
  width: 100%;
  position: relative;
  height: 467px;
  transition: 0.3s ease-in-out;
}

.blog_card figure:after {
  width: 100%;
  height: 100%;
  inset: 0;
  opacity: 0;
  content: "";
  position: absolute;
  transition: 0.3s ease-in-out;
  background: rgb(0 0 0 / 0.6);
}

.blog_card figure:hover:after {
  opacity: 1;
}

.blog_card figure img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}

.blog_card article {
  padding: 10px;
}

.blog_card article h5 {
  color: #999;
  font-size: 16px;
  margin-top: 10px;
}

.blog_card article h3 {
  font-size: 24px;
  line-height: 1.2;
  min-height: 50px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  font-family: "averta";
  margin-bottom: 10px;
  margin-top: 10px;
}

.blog_card article .pdfAt {
  color: #ffed00 !important;
  font-size: 30px;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}

.blog_card article .pdfAt:hover {
  color: #000;
}

.row {
  row-gap: 20px;
}

.blogs-static {
  padding-bottom: 40px;
}

.blog-innerF-content {
  padding: 40px 0;
}

.blog_section .container.container-2 {
  max-width: 1600px !important;
}

.blog_section.blog_section-static .container.container-2 {
  max-width: inherit !important;
}

.blog_section-static .blog_swiper_slide_area {
  width: 100%;
}

.blog_section-static-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}

@media (min-width: 992px) {
  .blog-innerF-content img {
    float: right;
    width: 40rem;
    border-radius: 1rem;
    object-fit: cover;
    margin-left: 20px;
  }
}

.blogs {
  margin-top: 20px;
}

.blogs__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.blog__item {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-radius: 1rem;
  height: 100%;
  box-shadow: rgb(0 0 0 / 0.24) 0 3px 8px;
  position: relative;
}

.blog__item:hover {
  color: inherit;
}

.blog__img {
  position: relative;
}

.blog__img span {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 0.5rem 1.3rem;
  border-radius: 0.4rem;
  font-size: 18px;
  color: #000;
  font-family: "averta";
  border: 1px solid #ffed00;
  background-color: #ffed00;
}

.blog__img img {
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  width: 100%;
  transition: 0.4s ease;
}

.blog__text,
.blog__btn {
  padding: 20px;
}

.blog__text h3 {
  font-size: 24px;
  line-height: 30px;
  font-family: "averta-bold";
}

.blog__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.blog__text p {
  line-height: 1.4;
  font-size: 18px;
  margin-top: 10px;
  font-family: "averta";
}

.blog__item:hover img {
  transform: scale(1.02);
}

.blog__btn span:first-child {
  background-color: #ffed00;
  height: 2.8rem;
  font-size: 18px;
  padding: 0 1.3rem;
  font-weight: 700;
  border-radius: 0.4rem;
  color: #000;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  transition: background-color 0.4s ease, color 0.4s ease;
  border: 2px solid #ffed00;
}

.blog__btn span:first-child:hover {
  background: #fff;
}

.blog__btn span:last-child {
  font-size: 13px;
}

.blog__title {
  font-weight: 700;
  font-size: 28px;
  line-height: 42px;
  padding-bottom: 50px;
}
.blog-innerF-content_holder-img {
  width: 100%;
  height: 100%;
  margin-bottom: 20px;
  max-height: 400px;
  object-fit: cover;
  border-radius: 20px;
}


.blog-innerF-content_holder p{
    font-size: clamp(14px, 2vw, 20px) !important;
}



/*full-story*/
.full_story_all .productSwiper {
  .swiper-slide {
    width: 100% !important;
  }
  .bt::after {
    font-size: 22px;
  }
  .bt::after {
    color: var(--color-1);
  }
  .swiper-pagination-bullet-active {
    background: var(--color-1);
  }
}

.full_story_all {
  background: #e7e7e785;
  border-radius: 20px;
}
.blog_full_story img {
  float: right;
  max-height: 340px;
  border-radius: var(--radius);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  width: fit-content;
  object-fit: cover;
  margin: 0 0 12px 12px;
}
.full_story_text {
  max-height: 400px;
  padding: 0 20px 0 0;
  overflow-y: scroll;
}
.full_story_name {
  margin-bottom: 1.5rem;
  font-size: 30px;
  font-weight: 600;
}
.full_story_content {
  line-height: 1.4;
}
.full_story_content h2 {
  font-size: 24px;
  font-weight: 500;
}
.full_story_content p {
  font-size: 16px;
}
.fan img {
  width: 100%;
  object-fit: contain;
  max-height: 400px;
}
.full_story_calc_open {
  padding: 13px 20px;
  border-radius: 8px;
  width: 100%;
  background: transparent;
  color: #fff;
  font-size: 17px;
  outline: none;
  gap: 10px;
  border: 1px solid var(--color-1);
  transition: 0.3s;
  color: var(--color-1);
}
.full_story_calc_open:hover {
  color: white;
  background: var(--color-1);
}
/*end*/
table {
  border-collapse: collapse;
  width: 100% !important;
  font-family: "Segoe UI", sans-serif;
  font-size: 14px;
  border: 1px solid #ddd;
}
tbody tr:first-child {
  background: var(--color-1) !important;
  color: white !important;
}
table th {
  background-color: var(--color-2); /* dark top */
  color: white;
  text-align: left;
  padding: 10px;
  text-align: center;
}

table td {
  padding: 10px;
  border: 1px solid #ddd;
}

table tr:nth-child(odd) {
  background-color: #ffffff; /* tÉ™k sÉ™tirlÉ™r aÄŸ */
}

table tr:nth-child(even) {
  background-color: #f4f4f4; /* cÃ¼t sÉ™tirlÉ™r boz */
}

table tr:hover {
  background-color: #e0e0e0; /* hover effekti */
  transition: background 0.2s ease-in-out;
}
