@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;600&display=swap");

:root {
  --main-color: #3c3c3e;
  --black-color: #000000;
  --border: 0.4rem solid rgb(233, 192, 91);
}

* {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
  text-transform: none;
  transition: 0.2s ease;
  
  
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-padding-top: 9rem;
  scroll-behavior: smooth;
}
html::-webkit-scrollbar {
    width: 0.8rem;
    background-color: #fff;
}

html::-webkit-scrollbar-track {
    background-color: transparent;
}

html::-webkit-scrollbar-thumb {
    border-radius: 3rem;
    background-color: #000000;
}

body {
  background-color: var(--main-color);
  height: 100vh; /* EKRAN BOYUTU BURDAN DEFAULT OLARAK */
}

section{
    padding: 3.5rem 7%;

}

a {
    color: var(--black-color);
    text-decoration: none;
}

.btn{
    margin-top: 1rem;
    display: inline-block;
    padding: 2rem 3.75rem;
    border-radius: 30rem;
    font-size: 1.7rem;
    color: var(--black-color);
    background-color: #fff;
    cursor: pointer;

}

.btn:hover {
    opacity: 0.6;
    
}


.heading{
    color: #fff;
    text-transform: uppercase;
    font-size: 4rem;
    margin-bottom: 3.5rem;
    margin-top: 4rem;
    border-bottom: 0.2rem solid rgb(233, 192, 91);

}

.heading span{
    color: var(--black-color);
    text-transform: uppercase;
}

.search-input {
    font-size: 1.6rem;
    color: var(--black-color);
    padding: 1rem;
    text-transform: none;
    border-radius: 3rem;

}

.header .search-form {
    position: absolute;
    top: 115%;
    right: 7%;
    background-color: #fff;
    width: 50rem;
    height: 5rem;
    display: flex;
    align-items: center;
    border-radius: 3rem;
    box-shadow: 0px 0px 25px 2px rgb(0 0 0 / 75%);
    transform: scaleY(0);

}

.header .search-form.active {
    transform: scaleY(1);
}

.header .search-form i {
    cursor: pointer;
    font-size: 2.2rem;
    margin-right: 1.5rem;
    color: var(--black-color);
}

.header .search-form input {
    width: 100%;
}

header .logo img {
  height: 9rem;
  width: 21rem;
  /* border-radius: 3rem; */
  
  
}

.header {
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4%;
  margin: 1rem 7%;
  border-radius: 30rem;
  box-shadow: 0px 0px 17px -2px rgba(0, 0, 0, 0.75);
  position: sticky;
  top: 0;
  z-index: 1000;
}



 .header .navbar a{
    margin: 0 1rem;
    margin-right: 3rem;
    padding: 0 1rem;
    font-size: 2rem;
    color: var(--black-color);
    border-bottom: 0.1rem solid transparent;

}

.header .navbar .active {
    border-color: rgb(233, 192, 91);
    padding-bottom: 0.5rem;
}
.header .navbar a:hover {
    border-color: rgb(233, 192, 91);
    padding-bottom: 0.5rem;
    
}

.header .buttons button{
    cursor: pointer;
    font-size: 2.5rem;
    margin-left: 2rem;
    background-color: transparent;
}

.header .cart-items-container {
    position: absolute;
    top: 95%;
    height: calc(100vh - 9rem);
    width: 35rem;
    background-color: #fff;
    box-shadow: 0px 20px 14px 0px rgb(0 0 0 / 75%);
    right: -100%;
}

.header .cart-items-container.active {
    right: 3rem;

}



.header .cart-items-container .cart-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
}

.header .cart-items-container .cart-item:hover {
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.75);
}



.header .cart-items-container .cart-item .fa-times {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    cursor: pointer;
    color: var(--black-color);

}


.header .cart-items-container .cart-item img {
    height: 9rem;
    width: 10rem
}

.header .cart-items-container .cart-item .content h3 {
    font-size: 2rem;
    color: var(--black-color);
    padding-bottom: 0.5rem;
    padding-left: 1rem;
}

.header .cart-items-container .cart-item .content .price {
    font-size: 1.5rem;
    color: var(--black-color);
    padding-left: 1rem;
}


.header .cart-items-container .btn {
    width: 100%;
    text-align: center;
    border-radius: unset;
}


.header #menu-btn{
    display: none;
}

.home{
    min-height: 100vh;
    background: url(../images/wallpaperflare.com_wallpaper\ \(1\).jpg)
    no-repeat;
    background-size: cover;
    background-position: center;
    margin-top: -13.6rem;
    display: flex;
    align-items: center;

}


.home .content{
    max-width: 60rem;
}

.home .content h3{
    font-size: 4rem;
    color: #fff;
}
.home .content p{
    font-size: 2rem;
    font-weight: 300;
    line-height: 1.8;
    padding: 1rem 0;
    color: rgb(255, 255, 255);

}

.blogs .buttons {
    cursor: pointer;
    font-size: 2.5rem;
    margin: 2.5rem;
    margin-left: 8rem;
    background-color: white;
    border: 0.3rem solid black;
    padding: 1rem;
    border-radius: 3rem;
    text-align: center;
    position: relative;
    justify-content: space-between;
    max-width: fit-content;
    display: inline;
    
}

.menu .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 1.5rem;
}

.menu .box-container .box{
    padding: 3rem;
    background-color: #fff;
    border-radius: 3rem;
    background-color: #fff;
    min-height: 60rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}


.menu .box-container .box img {
    width: 100%;
    height: 30rem;
    object-fit: cover;
    
}

.menu .box-container .box .menu-category {
    font-size: 1.2rem;
    
}

.menu .box-container .box h3 {
    font-size: 3rem;
    padding: 1rem 0;
    
}

.menu .box-container .box .price {
    font-size: 2.5rem;
    padding: 0.5rem 0;
    
}

.menu .box-container .box .price span {
    font-size: 1.5rem;
    text-decoration: line-through;
    font-weight: 300;
    
}


/* <!--! Hizmetler Başlangıc --> */

.products .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 1.5rem;
}

.products .box-container .box{
    text-align: center;
    background-color: #fff;
    position: relative;
    padding: 3rem;
    background-color: #fff;
    border-radius: 3rem;
    background-color: #fff;
    min-height: 60rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 3rem;
    

}
.products .box-container .box .box-head{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    z-index: 10;
}

.products .box-container .box .box-head .title{
    font-size: 1.4rem;
}

.products .box-container .box .box-head .name{
    font-size: 4rem;
    font-weight: bold;
    text-align: start;
    overflow-wrap: anywhere;
    

}



.products .box-container img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    border-radius: 3rem;
    
}

.products .box-container .box-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 10;
    
}

.products .box-container .box-bottom .info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    

}

.products .box-container .box-bottom .info .price {
    font-size: 2.4rem;
    
    
}

.products .box-container .box-bottom .info .price .amount {
    font-size: 1.4rem;
}

.products .box-container .box-bottom .product-btn a{
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 4.5rem;
    height: 4.5rem;
    border: 0.2rem solid var(--main-color);
    
    
    

}

.products .box-container .box-bottom .product-btn a i{
    font-size: 1.6rem;
    color: var(--main-color);
}






.about .row {
    display: flex;
    border: var(--border);
    flex-wrap: wrap;
    column-gap: 2rem;
    text-align: top;
    background-color: #fff;
    position: relative;
    padding: 3rem;
    background-color: #fff;
    border-radius: 3rem;
    background-color: #fff;
    min-height: 30rem;
    
    justify-content: space-between;
    padding: 3rem;
    margin: 2rem;
    

}

.about .row .video {
    flex: 1 1 45rem;
    
}
.about .row .video video {
    width: 100%;
    border-radius: 3rem;
}

.about .row .image {
    flex: 1 1 45rem;
    
}
.about .row .image img {
    width: 100%;
    
    max-height: 34rem;
    border-radius: 3rem;    
}

.about .row .content {
    flex: 1 1 45rem;
}

.about .row .content h3 {
    font-size: 3rem;
    color:var(--black-color);
    padding-left: 1rem;
   
}
.about .row .content p {
    font-size: 1.6rem;
    color: var(--black-color);
    padding: 1rem;
    line-height: 1.8;
}

/* <!--! Yorumlar Başlangıc --> */

.review .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 2rem;
    
}

.review .box-container .box {
    border: var(--border);
    
    text-align: center;
    padding: 3rem 2rem;
    background-color:white;
    border-radius: 3rem;
    height: 40rem;
    width: 28rem;
    margin-left: 9rem;


}

.review .box-container .box p {
    font-size: 1.5rem;
    line-height: 1.8rem;
    padding: 1rem 0rem;
    

}

.review .box-container .box img {
    height: 20rem;
    overflow: hidden;
    width: 100%;
    border-top-left-radius: 2rem;
    border-top-right-radius: 2rem;





}

.review .box-container .box .user {
    height: 7rem;
    width: 7rem;
    border-radius: 50%;
    object-fit: cover;

}

.review .box-container .box h3 {
    padding: 1rem 0;
    font-size: 2rem;
    color: var(--main-color);
    
    
}

.review .box-container .box .stars i {
    font-size: 1.5rem;
    color: gold;
}


/* <!--! Bize Ulaşın Başlangıc --> */

.contact .row {
    display: flex;
    background-color: var(--black-color);
    flex-wrap: wrap;
    gap: 1rem;
}

.contact .row .map {
    flex: 1 1 45rem;
    width: 100%;
    object-fit: cover;
}

.contact .row form {
    flex: 1 1 45rem;
    padding: 5rem 2rem;
    text-align: center;
}

.contact .row form h3 {
text-transform: uppercase;
font-size: 3.5rem;
color: #fff;

}


.contact .row form .inputBox {
    display: flex;
    align-items: center;
    margin: 2rem 0;
    border: var(--border);

}

.contact .row form .inputBox i {
    color: #fff;
    font-size: 2rem;
    padding-left: 2rem;
    
    

}

.contact .row form .inputBox input {
    width: 100%;
    padding: 2rem;
    font-size: 1.7rem;
    color: #fff;
    text-transform: none;
    background-color: transparent;

}

.contact .row form .btn {
    color: var(--main-color);
    background-color: #fff;
    font-weight: bold;
}

/* <!--! Verdiğimiz Hizmetler Başlangıc --> */
.blogs .box-container {
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(3rem, 1fr)); 
    gap: 1.5rem;
    margin-bottom: 5rem;
    max-width: 80rem;
    max-height: 120rem;
    
}

.blogs .box-container .box {
    background-color: #fff;
    border-radius: 3rem;
    border: var(--border);
}

.project-slider {
    position: relative;
    max-width: 80rem;
    max-height: 120rem;
    margin: 0 auto;
}
.sliderr {
    display: flex;
    aspect-ratio: 16 / 9;
    overflow-x:hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    box-shadow: 0 1.5rem 3rem -0.75 hsla(0, 0%, 0%, 0.25);
    border-radius: 0.5rem;
}
.sliderr img {
    flex: 1 0 100%;
    scroll-snap-align: start;
    object-fit: contain;
    margin-left: 0;
    margin-right: 0;
    margin-top: 0;
    min-width: 100%;
    min-height: 100%;
    
}
.slider-nav {
    display: flex;
    column-gap: 1.3rem;
    position: absolute;
    margin-top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    
    
}
.slider-nav a {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background-color:#000000;
    opacity: 0.35;
    transition: opacity ease 250ms;
    margin-top: 3rem;
    
}
.slider-nav a:hover {
    opacity: 10;
}
/*
.blogs .box-container .box .image {
    height: 25rem;
    overflow: hidden;
    width: 100%;
    border-top-left-radius: 3rem;
    border-top-right-radius: 3rem;
}

.blogs .box-container .box .image img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.blogs .box-container .box:hover .image img {
    transform: scale(1.2);
    
}
*/
.blogs .box-container .box .content {
    padding: 3rem;
    margin-top: 6rem;
}

.blogs .box-container .box .content .title {
    line-height: 1.5rem;
    font-size: 2.4rem;
    font-weight: bold;
    padding-top: 15rem;
    
    
}

.blogs .box-container .box .content span {
    display: block;
    padding-top: 1.50rem;
    font-size: 2rem;
}

.blogs .box-container .box .content p {
    line-height: 1.8rem;
    font-size: 1.6rem;
    padding: 1rem 0;
    
}
/* Ortaklarımız Başlangıç */

#slider{
    height: 220px;
    /* border: var(--border); /* Bordersız yapalım */
    display: flex;
    justify-content: center;
    align-items: center;
}

 #slider .container{
    width: 1200;
    
    margin: auto;

    
}

.subcontainer{
    width: 75%;
    margin: auto;
    
}



.slide-img{
    width: 260px;
    height: 175px;
    border-radius: 5px;
    background-position: center;
    background-size: cover;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
}

.slide-img:hover{
    box-shadow: 0 0 0 200px black inset;
}

.slide-img a{
    opacity: 0;
    text-decoration: none;
    transform: scale(0);
    transition: 0.8s;
    font-size: 1.5rem;
    color: white;
}

.slide-img:hover a {
    opacity: 1;
    transform: scale(1);
}

.img-1{
    background-image: url(../images/VitrA_logo.png);
}

.img-2{
    background-image: url(../images/jotun.png);
}

.img-3{
    background-image: url(../images/hes.png);
}

.img-4{
    background-image: url(../images/pimas.png);
}

.img-5{
    background-image: url(../images/ferre.png);
}

.img-6{
    background-image: url(../images/vaillant.png);
}

.img-7{
    background-image: url(../images/toshiba.png);
}

.img-8{
    background-image: url(../images/legrand.png);
}

.img-9{
    background-image: url(../images/buderus.png);
}

.img-10{
    background-image: url(../images/dyo.png);
}

.img-11{
    background-image: url(../images/vestel.png);
}

.img-12{
    background-image: url(../images/viko.png);
}

.img-13{
    background-image: url(../images/rehau.png);
}
.img-14{
    background-image: url(../images/otis.png);
}
.img-15{
    background-image: url(../images/nexans.png);
}
.img-16{
    background-image: url(../images/franke.png);
}

.img-17{
    background-image: url(../images/beko.png);
}
.img-18{
    background-image: url(../images/hotpoint.png);
}

.img-19{
    background-image: url(../images/miele.png);
}

.img-20{
    background-image: url(../images/schneider.png);
}

@media(max-width:1600px){
    .container{
        width: 100%;
    }
}

@media(max-width:700px){
    .container{
        width: 400;
    }
    .subcontainer{
        width: 350;
    }
    .slider-wrapper{
        width: 300;
    }
}





/* <!--! Footer Başlangıc --> */
.footer {
    background-color: var(--black-color);
    text-align: center;
}
.footer .search {
    display: flex;
    justify-content: center;
}


.footer .search .search-input {
    width: 30rem;
}

.footer .search .btn {
    background-color: var(--main-color);
    padding-left: 1rem 2rem;
    margin-left: 1.2rem;
}

.footer .share {
    padding: 2rem 0;
    justify-content: center;
}

.footer .share a {
    width: 5rem;
    height: 5rem;
    line-height: 5rem;
    color: #fff;
    font-size: 2rem;
    border: var(--border);
    border-radius: 50%;
    margin: 0.3rem;
}

.footer .share a:hover {
    background-color: var(--main-color);
   
}

.footer .links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer .links a {
    background-color: var(--main-color);
    padding: 0.7rem 2rem;
    color: #fff;
    font-size: 1.3rem;
    border: var(--border);
    margin-left: 0.5rem;
    margin-right: 0.5rem;
}


.footer .links a:hover {
    background-color: var(--black-color);
    opacity: 0.7rem;
}

.footer .links a.active {
    background-color: var(--black-color);
}

.footer .credit {
    font-size: 2rem;
    color: #fff;
    font-weight: 300;
    padding-top: 1.5rem;
}

.footer .credit span {
    color: var(--main-color);
}

/* <!--! Responsive Başlangıc --> */

@media (max-width: 991px) {
    html {
        font-size: 55%;
    }

    .header{
        padding: 1.5rem 2rem;
    }

    .header .logo img {
        height: 8rem;
        width: 8rem;
    }

    section {
        padding: 2rem;
    }

    .products .box-container .box .box-head .name {
        font-size: 3.4rem;
    }
    

}

@media (max-width: 768px) {
    .header #menu-btn{
        display: inline-block;
    }
    .header .navbar {
        display: none;
        
        
    }
    .header .logo img {
        height: 9rem;
        width: 21rem;
    }

    .header .navbar.active {
        color: var(--black-color);
        display: block;
        margin: 1.5rem;
        padding: 0.5rem;
        font-size: 2rem;
        position: absolute;
        top: 96%;
        background-color: #fff;
        height: calc(50vh - 9rem);
        width: 30rem;
        box-shadow: 0px 20px 14px 0px rgb(0 0 0 / 75%);
     
        
    }

    .header .navbar a {
        color: var(--black-color);
        display: block;
        margin: 1.5rem;
        padding: 0.5rem;
        font-size: 2rem;
        

        
    }
}


@media (max-width: 576px) {
   html{
    font-size: 50%;
   } 

   .header #menu-btn {
    display: inline-block;
   }
   .header .logo img {
    height: 9rem;
    width: 21rem;
}
}

    








