/*-------------------------------------------------------------
HEADER
-------------------------------------------------------------*/

.header {
  background-color: var(--renk1);
  width: 100%;
  box-shadow: var(--box-shadow);
}

.header-row {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  padding: 0px 15px 0px 15px;
}

@media (min-width: 1023px) {
  .nav {
    position: relative;
    display: flex;
    align-items: center;
  }

  .ust-menu {
    position: relative;
    display: flex;
    align-items: center;
  }

  .ust-menu > li {
    position: relative;
    display: flex;
    align-items: center;
    z-index: 1;
  }

  .ust-menu > li > a {
    font-size: 10px;
    text-transform: uppercase;
    line-height: var(--header-height);
    padding: 0px 15px 0px 15px;
  }

  .ust-menu > li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 0%;
    width: 100%;
    background-color: var(--renk2);
    box-shadow: var(--box-shadow);
    z-index: -1;
    transition: all 0.15s linear;
  }

  .ust-menu > li:hover::before {
    height: 100%;
  }

  .ust-menu > li:hover > a {
    line-height: calc(var(--header-height) - 1.5px);
  }

  .ust-menu > li.current-page-ancestor,
  .ust-menu > li.current_page_item,
  .aktif > li:first-child {
    background-color: var(--renk2);
    box-shadow: var(--box-shadow);
  }

  .ust-menu:hover > li.current-page-ancestor,
  .ust-menu:hover > li.current_page_item,
  .aktif:hover > li:first-child {
    background-color: unset;
    box-shadow: unset;
  }

  .ust-menu > li.current-page-ancestor > a,
  .ust-menu > li.current_page_item > a,
  .aktif > li:first-child > a {
    line-height: calc(var(--header-height) - 1.5px);
  }

  .ust-menu > li:hover > ul {
    transform: scaleY(1);
  }

  .ust-menu > li.menu-item-has-children > a::after {
    display: inline-block;
    content: "";
    vertical-align: -3px;
    background-image: url("data:image/svg+xml,<svg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'><path d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z' clip-rule='evenodd'/></svg>");
    background-repeat: no-repeat;
    background-size: 13px;
    width: 13px;
    height: 13px;
    margin-left: 5px;
  }

  .ust-menu > li > ul {
    position: absolute;
    display: flex;
    flex-direction: column;
    top: var(--header-height);
    background-color: var(--renk2);
    width: 200px;
    box-shadow: var(--box-shadow);
    transition: all 0.25s linear;
    transform: scaleY(0);
    transform-origin: top center;
  }

  .ust-menu > li > ul > li {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
  }

  .ust-menu > li > ul > li:hover {
    background-color: var(--renk3);
  }

  .ust-menu > li > ul > li > a {
    font-size: 12px;
    text-transform: none;
    line-height: 40px;
    padding: 0px 15px 0px 15px;
    width: 100%;
  }

  .hamburger-lines {
    display: none;
  }
}

@media (max-width: 1023px) {
  .header-row {
    padding: 0px 10px 0px 10px;
  }

  .nav {
    position: absolute;
    display: flex;
    top: var(--header-height);
    background-color: var(--renk1);
    left: 0;
    width: 100%;
    max-height: fit-content;
    min-height: calc(100vh - var(--header-height));
    padding: 10px 10px 0px 10px;
    transform: scaleY(0);
    transform-origin: top center;
    transition: all 0.2s linear;
    z-index: 50;
  }

  .nav.active {
    transform: scaleY(1);
  }

  .ust-menu {
    position: relative;
    display: block;
    width: 100%;
  }

  .ust-menu > li {
    position: relative;
    display: block;
    width: 100%;
  }

  .ust-menu > li > a {
    line-height: 50px;
    display: block;
    width: 100%;
  }

  .ust-menu > li.menu-item-has-children::after {
    content: "";
    background-image: url("data:image/svg+xml,<svg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'><path d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z' clip-rule='evenodd'/></svg>");
    background-repeat: no-repeat;
    background-position: right;
    background-size: 13px;
    width: 60px;
    height: 40px;
    float: right;
    margin-right: 0px;
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 0;
  }

  .menu-ust-menu-container {
    display: flex;
    width: 100%;
  }

  .ust-menu > li > ul {
    display: none;
    transition: all 0.25s linear;
    transform-origin: top center;
    animation: dropani 300ms;
  }

  .ust-menu > li > ul.active {
    display: block;
  }

  .ust-menu > li > ul > li {
    width: 100%;
  }

  .ust-menu > li > ul > li > a {
    line-height: 50px;
    padding: 0px 15px 0px 15px;
    width: 80%;
    display: block;
  }

  @keyframes dropani {
    0% {
      transform: scaleY(0);
    }

    100% {
      transform: scaleY(1);
    }
  }

  .hamburger-lines {
    display: flex;
    height: 20px;
    width: 32px;
    flex-direction: column;
    justify-content: space-between;
    z-index: 10;
    cursor: pointer;
  }

  .hamburger-lines .line {
    display: block;
    height: 1.5px;
    width: 100%;
    border-radius: 10px;
    background: #fff;
  }

  .hamburger-lines .line1 {
    transform-origin: 0% 0%;
    transition: transform 0.5s ease-in-out;
  }

  .hamburger-lines .line2 {
    transition: transform 0.2s ease-in-out;
  }

  .hamburger-lines .line3 {
    transform-origin: 0% 100%;
    transition: transform 0.5s ease-in-out;
  }

  .hamburger-lines.active .line1 {
    transform: rotate(35deg);
  }

  .hamburger-lines.active .line2 {
    transform: scaleX(0);
  }

  .hamburger-lines.active .line3 {
    transform: rotate(-35deg);
  }
}

/*-------------------------------------------------------------
MAIN SLIDER
-------------------------------------------------------------*/

.slider1-slide {
  display: flex;
  position: relative;
  left: 0;
  top: 0;
  margin: 0px 0px 0px 0px;
  padding: 0;
  overflow-x: hidden;
  background-color: #fff;
  height: calc(var(--slider-height) - 2 * (var(--header-height)));
}

.slider1-slide img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top right;
}

.slider1-arrow {
  height: 40px !important;
  width: 40px !important;
  background-color: #ffffff00 !important;
}

.slider1-arrow svg {
  fill: var(--renk1) !important;
  height: 40px !important;
  width: 40px !important;
}

.slider1-pagination {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: var(--header-height) !important;
  background: var(--renk1);
  margin: 0;
  padding: 0;
  bottom: calc(-1 * var(--header-height)) !important;
}

.slider1-pag-page {
  width: 11px;
  height: 11px;
  opacity: 0.5;
  margin: 0px 3px;
}

.slider1-pag-page.is-active {
  transform: scale(1.2);
  background: #fff;
  opacity: 0.8;
}

.slide-text-main {
  position: absolute;
  display: flex;
  height: 100%;
  align-items: center;
  z-index: 1;
  left: 5%;
}

.slide-text-main .slide-text {
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: var(--renk6);
  padding: 10px;
}

.slide-text h1 {
  position: relative;
  font-size: 52px;
  font-weight: 600;
  letter-spacing: -4px;
  line-height: 52px;
  color: var(--renk1);
}

.slide-text p {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0px;
  line-height: 25px;
  margin-top: 10px;
  color: var(--renk1);
}

.slider-btn {
  padding: 6px 0px;
  border: unset;
  border-radius: 5px;
  color: #fff;
  background: var(--renk1);
  position: relative;
  font-weight: 500;
  font-size: 16px;
  box-shadow: var(--box-shadow);
  overflow: hidden;
  margin-top: 15px;
  cursor: pointer;
  z-index: 1;
  width: 0%;
  transition: width 0.7s ease 0s;
}

.slider-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  border-radius: 5px;
  background-color: var(--renk3);
  z-index: -1;
  box-shadow: var(--box-shadow);
  transition: all 250ms;
}

.slider-btn:hover::before {
  width: 100%;
}

.slider1-slide.is-active .slider-btn {
  width: 100%;
}

@media (max-width: 1023px) {
  .slide-text-main {
    height: unset;
    left: 0;
    bottom: 5%;
    justify-content: center;
    width: 100%;
  }
}

@media (max-width: 599px) {
  .slide-text h1 {
    font-size: 35px;
    line-height: 35px;
  }

  .slide-text p {
    font-size: 17px;
    letter-spacing: 0px;
    line-height: 17px;
    margin-top: 5px;
  }

  .slider-btn {
    font-size: 12px;
  }

  .slider1-arrow {
    height: 30px !important;
    width: 30px !important;
  }

  .slider1-arrow svg {
    height: 30px !important;
    width: 30px !important;
  }
}

@media (max-width: 1023px) and (orientation: landscape) {
  .slide-text-main {
    position: absolute;
    display: flex;
    height: 100%;
    align-items: center;
    z-index: 1;
    left: 5%;
    bottom: unset;
    justify-content: unset;
  }

  .slide-text h1 {
    font-size: 30px;
    line-height: 30px;
  }

  .slide-text p {
    font-size: 15px;
    letter-spacing: 0px;
    line-height: 15px;
    margin-top: 3px;
  }

  .slider-btn {
    font-size: 10px;
  }

  .slider1-arrow {
    height: 25px !important;
    width: 25px !important;
  }

  .slider1-arrow svg {
    height: 25px !important;
    width: 25px !important;
  }
}

/*-------------------------------------------------------------
OTHER SLIDERS
-------------------------------------------------------------*/

.tittle {
  text-align: center;
  padding-top: 15px;
  padding-bottom: 15px;
  margin-top: var(--header-height);
  margin-bottom: 5px;
  background-color: #fff;
}

.tittle h2 {
  color: #000;
  font-size: 27px;
  font-weight: 600;
}

.tittle p {
  color: var(--renk1);
  font-size: 16px;
  font-weight: 400;
}

.other-splide {
  margin: 0px 0px 70px 0px;
}

.other-slide {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  overflow: hidden;
  background-color: #fff;
}

.other-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.2s linear;
}

.other-slide img:hover {
  scale: 1.05;
}

.other-slide p {
  text-align: center;
  padding: 10px 0px;
  background-color: var(--renk3);
}

.other-arrow {
  height: 40px !important;
  width: 40px !important;
  background-color: var(--renk1) !important;
}

.other-arrow svg {
  fill: #fff !important;
  height: 20px !important;
  width: 20px !important;
}

.other-pagination {
  bottom: -35px !important;
}

@media (max-width: 599px) {
  .tittle {
    padding-top: 5px;
    padding-bottom: 5px;
    margin-top: var(--header-height);
    margin-bottom: 3px;
  }

  .tittle h2 {
    font-size: 18px;
  }

  .tittle p {
    font-size: 14px;
  }

  .other-slide p {
    font-size: 10px;
  }
}

/*-------------------------------------------------------------
MEKANIK
-------------------------------------------------------------*/

.mekanik-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 5px;
  row-gap: 5px;
  padding: 0px 0px 50px 0px;
}

.mekanik-col {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background-color: #fff;
}

.mekanik-col img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.mekanik-yazi {
  padding: 20px 0px 0px 20px;
}

.mekanik-yazi p {
  color: #000;
  letter-spacing: 1px;
  line-height: 30px;
}

.mekanik-yazi p::before {
  content: "- ";
}

.yazi-btn {
  position: relative;
  padding: 5px 0px;
  border-radius: 2px;
  color: #fff;
  background: var(--renk3);
  overflow: hidden;
  margin: 30px 0px 20px 0px;
  cursor: pointer;
  z-index: 1;
  width: 200px;
}

.yazi-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  border-radius: 2px;
  background-color: var(--renk4);
  z-index: -1;
  transition: all 250ms;
}

.yazi-btn:hover::before {
  width: 100%;
  color: #fff;
}

.yazi-btn:hover {
  color: #fff;
}

@media (max-width: 1023px) {
  .mekanik-row {
    padding: 0px 0px 100px 0px;
  }
}

@media (max-width: 768px) {
  .mekanik-yazi p {
    letter-spacing: 0px;
    line-height: unset;
  }
}

@media (max-width: 599px) {
  .mekanik-row {
    grid-template-columns: 1fr;
    padding: 0px 0px 50px 0px;
  }
}

/*-------------------------------------------------------------
FOOTER
-------------------------------------------------------------*/
.footer-container {
  position: relative;
  display: flex;
  flex-direction: column;
  margin: 0px 20px 0px 20px;
  padding: 50px 0px 0px 0px;
  border-top: 1px solid var(--renk2);
}

.footer-main {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  justify-items: start;
  row-gap: 50px;
}

.footer-sol p {
  color: var(--renk7);
  font-size: 14px;
}

.footer-class1 > li,
.footer-class2 > li,
.footer-class3 > li {
  display: flex;
  flex-direction: column;
}

.footer-class1 > li > a,
.footer-class2 > li > a,
.footer-class3 > li > a {
  position: relative;
  display: flex;
  padding: 0px 0px 15px 0px;
}

.footer-class1 > li > a::after,
.footer-class2 > li > a::after,
.footer-class3 > li > a::after {
  content: "";
  position: absolute;
  left: 0;
  top: 25px;
  background-color: var(--renk5);
  height: 1px;
  width: 120px;
}

.footer-class1 .sub-menu > li,
.footer-class2 .sub-menu > li,
.footer-class3 .sub-menu > li {
  padding: 3px 0px 0px 0px;
}

.footer-class1 .sub-menu > li > a,
.footer-class2 .sub-menu > li > a,
.footer-class3 .sub-menu > li > a {
  color: var(--renk7);
  font-size: 14px;
}

.footer-class1 .sub-menu > li > a:hover,
.footer-class2 .sub-menu > li > a:hover,
.footer-class3 .sub-menu > li > a:hover {
  color: #fff;
}

.footer-bottom {
  position: relative;
  padding: 30px 0px 0px 0px;
}

.footer-bottom-row {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-items: center;
  align-items: center;
  row-gap: 10px;
  border-top: 1px solid var(--renk2);
}

.footer-bottom-col {
  padding: 20px 0px 20px 0px;
}

.footer-bottom-col a {
  padding: 0px 10px 0px 10px;
}

.footer-bottom-col a svg {
  width: 26px;
  height: 26px;
  fill: gray;
}

.footer-bottom-col a:hover svg {
  fill: white;
}

.footer-bottom-col p {
  color: var(--renk7);
  font-size: 14px;
}

@media (max-width: 900px) {
  .footer ul {
    grid-template-columns: 1.2fr 1fr;
  }
}

@media (max-width: 599px) {
  .footer-container {
    margin: 0px 0px 0px 10px;
  }

  .footer ul {
    grid-template-columns: 1.3fr 1fr;
  }

  .footer-bottom-row {
    grid-template-columns: 1fr;
  }

  .footer-bottom-col {
    padding: 10px 0px 10px 0px;
  }
}

/*-------------------------------------------------------------
KURUMSAL
-------------------------------------------------------------*/

.kurumsal-menu-container {
  margin: 20px 20px 0px 20px;
}

.kurumsal-menu-row {
  position: relative;
  display: flex;
  background-color: #fff;
  height: 50px;
  align-items: center;
  gap: 20px;
  padding-left: 20px;
}

.kurumsal-menu-link {
  position: relative;
  display: flex;
}

.kurumsal-menu-link a {
  color: var(--renk1);
}

.kurumsal-menu-link a::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 20px;
  background-color: var(--renk5);
  height: 2px;
  width: 0;
  transition: all 0.2s ease-in;
}

.kurumsal-menu-link.active a::before {
  width: 100%;
}

.kurumsal-menu-link a:hover::before {
  width: 100%;
}

.hakkimizda-container {
  margin: 5px 20px 100px 20px;
}

.hakkimizda-row {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 5px;
  row-gap: 5px;
}

.hakkimizda-col {
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: #fff;
}

.hakkimizda-col:last-child {
  padding: 0px 10px 0px 10px;
}

.hakkimizda-col img {
  position: relative;
  object-fit: cover;
  width: 100%;
  height: 100%;
  mix-blend-mode: normal;
}

.hakkimizda-col h2 {
  color: var(--renk1);
  font-size: 27px;
  font-weight: 700;
  line-height: 50px;
  text-align: center;
}

.hakkimizda-col p {
  color: var(--renk1);
  font-weight: 300;
  line-height: 1.8em;
  text-indent: 20px;
}

@media (max-width: 1023px) {
  .kurumsal-menu-container {
    margin: 20px 10px 0px 10px;
  }

  .hakkimizda-container {
    margin: 5px 10px 50px 10px;
  }

  .hakkimizda-row {
    grid-template-columns: 1fr;
  }
}

/*-------------------------------------------------------------
ILETISIM
-------------------------------------------------------------*/

.contact-main {
  padding: 50px;
  background-color: #fff;
}

.contact-bottom {
  margin: 0px 0;
}

.contact-titles {
  text-align: left;
  border-bottom: 1px solid #000;
}

.contact-titles h4 {
  color: var(--renk1);
  font-weight: 500;
  font-size: 20px;
  padding-bottom: 5px;
}

.contact-elements {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  margin-top: 20px;
  gap: 100px;
}

.wpcf7 {
  display: flex;
}

.wpcf7-form {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.wpcf7-form > p {
  display: flex;
  flex-direction: column;
  flex-basis: calc(50% - 10px);
  font-size: 14px;
  row-gap: 4px;
}

.wpcf7-form p:nth-child(4),
.wpcf7-form p:nth-child(5) {
  flex-basis: 100%;
}

.wpcf7-form p input,
.wpcf7-form p:nth-child(5) textarea {
  width: 100%;
}

.wpcf7-form > p label {
  color: #515151;
  font-weight: 500;
}

.wpcf7-form-control {
  height: 25px;
  border: 1px solid #919191;
}

.wpcf7-textarea {
  height: 50px;
  border: 1px solid #919191;
}

.contact-info {
  flex-basis: 50%;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.contact-info-item {
  font-size: 16px;
}

.contact-info-texts {
  display: flex;
  flex-direction: column;
}

.contact-info-texts p,
.contact-info-texts a {
  color: var(--renk1);
}

.contact-info-texts p:nth-child(1) {
  font-weight: 700;
}

/* responsive */
@media (max-width: 999px) {
  .contact-elements {
    grid-template-columns: 1.2fr 1fr;
    gap: 50px !important;
  }

  .contact-map iframe {
    height: 300px;
  }
}

@media (max-width: 650px) {
  .contact-elements {
    grid-template-columns: 1fr;
  }

  .wpcf7-form {
    flex-direction: column;
    flex-wrap: nowrap;
  }

  .contact-map iframe {
    height: 200px;
  }

  .contact-titles h4 {
    font-size: 16px;
  }
}

/*-------------------------------------------------------------
URUNLER
-------------------------------------------------------------*/

.breadcrumb ul {
  position: relative;
  display: flex;
  background-color: #fff;
  margin: 20px 20px 0px 20px;
  height: 35px;
}

.breadcrumb ul li {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 5px;
}

.breadcrumb ul li:not(:first-child):before {
  color: var(--renk1);
  content: "/\00a0";
}

.breadcrumb ul li a {
  color: var(--renk4);
  font-size: 15px;
}

.breadcrumb ul li a:hover {
  color: var(--renk5);
}

.breadcrumb ul li p {
  color: var(--renk1);
  font-size: 15px;
}

.urun ul {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  column-gap: 5px;
  row-gap: 5px;
  margin: 5px 20px 350px 20px;
}

.urun ul li a {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background-color: #fff;
}

.urun ul li a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.3s ease-in-out;
  transform-origin: center bottom;
}

.urun ul li a:hover img {
  transform: scale(1.05);
}

.urun ul li a p {
  text-align: center;
  padding: 10px 0px;
  background-color: var(--renk3);
}

@media (max-width: 1023px) {
  .breadcrumb ul {
    margin: 10px 10px 0px 10px;
    height: 25px;
  }

  .breadcrumb ul li a {
    font-size: 12px;
  }

  .breadcrumb ul li p {
    color: #000;
    font-size: 12px;
  }

  .urun ul {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    margin: 5px 10px 200px 10px;
  }

  .urun ul li a p {
    padding: 5px 0px;
    font-size: 12px;
  }
}

@media (max-width: 599px) {
  .urun ul {
    grid-template-columns: 1fr 1fr;
    margin: 5px 10px 200px 10px;
  }

  .urun ul li a p {
    padding: 5px 0px;
    font-size: 12px;
  }
}

/*-------------------------------------------------------------
URUNLER AYRINTILAR
-------------------------------------------------------------*/

.urun-detay ul {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 5px 20px 350px 20px;
  row-gap: 5px;
  column-gap: 5px;
}

.urun-detay ul li {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background-color: #fff;
  overflow: hidden;
  border-bottom: 1px solid var(--renk7);
}

.urun-detay ul li img {
  width: 100%;
  height: 150px;
  object-fit: contain;
  object-position: center;
  transition: all 0.2s ease-in-out;
}

.urun-detay ul li h2,
.urun-detay ul li h3,
.urun-detay ul li p {
  color: var(--renk1);
}

.urun-detay ul li h3 {
  padding-bottom: 5px;
}

.urun-detay-text {
  padding: 10px 0px 0px 20px;
  border-left: 1px solid var(--renk7);
}

@media (min-width: 1023px) {
  .urun-detay ul li img:hover {
    transform: scale(1.1);
  }
}

@media (max-width: 1023px) {
  .urun-detay ul {
    grid-template-columns: 1fr 1fr;
    margin: 5px 10px 200px 10px;
  }

  .urun-detay ul li p {
    font-size: 12px;
  }

  .urun-detay ul li h2 {
    font-size: 16px;
  }

  .urun-detay ul li h3 {
    font-size: 14px;
  }

  .urun-detay-text {
    padding: 10px 5px 0px 5px;
  }

  .urun-detay ul li img {
    height: 120px;
  }
}

@media (max-width: 599px) {
  .urun-detay ul {
    grid-template-columns: 1fr;
    margin: 5px 10px 200px 10px;
  }

  .urun-detay-text {
    padding: 5px 5px 0px 5px;
  }

  .urun-detay ul li img {
    height: 100px;
  }
}

/*-------------------------------------------------------------
UYGULAMA
-------------------------------------------------------------*/

.uygulama ul {
  position: relative;
  margin: 5px 20px 300px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 5px;
  row-gap: 5px;
}

.uygulama ul li {
  position: relative;
  display: flex;
  justify-content: center;
}

.uygulama ul li img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background-color: #fff;
}

.uygulama ul li p {
  position: absolute;
  background-color: var(--renk3);
  padding: 5px 0px 5px 5px;
  width: 100%;
  bottom: 0;
  text-align: center;
}

@media (max-width: 1023px) {
  .uygulama ul {
    grid-template-columns: 1fr 1fr;
    margin: 5px 10px 200px 10px;
  }

  .uygulama ul li p {
    font-size: 12px;
  }
}

@media (max-width: 1023px) {
  .uygulama ul {
    grid-template-columns: 1fr;
    margin: 5px 10px 200px 10px;
  }
}
