/* GENERAL SETTINGS */



@font-face {
    font-family: 'Raleway';
    src: url('../fonts/Raleway-Regular.ttf');
}


body {
    background: #fff;
    color: #3f3f3f;
    font 14px / 28px arial;
    font-family: 'Raleway';
}


h1 {
    font-size: 45px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}


.sectionHeader {
    background: #45BA01;
    border-bottom: 6px solid #848079;
    height: 60px;
    color: #fff;
    display: inline-block;
    line-height: 60px;
    font-size: 24px;
    padding: 5px 40px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}


h3 {
    font-size: 16px;
    color: #000;
    font-weight: bold;
    transition: all .5s ease;
}



.sectionArea {
    padding: 80px 0;
}


.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:15px;
	left:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
}

.my-float{
	margin-top:16px;
}





/* GRID SETTINGS */




.container {
    width: 90%;
    margin: 0 auto;
    display: flex;
}


.featuresBody .container {
    justify-content: space-between;
}


.col3 {
    flex-grow: 1;
    width: 33.33%;
}




.engineBody .container {
    justify-content: space-between;
}


.col2 {
    flex-grow: 1;
    width: 50%;
    padding: 20px;
}





/* HOME SETTINGS */



header .logo {
    margin-right: auto;
}


header .logo img {
    display: block;
    height: 110px;
}


.menu li {
    float: left;
}


.menu li a {
    padding: 51px 10px;
    display: block;
    text-decoration: none;
    letter-spacing: 0.5px;
    color: #848079;
    font-size: 13px;
    transition: all .5s ease;
}



.menu li:hover a {
    background: #45BA01;
    color: #fff;
}


#mainSlider {
    height: 500px;
    background: url('../img/mainAnasayfa.jpg') center center no-repeat;
    background-size: cover;
}


.slider {
    width: 100%;
}


#mainCaption {
    height: 500px;
    background: rgba(0,0,0, .5);
}


.caption {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    color: #fff;
}




.featuresTop {
    text-align: center;
}



.item {
    padding: 10px 20px;
}


.zoom {
    position: relative;
    overflow: hidden;
    display: inline-block;
    width: 100%;
    vertical-align: top;
}


.zoom img {
    display: block;
    width: 100%;
    height: auto;
    transition: all .5s ease;
}


.item .itemText {
    text-align: center;
    padding: 5px;
    border: 1px solid #45BA01;
    line-height: 200%;
}



.item:hover .zoom img {
    transform: scale(1.25);
}


.item:hover h3 {
    color: #fff;
}



.item:hover .itemText {
    background: #45BA01;
    color: #fff;
    transition: all .5s ease;
}



.btnDetails {
    color: #45BA01;
    padding: 5px 10px;
    text-decoration: none;
    border: 1px solid #45BA01;
    transition: all .5s ease;
}



.item:hover .btnDetails {
    color: #fff;
    border: 1px solid #fff;
}



.itemText p {
    margin: 20px 0;
}








/* PARALLAX SETTINGS */

#parallax {
    background: linear-gradient(
                rgba(0,0,0,.7),
                rgba(0,0,0,.7)
                ), 
                url('../img/parallax.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    text-align: center;
}



#parallax p {
    color: #fff;
}








/* ENGINE SETTINGS */

.engineTop {
    text-align: center;
}


.engineContainer {
    position: relative;
    width: 100%;
}


.imageOver {
    display: block;
    width: 100%;
    height: auto;
}



.engineOverlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(68, 186, 1, .7);
    overflow: hidden;
    width: 0;
    height: 100%;
    transition: .5s ease;
}



.engineContainer:hover .engineOverlay {
    width: 100%;
}



.engineText {
   /* white-space: nowrap; */
    color: #fff;
    font-size: 13.5px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    line-height: 120%;
}


.engineTextt {
   /* white-space: nowrap; */
    color: #fff;
    font-size: 11px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    line-height: 120%;
}





.engineOverlay2 {
    position: absolute;
    bottom: 0;
    left: 100%;
    right: 0;
    background-color: rgba(68, 186, 1, .7);
    overflow: hidden;
    width: 0;
    height: 100%;
    transition: .5s ease;
}



.engineContainer:hover .engineOverlay2 {
    width: 100%;
    left: 0;
}







/* FOOTER SETTINGS */

footer {
    background: #45BA01;
    text-align: center;
}



.footerItem {
    padding: 20px;
}



.footerItem p {
    padding: 8px;
}



.footerItem img {
    height: 130px;
    opacity: .9;
}



footer h3 {
    color: #fff;
    font-size: 18px;
    letter-spacing: 1px;
    margin-bottom: 10px;
}



footer .fas {
    font-size: 30px;
    color: #fff;
    line-height: 170%;
    transition: .3s ease;
}


footer .fab {
    font-size: 30px;
    color: #01BABA;
    line-height: 170%;
    transition: .3s ease;
}



footer .fas:hover {
    color: #585551;
}




footer .fab:hover {
    color: #585551;
}


footer p {
    color: #fff;
    text-decoration: none;
    line-height: 130%;
}


.footerLinks a {
    text-decoration: none;
    color: #fff;
    letter-spacing: 2px;
    transition: .3s ease;
    line-height: 200%;
}


.footerLinks a:hover {
    text-decoration: underline;
    color: #848079;
}



.socialLinks li {
    display: inline-block;
    width: 50px;
    height: 50px;
}

.socialLinks i {
    color: #fff;
}






/* CARS SETTINGS */


#carsSlider {
    height: 250px;
    background: url('../img/slideImage2.jpg') center center no-repeat;
    background-size: cover;
}



#carsCaption {
    height: 250px;
    background: rgba(0,0,0, .6);
}






/* INSPECT SETTINGS */

#inspect {
    background-color: #f5f5f5;
}



.inspectTop {
    text-align: center;
}


.inspectTop p {
    margin-bottom: 10px;
}



.inspectBody .col2 {
    display: flex;
}



.inspectImage {
    width: 40%;
}



.inspectImage img {
    width: 100%;
    height: auto;
}



.inspectText {
    width: 60%;
    padding-left: 10px;
    line-height: 120%;
    font-size: 14px;
}



.date {
    color: #333;
    font-size: 12px;
    font-style: italic;
}


h4 {
    color: #45BA01;
    font-size: 14px;
    font-weight: bold;
    
}




.inspectText a {
    float: right;
    text-decoration: none;
    color: #45BA01;
}



.inspectText a:hover {
    text-decoration: underline;
}







/* PROJECTX SETTINGS */


.projectXTop {
    text-align: center;
}


.projectXTop p {
    margin-bottom: 10px;
}



#projectX .containerFluid {
    height: 500px;
    background: url('../img/projectX.jpg') center center no-repeat;
    background-size: cover;
}




.captionPX {
    display: flex;
    background: rgba(0,0,0, .6);
    width: 100%;
    height: 500px;
}





.projectXInfo {
    position: relative;
    top: 50%;
    left: 50%;
    margin-left: 5%;
    padding-right: 5%;
    transform: translate(-50%, -50%);
}



.projectXTitle {
    font-size: 24px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}




.projectXBTN {
    background-color: #45BA01;
    cursor: pointer;
    color: #fff;
    padding: 20px 40px;
    border: none;
    margin-top: 20px;
    transition: all .5s ease;
}




.projectXBTN:hover {
    background-color: #fff;
    color: #45BA01;
}



.projectXText {
    color: #fff;
    line-height: 150%;
}


.projectXHighlight {
    display: inline-block;
    background-color: #45BA01;
    padding: 30px;
}




.containerFluid .col2 {
    padding: 0;
}



.projectXDetail li {
    color: #fff;
    line-height: 150%;
}







/* ABOUT SETTINGS */


#aboutSlider {
    height: 250px;
    background: url('../img/slideImage3.jpg') center center no-repeat;
    background-size: cover;
}



#aboutCaption {
    height: 250px;
    background: rgba(0,0,0, .5);
}





/* OUR HISTORY SETTINGS */

#ourHistory {
    background-color: #f5f5f5;
}



.ourHistoryTop {
    text-align: center;
}



.ourHistoryBody .containerFluid {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}




.ourHistoryBody .col2 {
    display: flex;
}



.ourHistoryDate {
    flex: 1;
    text-align: center;
    background-color: #45BA01;
    color: #fff;
}


.ourHistoryDate p {
    font-size: 15px;
    letter-spacing: 1px;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


.ourHistoryImage {
    flex: 2;
}


.ourHistoryImage img {
    width: 100%;
    height: 100%;
}




.ourHistoryText {
    flex: 3;
    margin-left: 10px;
    line-height: 150%;
}


.ourHistoryText p {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}





/* TEAM SETTINGS */

.teamTop {
    text-align: center;
}



.teamBody .containerFluid {
    display: flex;
    width: 100%;
}



.teamMember {
    position: relative;
    width: 100%;
}



.teamMemberImg {
    display: block;
    width: 100%;
    height: 100%;
}



.teamMemberOverlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 1;
    background-color: #45BA01;
    transition: .5s ease;
}


.teamMember:hover .teamMemberOverlay {
    opacity: 0;
}



.teamMember:hover .teamMemberInfo {
    color: #fff;
    font-size: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.teamTitle {
    color: #fff;
    font-size: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}




.teamMemberInfo {
    color: #fff;
    background-color: rgba(68, 186, 1, .7);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: .5s ease;
    padding: 20px;
    text-align: center;
    line-height: 150%;
}



.memberSocialLinks {
    text-align: center;
}


.memberSocialLinks li {
    display: inline;
    margin-left: 5px;
    margin-right: 5px;
}




.memberSocialLinks .fas, .fab {
    color: #fff;
}






/* CONTACT SETTINGS */


#contactSlider {
    height: 250px;
    background: url('../img/slideImage4.jpg') center center no-repeat;
    background-size: cover;
}



#contactCaption {
    height: 250px;
    background: rgba(0,0,0, .7);
}





/* GALLERY SETTINGS */

#gallery {
    background: #f5f5f5;
}



.galleryTop {
    text-align: center;
}


.galleryTop p {
    margin-bottom: 10px;
}



.gallerySlider {
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
}



.gallerySliderItem {
    width: 300%;
    position: relative;
    left: 0;
    animation: slideAnimation 30s infinite;
}


.gallerySliderItem img {
    width: 33.33%;
    float: left;
    height: auto;
}




@keyframes slideAnimation {
    0% {left: 0; }
    25% {left: -100%; }
    50% {left: -200%; }
    75% {left: -100%; }
    100% {left: 0; }
}




.contactTop {
    text-align: center;
}



.wrapper {
    margin: 0 auto;
    width: 100%;
}


.contactForm {
    margin: 0 auto;
    width: 60%;
}


.formItem {
    margin-bottom: 10px;
    width: 100%;
}



.formShape {
    color: #fff;
    float: left;
    background: #45BA01;
    padding: 8px;
    width: 8%;
    text-align: center;
}




.formField {
    color: #fff;
    background: #45BA01;
    border: none;
    padding: 15.5px;
    width: 92%;
    display: block;
    font-size: 14px;
}





.formBtn {
    display: block;
    border: none;
    background: #45BA01;
    color: #fff;
    padding: 12px 25px;
    cursor: pointer;
    text-decoration: none;
    font-weight: bold;
}



.formBtn:hover {
    background: #8FD169;
}



/* CIFT CIKISLI SETTINGS */


#ciftcikisliSlider {
    height: 250px;
    background: url('../img/slideImage7.jpg') center center no-repeat;
    background-size: cover;
}



/* NASIL IZLERIM SETTINGS */


#nizlerimSlider {
    height: 250px;
    background: url('../img/slideImage5.jpg') center center no-repeat;
    background-size: cover;
}




/* ACIKLAMA SETTINGS */


#aciklamaSlider {
    height: 250px;
    background: url('../img/slideImage6.jpg') center center no-repeat;
    background-size: cover;
}




/* BUTTON SETTINGS */

.button1 {
    background-color: #fff;
    border: 1px solid #45BA01;
    color: #45BA01;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: block;
    font-size: 16px;
    cursor: pointer;
    width: 280px;
    margin-left: auto;
    margin-right: auto;
    line-height: 150%;
    margin-bottom: 15px;
    
}


.button1:hover {
    background-color: #45BA01;
    color: #fff;
    transition: .5s ease;
    
}



.button2 {
    background-color: #fff;
    border: 1px solid #45BA01;
    color: #45BA01;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: block;
    font-size: 16px;
    cursor: pointer;
    width: 280px;
    margin-left: auto;
    margin-right: auto;
    line-height: 150%;
    margin-bottom: 15px;
    
}


.button2:hover {
    background-color: #45BA01;
    color: #fff;
    transition: .5s ease;
    
}


.button3 {
    background-color: #fff;
    border: 1px solid #45BA01;
    color: #45BA01;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: block;
    font-size: 16px;
    cursor: pointer;
    width: 280px;
    margin-left: auto;
    margin-right: auto;
    line-height: 150%;
    margin-bottom: 80px;
    
}


.button3:hover {
    background-color: #45BA01;
    color: #fff;
    transition: .5s ease;
    
}





/* MOBIL MENU SETTINGS */

ul.mobmen {
    list-style-type: none;
    margin-top: 40px;
    padding: 0px;
    overflow: hidden;
    background-color: #fff;
}

ul.mobmen li {
    float: left;
}

ul.mobmen li a {
    display: inline-block;
    color: #45BA01;
    text-align: center;
    padding: 14px 10px;
    text-decoration: none;
    transition: .5s ease;
    font-size: 14px;
}

ul.mobmen li a:hover {
    background-color: #45BA01;
    color: #fff;
}

ul.mobmen li.icon {
    display: none;
}






/* MEDIA QUERIES */
 
 
@media screen and (max-width:1180px) {
  ul.mobmen.responsive {position: relative;}
  ul.mobmen.responsive li.icon {
    position: absolute;
    right: 0;
    top: 0;
  }
    
  ul.mobmen.responsive li {
    float: none;
    display: inline;
  }
    
  ul.mobmen.responsive li a {
    display: block;
    text-align: left;
  }
    
  header .container {
        flex-direction: column;
        justify-content: center;
        align-items: center;
  }
    
  header .logo {
        margin: 0 auto;
  }
    
  ul.mobmen {
    margin-top: 5px;
      margin-bottom: 15px;
  }
    
    
  .engineTextt {
    font-size: 10px;
  }
}



@media screen and (max-width: 960px)  {  
    
    .menu li a {
    font-size: 11px;
    }

    
    .caption h1 {
        font-size: 32px;
        letter-spacing: 2px;
    }
    
    
    .caption p {
        font-size: 15px;
        letter-spacing: 0;
    }
    
    
    .engineTextt {
        font-size: 9px;
    }
    
    
    footer .fas, .fab {   
        font-size: 24px;
    }
    
    
    footer h3 {   
        font-size: 16px;
    }
    
    
    .inspectBody .container {   
        flex-direction: column;
    }
    
    
    .inspectBody .container .col2 {   
        width: 100%;
    }
    
    
    .ourHistoryBody .col2 {   
        flex-direction: column;
        width: 100%;
        margin-left: 10px;
        margin-right: 10px;
    }    
    
    
}


@media screen and (max-width: 925px) {
    
    ul.mobmen li:not(:first-child) {
        display: none;
    }
    
    ul.mobmen li.icon {
        float: right;
        display: inline-block;
    }
    
    ul.mobmen.responsive {
        position: relative;
    }
    
    ul.mobmen.responsive li.icon {
        position: absolute;
        right: 0;
        top: 0;
    }
    
    ul.mobmen.responsive li {
        float: none;
        display: inline;
    }
    
    ul.mobmen.responsive li a {
        display: block;
        text-align: left;
    }
    
    ul.mobmen li a {
    font-size: 16px;
    }
        
}





@media screen and (max-width: 720px)  {  
    
    header .container {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    
    .menu li a {
    font-size: 8.5px;
}
    
    
    header .logo {
        margin: 0 auto;
    }
    
    
    
    .caption h1 {
        font-size: 26px;
        letter-spacing: 2px;
    }
    
    .caption p {
        font-size: 12px;
        letter-spacing: 0;
    }
    
    
    .featuresBody .container {
        flex-direction: column;
    }
    
    
    .featuresBody .container .col3 {
        width: 80%;
        margin: 0 auto;
    }
    
    
    
    
    .engineBody .container {
        flex-direction: column;
    }
    
    
    .engineBody .container .col2 {
        width: 80%;
        padding-left: 0;
        padding-right: 0;
        margin: 0 auto;
    }
    
    
    .engineBody .container .engineText {
        font-size: 12px;
    }
    
    .engineTextt {
    font-size: 10px;
    }
    
    
    footer .container {
        flex-direction: column;
    }
    
    
    
    footer .container .col3 {
        width: 100%;
    }
    
    
    .sectionHeader {
        font-size: 24px;
    }
    
    
    .inspectBody .container .col2 {
        padding-left: 0;
        padding-right: 0;
    }
    
    
    .teamMemberInfo {
        font-size: 14px;
        padding: 10px;
    }
    
    
    .teamTitle {
        font-size: 14px;
    }
    
    
    .formShape {
        display: none;
    }
    
}





@media screen and (max-width: 540px)  {  
    
    .caption h1 {
        font-size: 20px;
        letter-spacing: 0;
    }
    
    
    .caption p {
        font-size: 9px;
        letter-spacing: 0;
    }
    
    
    .menu li a {
        font-size: 8.2px;
        letter-spacing: 0;
        padding: 51px 2.5px;
    }
    
    
    .featuresBody .container .col3 {
        width: 100%;
        margin: 0 auto;
    }
    
    
    
    .engineBody .container .col2 {
        width: 100%;
    }
    
    
    .sectionHeader {
        font-size: 20px;
    }
    
    
    .contactForm {
        width: 80%;
    }
 
    
    .engineTextt {
    font-size: 7px;
    }
    
    
    .projectXTitle {
        font-size: 16px;
        letter-spacing: 1px;
    }


    .projectXText {
        font-size: 13px;
        letter-spacing: 0;
    }
    
}

