/*

Designed By MUSTAFA ERŞANLI

https://instagram.com/mustafaersdigitall

*/

/* ---------------------------------------------
Table of contents
------------------------------------------------
01. font & reset css
02. reset
03. global styles
04. header
05. banner
06. features
07. testimonials
08. contact
09. footer

--------------------------------------------- */
/* 
---------------------------------------------
font & reset css
--------------------------------------------- 
*/
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800");

/* 
---------------------------------------------
reset
--------------------------------------------- 
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
div pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
figure,
header,
nav,
section,
article,
aside,
footer,
figcaption {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}

.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.clearfix {
  display: inline-block;
}

html[xmlns] .clearfix {
  display: block;
}

* html .clearfix {
  height: 1%;
}

ul,
li {
  padding: 0;
  margin: 0;
  list-style: none;
}

header,
nav,
section,
article,
aside,
footer,
hgroup {
  display: block;
}

* {
  box-sizing: border-box;
}

html,
body {
  font-family: 'Open Sans', sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0px;
  margin-bottom: 0px;
  font-weight: 700;
}

ul {
  margin-bottom: 0px;
}

p {
  font-size: 15px;
  line-height: 30px;
  color: #293133;
}

img {
  width: 100%;
  overflow: hidden;
}

/* 
---------------------------------------------
Global Styles
--------------------------------------------- 
*/
html,
body {
  font-family: 'Open Sans', sans-serif;
}

::selection {
  background: #5b03e4;
  color: #fff;
}

::-moz-selection {
  background: #5b03e4;
  color: #fff;
}

.templatemo-feature {
  max-width: 66px;
  border-radius: 50%;
}

.main-button a {
  font-size: 14px;
  color: #505050;
  background-color: #e4d417;
  padding: 12px 30px;
  display: inline-block;
  border-radius: 25px;
  font-weight: 400;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}

.main-button a:hover {
  color: #3f3f3f;
  opacity: 0.7;
}

.second-button a {
  font-size: 14px;
  color: #fff;
  background-color: #293133;
  padding: 12px 30px;
  display: inline-block;
  border-radius: 25px;
  font-weight: 400;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}

.second-button a:hover {
  color: #fff;
  opacity: 0.8;
}


.section-heading {
  margin-bottom: 30px;
}

.section-heading .line-dec {
  width: 60px;
  height: 2px;
  margin-bottom: 20px;
}

.section-heading h2 {
  color: #2a2a2a;
  font-size: 30px;
  text-transform: capitalize;
  text-decoration: none;
  margin-bottom: 30px;
  line-height: 44px;
}

.section-heading h2 em {
  color: #293133;
  font-style: normal;
}

.section-heading h2 span {
  color: #e4d417;
}

/* 
---------------------------------------------
Pre-loader Style
--------------------------------------------- 
*/

.js-preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.99);
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  z-index: 9999;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}

.js-preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@-webkit-keyframes dot {
  50% {
    -webkit-transform: translateX(96px);
    transform: translateX(96px);
  }
}

@keyframes dot {
  50% {
    -webkit-transform: translateX(96px);
    transform: translateX(96px);
  }
}

@-webkit-keyframes dots {
  50% {
    -webkit-transform: translateX(-31px);
    transform: translateX(-31px);
  }
}

@keyframes dots {
  50% {
    -webkit-transform: translateX(-31px);
    transform: translateX(-31px);
  }
}

.preloader-inner {
  position: relative;
  width: 142px;
  height: 40px;
  background: transparent;
}

.preloader-inner .dot {
  position: absolute;
  width: 16px;
  height: 16px;
  top: 12px;
  left: 15px;
  background: #5b03e4;
  border-radius: 50%;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-animation: dot 2.8s infinite;
  animation: dot 2.8s infinite;
}

.preloader-inner .dots {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  margin-top: 12px;
  margin-left: 31px;
  -webkit-animation: dots 2.8s infinite;
  animation: dots 2.8s infinite;
}

.preloader-inner .dots span {
  display: block;
  float: left;
  width: 16px;
  height: 16px;
  margin-left: 16px;
  background: #5b03e4;
  border-radius: 50%;
}



/* 
---------------------------------------------
Header Style
--------------------------------------------- 
*/

.background-header {
  background-color: #fff;
  height: 80px !important;
  position: fixed !important;
  top: 0 !important;
  left: 0;
  right: 0;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15) !important;
  -webkit-transition: all .5s ease 0s;
  -moz-transition: all .5s ease 0s;
  -o-transition: all .5s ease 0s;
  transition: all .5s ease 0s;
}

.header-area {
  position: absolute;
  background: linear-gradient(90deg, #505050 0%, #293133 100%);
  height: 110px;
  top: 65px;
  left: 0;
  right: 0;
  z-index: 100;
  -webkit-transition: all .5s ease 0s;
  -moz-transition: all .5s ease 0s;
  -o-transition: all .5s ease 0s;
  transition: all .5s ease 0s;
}

.header-area .main-nav {
  min-height: 80px;
  background: transparent;
  display: flex;
}

.header-area .main-nav .logo {
  margin-top: 20px;
  max-width: 220px;
}

.background-header .main-nav .logo {
  margin-top: 3px;
}

.header-area .main-nav .nav {
  flex-basis: 80%;
  height: 110px;
  margin-top: 0px;
  margin-right: 0px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  position: relative;
  z-index: 999;
}

.nav {
  justify-content: right;
}

.header-area .main-nav .nav li:first-child {
  padding-left: 60px;
}

.header-area .main-nav .nav li:last-child {
  padding-right: 0px;
}

.header-area .main-nav .nav li {
  padding-left: 30px;
  padding-right: 30px;
}

.header-area .main-nav .nav li:nth-child(3) {
  padding-right: 45px !important;
}

.header-area .main-nav .nav li a {
  display: block;
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  color: #fff;
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  height: 110px;
  line-height: 110px;
  border: transparent;
  letter-spacing: 1px;
}

.background-header .main-nav .nav li a {
  height: 80px;
  line-height: 80px;
}

.header-area .main-nav .border-button {
  flex-basis: 20%;
  margin-top: 13px;
  text-align: right;
}

.header-area .main-nav .nav li.has-sub ul.sub-menu li:last-child a:hover,
.background-header .main-nav .nav li.has-sub ul.sub-menu li:last-child a:hover {
  padding-left: 25px !important;
}

.header-area .main-nav .nav li:hover a,
.header-area .main-nav .nav li a.active {
  color: #fff;
  opacity: 0.8;
}

.background-header .main-nav .nav li:hover a,
.background-header .main-nav .nav li a.active {
  color: #fff;
  opacity: 0.8;
}

.header-area .main-nav .nav li.has-sub {
  position: relative;
  padding-right: 30px;
}

.header-area .main-nav .nav li.has-sub:after {
  font-family: FontAwesome;
  content: "\f107";
  font-size: 12px;
  color: #ffffff;
  position: absolute;
  right: 30px;
  top: 45px;
}

.background-header .main-nav .nav li.has-sub:after {
  top: 32px;
}

.header-area .main-nav .nav li.has-sub ul.sub-menu {
  position: absolute;
  width: 160px;
  border-radius: 0px 0px 5px 5px;
  background-color: #eee;
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
  overflow: hidden;
  top: 110px;
  opacity: 0;
  transition: all .3s;
  transform: translateY(+2em);
  visibility: hidden;
  z-index: -1;
}

.background-header .main-nav .nav li.has-sub ul.sub-menu {
  top: 80px;
}

.header-area .main-nav .nav li.has-sub ul.sub-menu li {
  margin-left: 0px;
  padding-left: 0px;
  padding-right: 0px;
}

.header-area .main-nav .nav li.has-sub ul.sub-menu li a {
  opacity: 1;
  display: block;
  background: #eee;
  color: #2a2a2a;
  padding-left: 20px;
  height: 40px;
  line-height: 40px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  position: relative;
  font-size: 13px;
  font-weight: 400;
  border-bottom: 1px solid #eee;
}

.header-area .main-nav .nav li.has-sub ul.sub-menu li:last-child a {
  border-bottom: none;
}

.header-area .main-nav .nav li.has-sub ul li a:hover {
  background: #fff;
  color: #e4d417 !important;
  padding-left: 25px;
}

.header-area .main-nav .nav li.has-sub ul li a:hover:before {
  width: 3px;
}

.header-area .main-nav .nav li.has-sub:hover ul.sub-menu {
  visibility: visible;
  opacity: 1;
  z-index: 1;
  transform: translateY(0%);
  transition-delay: 0s, 0s, 0.3s;
}

.header-area .main-nav .menu-trigger {
  cursor: pointer;
  position: absolute;
  top: 33px;
  width: 32px;
  height: 40px;
  text-indent: -9999em;
  z-index: 99;
  right: 20px;
  display: none;
}

.background-header .main-nav .menu-trigger {
  top: 17px;
}

.header-area .main-nav .menu-trigger span,
.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-color: #fff;
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 0;
}

.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-color: #fff;
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 0;
  width: 75%;
}

.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  content: "";
}

.header-area .main-nav .menu-trigger span {
  top: 16px;
}

.header-area .main-nav .menu-trigger span:before {
  -moz-transform-origin: 33% 100%;
  -ms-transform-origin: 33% 100%;
  -webkit-transform-origin: 33% 100%;
  transform-origin: 33% 100%;
  top: -10px;
  z-index: 10;
}

.header-area .main-nav .menu-trigger span:after {
  -moz-transform-origin: 33% 0;
  -ms-transform-origin: 33% 0;
  -webkit-transform-origin: 33% 0;
  transform-origin: 33% 0;
  top: 10px;
}

.header-area .main-nav .menu-trigger.active span,
.header-area .main-nav .menu-trigger.active span:before,
.header-area .main-nav .menu-trigger.active span:after {
  background-color: transparent;
  width: 100%;
}

.header-area .main-nav .menu-trigger.active span:before {
  -moz-transform: translateY(6px) translateX(1px) rotate(45deg);
  -ms-transform: translateY(6px) translateX(1px) rotate(45deg);
  -webkit-transform: translateY(6px) translateX(1px) rotate(45deg);
  transform: translateY(6px) translateX(1px) rotate(45deg);
  background-color: #fff;
}

.background-header .main-nav .menu-trigger.active span:before {
  background-color: #fff;
}

.header-area .main-nav .menu-trigger.active span:after {
  -moz-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  -ms-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  -webkit-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  transform: translateY(-6px) translateX(1px) rotate(-45deg);
  background-color: #fff;
}

.background-header .main-nav .menu-trigger.active span:after {
  background-color: #fff;
}

.header-area.header-sticky .nav li a.active {
  color: #fff;
}

.header-area .main-nav:before {
  display: none;
}

.pre-header {
  background-color: #fff;
  padding: 5px 0px;
  margin-bottom: 120px;
}

.pre-header ul li {
  display: inline-block;
}

.pre-header .left-info ul li:last-child {
  margin-right: 0px;
  padding-right: 0px;
  border-right: none;
}

.pre-header .left-info ul li {
  margin-right: 15px;
  padding-right: 15px;
  border-right: 1px solid #e4d417;
}

.pre-header .left-info ul li a {
  font-size: 14px;
}

.pre-header .left-info ul li a i {
  font-size: 18px;
  margin-right: 10px;
  margin-top: 3px;
}

.pre-header ul li a {
  color: #293133;
  transition: all .4s;
  margin-top: 5px;
}

.pre-header ul {
  transition: all .4s;
}

.pre-header .social-icons {
  text-align: right;

}

.pre-header .social-icons a {
  color: #e4d417;
}

.pre-header .social-icons ul li {
  margin-top: 5px;
  margin-left: 24px;
}

.pre-header .social-icons ul li a {
  font-size: 25px;
}

.pre-header ul li a:hover {
  color: #e4d417;
}

.pre-header .social-icons a:hover {
  color: #505050;
}

.social-icons .fa-facebook-f {
  color: #3b5998;
  /* Facebook mavisi */
}

.social-icons .fa-instagram {
  color: #e4405f;
  /* Instagram pembesi */
}

.social-icons .fa-whatsapp {
  color: #25D366;
  /* WhatsApp yeşili */
}


/* 
---------------------------------------------
Banner Style
--------------------------------------------- 
*/

.main-banner {
  position: relative;
  padding: 250px 0px 185px 0px;
  margin-top: -50px;
}

.main-banner:after {
  content: url(../images/banner-right.webp);
  top: -1px;
  right: 0;
  position: absolute;
  z-index: -1;
}

.main-banner::before {
  content: url(../images/banner-left.webp);
  top: -1px;
  left: 0;
  position: absolute;
  width: 194px;
  height: 655px;
  z-index: -1;
}

.main-banner h6 {
  font-size: 30px;
  color: #e4d417;
  text-transform: uppercase;
  font-weight: 700;
}

.main-banner .line-dec {
  margin: 30px 0px 20px 0px;
  width: 210px;
  height: 2px;
  background-color: #505050;
}

.main-banner h4 {
  font-size: 52px;
  color: #2a2a2a;
  font-weight: 700;
  line-height: 70px;
  margin-bottom: 20px;
}

.main-banner h4 em {
  font-style: normal;
  color: #3b6b4c;
  font-weight: 1000;
}

.main-banner p {
  padding-right: 25%;
  margin-bottom: 30px;
  color: #505050;
  font-size: 20px;
}

.main-banner .main-button {
  display: inline-block;
  margin-right: 20px;
}

.main-banner .second-button {
  display: inline-block;
}

/* 
---------------------------------------------
Services Style
--------------------------------------------- 
*/

.services {
  position: relative;
  overflow: hidden;
  height: 800px;
  margin-top: 250px;
}

.services .section-heading h2 {
  padding-right: 30px;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  text-shadow:
    1px 1px 0 #e4d417,
    -1px 1px 0 #e4d417,
    1px -1px 0 #e4d417,
    -1px -1px 0 #e4d417;
}

.services .section-heading .line-dec {
  width: 280px;
  margin-bottom: 3px;
  margin-top: 10px;
  background: #3b6b4c;
}

.services .section-heading p {
  font-size: 20px;
  font-style: bold;
  font-weight: 600;
  -webkit-text-stroke: 0.3px #e4d417;
}

.services::before {
  content: url(../images/services-left.webp);
  position: absolute;
  width: 100vw;
  height: 100vh;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -2;
}

.services::after {
  content: url(../images/contact-left.webp);
  bottom: 0px;
  right: 0;
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
  position: absolute;
  width: 103px;
  height: 464px;
  z-index: -1;
}

.services .service-item {
  border: 1px solid #505050;
  border-radius: 23px;
  margin-bottom: 30px;
  height: 255px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.services .service-item img {
  margin-top: 20px;
  margin-left: 30px;
  width: 80%;
  height: 80%;
  object-fit: contain;
  transition: all .4s;
}

.services .service-item:hover img {
  transform: scale(1.3);
  transition: all .4s;
}


.services .service-item h4 {
  font-size: 20px;
  color: #2a2a2a;
  position: absolute;
  bottom: 10px;
  left: 20px;
  line-height: 30px;
  transition: all .4s;
  color: #293133;
  -webkit-text-stroke: 0.3px #e4d417;
}


.services .service-item:hover h4 {
  color: #e4d417;
  text-shadow:
    -1px -1px 0 #505050,
    1px -1px 0 #505050,
    -1px 1px 0 #505050,
    1px 1px 0 #505050;
  background-size: 110%;
}



/* 
---------------------------------------------
Products Style
--------------------------------------------- 
*/

.products {
  position: relative;
  overflow: hidden;
  background-image: url(../images/products-bg.webp);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  margin-top: -10px;

}

.products .products-item {
  border: 3px solid #505050;
  border-radius: 23px;
  margin: auto;
  margin-top: 25px;
  margin-bottom: 25px;
  height: 300px;
  width: 400px;
  overflow: hidden;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.products .products-item img {
  margin: 30px;
  width: 80%;
  height: 80%;
  object-fit: contain;
  transition: all .4s;
}

.products .products-item:hover img {
  transform: scale(1.3);
  transition: all .4s;
}


.products .products-item h4 {
  font-size: 40px;
  position: absolute;
  bottom: 1px;
  left: 20px;
  line-height: 1;
  transition: all .4s;
  color: #293133;
  -webkit-text-stroke: 0.8px #e4d417;
  margin-bottom: 15px;
}


.products .products-item:hover h4 {
  color: #e4d417;
  -webkit-text-stroke: 1px #293133;
}


.products-img {
  position: relative;
  overflow: hidden;
  background-image: url(../images/products-bg.webp);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
}

.products-img .products-item {
  border: 3px solid #505050;
  margin: auto;
  margin-top: 25px;
  margin-bottom: 25px;
  overflow: hidden;
}

.pr-img-info {
  margin-top: 50px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.pr-img-info .line-dec {
  width: 1300px;
  height: 2px;
  background-color: #3b6b4c;
  margin: 20px auto;
}

.pr-img-info h2 {
  font-size: xx-large;
}

.pr-img-info p {
  font-size: large;
  color: #000;
  -webkit-text-stroke: 0.3px #e4d417;
}

#pr-img-line {
  width: 1400px;
  height: 4px;
  background-color: #3b6b4c;
  margin-top: 60px;
  margin-bottom: 60px;
  margin-left: auto;
  margin-right: auto;
}


/* 
---------------------------------------------
production Style
--------------------------------------------- 
*/


.production {
  position: relative;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;

}

.production .production-item {
  border: 3px solid #505050;
  margin: auto;
  margin-top: 25px;
  margin-bottom: 25px;
  overflow: hidden;
}

.production-item.active {
  width: 50px;
  transform: scale(1.05);
}

.prd-img-info {
  margin-top: -30px;
  margin-bottom: -30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.prd-img-info .line-dec {
  width: 1300px;
  height: 2px;
  background-color: #3b6b4c;
  margin: 20px auto;
}

.prd-img-info h2 {
  font-size: xx-large;
}

.prd-img-info p {
  font-size: large;
  color: #000;
  -webkit-text-stroke: 0.3px #e4d417;
}

#prd-img-line {
  width: 1400px;
  height: 4px;
  background-color: #3b6b4c;
  margin-top: 60px;
  margin-bottom: 60px;
  margin-left: auto;
  margin-right: auto;
}


/* 
---------------------------------------------
model Style
--------------------------------------------- 
*/


.video-card {
  border: 3px solid #505050;
  margin: auto;
  margin-top: 25px;
  margin-bottom: 25px;
  overflow: hidden;
  cursor: pointer;
  display: inline-block;
  position: relative;
}

.video-card .fa-play {
  position: absolute;
  color: #e4d417;
  background-color: #fff;
  border-radius: 50%;
  display: inline-block;
  left: 50%;
  top: 50%;
  text-align: center;
  width: 35px;
  height: 35px;
  line-height: 35px;
  transform: translate(-23px, -23px);
}

.modal {
  display: none;
  /* Başta kapalı */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.modal-content {
  position: relative;
  background: transparent;
  /* Video kendi çerçevesiz */
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

#closeModal {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  color: white;
  cursor: pointer;
  font-weight: bold;
}



/*
---------------------------------------------
model Style
--------------------------------------------- 
*/



/* 
---------------------------------------------
Pr-Scratch Style
--------------------------------------------- 
*/

.pr-scratch {
  position: relative;
  overflow: hidden;
  background-image: url(../images/products-bg.webp);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  margin-top: -50px;
}

.pr-scratch .pr-scratch-item {
  border: 3px solid #505050;
  border-radius: 23px;
  margin-bottom: 30px;
  margin-top: 90px;
  margin-left: 30px;
  margin-right: 30px;
  height: 560px;
  overflow: hidden;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.pr-scratch .pr-scratch-item img {
  margin: 30px;
  width: 80%;
  height: 80%;
  object-fit: contain;
  transition: all .4s;
}

.pr-scratch .pr-scratch-item:hover img {
  transform: scale(1.3);
  transition: all .4s;
}

.pr-scratch .pr-scratch-item h4 {
  font-size: 40px;
  position: absolute;
  bottom: 1px;
  left: 20px;
  line-height: 1;
  transition: all .4s;
  color: #293133;
  -webkit-text-stroke: 0.8px #e4d417;
  margin-bottom: 15px;
}

.pr-scratch .pr-scratch-item:hover h4 {
  color: #e4d417;
  -webkit-text-stroke: 1px #293133;
}

.pr-scratch .pr-scratch-item h1 {
  color: #e4d417;
  padding: 10px 0 0 10px;
  font-size: 25px;
  -webkit-text-stroke: 0.8px #293133;
}

.pr-scratch .pr-scratch-item h2 {
  padding: 10px 0 0 20px;
  font-size: 18px;
  line-height: 1.2;
  -webkit-text-stroke: 0.3px #e4d417;
  text-shadow:
    #e4d417 0.5px 0.5px 0,
    #e4d417 0.5px 0.5px 0,
    #e4d417 0.5px 0.5px 0,
    #e4d417 0.5px 0.5px 0;
}

.pr-scratch .pr-scratch-item #order-form {
  padding: 30px;
  position: center;
  border-radius: 23px 23px 0px 0px;
  height: 450px;
}

.pr-scratch .pr-scratch-item #order-form .section-heading {
  text-align: center;
}

.pr-scratch .pr-scratch-item #order-form input {
  width: 100%;
  height: 46px;
  border-radius: 23px;
  background: linear-gradient(90deg, #aaaaaa 0%, #fff 100%);
  border: none;
  outline: none;
  padding: 0px 15px;
  font-size: 14px;
  color: #2a2a2a;
  font-weight: 600;
  margin-top: 0px;
  margin-bottom: 15px;
}

.pr-scratch .pr-scratch-item #order-form input::placeholder {
  color: #2a2a2a;
}

.pr-scratch .pr-scratch-item #order-form h2 {
  font-size: 40px;
}

.pr-scratch .pr-scratch-item #order-form textarea {
  width: 100%;
  height: 200px;
  border-radius: 23px;
  background: linear-gradient(90deg, #aaaaaa 0%, #fff 100%);
  border: none;
  outline: none;
  padding: 15px;
  font-size: 14px;
  color: #2a2a2a;
  font-weight: 600;
  margin-bottom: 15px;
  resize: none;
}

.pr-scratch .pr-scratch-item #order-form textarea::placeholder {
  color: #2a2a2a;
}

.pr-scratch .pr-scratch-item #order-form button {
  border: none;
  height: 46px;
  background-color: #e4d417;
  width: 100%;
  border-radius: 23px;
  color: #fff;
  transition: all .4s;
  font-size: large;
  font-weight: 500;
}

.pr-scratch .pr-scratch-item #order-form button:hover {
  opacity: 0.7;
}

/* 
---------------------------------------------
Pr-Spare Style
--------------------------------------------- 
*/

.pr-spare {
  position: relative;
  overflow: hidden;
  background-image: url(../images/products-bg.webp);
  background-repeat: no-repeat;
  background-size: 80%;
  background-position: center;
  margin-top: -50px;
}

.pr-spare::before {
  content: url(../images/contact-left.webp);
  position: absolute;
  width: 100vw;
  height: 100vh;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
}

.pr-spare::after {
  content: url(../images/contact-left.webp);
  bottom: 0px;
  right: 0;
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
  position: absolute;
  width: 103px;
  height: 464px;
  z-index: -1;
}

.pr-spare .pr-spare-item {
  border: 3px solid #505050;
  border-radius: 23px;
  margin-bottom: 30px;
  margin-top: 100px;
  margin-left: 30px;
  margin-right: 30px;
  height: 560px;
  overflow: hidden;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.pr-spare .pr-spare-item img {
  margin: 30px;
  width: 80%;
  height: 80%;
  margin-left: 50px;
  margin-top: 50px;
  object-fit: contain;
  transition: all .4s;
}

.pr-spare .pr-spare-item:hover img {
  transform: scale(1.3);
  transition: all .4s;
}

.pr-spare .pr-spare-item h4 {
  font-size: 40px;
  position: absolute;
  bottom: 0;
  left: 20px;
  line-height: 1;
  transition: all .4s;
  color: #293133;
  -webkit-text-stroke: 0.8px #e4d417;
  margin-bottom: 15px;
}

.pr-spare .pr-spare-item:hover h4 {
  color: #e4d417;
  -webkit-text-stroke: 1px #293133;
}

.pr-spare .pr-spare-item h6 {
  font-size: 25px;
  position: absolute;
  margin-left: 20px;
  top: 0;
  line-height: 1;
  transition: all .4s;
  color: #293133;
  -webkit-text-stroke: 0.3px #e4d417;
}

.pr-spare .pr-spare-item:hover h6 {
  color: #e4d417;
  -webkit-text-stroke: 1px #293133;
}

.pr-spare .pr-spare-item h2 {
  padding: 10px 0 0 20px;
  font-size: 18px;
  line-height: 1.2;
  -webkit-text-stroke: 0.3px #e4d417;
  text-shadow:
    #e4d417 0.5px 0.5px 0,
    #e4d417 0.5px 0.5px 0,
    #e4d417 0.5px 0.5px 0,
    #e4d417 0.5px 0.5px 0;
}

.pr-spare .pr-spare-item #order-form {
  padding: 30px;
  position: center;
  border-radius: 23px 23px 0px 0px;
  height: 450px;
}

.pr-spare .pr-spare-item #order-form .section-heading {
  text-align: center;
}

.pr-spare .pr-spare-item #order-form input {
  width: 100%;
  height: 46px;
  border-radius: 23px;
  background: linear-gradient(90deg, #aaaaaa 0%, #fff 100%);
  border: none;
  outline: none;
  padding: 0px 15px;
  font-size: 14px;
  color: #2a2a2a;
  font-weight: 600;
  margin-top: 0px;
  margin-bottom: 15px;
}

.pr-spare .pr-spare-item #order-form input::placeholder {
  color: #2a2a2a;
}

.pr-spare .pr-spare-item #order-form h2 {
  font-size: 40px;
}

.pr-spare .pr-spare-item #order-form textarea {
  width: 100%;
  height: 200px;
  border-radius: 23px;
  background: linear-gradient(90deg, #aaaaaa 0%, #fff 100%);
  border: none;
  outline: none;
  padding: 15px;
  font-size: 14px;
  color: #2a2a2a;
  font-weight: 600;
  margin-bottom: 15px;
  resize: none;
}

.pr-spare .pr-spare-item #order-form textarea::placeholder {
  color: #2a2a2a;
}

.pr-spare .pr-spare-item #order-form button {
  border: none;
  height: 46px;
  background-color: #e4d417;
  width: 100%;
  border-radius: 23px;
  color: #fff;
  transition: all .4s;
  font-size: large;
  font-weight: 500;
}

.pr-spare .pr-spare-item #order-form button:hover {
  opacity: 0.7;
}

/*********************Just pr-spares.html******************/
.pr-spares {
  position: relative;
  overflow: hidden;
  background-image: url(../images/products-bg.webp);
  background-repeat: no-repeat;
  background-size: 80%;
  background-position: center;
  margin-top: -50px;
}

.pr-spares::before {
  content: url(../images/contact-left.webp);
  position: absolute;
  width: 100vw;
  height: 100vh;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
}

.pr-spares::after {
  content: url(../images/contact-left.webp);
  bottom: 0px;
  right: 0;
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
  position: absolute;
  width: 103px;
  height: 464px;
  z-index: -1;
}

.pr-spares .pr-spares-item {
  border: 3px solid #505050;
  border-radius: 23px;
  margin-bottom: 30px;
  margin-top: 100px;
  height: 560px;
  width: 400px;
  overflow: hidden;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.pr-spares .pr-spares-item img {
  margin: 30px;
  width: 80%;
  height: 80%;
  margin-left: 40px;
  margin-top: 60px;
  object-fit: contain;
  transition: all .4s;
}

.pr-spares .pr-spares-item:hover img {
  transform: scale(1.3);
  transition: all .4s;
}

.pr-spares .pr-spares-item h4 {
  font-size: 40px;
  position: absolute;
  bottom: 1px;
  left: 20px;
  line-height: 1;
  transition: all .4s;
  color: #293133;
  -webkit-text-stroke: 0.8px #e4d417;
  margin-bottom: 15px;
}

.pr-spares .pr-spares-item:hover h4 {
  color: #e4d417;
  -webkit-text-stroke: 1px #293133;
}

/*********************Just pr-spares.html******************/


/* 
---------------------------------------------
Infos Style
--------------------------------------------- 
*/

.infos {
  background-image: url(../images/infos-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 120px 0px;
  margin-top: 50px;
}

.infos .main-content {
  overflow: hidden;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 23px;
  border: 0.2px solid #505050;
}

.infos .main-content .left-image {
  background-image: url(../images/left-infos.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
}

.infos .main-content .left-image img {
  display: none;
}

.infos .main-content .section-heading {
  margin-top: 50px;
  padding: 60px 60px 30px 60px;
}

.infos .main-content .section-heading p {
  font-size: 17px;
  color: #505050;
  text-shadow:
    -0.5px -0.5px 0 #e4d417,
    -0.5px -0.5px 0 #e4d417,
    -0.5px -0.5px 0 #e4d417,
    -0.5px -0.5px 0 #e4d417;
}

.infos .main-content .section-heading .line-dec {
  background: #3b6b4c;
  margin-bottom: 30px;
}

.infos .main-content .skills {
  padding: 0px 60px;
}

.infos .main-content .skill-slide {
  position: relative;
  width: 100%;
  background-color: #f9ebff;
  height: 10px;
  border-radius: 5px;
  margin-bottom: 60px;
}

.infos .main-button a {
  display: inline-block;
  margin-top: 30px;
  color: #e4d417;
  background-color: #293133;
  font-size: 20px;
}

.infos .main-button a:hover {
  opacity: 0.9;
}

/* 
---------------------------------------------
Contact Style
--------------------------------------------- 
*/

.contact-us {
  position: relative;
}

.contact-us::before {
  content: url(../images/contact-left.webp);
  top: -60px;
  left: 0;
  position: absolute;
  width: 103px;
  height: 464px;
  z-index: -1;
}

.contact-us::after {
  content: url(../images/contact-left.webp);
  bottom: -10px;
  right: 0;
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
  position: absolute;
  width: 103px;
  height: 490px;
  z-index: -1;
}

.contact-us .contact-us-content {
  border-radius: 23px;
  padding: 25px 30px 30px 30px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.10);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  margin-top: -5px;
  height: 650px;
}

.contact-us .contact-us-content #contact-form {
  padding: 30px;
  border-radius: 23px 23px 0px 0px;
  border: 1px solid #3b6b4c;
  height: 450px;
}

.contact-us .contact-us-content #contact-form .section-heading {
  text-align: center;

}

.contact-us .contact-us-content #contact-form input {
  width: 100%;
  height: 46px;
  border-radius: 23px;
  background: linear-gradient(90deg, #aaaaaa 0%, #fff 100%);
  border: none;
  outline: none;
  padding: 0px 15px;
  font-size: 14px;
  color: #2a2a2a;
  font-weight: 600;
  margin-top: 0px;
  margin-bottom: 15px;
}

.contact-us .contact-us-content #contact-form input::placeholder {
  color: #2a2a2a;
}



.contact-us .contact-us-content #contact-form textarea {
  width: 100%;
  height: 120px;
  border-radius: 23px;
  background: linear-gradient(90deg, #aaaaaa 0%, #fff 100%);
  border: none;
  outline: none;
  padding: 15px;
  font-size: 14px;
  color: #2a2a2a;
  font-weight: 600;
  margin-bottom: 15px;
  resize: none;
}

.contact-us .contact-us-content #contact-form textarea::placeholder {
  color: #2a2a2a;
}

.contact-us .contact-us-content #contact-form button {
  border: none;
  height: 46px;
  background-color: #e4d417;
  width: 100%;
  border-radius: 23px;
  color: #fff;
  transition: all .4s;
  font-size: large;
  font-weight: 500;
}

.contact-us .contact-us-content #contact-form button:hover {
  opacity: 0.7;
}

.contact-us-content .more-info {
  text-align: center;
  background: linear-gradient(90deg, #293133 0%, #505050 100%);
  border-radius: 0px 0px 23px 23px;
  padding: 25px 20px 15px 20px;
  height: 150px;
}

.contact-us-content .more-info .info-item {
  text-align: center;
  margin-bottom: 30px;
}

.contact-us-content .more-info i {
  font-size: 32px;
  color: #fff;
  margin-bottom: 15px;
}

.contact-us-content .more-info h4 {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
}

.contact-us-content .more-info h4 a {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
}

.contact-us-content .more-info h4 a:hover {
  color: #aaaaaaaa;
  font-size: 16px;
  font-weight: 400;
}

/* 
---------------------------------------------
Footer Style
--------------------------------------------- 
*/

footer {
  border-top: #000 1px groove;
  background-color: #fff;
}

footer p {
  text-align: center;
  padding: 15px 0px;
  color: #2a2a2a;
  font-weight: 500;
  margin-bottom: 0px;
  height: 85px;
}

footer p a {
  color: #2a2a2a;
  transition: all .3s;
}

footer p a:hover {
  color: #e4d417;
}

/* 
---------------------------------------------
Page Heading Style
--------------------------------------------- 
*/

.page-heading {
  padding: 120px 0px 0px 0px;
}

.page-heading::before {
  content: url(../images/banner-left.webp);
  top: 70px;
  left: 0;
  position: absolute;
  width: 194px;
  height: 655px;
  z-index: -1;
}

.page-heading h6 {
  font-size: 50px;
  color: #e4d417;
  text-transform: uppercase;
  font-weight: 700;
}

.page-heading h4 {
  font-size: 35px;
  color: #000;
  margin-top: 20px;
}


.page-heading .line-dec {
  margin: 30px 0px 20px 0px;
  width: 210px;
  height: 2px;
  background-color: #3b6b4c;
}

.page-heading p {
  font-size: large;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 30px;
  transition: all .2s;
}

.page-heading a p {
  font-size: x-large;
}

.page-heading a p:hover {
  color: #e4d417;
  transition: all .2s;
}

.page-heading a p span {
  font-size: xx-large;
}

.page-heading p span.tick {
  color: #e4d417;
}


/* 
---------------------------------------------
Responsive Style
--------------------------------------------- 
*/

body {
  overflow-x: hidden;
}

@media (max-width: 480px) {

  .main-banner:before,
  .main-banner:after {
    display: none;
  }

  .main-banner {
    padding: 150px 0px;
    background-image: url("../images/banner-right.webp");
    background-repeat: no-repeat;
    background-position: -100px center;
  }

  .header-area .main-nav .nav li.has-sub:after {
    font-family: FontAwesome;
    content: "\f107";
    font-size: 12px;
    color: #ffffff;
    position: absolute;
    right: 0px;
    top: 0px;
  }

  .menu-trigger {
    display: block;
    cursor: pointer;
  }

  .menu-trigger span {
    display: block;
    width: 30px;
    height: 4px;
    margin: 5px;
    background: #fff;
  }

  .products {
    margin-top: 100px;
  }

  .header-area {
    margin-top: 120px;
  }

  .pre-header {
    margin-top: 0px;
    margin-bottom: 0px;
  }

  .main-banner {
    margin-top: 100px;
  }

  .header-area .main-nav .nav li:nth-child(3) {
    padding-right: 0px !important;
  }

  .header-area .main-nav .nav li.has-sub ul.sub-menu {
    display: none;
  }

  .main-banner {
    padding: 185px 0px;
  }

  .main-banner p {
    text-shadow:
      0.5px 0.5px 0 #e4d417,
      -0.5px 0.5px 0 #e4d417,
      0.5px -0.5px 0 #e4d417,
      -0.5px -0.5px 0 #e4d417;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(40px);
  }

  .main-banner h6 {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }

  .main-banner h4 {
    font-size: 36px;
    line-height: 44px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }

  .main-banner span {
    margin: 0px 3px 0px 3px;
  }

  .main-banner .main-button a,
  .main-banner .second-button a {
    padding: 12px 20px;
  }

  .header-area .main-nav .nav {
    height: auto;
    flex-basis: 100%;
  }

  .header-area .main-nav .logo {
    position: absolute;
    left: 30px;
    top: -5px;
  }

  .background-header {
    margin-top: 0px;
  }

  .background-header .main-nav .logo {
    top: 0px;
  }

  .background-header .main-nav .border-button {
    top: 0px !important;
  }

  .background-header.header-sticky .nav {
    margin-top: 80px !important;
  }

  .header-area .main-nav .border-button {
    position: absolute;
    top: 15px;
    right: 70px;
  }


  .header-area.header-sticky .nav li.search-icon a {
    width: 100%;
  }

  .header-area {
    background-color: #f7f7f7;
    padding: 0px 15px;
    height: 100px;
    box-shadow: none;
    text-align: center;
  }

  .header-area .container {
    padding: 0px;
  }

  .header-area .logo {
    margin-left: 0px;
  }

  .header-area .menu-trigger {
    display: block !important;
  }

  .header-area .main-nav {
    overflow: hidden;
  }

  .header-area .main-nav .nav {
    float: none;
    width: 100%;
    display: none;
    -webkit-transition: all 0s ease 0s;
    -moz-transition: all 0s ease 0s;
    -o-transition: all 0s ease 0s;
    transition: all 0s ease 0s;
    margin-left: 0px;
  }

  .header-area .main-nav .nav li:first-child {
    border-top: 1px solid #eee;
  }

  .header-area.header-sticky .nav {
    margin-top: 100px !important;
  }


  .header-area .main-nav .nav li {
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #eee;
    padding-left: 0px !important;
    padding-right: 0px !important;
  }

  .header-area .main-nav .nav li a {
    height: 50px !important;
    line-height: 50px !important;
    padding: 0px !important;
    border: none !important;
    background: #505050 !important;
    color: #ffffff !important;
  }

  .header-area .main-nav .nav li a:hover {
    background: #eee !important;
    color: #e4d417 !important;
  }

  .header-area .main-nav .nav li.has-sub ul.sub-menu {
    position: relative;
    visibility: inherit;
    opacity: 1;
    z-index: 1;
    transform: translateY(0%);
    top: 0px;
    width: 100%;
    box-shadow: none;
    height: 0px;
    transition: all 0s;
  }

  .header-area .main-nav .nav li.submenu ul li a {
    font-size: 12px;
    font-weight: 400;
  }

  .header-area .main-nav .nav li.submenu ul li a:hover:before {
    width: 0px;
  }

  .header-area .main-nav .nav li.has-sub ul.sub-menu {
    height: auto;
  }

  .header-area .main-nav .nav li.submenu:hover ul,
  .header-area .main-nav .nav li.submenu:focus ul {
    height: 0px;
  }

  .products {
    background-image: none;
  }

  .products::before {
    content: url(../images/contact-left.webp);
    left: 0;
    position: absolute;
    z-index: -1;
  }

  .products::after {
    content: url(../images/banner-left.webp);
    bottom: 0px;
    right: 0;
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
    position: absolute;
    z-index: -1;
  }

  .products .products-item {
    width: 360px;
  }

  .products-img {
    background-image: none;
  }


  .products-img::before {
    content: url(../images/contact-left.webp);
    left: 0;
    position: absolute;
    z-index: -1;
    height: 2500px;
  }

  .products-img::after {
    content: url(../images/banner-left.webp);
    bottom: 900px;
    right: 0;
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
    position: absolute;
    z-index: -1;

  }

  .pr-img-info {
    margin-top: 150px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .pr-img-info .line-dec {
    width: 100vw;
    height: 2px;
    background-color: #3b6b4c;
    margin: 20px auto;
  }


  #pr-img-line {
    width: 100vw;
    height: 4px;
    background-color: #3b6b4c;
  }

  #prd-img-line {
    width: 100vw;
    height: 4px;
    background-color: #3b6b4c;
  }

  #closeModal {
    position: fixed;
  }

  .pr-img-info h2 {
    font-size: xx-large;
  }

  .pr-img-info p {
    font-size: large;
    color: #000;
    -webkit-text-stroke: 0.3px #e4d417;
  }

  .pr-spares {
    background-image: none;
  }

  .pr-spares::before {
    content: url(../images/contact-left.webp);
    left: 0;
    position: absolute;
    z-index: -1;
  }

  .pr-spares::after {
    content: url(../images/banner-left.webp);
    bottom: 0px;
    right: 0;
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
    position: absolute;
    z-index: -1;
  }

  .pr-spares .pr-spares-item {
    width: 360px;
    margin-top: 170px;
  }

  .services {
    height: auto;
    margin-top: 70px;
  }

  .pr-scratch {
    margin-top: 30px;
  }

  .col-6 {
    width: 100%;
    /* Yani alt alta sıralanacak */
  }

  .pr-scratch {
    background-image: none;
  }

  .pr-scratch::before {
    content: url(../images/contact-left.webp);
    left: 0;
    position: absolute;
    z-index: -1;
  }

  .pr-scratch::after {
    content: url(../images/banner-left.webp);
    bottom: 0px;
    right: 0;
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
    position: absolute;
    z-index: -1;
  }

  .pr-scratch .pr-scratch-item {
    margin-left: 0px;
    margin-right: 0px;
    width: 100%;
    height: auto;
  }

  .pr-scratch .pr-scratch-item #order-form {
    padding: 10px;
    height: auto;
  }

  .pr-scratch .pr-scratch-item #order-form button {
    margin-bottom: 10px;
  }

  .pr-scratch .pr-scratch-item h2 {
    font-size: 13px;
    -webkit-text-stroke: 0.01px #e4d417;
  }

  .pr-scratch .pr-scratch-item #order-form .section-heading {
    position: center;
    border-radius: 23px 23px 0px 0px;
  }

  .pr-spare {
    margin-top: 30px;
    background-image: none;
  }

  .pr-spare .pr-spare-item {
    margin-left: 0px;
    margin-right: 0px;
    height: auto;
  }

  .pr-spare .pr-spare-item #order-form {
    padding: 10px;
    height: auto;
  }

  .contact-us {
    margin-top: 100px;
  }

  .contact-us .contact-us-content {
    height: auto !important;
    margin-bottom: auto;
  }

  .contact-us .contact-us-content #contact-form {
    padding: 30px;
    border: none;
    height: 600px;
    border: 1px solid #3b6b4c;
    border-radius: 23px 23px 0px 0px;
  }

  .contact-us-content .more-info {
    height: auto;
  }

}