@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
:root {
    --main-color: #e84242 ;
    --black-color : #0e0e0e ;
    --border : 0.1rem solid 
    0.1rem solid  rgba(255,255,255,0.4);
}

* {
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none;
    text-transform: capitalize;
    transition: 0.2s ease;
}


/* !Base html Codes*/
html{
    font-size: 62.5%;
    overflow-x: hidden  ;
    scroll-padding-top: 9rem ;
    scroll-behavior: smooth;
}

html::-webkit-scrollbar{
    background-color: #fff;
    width: 0.8rem;
}

html::-webkit-scrollbar-thumb{
    background-color:var(--black-color);
    border-radius: 3rem;
}


body{
    background-color:var(--main-color)

}
section{
    padding: 3.5rem 7%;
}

.btn{
    margin-top: 1rem;
    display: inline-block;
    padding: 2rem 3.75rem;
    border-radius: 30rem;
    font-size: 1.8rem;
    color: #ccc;
    background-color: var(--black-color);
}
.btn:hover {
    opacity: 0.9;
    color: var(--main-color);
}

.heading{
    color:#fff  ;
    text-transform: uppercase;
    font-size: 3.5rem;
    margin-bottom: 3.5rem;
    border-bottom: 0.1rem solid #fff ;
    
    
}


/*! Header Start */
.logo img{
    height: 7rem;
    }
.header {
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 7%;
    margin: 2rem 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;
    font-size: 1.6rem;
    color: var(--black-color);
    border-bottom: 0.1rem solid transparent;

}
.header .navbar .active,
.header .navbar a:hover {
    border-color: var(--main-color);
    padding-bottom: 0.5rem;
}

.header .buttons button{
    cursor: pointer;
    font-size: 2.5rem;
    margin-left: 2rem;
    background-color: transparent;

}

#menu-btn {
    display: none;
}



/*! Header end */



/*! Home Start */
.home{
    min-height: 100vh;
    background: url(/images/home.jpg)
    no-repeat;
    background-size: cover;
    background-position: center;
    margin-top: -14.5rem;
    display: flex;
    align-items: center;
    
}
.content{
    max-width: 60rem;
    
}
.content h2 {
    font-size: 6rem;
    color: white;
}
.content p{
    font-size: 2rem;
    font-weight: 300;
    line-height: 1.8;
    padding: 1rem 0;
    color: #fff;
}

/*! Home end */


/*! Hizmetlerimiz Start */

.hizmet .box-container {

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem,1fr));
    gap: 4.5rem;

}

.hizmet .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;
    justify-content: space-between;

}

.hizmet .box-container .box img{
    width: 100%;
    object-fit: cover;
}
.hizmet .box-container .box .box-head h3{
    font-size: 2.5rem;
}
.hizmet .box-container .box  .hizmet-p{
    font-size: 1.6rem;
    
}

/*! Hizmetlerimiz End */



/*! Haberler Start */


.haber .box-container {

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem,1fr));
    gap: 4.5rem;

}

.haber .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;
    justify-content: space-between;

}

.haber .box-container .box img{
    width: 100%;
    object-fit: cover;
}
.haber .box-container .box .box-head h3{
    font-size: 2.5rem;
}
.haber .box-container .box  .hizmet-p{
    font-size: 1.6rem;
    
}


/*! Haberler End */

/*! Hakkımızda Start */

.about .row {
    display:flex ;
    flex-wrap: wrap;
    column-gap: 2rem;
}


.about .row .image{
    flex: 1 1 45rem;
}

.about .row .img{
    width: 100%;
}

.about .row .content h3 {
    font-size: 2rem;
}

.about .row .content span{
     color: white;
    font-size: 1.2rem;
}


/*! Hakkımızda End */

/*! Markalar Start */

.marka .box-container .box {

    border: var(--border);
    padding: 3rem 2rem;
    background-color: #fff;
    border-radius: 3rem;
    
}

.marka .box-container .box img:hover {
    border-color: var(--main-color);
    padding-bottom: 0.3rem;
}

/*! Markalar End */

/*! Contact Start */

.contact .row {
    display: flex;
    gap: 2rem ;
    flex-wrap: wrap;
}

.contact .row .map{
    width: 100%;
    height: 50rem;
    border-radius: 6rem;
}



.contact .row h1{
    color:#fff;
    font-size: 2rem;

}

/*! Contact End */


/*! Blogs Start*/

.blogs .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(30rem,1fr));
    gap: 1.5rem;
}


.blogs .box-container .box {
    background-color: #fff;
    border-radius: 3rem;
}

.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: 90%;
    width: 100%;
}
    
.blogs .box-container .box:hover .image img{
    transform: scale(1.2);
}

.blogs .box-container .box .content{
    padding: 2rem;
}
.blogs .box-container .box .content span{
    padding-top: 1rem;
    display: block;
    font-size: 2rem;
}
.blogs .box-container .box .content .title{
    line-height: 1.5;
    font-size: 2.5rem;
    color: var(--black-color);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-style:italic ;
}
.blogs .box-container .box .content p{
    color:#ccc;
    font-size: 1.6rem;
    padding: 1rem 0;
}
.blogs .box-container .box .content span{
    color:#5200cc ;
    font-style:italic
}


.blogs .box-container .box .content .blog2 {
    font-size: 1.7rem;
    color: #0e0e0e;
    text-align: justify;
    font-style: italic;
}






/*! Blogs End */



/*! Sertifikalarımız Start*/
.sertifika {
    flex-wrap: wrap;
    column-gap: 2rem;
}


.sertifika .imgser img{
    flex: 1 1 30rem;
    width: 30%;
    margin: 2rem;
}

/*! Sertifikalarımız End */

/*! Galeri Start */
            



/*! Galeri End */



/*! Footer Start */

.footer{
    background-color: var(--black-color);
    text-align: center;
}

.footer .share {
    padding: 2rem 0;
}
.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;
    border: var(--border);
}

.footer .links a{
    background-color: var(--main-color);
    padding: 0.7rem 2rem;
    color: #fff;
    font-size: 2rem; 
    border: var(--border);
}
.footer .links a:hover{
    border: var(--border);
    border-color: aqua;
    background-color: var(--black-color);
    opacity: 0.7;
    
}
.footer .links a.active{
    background-color: var(--black-color);
}

.footer .iletişim {
    text-align: center
}

.footer .iletişim h3{
    color: var(--main-color);
    font-size: 1.8rem;
    
}

.footer .iletişim span {
    color: #fff;
    font-size: 1.5rem;
    padding-top: 0.2rem;
}

.footer .iletişim a{
    color:var(--main-color); 
    
}

.footer .credit{
    font-size: 2rem;
    color: #fff;
    font-weight: 300;
    padding-top: 1.5rem;
}
.footer .credit span a{
    color: #fff;
}
.footer .credit span a:hover{
  color: var(--main-color);
}

.footer .iletişim p{
    text-transform: lowercase;
}


/*! Footer End */


/*! hizmetlerimiz.html Start */
.heading1 {
    color:#fff  ;
    text-transform: uppercase;
    font-size: 3.5rem;
    margin-bottom:1rem;
    border-bottom: 0.1rem solid #fff ;
    text-align: center;
}

/*! hizmetlerimiz.html End */ 


/*! hakkımızda.html start */ 

.about1 .content {
font-size: 2rem; 
display:inline
}

.about1 .content span{
    color: #fff;
    font-size: 1.5rem;
    text-align: right;
}

.about1 .row {
    height: 3rem;
    border: var(--border);
    display: grid;
}   
 .about .row .img{
    display: grid;
 }

/*! hakkımızda.html End */ 



/*! responsive start */ 
@media (max-width:991px){

    html {
        font-size: 55%;
    }

    .header {

        padding: 1.5rem 2rem;
    }

    .header .logo img{
        height: 7rem;
    }

    section {
        padding: 2rem;
    }
    
 }
   
 @media (max-width:991px) {

    #menu-btn {
        display: inline-block;
    }

    .header #menu-btn{
        display: inline-block;
    }

    .header .navbar {
        position: absolute;
        top: 95%;
        background-color: #fff;
        height: calc(100vh-9rem);
        width: 30rem;
        box-shadow: 0px 20px 14px 0px rgba(0 0 0 /75%);
        right: -100%;
    }
    .header .navbar.active {
        right: 3rem;
    }

    .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;
    }




 }


/*! responsive End */ 




