@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;700&display=swap");

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  font-size: 11pt;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: slategray;
}
a:hover {
  text-decoration: none;
  color: rgb(150, 150, 150);
}



#otto-home {
  position: absolute;
  top: 82.5%;
}

.otto-nav {
  background-color: rgba(255, 255, 255, 0.5) !important;
  transition: all 0.5s;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 9998;
  display: flex !important;
  align-items: center;
  height: 115px;
  text-transform: capitalize;
  justify-content: space-evenly;
}

.nav-tp {
  background-color: rgba(255, 255, 255, 0.7) !important;
}

.page-banner-shadow {
  transition: 0.5s all;
  box-shadow: 25px 0px 50px rgba(0, 0, 0, 0.5);
}
.section-margin {
  transition: 0.5s all;
}

.logo-div {
}
.otto-logo {
  padding: 10px;
  height: 125px;
}

.otto-nav ul.menu li {
  list-style: none;
}

.otto-nav ul.menu {
  width: 100%;
  height: 70px;
  margin: 0;
  padding: 0;
}

.otto-nav ul.menu > li {
  list-style: none;
  float: left;
  position: relative;
  line-height: 70px;
}

.otto-nav ul.menu > li:hover {
  background-color: rgba(255, 255, 255, 1);
  box-shadow: 0 5px 15px rgba(100, 100, 100, 0.5);
}

.otto-nav ul.menu > li > a {
  display: block;
  font-size: 18px;
  color: rgb(0, 0, 0, 0.7);
  font-weight: bolder;
  padding: 0 12px;
}

.otto-nav ul.menu > li > a:hover {
  color: rgb(0, 0, 0, 0.4);
}

.otto-nav ul.menu ul {
  background-color: rgba(255, 255, 255, 0.9);
  position: absolute;
  top: 50px;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: 200ms all;
  width: 175px;
}

.otto-nav ul.menu ul li {
  margin: 0;
  padding: 0;
}

.otto-nav ul.menu > li:hover ul {
  opacity: 1;
  visibility: visible;
  top: 70px;
  width: 200px;
  padding: 0;
  box-shadow: 0 5px 15px rgba(100, 100, 100, 0.5);
}

.otto-nav ul.menu ul li a {
  display: block;
  color: rgb(0, 0, 0, 0.7);
  font-size: 18px;
  padding-left: 20px;
  font-weight: bolder;
}

.otto-nav ul.menu ul li:hover {
  background-color: rgba(255, 255, 255, 1);
}

.otto-nav ul.menu ul li:hover a {
  color: rgb(0, 0, 0, 1);
}

.otto-nav ul.menu > li:nth-last-child(2) a {
  color: #fff;
}

.otto-nav ul.menu > li:nth-last-child(2) {
  margin: 0 10px;
  background: #ed213a;
  background: -webkit-linear-gradient(to right, #93291e, #ed213a);
  background: linear-gradient(to right, #93291e, #ed213a);

  border-radius: 5px;
  padding: 0px;
  -webkit-transition: background 0.25s ease;
  -ms-transition: background 0.25s ease;
  transition: background 0.25s ease;
}

.otto-nav ul.menu > li:nth-last-child(2):hover {
  background-position: -40px;
  -webkit-transition: background 0.25s ease;
  -ms-transition: background 0.25s ease;
  transition: background 0.25s ease;
}

#main-menu {
  cursor: pointer !important;
}

.mobile-menu {
  transition: 0.75s all;
  visibility: hidden;
  opacity: 0;
  height: 0;
}

.visible-animate {
  visibility: visible;
  opacity: 1;
  height: auto;
}

.logo-container {
  display: table;
  width: 100%;
  background-color: #fff;
}

.menu-bar {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  min-width: 100px;
  cursor: pointer;
}

.menu-bar .fa {
  font-size: 50px;
}

.mobile-logo {
  display: table-cell;
}

.mobile-logo a > img {
  width: 100%;
  max-height: 100px;
  object-fit: contain;
  min-width: 125px;
  min-height: 50px;
}

.otto-nav-mobile {
  text-transform: capitalize;
  position: fixed;
  z-index: 15;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.7) !important;
}

.otto-nav-mobile ul.menu {
  cursor: pointer;
  margin: 0;
  padding: 0;
  height: 100%;
  background: #232526; /* fallback for old browsers */
  background: -webkit-linear-gradient(
    to bottom,
    #414345,
    #232526e2
  ); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(
    to bottom,
    #414345,
    #232526e2
  ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  box-shadow: inset 0px 7px 30px -20px #000, inset 0px -7px 30px -20px #000;
}

.otto-nav-mobile ul.menu > li {
  list-style: none;
  padding: 10px;
}

.otto-nav-mobile ul.menu li a {
  margin: 15px;
  color: white;
  font-size: 14pt;
  font-weight: bolder;
}

.otto-nav-mobile ul.menu li a:hover {
  color: rgba(255, 255, 255, 0.5);
}

.otto-nav-mobile ul.menu ul {
  padding: -5px;
  position: absolute;
  background-color: gray;
  width: 70%;
  transition: 0.4s all;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  box-shadow: inset 0px 7px 30px -20px #000, inset 0px -7px 30px -20px #000;
}

.otto-nav-mobile ul.menu > li:hover ul {
  opacity: 1;
  visibility: visible;
  padding: 10px;
  position: relative;
}

.otto-nav-mobile ul.menu ul li {
  list-style: none;
}

.dashicons,
.dashicons-before:before {
  vertical-align: middle !important;
}

.content {
  width: 94%;
  margin: 4em auto;
  font-size: 20px;
  line-height: 30px;
  text-align: justify;
}

.home-heading {
  display: table;
  margin: 0 auto;
  font-weight: bolder;
  font-size: 15pt;
  padding: 15px;
}

#myCarousel img {
  height: 500px;
  object-fit: cover;
}

.carousel-wrap {
  width: 100%;
  margin: auto;
  position: relative;
}

.owl-carousel .owl-nav {
  overflow: hidden;
  height: 0px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #2caae1;
}

.owl-carousel .item {
  text-align: center;
}
.owl-carousel .nav-btn {
  height: 45px;
  position: absolute;
  width: 25px;
  cursor: pointer;
  top: calc(50% - 28px) !important;
}

.owl-carousel .owl-prev.disabled,
.owl-carousel .owl-next.disabled {
  pointer-events: none;
  opacity: 0.2;
}

.owl-carousel .prev-slide {
  margin-right: 30px;
  background: url(../../images/nav-icon2.png) no-repeat scroll 0 0;
  left: -35px;
}
.owl-carousel .next-slide {
  background: url("../../images/nav-icon2.png") no-repeat scroll -24px 0px;
  right: -30px;
}
.owl-carousel .prev-slide:hover {
  background-position: 0px -53px;
}
.owl-carousel .next-slide:hover {
  background-position: -24px -53px;
}

.brand-logo {
  height: 250px;
  object-fit: contain;
}
.brand-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.3;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 30px;
  height: 30px;
}
.service-img {
  height: 300px;
  object-fit: contain;
}

.service-slider .item:hover {
  transition: 0.2s all;
  -webkit-filter: drop-shadow(5px 9px 4px rgba(0, 0, 0, 0.5));
  filter: drop-shadow(5px 9px 4px rgba(0, 0, 0, 0.5));
  margin: -10px 0px 0px 0px;
}

.service-slider .item {
  transition: 0.2s all;
  position: relative;
}
.news-img {
  height: 300px;
  object-fit: cover;
}
.news-content-mini {
  font-size: 12pt;
}
.about-home {
  margin-top: 45px;
}
.hakkimizda-icerik-home {
  font-size: 12pt;
}
.hakkimizda-banner {
  width: 100%;
  object-fit: cover;
}

.hk-image-container {
  vertical-align: middle;
}

.hakkimizda-gorsel {
  width: 100%;
  object-fit: contain;
  padding-top: 8%;
}

hr.hakkimizda-hr-up {
  border: none;
  height: 50px;
  width: 106%;
  margin-left: -3%;
  box-shadow: 0 -20px 20px -20px #333;
}
hr.hakkimizda-hr-down {
  border: none;
  height: 50px;
  width: 106%;
  margin-left: -3%;
  margin-bottom: 4rem;
  box-shadow: 0 20px 20px -20px #333;
}

.vm-baslik > h2 {
  padding-left: 15px;
  border-left: 5px solid slategray;
}
.hero-name {
  font-weight: bold;
  font-size: 20pt;
  border-left: 5px solid slategray;
  padding-left: 15px;
}
.banner-container {
  height: 500px;
}

.page-banner {
  text-align: center;
  width: 100%;
  height: 400px;
  position: fixed;
  z-index: -5;
  margin-top: 115px;
}

.page-banner > h1 {
  line-height: 400px;
  color: white;
}

footer {
  font-size: 10pt;
}
footer .footer-up {
  padding: 50px;
  color: #fff;
  background: #232526; /* fallback for old browsers */
  background: -webkit-linear-gradient(
    to bottom,
    #414345,
    #232526
  ); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(
    to bottom,
    #414345,
    #232526
  ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  box-shadow: inset 0px 7px 30px -20px #000, inset 0px -7px 30px -20px #000;
}
footer .footer-down {
  height: 50px;
  line-height: 50px;
  cursor: default;
}

.noselect {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.footer-contact a {
  color: slategray;
  text-decoration: none;
}
.footer-contact a:hover {
  color: rgb(189, 189, 189);
  text-decoration: none;
}
.footer-icon {
  padding: 20px;
  font-size: 20px;
  width: 60px;
  height: 60px;
  text-align: center;
  text-decoration: none;
  margin: 5px 2px;
  border-radius: 60px;
}

.footer-info:hover h4,
.footer-contact:hover h4 {
  cursor: default;
  animation: glow 1s ease-in-out infinite alternate;
}

.footer-social a {
  color: rgba(255, 255, 255, 1);
}

.icon-shadow {
  text-shadow: 5px 5px 3px rgba(0, 0, 0, 0.4);
  box-shadow: inset 2px -2px 15px -5px #000;
}

.fa-facebook {
  background: #3b5998;
  color: white;
}
.fa-twitter {
  background: #55acee;
  color: white;
}
.fa-instagram {
  background: #125688;
  color: white;
}
.fa-pinterest {
  background: #cb2027;
  color: white;
}

.contact-icon {
  font-size: 50px;
  color: slategrey;
  text-shadow: 6px 6px 3px rgba(160, 160, 160, 0.2);
}

.contact-icon .fa-phone,
.contact-icon .fa-envelope {
  padding-top: 35px;
}

.footer-left {
  border-right: 1px solid #e4e4e480;
  padding-top: 30px;
}
.bottom {
  position: relative;
}

.bottom:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  bottom: 0;
  left: 0;
  background-color: #000;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
.bottom:hover:before {
  visibility: visible;
  height: 3px;
}

.ws-iletisim {
  margin-top: 23px;
}

.arrow a {
  position: absolute;
  bottom: 10%;
  left: 50%;
  z-index: 2;
  display: inline-block;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  color: #fff;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: opacity 0.3s;
}
.arrow a:hover {
  opacity: 0.5;
}

#arrow-section a {
  padding-top: 60px;
}
#arrow-section a span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 46px;
  height: 46px;
  margin-left: -23px;
  border: 2px solid #fff;
  border-radius: 100%;
  box-sizing: border-box;
}
#arrow-section a span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  width: 16px;
  height: 16px;
  margin: -12px 0 0 -8px;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  box-sizing: border-box;
}
#arrow-section a span::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  content: "";
  width: 44px;
  height: 44px;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1);
  border-radius: 100%;
  opacity: 0;
  -webkit-animation: sdb03 3s infinite;
  animation: sdb03 3s infinite;
  box-sizing: border-box;
}
@-webkit-keyframes sdb03 {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  60% {
    box-shadow: 0 0 0 60px rgba(255, 255, 255, 0.1);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes sdb03 {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  60% {
    box-shadow: 0 0 0 60px rgba(255, 255, 255, 0.1);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.glow {
  -webkit-animation: glow 1s ease-in-out infinite alternate;
  -moz-animation: glow 1s ease-in-out infinite alternate;
  animation: glow 1s ease-in-out infinite alternate;
}

@-webkit-keyframes glow {
  from {
    text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #7e7e7e,
      0 0 40px #7e7e7e, 0 0 50px #7e7e7e, 0 0 60px #7e7e7e, 0 0 70px #7e7e7e;
  }

  to {
    text-shadow: 0 0 20px #fff, 0 0 30px #7c7c7c, 0 0 40px #7c7c7c,
      0 0 50px #7c7c7c, 0 0 60px #7c7c7c, 0 0 70px #7c7c7c, 0 0 80px #7c7c7c;
  }
}

.img-hover-zoom {
  overflow: hidden;
}

.img-hover-zoom img {
  transition: transform 0.7s ease;
}

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

figure {
  height: auto;
  overflow: hidden;
}

.shine-hover {
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 5px;
}

.shine-hover figure {
  position: relative;
  background-color: #fff;
  margin: 0;
  height: auto;
}

.shine-hover figure::before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: -webkit-linear-gradient(
    left,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 100%
  );
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 100%
  );
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg);
}
.shine-hover figure:hover::before {
  -webkit-animation: shine 1.25s;
  animation: shine 1.25s;
}

@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}
@keyframes shine {
  100% {
    left: 125%;
  }
}

@media (max-width: 991px) {
  .footer-left {
    border-right: none;
    padding-top: 0;
  }
}

@media (max-width: 1199px) {
  .otto-nav {
    display: none !important;
  }
  .otto-nav-mobile {
    z-index: 9999;
    display: block;
  }
  .service-img {
    height: 210px;
    object-fit: contain;
  }
  .metaslider {
    padding-top: 100px !important;
  }
  .arrow {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .otto-nav-mobile {
    display: none !important;
  }
}

@media (max-width: 786px) {
  .owl-carousel .prev-slide {
    left: 13px;
  }
  .owl-carousel .next-slide {
    right: 13px;
  }
  .service-img {
    height: 175px;
    object-fit: contain;
  }
  .brand-logo {
    height: 150px;
    object-fit: contain;
  } /* 
  .logo {
    position: fixed;
    top: 0;
    margin-top: 16px;
  }
  nav ul {
    max-height: 0px;
    background: #000;
  }

  nav.black ul {
    background: #000;
  }

  .showing {
    max-height: 34em;
  }

  nav ul li {
    box-sizing: border-box;
    width: 100%;
    padding: 24px;
    text-align: center;
  } */

  .menu-icon {
    display: block;
  }
}

@media screen and (max-width: 750px) {
  iframe {
    max-width: 100% !important;
    width: auto !important;
    height: auto !important;
  }
  .menu-bar .fa {
    font-size: 20pt;
  }
}
@media screen and (max-width: 499px) {
  .mobile-logo {
    padding-right: 2em;
  }
}

@media screen and (min-width: 500px) and (max-width: 600px) {
  .mobile-logo {
    padding-right: 3em;
  }
}

@media screen and (min-width: 601px) and (max-width: 750px) {
  .mobile-logo {
    padding-right: 4em;
  }
}

@media screen and (min-width: 751px) {
  .mobile-logo {
    padding-right: 5em;
  }
}
header{
  width: 100% !important;

}
header> .container{
width: 100% !important;
position: absolute !important;
left: 50% ;
z-index: 999999;
transform: translateX(-50%);
margin-top: 20px;
top: 0;
}
.landing-video-section {
  height: 100vh !important;
  width: 100%;
}
.landing-video-section div{
  width: 100%;
  height: 100% ;
}
.landing-video-section video{
  width: 100%;
  height: 100%;
}
html{
  margin-top: 0px !important;
}
:root {
  --pantone-5215-c: #AF95A6;
  --pantone-5225-c: #C6B0BC;
  --pantone-5235-c: #D2C1C7;
  --pantone-5245-c: #E8D7D9;
  --pantone-627-cv: #002B36;
  --pantone-7507-c: #FCD299;
  --pantone-7509-c: #D6A461;
}
.vide-bottom-banner{
  width: 100%;
  padding: 1.5rem;
  background-color: var(--pantone-7507-c);
  display: flex;
  align-items: center;
  justify-content: center;
}
.vide-bottom-banner h1{
  margin: 0;
}
.video-bottom-texts p {
  text-align: center;
  color: black !important;
  opacity: 1 !important;
  font-size: 18px;
}
.video-bottom-texts{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70% ;
  flex-direction: column;
  gap: 1rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.video-bottom-text-cont a{
  font-size: 20px;
  color: black !important;
  display: flex;
  gap: 1rem;
  font-weight: 500 !important;
  margin-top: 0.5rem;
  align-items: center;
}
.video-bottom-text-cont a span{
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  border: 1px solid black;
  justify-content: center;
}
.grid-3{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  align-items: center;
  justify-content: center;
}
.home-gallery-section{
  margin-top: 60px;
}
.home-gallery-column-2{
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.home-gallery-section img{
  width: 100%;
  height: auto;
}
.text-banner-section{
  background-color: var(--pantone-7507-c);
padding: 1.5rem;
}
.text-banner-section span{
  font-weight: 500;
}
.our-products-cont{
  display: grid;
  grid-template-columns: 1fr 2fr;
  width: 100%;
  align-items: center;
}
.our-products-images{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding: 2rem;
  width: 100%;

}
.our-products-images img{
  width: 100%;
  height: auto ;
  border: 4px solid black;
}
.our-products-text{
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.upper-footer {
  width: 100%;
}
.upper-footer img{
  width: 100%;
  height: auto ;
  object-fit: cover;
}
.upper-footer .contact-image-banner-text-box {
  width: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 1.5rem;
  transform: translate(-50%, -50%);
}
.upper-footer{
  position: relative;
}
.upper-footer .contact-image-banner-text-box > div{
  display: flex;
  background-color: rgba(0, 0, 0, 0.6);
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-top-right-radius: 30px;
  color: white;
}
.upper-footer .contact-image-banner-text-box a{
  display: flex;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.6);
  gap: 0.5rem;
  color: white;
  width: fit-content;
  height: fit-content;
  padding: 1rem;
  border-top-right-radius: 15px;

}
.upper-footer .contact-image-banner-text-box a span{
  width: 25px;
  height: 25px;
  border: 1px solid white;
  border-radius: 50%;

  display: flex;
  align-items: center;  
  justify-content: center;

}
.footer-container{
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background-color: var(--pantone-7507-c);
}
.footer-content{
  display: flex;
  width: 50%;;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}
.footer-content>div{
  padding-left: 1rem;
  border-left: 2px solid black;
}
footer{
  padding-top:40px;
  padding-bottom: 40px;
  background-color: var(--pantone-7507-c);
}
.footer-wrapper{
  background-color: var(--pantone-7507-c) !important;
}
.spc-container {
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
}
.spc-title {
  font-size: 32px;
  font-weight: bold;
  color: #000;
  margin-bottom: 20px;
}
.spc-subtitle {
  font-size: 20px;
  color: #666;
  margin-bottom: 20px;
}
.spc-text {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
}
.spc-button {
  background-color: #666;
  color: #fff;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
}
.spc-button:hover {
  background-color: #444;
}
.spc-header {
  font-size: 14px;
  color: #999;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: bold;
}
.header-container-center-logo, .header-container-center-logo  *{
  width: 100%;
  height: auto !important;

}
.header-container-center #cssmenu > ul{
  justify-content: space-between !important;
}
.mega-menu{
  width: 100% !important;
}
.header-container{
  justify-content: space-around !important;
}
.product-upper-div{
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 60px;
  margin-bottom: 20px;
}
.product-upper-div img{
  width: 100%;
  height: auto;
}
.product-images{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
}
.product-images img{
  width: 100%;
  height: auto;
}
.post-wrapper{
  padding-top: 80px;
padding-bottom: 80px;
}

.uppder-spc-text-cont{
  width: 100%;
  gap: 0px !important;
  margin-top: 40px;
  margin-bottom: 40px;
}
.uppder-spc-text-cont h2{
font-weight: bold;
color: #a9a9a9;
margin-bottom: 0px !important;
font-size: 22px !important;
}
.uppder-spc-text-cont span{
  color:#a9a9a9;
  font-size: 16px !important;
}

.sp-contact-section{
  width: 80%;
  margin: 20px auto;
  padding: 3rem;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}
.contact-page-wrapper{
  margin-top: 120px;
  margin-bottom: 80px;
}
.contact-page-wrapper .upper-spc-text-cont{
  margin-bottom: 0px !important;
}
.sp-contact-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 100%;
}

.sp-contact-map {
  flex: 1;
  min-width: 300px;
}

.sp-contact-form {
  flex: 1;
  min-width: 300px;
  padding: 20px;
  background-color: #f9e8d8;
}
.sp-contact-form form >div:not(:last-child){
  border-bottom: 1px solid black;
  align-items: center !important;
}
.sp-contact-form h2 {
  margin-top: 0;
  font-size: 24px;
  color: #000;
}

.sp-contact-form label {
  display: block;
  margin-top: 10px;
  font-weight: bold;
}

.sp-contact-form input, .sp-contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  margin-bottom: 15px;
  border: none !important;
  border-radius: 0px;
  outline: none;
  background-color: transparent !important;
}

.sp-contact-form button {
  background-color: #000;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.sp-contact-form button:hover {
  background-color: #444;
}

.sp-contact-form .sp-contact-social {
  margin-top: 20px;
  display: flex;
  gap: 10px;
}

.sp-contact-form .sp-contact-social a {
  color: #000;
  text-decoration: none;
  font-size: 20px;
}

iframe {
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 768px) {
  .sp-contact-container {
      flex-direction: column;
  }
}
.sp-contact-form button{
  width:80% !important;
  background-color: white  !important;
  color: black !important;
  justify-content: space-between !important;
  border-radius: 0px !important;
  padding: 1rem !important;
  font-weight: bold !important;
}
.form-sbmt{
  width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
  margin-top: 1.5rem;
}
.sp-contact-form form >div:not(:last-child) > * {
  margin-bottom: 0px !important;
}


.header-container-right {
  position: relative;
}

.header-container-right .pll-parent-menu-item {
  position: relative;
}

.header-container-right .pll-parent-menu-item ul {
  display: none; /* Varsayılan olarak görünmez */
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid #ddd;
  z-index: 1000;
}

.header-container-right .pll-parent-menu-item ul li {
  padding: 10px;
  white-space: nowrap;
}

.header-container-right .pll-parent-menu-item ul li a {
  text-decoration: none;
  color: black;
  display: block;
}

.header-container-right .pll-parent-menu-item ul li:hover {
  background-color: #f0f0f0;
}

/* Hover durumunda alt menü görünür */
.header-container-right .pll-parent-menu-item:hover ul {
  display: block;
}
.header-container-right li {
  list-style-type: none !important;
  color: black !important;
}
.header-container-right li a, .header-container-right a{
  display: flex
  ;
      padding: 0.5rem;
      color: #000;
      font-weight: 600;
      font-size: 14px;
      cursor: pointer;
  
}
.header-container-right{
  width: 100%;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}
.header-container-right input{
  background-color: transparent;
  border: none !important;
}
.header-container-right input:focus{
  border: none;
  outline: none;
}
.header-container-right .search-div{
  background-color: #a1a1a1;
  color: black;
  border-radius: 50px;
  padding: 4px 8px;


}
.header-container-right>div>a{
  display: flex;
  gap: 8px;
  align-items: center;
}
.header-container-right>div>a i{
  font-size: 20px;
}
#menu-item-43,#menu-item-15,#menu-item-90,#menu-item-99{
  position: relative;
}
#menu-item-43::after,#menu-item-15::after,#menu-item-90::after,#menu-item-99::after{
  content: "\2039";
  position: absolute;
  right: -8px;
  top: 50%;
  font-size: 30px;
  transform: translateY(-50%) rotate(270deg);

}
.spc-container{
  margin-top: 80px !important;
}
.header-container-center #cssmenu > ul > li > ul{
  flex-direction: column;
  min-width: 200px;
}
.header-container-center #cssmenu > ul > li > ul > li{
  width: 100% !important;
}
.header-container-right a:hover {
  color: var(--theme-dark-color);
  transition: 0.3s all linear;
}
.header-container-right a {
  transition: 0.3s all linear;
}
.breadcrumb-container{
  margin-top: 80px !important;
}
@media screen and (max-width:768px) {
  header> .container{
    position: static !important;
    transform: none !important;
  }
  .header-wrapper{
    display: none !important;
  }
  .image-banner-text-box,.upper-footer .contact-image-banner-text-box {
    width: 90% !important;
    }
    .image-banner-text-box h1, .upper-footer .contact-image-banner-text-box > div h1{
      font-size: 20px !important;
    }
    .text-banner-section{
      margin-bottom: 20px !important;
    }
    .text-banner-section > div{
     grid-template-columns: 1fr !important;
    }
    .our-products-cont{
      grid-template-columns: 1fr !important;
    }
    .image-banner-section img,.upper-footer img{
      min-height: 250px !important;
      

    }
    .footer-content{
      flex-direction: column !important;
      width: 100% !important;
    }
    .spc-container{
      margin-top: 20px !important;
    }
    .breadcrumb-container{
      margin-top: 20px !important;
    }
    .category-content.product-wrapper{
      display: grid !important;
      grid-template-columns: 1fr 1fr !important;
    }
    .product-content{
      width: 100% !important;
    }
    .contact-page-wrapper{
      margin-top: 20px !important;
    }
    .sp-contact-section{
      width: 100% !important;
      margin: 0 !important;
      padding: 1rem !important;
    }
     .sp-contact-section > div > div{
      width: 100% !important;
      min-width: 100% !important;
      max-width: 100% !important;
    }
    .sp-contact-section iframe{
      width: 100% !important;
    }
.post-wrapper{
  padding-top: 20px !important;
}
.product-upper-div {
  grid-template-columns: 1fr  ;
}
.product-images{
  grid-template-columns: 1fr;
}
    
}
.image-banner-section img,.upper-footer img{
  width: 100%;
  height: auto;
  object-fit: cover !important;
}
.vide-bottom-banner h1 {
  text-align: center !important;
}
