


/*############################################################
-> MAIN
############################################################*/

header {
    margin: 45px 0 !important;
    align-items: center;
}
header .left {
    position: relative;
    order:1;
}
.social-links {
    position: relative;
    width: unset;
}
.social-links ul {
    display: flex;
    justify-content: left;
    align-items: center;
    margin-bottom: 6px;
}
.social-links ul li {
    margin-right: 10px;
}
.social-links ul li a {
    background-color: var(--c1);
    color: #fff;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    width: 33px;
    height: 33px;
}
.social-links ul li a:hover {
    background-color: var(--c2);
}
.social-links #top-mail {
    font-size: 18px;
}
.social-links #by {
    position: absolute;
    bottom: -50px;
    right: 160px;
}
.social-links #by img {
  max-width: unset;
}
header .center {
    position: relative;
    order:2;
}
header .center a {
    width: 280px;
    display: block;
}
header .center a img {
    width: 100%;
}
header .right {
  display: flex;
  justify-content: right;
  order:3;
}
.display-block {
  display: block;
  position: relative;
  z-index: 1;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .social-links #by {
    right: 0;
  }

}/*@media (min-width: 992px) and (max-width: 1199.98px)*/

@media (min-width: 768px) and (max-width: 991.98px) {
  .social-links #by {
    right: -50px;
  }



}/*@media (min-width: 992px) and (max-width: 1199.98px)*/

@media (max-width: 991.98px) {
}/*@media (max-width: 991.98px)*/



@media (max-width: 767.98px) {

  header .left {
    display: none;
  }
  header .center a img {
    width: 75%;
  }


}/*@media (max-width: 767.98px)*/




/*############################################################
<- MAIN
############################################################*/


/*############################################################
-> FULLSCREEN MENU
############################################################*/


.menu-icon {
    position: relative;
    top: 0;
    right: 0;
    width: 30px;
    height: 25px;
    display: -webkit-flex; 
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 100000;
  }
  .menu-icon span {
    width: 100%;
    height: 4px;
    border-radius: 2px;
    transition: all 0.4s ease;
  }
  .menu-icon span {
    background-color: var(--c1);
  }
  .fullscreen-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--c1);
    color: #fff;
    display: -webkit-flex; 
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: right 0.4s ease;
    z-index: 1000;
  }
  .fullscreen-menu.active {
    right: 0;
  }
  .menu-links {
    position: relative;
    top: 0;
    overflow-y: scroll;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    
  }
  .menu-links li {
  margin: 0 20%;
    
  }
  .menu-item a {
    display: -webkit-flex; 
    display: flex;
    align-items: center;
    margin: 20px 0;
    opacity: 0;
    border-bottom: 1px solid #183157;
    padding: 10px 0;
    transform: translateX(-50px);
    animation: menu-slide-in 0.5s ease forwards;
  }
  .menu-item a {
    color:#fff;
  }
  .menu-item a i {
    font-size: 27px;
    margin-right: 10px;
    width: 30px;
  }
  .menu-item a:hover {
    background-color: var(--c1h);
  }
  .menu-icon.open span:nth-child(1) {
    transform: rotate(45deg) translateY(10px);
    background-color: #fff;
  }
  .menu-icon.open span:nth-child(2) {
    opacity: 0;
  }
  .menu-icon.open span:nth-child(3) {
    transform: rotate(-45deg) translateY(-10px);
    background-color: #fff;
    position: relative;
    top: -6px;
  }
  
  .menu-icon {
    font-size: 24px;
    margin-right: 15px;
  }
  
  .menu-text .title {
    font-size: 34px;
    line-height: 36px;
    font-family: 'k-medium';
  }
  
  .menu-text p {
    margin: 0px;
    font-size: 20px;
    line-height: 22px;
    font-family: 'k-light';
    letter-spacing: 0.03em;
  }
  
  /* Animasyon */
  @keyframes menu-slide-in {
    to {
        opacity: 1;
        transform: translateX(0);
    }
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .menu-text .title {
      font-size: 30px;
      line-height: 34px;
    }
    .menu-text p {
      font-size: 14px;
      line-height: 16px;
  }
    .menu-icon {
        font-size: 20px;
    }
    .menu-links li {
      margin: 0px 5%;
    } 
  
  
  }
  
  
/*############################################################
<- FULLSCREEN MENU
############################################################*/



/*############################################################
-> FOOTER
############################################################*/

footer {
  position: relative;
  background-image: url('../img/footer.jpg');
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position-x: left;
  background-position-y: bottom;
  background-size: contain;
}
footer .foot {
  position: absolute;
  bottom: 40%;
  right: 20%;
  display: flex;
  align-items: start;
}
footer .foot .foot-nav {
  list-style: disc;
}
footer .foot .foot-nav li {
  position: relative;
}
footer .foot .foot-nav li a {
  font-size: 18px;
}
footer .foot .foot-nav li:hover a {
  font-family:k-medium;
}
footer .foot .foot-contact {
  margin-left: 30px;
}
footer .foot .foot-contact a {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
footer .foot .foot-contact li a span:first-child {
  width: 40px;
  height: 40px;
  display: flex;
  border: 1px solid var(--c1);
  justify-content: center;
  align-items: center;
  border-radius: 30px;
  margin-right: 20px;
}
footer .foot .foot-contact li a span:first-child i {
  color: var(--c1);
}
footer .foot .foot-contact li a span:last-child {
  font-size: 18px;
  max-width: 300px;
  line-height: 22px;
}
footer .foot2 {
  display: flex;
  flex-wrap: nowrap;
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 100%;
  justify-content: space-around;
  align-items: center;
}
footer .foot2 > img {
  width: 20%;
  object-fit: contain;
}
footer .foot2 > a {
  width: unset;
}
footer .foot2 > a > img {
  width: 250px;
}
footer .foot2 > .social-links ul li a {
  background-color: unset;
  border: 1px solid #fff;

}

footer .foot2 > .social-links #top-mail {
  color:#fff;
}
.sign {
  font-family: k-light;
  color: #fff;
  background-color: #7a553e;
  width: 100%;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.sign a {
  font-family: k-regular;
  color: #fff;
}

@media (min-width: 2500px){
  footer{
    height: 100%;
    background-size: cover;
  }
}/*@media (min-width: 1800px)*/
@media (min-width: 1800px) and (max-width: 2499.98px) {
  footer{
    height: 100%;
    background-size: cover;
  }
}/*@media (min-width: 1800px)*/

@media (min-width: 1200px) and (max-width: 1599.98px) {
  footer .foot {
    bottom: 40%;
    right: 25px;
  }
  
}/*@media (min-width: 1200px) and (max-width: 1599.98px)*/

@media (min-width: 992px) and (max-width: 1199.98px) {

  footer .foot {
    bottom: 30%;
    right: 25px;
  }
  
}/*@media (min-width: 992px) and (max-width: 1199.98px)*/


@media (min-width: 768px) and (max-width: 991.98px) {
  footer .foot {
    bottom: 20%;
    right: 0;
  }

}/*@media (min-width: 768px) and (max-width: 991.98px)*/

@media (max-width: 767.98px) {

  footer {
    margin-top: -400px;
    position: relative;
    background-image: url('../img/footer.jpg');
    width: 100%;
    height: 90vh;
    background-repeat: no-repeat;
    background-position-x: -210px;
    background-position-y: bottom;
    background-size: auto 400px;
  }

  footer .foot {
    bottom: 20%;
    right: 10px;
    display: flex;
    flex-wrap: wrap;
    text-align: right;
    justify-content: right;
  }
  footer .foot2 > a > img {
    width: 100px;
  }
  footer .foot2 > img {
    display: none;
  }
  footer .foot2 > a > img {
    width: 125px;
  }
  .social-links {
    padding: 0;
  }
  footer .foot .foot-contact {
    margin-left: 0;
  }
  footer .foot .foot-contact li a span:last-child {
    order:1;
  }
  footer .foot .foot-contact li a span:first-child {
    width: 20px;
    height: 20px;
    display: flex;
    border: 1px solid var(--c1);
    justify-content: center;
    align-items: center;
    border-radius: 30px;
    margin-right: 0;
    margin-left: 5px;
    order:2;
 }
  footer .foot .foot-contact a {
    margin-bottom: 0;
    justify-content: right;
  }
  footer .foot .foot-nav {
    width: 100%;
    list-style: none;
    padding-right: 15px;
  }
  footer .foot .foot-nav li::before {
    content: "•";
    position: absolute;
    right: -10px;
    top: 2px;
  }
  footer .foot .foot-contact li a span:last-child {
    font-size: 16px;
    max-width: 230px;
    line-height: 20px;
  }
  footer .foot .foot-nav li a {
    font-size: 16px;
  }
  .sign, .sign a {
    font-size: 15px;
    line-height: 20px;
  } 

  footer .foot2 {
    flex-wrap: wrap;
    bottom: 5px;
    left: 0;
    width: 100%;
    justify-content: center;
    margin: auto;
  }
  .social-links ul li a {
    width: 25px;
    height: 25px;
  }
  .social-links ul li a i {
    font-size: 13px;
  }
  .social-links ul {
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
  }
  footer .foot2 > a {
    margin-bottom: 10px;
}
}/*@media (max-width: 767.98px)*/





/*############################################################
<- FOOTER
############################################################*/


/*############################################################
-> SLIDER
############################################################*/


.carousel-item {
  width: 100%;
}

.carousel-item img, 
.carousel-item iframe {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Görsellerin tam ekrana yayılmasını sağlar */
}
/* YouTube videoları için özel yapı */
.carousel-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* Dairesel ve Yan Yana Navigasyon Dotları */
.carousel-indicators {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #fff;
  opacity: 1;
  transition: all 0.3s ease-in-out;
}

.carousel-indicators .active {
  background-color: var(--c1);
  transform: scale(1.3);
}

.carousel-indicators button:hover {
  background-color: #fff;
  transform: scale(1.2);
  }






/*############################################################
<- SLIDER
############################################################*/



/*############################################################
-> MAIN-SECTION
############################################################*/


.main-biz {
  position: relative;
}
.main-biz .content {
  position: relative;
  padding-top: 100px;
}
.main-biz .content .title {
  display: block;
  color: var(--c1);
  font-size: 34px;
  font-family: k-bold;
}
.main-biz .content .text {
  width: 100%;
  display: block;
  font-size: 20px;
  line-height: 28px;
}
.main-biz .img img {
  position: relative;
  width: 100%;
  top: -100px;
}
a.whatsapp {
  position: absolute;
  bottom: -35px;
  right: 13%;
  width: unset;
  z-index: 1000;
}
a.whatsapp  img {
  width: 212px;
  height: auto;
}
.cursor {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cursor img {
  width: 50px;
  height: auto;
} 
.section-title {
  position: relative;
}
.section-title .title {
  display: block;
  color: var(--c1);
  font-size: 34px;
  font-family: k-bold;
}
.section-title .content {
  width: 100%;
  display: block;
  font-size: 20px;
  line-height: 28px;
}
.btn-devami {
  display: inline-block;
  background-color: var(--c1);
  color: #fff;
  padding: 2px 14px;
  font-size: 18px;
  margin-top: 20px;
  width: unset;
}
.cursor.mrg {
  margin-top: 100px;
  margin-left: 0px !important;
  margin-right: 0px !important;
}

@media (max-width: 767.98px){
  .main-biz .content {
    order:2;
    padding-top: 20px;
  }
  .main-biz .img {
    order:1;
  }
  .main-biz .img img {
    top: -12px;
  }
  a.whatsapp  img {
    width: 130px;
  }
  a.whatsapp {
    bottom: -20px;
  }
  .main-biz .content .text {
    font-size: 18px;
    line-height: 26px;
  }
  .section-title .content {
    font-size: 18px;
    line-height: 26px;
  }


}/*@media (min-width: 1800px)*/

/*############################################################
<- MAIN-SECTION
############################################################*/








/*############################################################
-> SLIDER SECTION
############################################################*/


.slideshow .slide img {
max-width: 100%;
width: 100%;
}
.slideshow .slick-dots {
bottom: 40px;
}
.slick-next {
right: 15px;
z-index: 100;
}
.slick-prev {
left: 15px;
z-index: 100;
}
.slideshow .fluid-width-video-wrapper {
  padding-top: 0px !important;
}
.slideshow .slick-prev::before {
font-family: 'FontAwesome';
content:'\f053';
color:#fff9;
font-size: 35px;
}
.slideshow .slick-next::before {
  font-family: 'FontAwesome';
  content:'\f054';
  color:#fff9;
  font-size: 35px;
  }
.bh-slider {
margin: auto;
}
.slick-dots li button::before {
color: #fff;
font-size: 8px;
}
.slick-dots li.slick-active button::before {
color: #fff;
font-size: 12px;
}
.slick-dots li {
width: 8px;
}
.bh-slider .slick-dotted.slick-slider {
margin-bottom: 0px !important;
}


/*############################################################
<- SLIDER SECTION
############################################################*/
  

/*############################################################
-> MAIN REFERANSLAR
############################################################*/
.a-zindex {
  position: absolute;
  z-index: 100000;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.main-referanslar {
  margin-top: 50px;
}
.main-referanslar .referanslar {
  display: -webkit-flex; 
  display: flex;
  align-items: center;
  justify-content: center;
}
.main-referanslar .referanslar .item {
  position: relative;
  width: 100%;
  height: 460px;
  display: -webkit-flex; 
  display: flex;
  justify-content: center;
  padding: 0;
}
.main-referanslar .referanslar .owl-nav {
  display: -webkit-flex; 
  display: flex;
  align-items: center;
  position: absolute;
  bottom: -60px;
  margin: auto;
  justify-content: center;
}
.main-referanslar .referanslar .owl-nav .owl-prev,.main-referanslar .referanslar .owl-nav .owl-next {
  border: 2px solid var(--c1);
  height: 30px;
  width: 40px;
  display: -webkit-flex; 
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--c1);
  font-size: 20px;
  background-color: #fff;
}
.main-referanslar .referanslar .owl-next {
  margin-left: 5px;
}
.main-referanslar .referanslar .item span.title {
  position: absolute;
  z-index: 6;
  font-size: 26px;
  line-height: 30px;
  font-family: f-light;
  color: #fff;
  bottom: 35px;
  text-align: center;
}
.main-referanslar .referanslar .item > img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;

}
.main-referanslar .referanslar .item::after {
  position: absolute;
  content: '';
  opacity: 1;
  bottom: 0px;
  left: 0px;
  background: rgb(238 124 76);
  background: linear-gradient(0deg, rgb(238 124 76) 0%, rgba(25, 61, 119, 0) 50%);
  z-index: 5;
  width: 100%;
  height: 31%;
}
.ref-name {
  position: absolute;
  z-index: 1000;
  width: 80%;
  height: 80%;
  background-color: #e84e0e7d;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.ref-name img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}
.ref-name > span.name {
  color: #fff;
  font-size: 24px;
  font-family: 'k-medium';
}
.owl-carousel .owl-item {
  width: 282px;
  display: flex;
  justify-content: center;
}


@media (max-width: 991.98px) {

  .main-referanslar .referanslar .item {
    position: relative;
    width: 170px;
    height: 260px;
    display: -webkit-flex; 
  display: flex;
    justify-content: center;
    padding: 0;
  }
  .section-title span.erz {
    color: var(--c1);
    font-size: 30px;
    font-family: 'f-medium';
  }

  .section-title .title .left a {
    display: block;
    margin-left: 0;
  }



}/*@media (max-width: 991.98px)*/


@media (max-width: 767.98px) {

  .ref-name {
    display: flex !important;
    width: 80%;
    height: 45%;
    top: unset;
  }
  .ref-name > span.name {
    font-size: 18px;
  }
  .ref-name img {
    height: 22px;
  }
  .main-referanslar .referanslar .item span.title {
	  display:none;
	}
	


}

/*############################################################
<- MAIN REFERANSLAR
############################################################*/




/*############################################################
-> MAIN HİZMETLER
############################################################*/


.main-hizmetler {
  position: relative;
  margin-top: 50px;
}
.main-hizmetler .item {
  position: relative;
  padding: 0;
  margin-bottom: 20px;
}
.main-hizmetler .item > div {
  position: relative;
  margin: 00 10px;
}
.main-hizmetler .item > div img {
  position: relative;
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.main-hizmetler .item > div span.title {
  position: absolute;
  bottom: 15px;
  z-index: 10;
  font-family: 'k-bold';
  color: #fff;
  left: 25px;
  font-size: 23px;
}
.main-hizmetler .item > div::after {
  position: absolute;
  content: '';
  opacity: 1;
  bottom: 0px;
  left: 0px;
  background: rgb(29, 28, 28);
  background: linear-gradient(0deg, rgb(29, 28, 28) 0%, rgba(25, 61, 119, 0) 100%);
  z-index: 5;
  width: 100%;
  height: 31%;
}
.main-hizmetler .item > div:hover::after {
  position: absolute;
  content: '';
  opacity: 1;
  bottom: 0px;
  left: 0px;
  background: rgb(238 124 76);
  background: linear-gradient(0deg, rgb(238 124 76) 0%, rgba(0, 98, 255, 0) 100%);
  z-index: 5;
  width: 100%;
  height: 31%;
}
.main-hizmetler > .row {
  z-index: 10;
  position: relative;
}

.main-hizmetler::after {
  position: absolute;
  content: '';
  width: 104%;
  height: 80%;
  border: 7px solid var(--c5);
  top: 0;
  bottom: 0;
  left: -2%;
  right: 0;
  margin: auto auto;
  z-index: 1;
}


/*############################################################
<- MAIN HİZMETLER
############################################################*/



/*############################################################
-> MAKİNA
############################################################*/


.makine {
  margin-top: 50px;
}
.makine .content .title {
  display: block;
  color: #375a64;
  font-size: 50px;
  line-height: 55px;
}
.makine .content .text {
  position: relative;
  display: block;
  font-size: 20px;
  color: #375a64;
  margin-top: 25px;
  margin-bottom: 20px;
}
.makine .img img {
  position: relative;
  width: 100%;
}











/*############################################################
<- MAKİNA
############################################################*/





/*############################################################
-> GALERİ
############################################################*/


.foto-img > div {
  display: flex;
  flex-wrap:wrap;
}
.foto-img a {
  margin: 2px;
  display: inline-flex;
}
.foto-img a img {
  width: 150px;
  height: 150px;
  object-fit: cover;
}
.foto-img {
  position: relative;
  z-index: 10;
}

/*############################################################
<- GALERİ
############################################################*/



/*############################################################
-> WHATSAPP PULSE
############################################################*/


.pulse {
  position: fixed;
  bottom: 0;
  left: 5%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: #58ea00;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 48px;
  font-size: 35px;
  z-index: 10000000;
  }
  .pulse a {
    display: flex;
    color: #fff;
    position: relative;
    z-index: 100;
    justify-content: center;
    align-items: center;
    padding-top: 7px;
  }
  .pulse a:hover {
  color: #fff;
  }
  .pulse:before,
  .pulse:after {
  content: '';
  display: block;
  position: absolute;
  border: 50%;
  border: 1px solid #58ea00;
  left: -20px;
  right: -20px;
  top: -20px;
  bottom: -20px;
  border-radius: 50%;
  animation: animate 1.5s linear infinite; 
  opacity: 0;
  }
  
  .pulse:after {
  animation-delay: .5s;
  }
  
  @keyframes animate {
  0%
  {
      transform: scale(0.5);
      opacity: 0;
  }
  50% {
      
      opacity: 1;
  }
  100%
  {
      transform: scale(1.2);
      opacity: 0;
  }
  
  }
  
  




/*############################################################
<- WHATSAPP PULSE
############################################################*/






/*############################################################
-> XXXX
############################################################*/


/*############################################################
<- XXXX
############################################################*/

@media (min-width: 1200px) and (max-width: 1599.98px) {
}/*@media (min-width: 1200px) and (max-width: 1599.98px)*/

@media (min-width: 992px) and (max-width: 1199.98px) {
}/*@media (min-width: 992px) and (max-width: 1199.98px)*/

@media (max-width: 991.98px) {
}/*@media (max-width: 991.98px)*/

@media (min-width: 768px) and (max-width: 991.98px) {
}/*@media (min-width: 768px) and (max-width: 991.98px)*/

@media (max-width: 767.98px) {
}/*@media (max-width: 767.98px)*/
