/* FORMALIZE */
/*! formalize.css | MIT License | github.com/interacthings/formalize */
@import url('https://fonts.googleapis.com/css?family=Rubik:400,500,700&display=swap&subset=latin-ext');
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,500,600,700&display=swap&subset=latin-ext');
@import url("fakeLoader.min.css");
@import url("animate.css");
@import url("hover.css");
*, html {
  box-sizing: border-box;
  text-rendering: optimizeLegibility; }

body {
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

a {
  text-decoration: none; }

img {
  vertical-align: middle; }

blockquote, dd, dl, fieldset, figure, form, h1, h2, h3, h4, h5, h6, menu, ol, p, pre, ul {
  margin: 0; }

button, fieldset, iframe {
  border: 0; }

button, fieldset, menu, ol, ul {
  padding: 0; }

ol, ul {
  list-style: none; }

textarea {
  resize: vertical; }

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0; }

td {
  padding: 0; }

/* GENERAL */
body {
  font-family: 'Poppins', sans-serif;
  background: #fdfdfd;
  font-size: 15px; }

a {
  transition: 300ms; }

a:hover {
  text-decoration: none; }

input, button, textarea {
  outline: 0; }

/* HEADER */

.header{}
.header-top{
  background-color: #f2f2f2;
  height: 92px;
}
.header-top .container{
  display: flex;
  height: 92px;
  align-items: center;
}
.header-right{
  margin-left:auto;
  display: flex;
}
.header-phone{

  font-weight:600;
  line-height: 30px;
}
.header-phone span{
  margin-right: 20px;
}
.header-phone i{
  color: #DE0505;
}
.header-social{
  display: flex;
  flex-wrap:wrap;
}
.header-social a{
  background: #;
  color: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  width:30px;
  height: 30px;
  border-radius: 50%;
  margin-left: 15px;
}
/*.header-lang{
  margin-left: 20px;
}
.header-lang select{
  width: 54px;
  height:30px;
  background-color: #f7f7f7;
  font-size:15px;
  color: #a6a6a6;
  padding: 0 10px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: url(../img/selectOk.svg) no-repeat 94% center, #fff;
  background-size: 9px;
}*/
  .language a {
      color: #000;
;	  }
	 .language  {
      margin-left:25px; }
     .language:hover ul {
      display: block; }
 .language .active-lang {
      background: #fff;
      padding: 1px;
      font-weight: 700; }
 .language img {
      height: 12px;
      margin-right: 5px; }
.language ul {
      position: relative;
      z-index: 99;
      display: none; }
 .language ul li {
        background: #fff;
        padding: 1px;
        font-weight: 700;
        transition: 300ms; }
 .language ul li:hover {
          background: #205cb7; }
 .language ul li:hover a {
            color: #fff; }
.header-menu{
  background-color: #e3e3e3;
  height: 48px;
  align-items: center;
}
.header-menu .menu-btn{
    display: none;
}
.header-menu ul{
  display: flex;
  height: 48px;
  align-items: center;
  justify-content:center;
}
.header-menu ul li{
  margin-right: 25px;
  font-weight: 600;
  border-top: 5px solid transparent;
  height: 48px;
  line-height: 40px;
}
.header-menu ul li:hover{
  border-color:#DE0505 ;
}
.header-menu ul li:hover ul{
  display: block;
}
.header-menu ul li ul{
  position: absolute;
  display: none;
  width:250px;
  flex-direction: column;
  z-index:9999;
  background: #e3e3e3;
  height: auto;
  align-items: flex-start;
}
.header-menu ul li ul li{
  padding-left: 15px;
  padding-right: 15px;
  width:100%;
}
.header-menu ul li ul li:hover{
  background: #DE0505;
}
.header-menu ul li ul li:hover a{
  color: #000;
}
.header-menu ul li a{
  color: #000;
}

@media screen and (max-width:1170px){
  .header-top{
    height: auto;
  }
  .header-top .container{
    flex-direction: column;
    height:auto;
  }
  .logo{
    margin-top: 20px;
  }
  .header-right{
    flex-direction: column;
    height: auto;
    margin-left: 0;
    align-items: center;
    margin-top:15px;
  }
  .header-phone span{
    margin-left: 10px;
    margin-right: 10px;
  }
  .header-social{
    margin-top: 15px;
  }
  .header-lang{
    margin-top: 15px;
    margin-bottom: 15px;
  }
  .header-menu .menu-btn{
    display: block;
    font-size: 30px;
    margin-top: 5px;
  }
  .header-menu ul{
    position: absolute;
    flex-direction: column;
    z-index:9999;
    left: 0;
    width:100%;
    align-items: flex-start;
    height: auto;
    background: #e3e3e3;
    display: none;
  }
  .header-menu ul li{
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
    height: auto;
  }
  .header-menu ul li:hover ul{
    display: none ;
  }
  .header-menu ul li ul{
    display: none;
    position: relative;
    width:100%;
    margin-left: 0;
    left: 0;
  }
}
/* .header {
  background: #ed1c24;
  height: 140px;
  position: relative;
  z-index: 9998; }
  .header:before {
    content: '';
    display: block;
    width: 40%;
    height: 140px;
    background: #fff;
    -webkit-transform: skewX(30deg);
    transform: skewX(30deg);
    position: absolute;
    left: -50px;
    top: 0; }
  .header-right {
    margin-left: auto;
    height: 40px;
    display: flex;
    justify-content: center;
    margin-top: 38px; }
    .header-right span {
      font-size: 18px;
      font-weight: 600;
      color: #fff;
      margin-left: 15px;
      margin-right: 15px; }
      .header-right span i {
        margin-right: 10px; }
    .header-right .language a {
      color: #000; }
    .header-right .language:hover ul {
      display: block; }
    .header-right .language .active-lang {
      background: #fff;
      padding: 5px;
      font-weight: 700; }
    .header-right .language img {
      height: 20px;
      margin-right: 5px; }
    .header-right .language ul {
      position: relative;
      z-index: 99;
      display: none; }
      .header-right .language ul li {
        background: #fff;
        padding: 5px;
        font-weight: 700;
        transition: 300ms; }
        .header-right .language ul li:hover {
          background: #205cb7; }
          .header-right .language ul li:hover a {
            color: #fff; }
  .header .wrapper {
    width: 1170px;
    padding-left: 15px;
    padding-right: 15px;
    margin: 0 auto;
    position: relative;
    z-index: 99;
    display: flex; }
  .header .logo {
    height: 140px;
    display: flex;
    align-items: center; }
  .header .mobile-menu {
    display: none; }
  .header .main-menu {
    background: #fff;
    height: 75px;
    padding-right: 30px;
    position: relative;
    margin-top: 100px;
    position: absolute;
    right: 0; }
    .header .main-menu:before {
      content: '';
      display: block;
      background: #fff;
      width: 50px;
      height: 75px;
      -webkit-transform: skewX(-30deg);
      transform: skewX(-30deg);
      position: absolute;
      left: -22px; }
    .header .main-menu ul {
      display: flex;
      align-items: center;
      height: 75px; }
      .header .main-menu ul li {
        margin-left: 40px;
        height: 77px;
        line-height: 77px; }
        .header .main-menu ul li:hover ul {
          display: block; }
        .header .main-menu ul li ul {
          background: #fff;
          position: absolute;
          width: 250px;
          flex-direction: column;
          align-items: flex-start;
          padding: 15px 25px;
          height: auto;
          font-family: 'Rubik', sans-serif;
          margin-top: -1px;
          display: none; }
          .header .main-menu ul li ul:before {
            content: '';
            display: block;
            background: #DE0505;
            width: 50px;
            height: 3px;
            left: 0;
            top: 0;
            position: absolute; }
          .header .main-menu ul li ul li {
            margin-left: 0;
            margin-top: 10px;
            margin-bottom: 10px;
            height: auto;
            line-height: 2;
			font-family: 'Rubik', sans-serif;
		}
            .header .main-menu ul li ul li a {
              font-weight: 400;
              font-size: 15px; }
			  
        .header .main-menu ul li a {
          font-size: 16px;
          font-weight: 600;
          color: #262626; }
          .header .main-menu ul li a:hover {
            color: #DE0505; } */

/* MAIN */
main {
  background: #f2f2f2;
  position: relative;
  z-index: 999; }

.main-slider {
  position: relative; }
  .main-slider .owl-nav button {
    width: 50px;
    height: 50px;
    display: block;
    position: absolute;
    top: calc(50% - 50px); }
    .main-slider .owl-nav button.owl-prev {
      background: url(../img/prev.png);
      left: 20px; }
    .main-slider .owl-nav button.owl-next {
      background: url(../img/prev.png);
      transform: rotate(180deg);
      right: 20px; }
  .main-slider .owl-dots {
    display: flex;
    position: absolute;
    justify-content: center;
    width: 100%;
    bottom: 20px; }
    .main-slider .owl-dots .owl-dot {
      width: 10px;
      height: 10px;
      margin: 5px 7px;
      background: #D6D6D6;
      display: block;
      border-radius: 50%; }
      .main-slider .owl-dots .owl-dot.active {
        background: #205cb7; }

/* PRODUCT GROUPS */
.product-groups {
  padding-top: 130px; }
  .product-groups-title {
    font-size: 32px;
    font-weight: 600;
    color: #262626;
    margin-bottom: 70px;
    text-align: center; }

.product-group-names {
  border-top: 1px solid #e3dfdf;
  padding-bottom: 20px;
  margin-bottom: 60px; }
  .product-group-names li {
    font-size: 16px;
    font-weight: 600;
    color: #262626;
    line-height: 25px;
    text-align: center;
    cursor: pointer;
    border-top: 3px solid transparent;
    padding-top: 20px;
    margin-top: -1.5px; }
    .product-group-names li:before {
      content: '';
      display: block;
      width: 0%;
      height: 3px;
      margin: -23px auto 23px auto;
      transition: 300ms;
      background: #DE0505; }
    .product-group-names li.active {
      color: #DE0505; }
      .product-group-names li.active:before {
        width: 100%; }
.product-group-content {
  display: none; }

.p-group-box {
  position: relative; }
  .p-group-box:hover .p-group-box-content {
    opacity: 1; }
  .p-group-box-image img {
    width: 100%; }
  .p-group-box-content {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(221, 221, 211, 0.8);
    z-index: 1;
    top: 0;
    left: 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    font-family: 'Rubik', sans-serif;
    flex-direction: column;
    opacity: 0; }
  .p-group-box-cat-name {
    margin-bottom: 10px; }
    .p-group-box-cat-name a {
      color: #DE0505; }
  .p-group-box-name a {
    color: #fff;
    font-size: 18px;
    font-weight: 600; }

/* CORPORATE */
.corporate {
  padding-top: 30px; }
  .corporate-content {
    color: #555;
    line-height: 27px; }
    .corporate-content p {
      margin-top: 35px;
      margin-bottom: 30px; }
  .corporate-title {
    color: #262626;
    font-size: 16px;
    font-weight: 600;
    font-family: Poppins, sans-serif; }
  .corporate-image img {
    width: 100%; }

/* INFO BOXES */
.info-boxes {
  margin-top: 120px;
  padding-bottom : 80px; }
  .info-boxes .row {
    margin: 0; }
  .info-boxes .col-md-4 {
    padding: 0; }
.info-box {
  display: flex;
  align-items: center;
  height: 170px; }
  .info-box#info1 {
    background: #f5f5f5; }
    .info-box#info1 .info-box-content {
      color: #333; }
    .info-box#info1 .info-box-icon {
      color: #333; }
  .info-box#info2 {
    background: #ec2d30; }
  .info-box#info3 {
    background: #205cb7; }
  .info-box-icon {
    flex-shrink: 0;
    height: 48px;
    font-size: 48px;
    line-height: 1;
    color: #fff;
    padding: 0 25px; }
  .info-box-content {
    color: #fff;
    padding-right: 25px; }
  .info-box-title {
    font-size: 24px;
    font-weight: 600; }
  .info-box-text {
    font-size: 16px;
    line-height: 27px;
    font-family: 'Rubik', sans-serif; }

.footer-katalog {
    background: #ea1e38;
    color: #fff;
    text-align: center;
    height: 80px;
    font-size: 30px;
    overflow: visible;
    position: relative;
    z-index: 99;
    padding-top: 20px;
	margin:20px;
}
	
/* BRANDS */
.brands {
  padding: 130px 0; }
  .brands .item {
    background: #f6f6f6;
    padding: 20px; }
  .brands .owl-nav, .brands .owl-dots {
    display: none; }

/* PAGE */
.page {
  padding-bottom: 50px; }
  .page-head {
    background: url(../img/pagehead.jpg) top center;
    height: 75px;
    background-size: cover;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center; }
    .page-head h1 {
      font-size: 18px;
      color: #000;
      font-weight: 600; }
  .page-content {
    background: #f2f2f2;
    padding: 35px 30px;
    font-family: 'Rubik', sans-serif;
    color: #555;
    font-size: 16px;
    line-height: 28px; }
    .page-content h1 {
      font-size: 30px; }
    .page-content h2 {
      font-size: 28px; }
    .page-content h3 {
      font-size: 24px; }
    .page-content h4 {
      font-size: 20px; }
    .page-content h5 {
      font-size: 16px; }
    .page-content h6 {
      font-size: 14px; }
    .page-content h1, .page-content h2, .page-content h3, .page-content h4, .page-content h5, .page-content h6 {
      font-family: 'Poppins', sans-serif;
      margin-bottom: 20px;
      font-weight: 700;
      color: #000; }
    .page-content p {
      margin-bottom: 20px;
	  }

/* SIDEBAR */
.sidebar {
  padding: 30px;
  border: 1px solid #EBEBEF; }
  .sidebar-title {
    font-size: 22px;
    color: #262626;
    font-weight: 600;
    margin-bottom: 25px; }
  .sidebar ul li {
    border-bottom: 1px solid #EBEBEF;
    font-size: 15px;
    font-family: 'Rubik', sans-serif;
    padding: 12px 0;
    font-weight: 400; }
    .sidebar ul li:last-child {
      border: none; }
    .sidebar ul li a {
      color: #555; }
      .sidebar ul li a:hover {
        color: #ffd74e; }

/* PRODUCT */
.product-sidebar-title {
  font-family: 'Rubik', sans-serif;
  font-weight: 600;
  color: #555;
  font-size: 20px;
  margin-bottom: 30px; }
.product-sidebar ul li {
  margin-bottom: 10px;
  font-family: 'Rubik', sans-serif; }
  .product-sidebar ul li:hover a {
    background: #DE0505;
    color: #252525; }
  .product-sidebar ul li a {
    display: block;
    color: #252525;
    font-weight: 500;
    padding: 15px 25px;
    font-size: 16px;
    background: #00B9F2;
    position: relative; }
	
	
	.product-sidebar1 ul li a {
    display: block;
    color: #252525;
    font-weight: 500;
    padding: 5px 25px;
    font-size: 16px;
    background: #D7D7D7;
    position: relative; }
	
	
	.product-sidebar1 ul li {
  margin-bottom: 10px;
  font-family: 'Rubik', sans-serif; }
  
  .product-sidebar1 ul li:hover a {
    background: #DE0505;
    color: #252525; }
	
	
	
	
	
	
	
	
	
	
	
	
	
	
.product-box {
  border: 1px solid #ddd;
  margin-bottom: 30px;
  transition: 300ms; }
  .product-box img {
    width: 100%; }
  .product-box:hover {
    border-color: #DE0505; }
    .product-box:hover .product-title {
      background: #DE0505; }
.product-title {
  background: #374466;
  font-family: 'Rubik', sans-serif;
  font-size: 15px;
  padding: 10px;
  font-weight: 400;
  transition: 300ms; 
  text-align:center;}
  .product-title a {
    color: #F8F7F3; }
.product-detail .detail-photo {
  width: 100%; 
  border:1px solid #ccc;}
.product-detail-title {
  background: #DD0808;
  height: 50px;
  color: #fff;
  line-height: 50px;
  font-size: 17px;
  font-weight: 500;
  padding-left: 40px;
  padding-right: 40px;
  margin-top: 20px;
  transform: skewX(30deg); }
  .product-detail-title h1 {
    font-size: 20px;
    transform: skewX(-30deg);
    padding-top: 13px; }
.product-props {
  background: #F6F6F6;
  padding: 20px;
  margin-top: 30px; }
  .product-props-content img {
    max-width: 100%;
    margin-bottom: 20px; }
  .product-props-content-title {
    font-size: 28px;
    color: #252525;
    margin-bottom: 20px;
    font-weight: 700; }
  .product-props-content ul {
    margin-bottom: 30px; }
    .product-props-content ul li {
      color: #555555;
      font-family: 'Rubik', sans-serif;
      font-size: 16px;
      line-height: 30px;
      list-style: disc;
      margin-left: 25px; }
  .product-props-title {
    color: #262626;
    font-size: 18px;
    font-weight: 600;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 20px; }

/* CONTACT */
.contact-info {
  background: #fff;
  box-shadow: 0px 0px 22px rgba(0, 0, 0, 0.1);
  padding: 30px;
  margin-bottom: 30px;
  font-family: 'Rubik', sans-serif;
  font-size: 16px;
  line-height: 27px;
  color: #555555; }
  .contact-info-title {
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #000; }
.contact-map img {
  width: 100%; }
.contact-form {
  margin-top: 50px; }
  .contact-form-title {
    font-size: 24px;
    line-height: 26px;
    color: #262626;
    margin-bottom: 20px; }
  .contact-form input {
    color: #888888;
    font-size: 16px;
    padding: 0 20px;
    height: 45px;
    display: block;
    font-size: 16px;
    background: #F6F6F6;
    margin-bottom: 25px;
    width: 100%;
    border: none; }
  .contact-form textarea {
    color: #888888;
    font-size: 16px;
    padding: 20px;
    resize: none;
    height: 135px;
    font-size: 16px;
    background: #F6F6F6;
    margin-bottom: 25px;
    width: 100%;
    border: none; }
  .contact-form button {
    background: #ffd74e;
    height: 45px;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    width: 100%; }

/* FOOTER */
.site-footer {
  position: fixed;
  height: 495px;
  bottom: 0;
  width: 100%; }

.footer-top {
  background: #404040;
  border-bottom: 5px solid #CE0303;
  padding: 50px 0;
  margin-bottom: 495px;
  position: relative;
  z-index: 99; }
.footer-middle {
  padding-top: 85px;
  padding-bottom: 60px; }
.footer-about {
  font-family: 'Rubik', sans-serif;
  color: #888;
  line-height: 25px;
  font-size: 15px; }
  .footer-about img {
    margin-bottom: 30px; }
.footer-title {
  font-size: 18px;
  font-weight: 600;
  color: #262626;
  margin-bottom: 20px; }
.footer-menu li a {
  font-family: 'Rubik', sans-serif;
  color: #888;
  line-height: 25px;
  font-size: 15px;
  border-bottom: 2px solid transparent; }
  .footer-menu li a:hover {
    border-bottom: 2px solid #888; }
.footer-contact-text {
  font-family: 'Rubik', sans-serif;
  font-size: 16px;
  color: #555; }
  .footer-contact-text b {
    display: block;
    color: #555; }
  .footer-contact-text p {
    margin-top: 10px; }
.footer-bottom {
  font-family: 'Rubik', sans-serif;
  color: #555; }
  .footer-bottom .container {
    padding-top: 28.5px;
    padding-bottom: 28.5px;
    border-top: 1px solid #e1e1e1; }

.contact-us {
  color: #fff; }
  .contact-us-title {
    font-size: 32px;
    font-weight: 600; }
  .contact-us-text {
    font-size: 16px; }
.contact-box {
  display: flex;
  align-items: center; }
  .contact-box-icon {
    flex-shrink: 0;
    width: 33px;
    height: 33px;
    margin-right: 15px;
    color: #fff;
    font-size: 33px;
    line-height: 1; }
  .contact-box-title {
    font-size: 18px;
    font-weight: 500;
    color: #CE0303; }
  .contact-box-text {
    font-size: 15px;
    color: #fff; }
  .contact-box-text a {
	  color: #fff; }

/* RESPONSIVE */
@media screen and (max-width: 1170px) {
  .header {
    background: #DE0505;
    height: auto; }
    .header .wrapper {
      width: 100%;
      flex-wrap: wrap; }
    .header:before {
      display: none; }
    .header .logo {
      width: 100%;
      text-align: center;
      justify-content: center; }
    .header-right {
      margin-left: 0;
      width: 100%;
      margin-top: 0; }
      .header-right span {
        display: none; }
    .header .mobile-menu {
      display: block;
      width: 100%;
      margin-top: 10px;
      margin-bottom: 15px; }
      .header .mobile-menu .mobile-btn {
        background: white;
        height: 45px;
        padding: 0 20px;
        line-height: 45px;
        font-size: 22px;
        cursor: pointer;
		}
      .header .mobile-menu ul {
        padding: 10px 0;
        display: none; }
        .header .mobile-menu ul li {
          line-height: 30px;
          font-family: 'Rubik', sans-serif; }
          .header .mobile-menu ul li ul {
            padding: 0 10px;
            display: block; }
          .header .mobile-menu ul li a {
            color: #fff; }
    .header .main-menu {
      display: none; }

  .product-groups {
    padding-top: 20px; }
    .product-groups-title {
      margin-bottom: 20px; }

  .corporate {
    padding-top: 20px; }

  .info-boxes {
    margin-top: 20px; }

  .brands {
    padding: 20px 0; }

  .page-head {
    margin-bottom: 20px; }

  .sidebar {
    margin-top: 20px; }

  .footer-top {
    margin-bottom: 0;
    padding: 20px 0; }
  .footer-middle {
    padding-top: 20px;
    padding-bottom: 20px; }
  .footer-title {
    margin-top: 25px; }

  .contact-us {
    margin-bottom: 20px; }

  .contact-box {
    margin-bottom: 20px; }

  .site-footer {
    position: relative; } }

/*# sourceMappingURL=style.css.map */




.product-tab-titles{
  display:flex;
  justify-content: space-between;
  margin-top: 30px;
  margin-bottom: 30px;
}
.product-tab-titles li{
  background-color: #00B9F2;
  height: 45px;
  line-height: 45px;
  width: calc(20% - 2px);
  font-weight:600;
  text-align: center;
  cursor: pointer;
  color: #636363;
}
.product-tab-titles li.active,.product-tab-titles li:hover{
  background: #DE0505;
  color: #000;
}
.product-tab-wrap{}
.product-tab-content{
  display: none;
}
.product-tab-content img{
  max-width:100%;
}

.product-tab-content .pr-gallery .col-md-4{
  margin-top: 30px;
}


.product-tab-content table tr:nth-child(2n) {
  background-color: #ebebeb
}
.product-tab-content table td {
  height: 36px;
  padding: 0 20px
}

.product-tab-content table.diger {
  width: 614px
}
.product-tab-content table.diger  tr:nth-child(2n) {
  background-color:transparent;
}
.product-tab-content table.diger  td {
  height: 36px;
  padding: 0 20px;border: 1px solid #ebebeb;
}


@media screen and (max-width:1170px){
  .product-tab-titles {
    flex-wrap: wrap;
  }
  .product-tab-titles li{
    width:100%;
    margin-bottom: 5px;
  }
}


/* SON EKLENEN CSS */
.urunGruplari{}
.urunGruplari .title,.home-sidebar .title{
  border-bottom: 4px solid #ffd74e;
  font-size: 13px;
  font-weight: 600;
  line-height: 45px;
}
.urun{
  background-color: #e3e3e3;
  padding-left: 50px;
  padding-right: 20px;
  height: 124px;
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.urun:hover .urunDetay{
  margin-left: 15px;
}

.urunAdi{
  font-size: 16px;
  font-weight: 600;
  max-width: 200px;
}
.urunAdi a{
  color: #000;
}
.urunResim{}
.urunResim img{
  height: 110px;
}
.urunDetay{
  flex-shrink: 0;
  transition: 300ms;
}
.urunDetay img{
  width:40px;
  height:40px;
}

.banners{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.banner-mini{
  width:calc(50% - 5px);
}
.banner-big{
  width:100%;
  margin-top: 10px;
}
.banners img{
  width:100%;
}

.tanitim-filmi{
  background-color: #fff;
  margin-bottom: 20px;
}
.tanitim-filmi img{
  width:100%;
}
.tanitim-filmi p{
    margin-top: 35px;
    margin-bottom: 30px;
}

.katalog{
  background: url(../img/katalogAna.png) no-repeat bottom right;
  width: 100%;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.katalog a{
  background: #ffd74e;
  color: #fff;
  width: 120px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.katalog i{
  margin-right: 10px;
}

.home-sosyal-medya{

  background: #ffd74e;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.home-sosyal-medya a{
  color: #fff;
  margin-left: 10px;
  margin-right: 10px;
  font-size: 24px;
}

@media screen and (max-width:1170px){
  .urunAdi{font-size: 13px;}
  .urunResim img{height:70px;}
  .urunDetay{
    display:none;
  }
}

#hemenara2{
  display: block;
  position: fixed;
  left: 15px;
  width: 130px;
  text-decoration: none;
  height: 50px;
  line-height: 30px;
  font-size: 50px;
    font-weight: 600;
  color: #fff;
 background-color: #6da749;
  bottom:35px;
  text-align: center;
  z-index: 9999;
  border-radius:500px;
}