@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 {
  font-family: "Open Sans", sans-serif;
  font-weight: lighter;
  overflow-x: hidden;
}

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

section {
  background-color: #f8f9fa !important;
}

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

.nav-tp {
  background-color: #fff !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 {
  width: 20%;
  display: flex;
  align-items: center;
}

.logo-div > a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.otto-logo {
  max-height: 50px;
}

.otto-nav ul {
  list-style: none;
  transition: 200ms all;
}

.otto-nav ul.menu {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
}

.menu-image-title-after.menu-image-not-hovered img, .menu-image-hovered.menu-image-title-after .menu-image-hover-wrapper, .menu-image-title-before.menu-image-title {
  padding-right: 0 !important;
  margin-right: 3px;
}

.otto-nav ul.menu > li {
  position: relative;
}

.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 {
  color: rgb(0, 0, 0, 0.7);
  font-weight: bolder;
  display: flex;
  align-items: center;
  padding: 1rem;
  height: 50px;
}

.otto-nav ul.menu > li a {
    cursor: pointer;
}

.otto-nav ul.menu > li > a > span{
  display: flex;
  align-items: center;
}

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

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

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

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

.otto-nav ul.menu > li ul {
  width: 200px;
  padding: 0;
  box-shadow: 0 5px 15px rgba(100, 100, 100, 0.5);
}

.otto-nav ul.menu > li > ul {
  top: 50px;
}

.otto-nav ul.menu > li:hover > ul {
  opacity: 1;
  visibility: visible;
}

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

.otto-nav ul.menu > li > ul > li a {
  display: flex;
  padding: 1rem;
}


.otto-nav ul.menu > li > ul > li a > span{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgb(0, 0, 0, 0.7);
}

.otto-nav ul.menu > li > ul > li {
  position: relative;
}

.otto-nav ul.menu > li > ul > li > ul {
  position: absolute;
  left: 80%;
  top: 0;
  visibility: hidden;
  opacity: 0;
}

.otto-nav ul.menu > li > ul > li:hover > ul {
  left: 100%;
  visibility: visible;
  opacity: 1;
}

@media screen and (max-width: 1200px){
  .otto-nav ul.menu > li > a {
    font-size: 0.9rem;
    padding: 1rem .5rem;
  }
  .dashicons, .dashicons-before:before {
    font-size: 1.1rem !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
  }
  .otto-nav ul.menu > li > ul > li a {
    font-size: 0.9rem;
  }
}

@media screen and (max-width: 992px){
  .dashicons, .dashicons-before:before {
    display: none !important;
  }
}

#main-menu {display: flex;}

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

@media screen and (max-width: 992px){
  .dashicons, .dashicons-before:before {
    display: none !important;
  }
}

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

.logo-container {
  display: flex;
  align-items: center;
  width: 100%;
  background-color: #fff;
  padding: .5rem;
}

.menu-bar {
  cursor: pointer;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.mobile-logo {width: calc(100% - 50px);display: flex;align-items: center;justify-content: center;padding-right: 1rem;}

.mobile-logo a > img {
  height: 35px;
  width: 115px;
}

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

@media screen and (max-width: 768px){
  .otto-nav{
    display: none;
  }
  .otto-nav-mobile{
    display: block;
  }
  .metaslider {
    padding-bottom: 50px;
  }
  
  .dashicons, .dashicons-before:before {
    display: inline-block !important;
  }

  .otto-nav-mobile ul.menu::-webkit-scrollbar {
    display: none;
  }

  /* Hide scrollbar for IE, Edge and Firefox */
  .otto-nav-mobile ul.menu {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
  }
}


.otto-nav-mobile.showing {
  height: 100%;
}

.otto-nav-mobile ul.menu {
  cursor: pointer;
  margin: 0;
  padding: 25px;
  height: 100%;
  width: 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;
  max-height: 400px;
  overflow: auto;
}

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

.otto-nav-mobile ul.menu li a {
  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: 100%;
  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: 47px;
  position: absolute;
  width: 26px;
  cursor: pointer;
  transform: translateY(-50%);
  top: 50% !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: -30px;
}
.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-repeat: no-repeat;
  background-size: cover;
  opacity: 0.3;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 30px;
  height: 30px;
}
.service-img {
  height: 269px;
}
.news-img {
  height: 250px;
  object-fit: contain;
}
.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%;
  margin-top: 10%;
  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 {
  padding-top: 50px;
}

.banner-container > img {
  width: 100%;
}

.container {
  background-color: #f8f9fa!important;
  padding-top: 15px;
  padding-bottom: 15px;
}

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,    #949599,    #949599); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  box-shadow: inset 0px 7px 30px -20px #949599, inset 0px -7px 30px -20px #949599;
}
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: rgb(249 247 247);
  text-decoration: none;
}
.footer-contact a:hover {
  color: rgb(249 247 247);
  text-decoration: none;
}
.footer-icon {
  width: 45px;
  height: 45px;
  text-align: center;
  text-decoration: none;
  margin: 5px 2px;
  border-radius: 60px;
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.footer-social{
  display: flex;
}


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

.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;
}

.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;
}

@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%;
  }
}
.btn-secondary {
    color: #fff;
    background-color: #949599 !important;
    border-color: #949599 !important;
}

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

@media (max-width: 1199px) {
  .service-img {
    height: 210px;
    object-fit: contain;
  }
  .arrow {
    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;
  }
} */


/* Ürün Katalog Mobil Görünüm */
.catalog-info {
  display: none;
}

.back-home {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1.5rem;
}


.back-home > a {
  color: black;
}

.catalog-info > .landscape-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 3rem;
  padding-top: 75px;
}

.catalog-info > .landscape-info > img {
  max-width: 250px;
}

.catalog-info > .landscape-info > span{
  margin-top: 2rem;
  padding: 0 2rem;
  display: inline-flex;
}

.catalog-view .container{
  padding-top: 75px;
}

@media screen and (orientation: portrait) and (max-width: 1024px){
  .catalog-info {
    display: block;
  }
  .catalog-view .container{
    display: none;
  }
  .back-home {
    display: none;
  }
}


@media screen and (orientation: landscape) and (max-width: 1024px){
  .catalog-info {
    display: none;
  }
  .catalog-view .otto-nav,
  .catalog-view .otto-nav-mobile{display: none !important;}
}
