@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');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    scroll-behavior: smooth;
}

:root{
    --red-color: #E31E25;
    --purple-color: #832D85;
    --orange-color: #F2AE2E;
    --white-color: #fff;
    --black-color: #000;
    --grey-color: #dcdcdc;
    --grey2-color: #494A4E;
    --grey3-color: #2E2E2E;
    --white2-color: #F1F1F1;
    --light-grey-color: #F6F6F6;
}

body{
    position: relative;
    left: 0;
    transition: left 0.5s ease;
    width: 100%;
}

/* ! -----------------------------------------------------  header  -------------------------------------------------- */

.header{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 120px;
    background-color: transparent;
    z-index: 100;
    transition: all ease 0.5s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header.fixed{
    position: fixed;
    top: 0;
    background-color: var(--white-color);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    height: 100px;
    padding: 0 120px;
}

.header_index .menu_bar{
    color: var(--white-color) !important;
    transition: all ease 0.5s;
}

.header_index .menu_bar::before{
    background-color: var(--white-color);
}

.header_index .menu_bar::after{
    background-color: var(--white-color);
}

.header_index .menu_bar .bar{
    background-color: var(--white-color);
}

.header_index.fixed .navbar .menu_ul{
    margin-right: 0;
}

.header_index.fixed .logo{
    opacity: 1 !important;
}

.header.fixed .menu_ul li a{
    color: var(--black-color);
}

.header.fixed .menu_bar{
    color: var(--black-color);
}

.header.fixed .menu_bar .bar{
    background-color: var(--black-color);
}

.header.fixed .menu_bar::before{
    background-color: var(--black-color);
}

.header.fixed .menu_bar::after{
    background-color: var(--black-color);
}

.header_index.fixed .navbar .logo p{
    color: var(--black-color);
}



.header .navbar{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.header .navbar .logo{
    width: 200px;
    height: 90px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    opacity: 0;
    transition: all ease 0.5s;
}

.header .navbar .logo a{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    margin: 0;
}

.header .navbar .logo img{
    width: 100%;
    height: 100%;
}

.header .navbar .logo p{
    color: var(--black-color);
    font-size: .7rem;
    margin: 0;
}

.header .navbar .menu_ul{
    display: flex;
    list-style: none;
    gap: 4rem;
    align-items: center;
    justify-content: center;
    margin: 0;
    margin-right: 200px;
}

.header .navbar .menu_ul a{
    color: var(--white-color);
    text-decoration: none;
    font-weight: 500;
    transition: all ease 0.5s;
    position: relative;
}

.header2 .menu_ul{
    margin-right: 0 !important;
}

.header2 .menu_ul li a{
    color: var(--black-color) !important;
}

.header2 .logo{
    opacity: 1 !important;
}

.header2 .menu_ul a:hover::before{
    border-color: var(--black-color) !important;
}

.header .menu_ul li a::before{
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    border: 0px solid var(--white-color);
    transition: all ease 0.5s;
}

.header .menu_ul li a:hover::before{
    width: 70%;
    border: 1px solid var(--white-color);
}

.header.fixed .menu_ul li a:hover::before{
    border-color: var(--black-color);
}


/* ----------------------------------- preloader ---------------------------- */

.pre_loader{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #E1E1E1;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: opacity 0.5s ease;
}

.pre_loader.hidden{
    opacity: 0;
    visibility: hidden;
}

.pre_loader img{
    width: 25%;
}

.pre_loader p{
    color: var(--black-color);
    font-family: "Great Vibes", cursive;
    margin-top: -120px;
    font-size: 2rem;
}

/* ------------------------- menu bar ------------------------------ */

.menu_bar {
    cursor: pointer;
    width: 25px;
    height: 15px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
}

.menu_bar .bar {
    width: 100%;
    height: 2px;
    background-color: var(--black-color);
    transition: opacity 0.3s ease;
}

.menu_bar::before,
.menu_bar::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--black-color);
    transition: transform 0.3s ease;
}

.menu_bar::before {
    transform: translateY(-6px);
}

.menu_bar::after {
    transform: translateY(6px);
}


.menu_bar.active .bar {
    opacity: 0;
}

.menu_bar.active::before {
    transform: rotate(45deg);
}

.menu_bar.active::after {
    transform: rotate(-45deg);
}




.mobile_menu{
    position: fixed;
    width: 350px;
    top: 0;
    right: -350px;
    height: 100vh;
    padding: 2rem;
    z-index: 999;
    background-color: var(--white-color);
    gap: 4rem;
    display: flex;
    align-items: start;
    flex-direction: column;
    background-color: var(--grey2-color);
    transition: all ease 0.5s;
}

.mobile_menu .exit2{
    display: none;
}

.mobile_menu .logo{
    width: 70%;
    height: 70px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.mobile_menu .logo img{
    width: 100%;
    height: 100%;
}

.mobile_menu .logo p{
    font-size: 0.7rem;
    color: var(--white-color);
}

.mobile_menu ul{
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 1rem;
    list-style-type: none;
    padding: 0;
}

.mobile_menu ul a{
    text-decoration: none;
    color: var(--white-color);
    opacity: 0.8;
    position: relative;
}

.mobile_menu ul a::before{
    content: "";
    position: absolute;
    width: 0;
    border: 1px solid var(--white-color);
    bottom: 0;
    right: 0;
    transition: all ease 0.5s;
    opacity: 0;
}

.mobile_menu ul a:hover{
    opacity: 1;
}

.mobile_menu ul a:hover::before{
    width: 100%;
    left: 0;
    right: auto;
    opacity: 1;
}

.mobile_menu .box{
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    color: var(--white-color);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0 2rem;
    padding-bottom: 1rem;
}

.mobile_menu .box .social i{
    color: var(--white-color);
}

.mobile_menu .box .social{
    display: flex;
    list-style: none;
    gap: 0.5rem;
}

.mobile_menu .box .social a{
    text-decoration: none;
}

.mobile_menu .box .social li {
    list-style-type: none;
    font-size: 1.3rem;
}



/* ! -----------------------------------------  banner  --------------------------------------------- */

.banner{
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: 2;
}

.banner .carousel{
    width: 100%;
    height: 100%;
}

.banner .carousel-inner{
    width: 100%;
    height: 100%;
}

.banner .carousel-item{
    position: relative;
    z-index: 30;
    width: 100%;
    height: 100%;
}

.banner .carousel-item::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: var(--black-color);
    opacity: 0.4;
    z-index: 22;
}

.banner .carousel-item img{
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease;
}

.banner .carousel-item.active img{
    transform: scale(1.05);
}

.banner .carousel-item .text{
    position: absolute;
    top: 36%;
    right: 20%;
    z-index: 33 !important;
    color: var(--white-color);
}

.banner .carousel-item .text h1{
    font-size: 5rem;
    font-weight: 600;
    color: var(--white-color);
}

.banner .carousel-item .text h2{
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--white-color);
}

.banner .carousel-item .text .line{
    width: 100%;
    border: 2px solid var(--white-color);
    margin-top: -5px;
}

.banner .carousel-item .text .btn{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: end;
    padding: 0;
    cursor: default;
    border: none;
}

.banner .carousel-item .text a{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    width: 200px;
    color: var(--white-color);
    text-decoration: none;
    height: 50px;
    border: 1px solid var(--white-color);
    transition: all ease 0.5s;
    font-size: clamp(0.75rem, 0.6574rem + 0.4938vw, 1.25rem);
}

.banner .carousel-item .text a:hover{
    width: 220px;
    background-color: var(--white-color);
    color: var(--black-color);
}

.banner .carousel-control-prev{
    left: 8%;
    width: 60px;
    top: 75%;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
}

.carousel-control-next{
    left: 8%;
    top: 82%;
    width: 60px;
    height: 60px;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-control-next-icon, .carousel-control-prev-icon{
    border: 1px solid var(--grey-color);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    background-size: 60%;
    z-index: 400;
}

.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
    border-color: var(--red-color);
}


/* -----------------------------------------------  banner_left  ------------------------------------------ */

.banner .banner_left{
    border-left: 1px solid var(--grey-color);
    position: absolute;
    top: 0;
    right: 0;
    width: 250px;
    height: 100%;
    z-index: 3;
    padding: 50px 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.banner .banner_left .left_logo{
    width: 200px;
    height: 50px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner .banner_left .left_logo img{
    width: 100%;
    height: 100%;
}

.banner .banner_left p{
    margin: 0;
    transform: rotate(-90deg);
    color: var(--white-color);
    font-size: 1.3rem;
    margin-top: -200px;
    width: 350px;
}

.banner .banner_left .social{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.banner .banner_left .social a{
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 50%;
    transition: all ease 0.5s;
}

.banner .banner_left .social a i{
    color: var(--white-color);
    font-size: 1.2rem;
    transition: all ease 0.5s;
    margin: 0;
}

.banner .banner_left .social a:hover{
    background-color: var(--white-color);
}

.banner .banner_left .social a:hover i{
    color: var(--black-color);
}

/* --------------------- fixed_contact --------------------------- */

.fixed_contact{
    position: fixed;
    bottom: 3%;
    left: 2%;
    z-index: 90;
    background-color: var(--white-color);
    padding: 1rem;
    width: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    border: 2px solid var(--grey-color);
}

.fixed_contact p{
    text-align: center;
    margin: 0;
}

.fixed_contact a{
    width: 50px;
    height: 50px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.fixed_contact a img{
    width: 100%;
    height: 100%;
}

.fixed_contact a i{
    font-size: 2rem;
    color: var(--black-color);
}


/* ! -------------------------------------  page top  ----------------------------------------------- */

.page_top{
    height: 350px;
    background: url(/content/images/page_top.jpeg) center no-repeat;
    background-size: cover;
    background-position: bottom;
    position: relative;
    top: 135px;
    margin-bottom: 160px;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 5rem;
}

.page_top h2{
    width: 10%;
    border: 1px solid var(--white-color);
    position: relative;
}

.page_top .text{
    position: relative;
}

.page_top h3{
    font-size: clamp(2.8125rem, 2.6389rem + 0.9259vw, 3.75rem);
    color: var(--white-color);
    color: transparent;
    -webkit-text-stroke: 1px white;
    opacity: 0.6;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-top: -10px;
    width: 160%;
}

.page_top h1{
    color: var(--white-color);
    position: relative;
    font-size: clamp(2rem, 1.9074rem + 0.4938vw, 2.5rem);
    font-weight: 600;
}

.page_top::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--black-color);
    opacity: 0.2;
}

/* ------------------------- up ----------------------------- */

.up{
    position: fixed;
    bottom: 3%;
    right: 3%;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 30;
    background-color: var(--red-color);
    color: var(--white-color);
    cursor: pointer;
    transform: scale(0);
    transition: all ease 0.5s;
    opacity: 0.8;
}

.up i{
    color: var(--white-color);
    font-size: 2rem;
}

.up:hover{
    transform: translateY(-5px);
    opacity: 1;
}


/* ! ------------------------------------- content  -------------------------------------- */

.content{
    padding: 170px 250px 0 250px;
}

.content2{
    background-color: var(--grey3-color);
    margin-bottom: 170px;
}


/*! ------------------------------------------------- home ---------------------------------------------- */

.full_video{
    position: fixed;
    z-index: 200;
    top: 0;
    left: -200%;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all ease 0.5s;
}

.full_video .exit{
    position: absolute;
    top: 0;
    right: 0;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--red-color);
    cursor: pointer;
}

.full_video .exit i{
    font-size: 2rem;
    color: var(--white-color);
    transition: all ease 0.5s;
}

.full_video .exit i:hover{
    transform: rotate(360deg);
}

.home .home_video{
    position: relative;
    display: flex;
    justify-content: space-between;
    height: 500px;
}

.home .home_video .text{
    width: 50%;
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background-color: var(--light-grey-color);
}

.home .home_video .text h2{
    font-size: clamp(2.0625rem, 1.9236rem + 0.7407vw, 2.8125rem);
    font-weight: 700;
}

.home .home_video .text h2 span{
    color: var(--red-color);
}

.home .home_video .text p{
    opacity: 0.7;
    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
}

.home .home_video .text a{
    width: 200px;
    height: 50px;
    background-color: var(--red-color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--white-color);
    font-weight: 600;
    transition: all ease 0.5s;
    margin-top: 50px;
    position: relative;
    z-index: 10;
}

.home .home_video .text a:hover{
    background-color: transparent;
    color: var(--red-color);
    border: 1px solid var(--red-color);
    width: 220px;
}

.home .home_video .video{
    width: 50%;
    height: 450px;
    background: url(/content/images/foto2.jpeg) center no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    z-index: 10;
}

.home .home_video .video::before{
    content: "";
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
}

.home .home_video .video i{
    font-size: 3rem;
    color: var(--white-color);
    z-index: 3;
}

/* ---------------------- features ------------------------- */

.home .features{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--white-color);
}

.home .features .box{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0rem;
    width: 100%;
}

.home .features .box i{
    font-size: 3rem;
}

.home .features .box p{
    font-size: 20px;
    text-align: center;
}

.home .content2{
    z-index: 3 !important;
    position: relative;
    margin-top: -115px;
    padding-bottom: 40px;
}

/* ------------------- we_jobs ------------------------ */

.home .we_jobs{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 170px 0;
}

.home .we_jobs h1{
    color: var(--white-color);
    font-size: clamp(1.875rem, 1.7593rem + 0.6173vw, 2.5rem);
    font-weight: 600;
}

.home .we_jobs h1 span{
    color: var(--red-color);
}

.home .we_jobs p{
    color: var(--white-color);
}

.home .we_jobs .owl-carousel{
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 3rem;
    position: relative;
}

.home .we_jobs .owl-carousel .item{
    position: relative;
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all ease 0.5s;
}

.home .we_jobs .owl-carousel .item img{
    width: 60%;
    height: 65%;
    filter: grayscale(100%);
    transition: all ease 0.5s;
}

.home .we_jobs .owl-carousel .item:hover img{
    filter: grayscale(0);
}

/* --------------------------- home car  -------------------- */

.home .car{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.home .car h1{
    color: var(--black-color);
    font-size: clamp(2.1875rem, 2.0139rem + 0.9259vw, 3.125rem);
    font-weight: 700;
}

.home .car h1 span{
    color: var(--red-color);
}

.home .car p{
    margin: 0;
    font-size: clamp(0.75rem, 0.6574rem + 0.4938vw, 1.25rem);
}

.home .car .main_box{
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.home .car .main_box .box::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0) 60%, #E31E25 100%);
    opacity: 1;
    transition: all ease 0.5s;
}

.home .car .main_box .box{
    width: 100%;
    height: 270px;
    transition: all ease 0.5s;
    position: relative;
    overflow: hidden;
}

.home .car .main_box .box .img1,
.home .car .main_box .box .img2{
    width: 100%;
    height: 100%;
    transition: all ease 0.5s;
}

.home .car .main_box .box .text{
    z-index: 20;
    position: absolute;
    bottom: 5px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
    transition: all ease 0.5s;
}


.home .car .main_box .box .text h2{
    color: var(--white-color);
    z-index: 20;
    position: relative;
    font-size: clamp(0.75rem, 0.6574rem + 0.4938vw, 1.25rem);
    margin-left: 0;
    transition: all ease 0.5s;
}

.home .car .main_box .box .text a{
    width: 100px;
    height: 40px;
    border: 1px solid var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    text-decoration: none;
    transition: all ease 0.5s;
}

.home .car .main_box .box .text a:hover{
    width: 120px;
}

.home .content3{
    padding-bottom: 0;
}

.home .car .main_box .box .line1{
    position: absolute;
    top: 8%;
    left: 5%;
    width: 0;
    border: 1px solid var(--white-color);
    transition: all ease 0.5s;
    opacity: 0;
}

.home .car .main_box .box .line2{
    position: absolute;
    transition: all ease 0.5s;
    top: 3%;
    left: 8%;
    height: 0;
    border: 1px solid var(--white-color);
    opacity: 0;
}

.home .car .main_box .box:hover .line1{
    width: 90%;
    opacity: 1;
}

.home .car .main_box .box:hover .line2{
    height: 90%;
    opacity: 1;
}

.home .car .main_box .box:hover .text h2{
    margin-left: 10%;
}


/*----------------------------- statisctics  ------------------------- */

.home .content_stat{
    padding: 100px 300px;
}

.home .statisctics{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4rem;
    position: relative;
    color: var(--black-color);
}

.home .statisctics .title h1{
    font-size: clamp(1.875rem, 1.7593rem + 0.6173vw, 2.5rem);
    font-weight: 600;
}

.home .statisctics .title h1 span{
    color: var(--red-color);
}

.home .statisctics .main_box{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.home .statisctics .box{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.home .statisctics .box .number{
    display: flex;
    align-items: center;
    gap: 1rem;
}

.home .statisctics .box .number i{
    font-size: 2.5rem;
}

.home .statisctics .box .number h1{
    margin: 0;
    position: relative;
    font-size: 4rem;
    font-weight: 600;
    padding: 0.5rem;
}

.home .statisctics .box .number h1 span{
    position: absolute;
    top: 0;
    right: 0;
    font-size: 1.5rem;
    color: var(--red-color);
}

.home .statisctics .box h2{
    font-size: 1.3rem;
    text-align: center;
    width: 70%;
    font-weight: 400;
}

.home .content_stat{
    background-color: var(--light-grey-color);

}


/* --------------------------- home insta ------------------- */

.home .insta{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4rem;
}

.home .insta .title{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.home .insta .title h1{
    font-size: clamp(1.875rem, 1.7593rem + 0.6173vw, 2.5rem);
    font-weight: 600;
}

.home .insta .title h1 span{
    color: var(--red-color);
}

.home .insta .title a{
    color: var(--red-color);
}

.home .insta .main_box{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    padding: 0 100px;
}

.home .insta .main_box .box{
    position: relative;
    width: 33%;
    height: 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    background-color: var(--light-grey-color);
    padding: 1rem;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all ease 0.5s;
}

.home .insta .main_box .box::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--grey-color);
    z-index: 3;
    opacity: 0;
    transition: all ease 0.5s;
}

.home .insta .main_box .box:hover::before{
    opacity: 0.4;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

.home .insta .main_box .box .image{
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.home .insta .main_box .box .image img{
    width: 100%;
    height: 100%;
}

.home .insta .main_box .box p{
    margin: 0;
}

.home .insta .main_box .box .image .date{
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--red-color);
    color: var(--white-color);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    opacity: 0;
    transition: all ease 0.5s;
    z-index: 20;
}

.home .insta .main_box .box .image .date p{
    margin: 0;
    font-weight: 500;
}

.home .insta .main_box .box:hover .date{
    opacity: 1;
    top: 50% !important;
}

.home .insta .main_box .box .image .gonderi{
    position: absolute;
    bottom: -100%;
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    z-index: 30;
    transition: all ease 0.5s;
}

.home .insta .main_box .box .image .gonderi a{
    color: var(--white-color);
    text-decoration: none;
    width: 90%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--black-color);
}

.home .insta .main_box .box:hover .gonderi{
    bottom: 3%;
}









/* ! ------------------------------------------  gallery  ----------------------------------- */

.gallery .main_gallery{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5rem;
}

.gallery .main_gallery .buttons{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transition: all ease 0.5s;
}

.gallery .main_gallery .buttons button{
    width: 250px;
    height: 50px;
    border: 2px solid var(--black-color);
    background-color: transparent;
    color: var(--black-color);
    font-weight: 500;
    font-size: 20px;
    cursor: pointer;
    transition: all ease 0.5s;
    position: relative;
    overflow: hidden;
}

.gallery .main_gallery .buttons button::before{
    content: "";
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    background-color: var(--red-color);
    z-index: -1;
    transition: all ease 0.5s;
}

.gallery .main_gallery .buttons button:hover::before{
    left: 0;
}

.gallery .main_gallery .buttons button:hover{
    color: var(--white-color);
}

.gallery .main_gallery .main_images{
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.gallery .main_gallery .main_images .image{
    width: 400px;
    height: 270px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery .main_gallery .main_images .image img{
    width: 100%;
    height: 100%;
    transition: all ease 0.5s;
}

.gallery .main_gallery .main_images .image img:hover{
    transform: scale(1.2);
}

.gallery .main_gallery .main_images .image i{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    color: var(--white-color);
    font-size: 2rem;
    z-index: 2;
}

.gallery .main_video{
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.gallery .main_video .video{
    width: 400px;
    height: 270px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery .main_video .video img{
    width: 100%;
    height: 100%;
    transition: all ease 0.5s;
}

.gallery .main_video .video img:hover{
    transform: scale(1.2);
}

.gallery .main_video .video i{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    color: var(--white-color);
    font-size: 2rem;
    z-index: 2;
}

.gallery .main_video{
    display: none;
}


/* ! -------------------------------------------- contact  ------------------------------------------------------------ */


.contact .contact1{
    display: flex;
    align-items: start;
    justify-content: space-between;
    position: relative;
}

.contact .contact1 .first{
    width: 50%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 1rem;
}

.contact .contact1 .first .logo{
    width: 300px;
    height: 100px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact .contact1 .first .logo img{
    width: 100%;
    height: 100%;
}

.contact .contact1 .first .social{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    font-size: 1.4rem;
}

.contact .contact1 .first .social a{
    color: var(--black-color);
    text-decoration: none;
}

.contact .contact1 .second{
    width: 50%;
    position: relative;
    display: flex;
    align-items: center;
}

.contact .contact1 .second h1{
    transform: rotate(-90deg);
    color: var(--red-color);
}

.contact .contact1 .second .address{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact .contact1 .second .address .ad a{
    display: flex;
    align-items: center;
    gap: .2rem;
    color: var(--black-color);
    text-decoration: none;
}

.contact .contact1 .second .address .ad a p{
    font-weight: 300;
}

.contact .contact1 .second .address .ad a h2{
    font-size: 1rem;
    font-weight: 400;
}

.contact .contact1 .second .address .ad2{
    display: flex;
    align-items: center;
    gap: 2rem;
}

.contact .contact1 .second .address .ad2 a{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact .contact1 .second .address .ad2 a .box{
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact .contact2{
    margin-top: 7rem;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
}

.contact .contact2 .form{
    width: 50%;
}

.contact .contact2 .form form{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
    row-gap: 2rem;
}

.contact .contact2 .form form input{
    width: 48%;
    height: 40px;
    border: 1px solid var(--grey-color);
    outline: none;
}

.contact .contact2 .form form input:focus{
    border-color: var(--grey2-color) !important;
}

.contact .contact2 .form form textarea:focus{
    border-color: var(--grey2-color) !important;
}

.contact .contact2 .form form input::placeholder{
    padding: 1rem;
}

.contact .contact2 .form form textarea{
    width: 100%;
    height: 200px;
    border: 1px solid var(--grey-color);
    outline: none;
}

.contact .contact2 .form form textarea::placeholder{
    padding: 1rem;
}

.contact .contact2 .form form button{
    width: 100%;
    height: 50px;
    border: none;
    background-color: var(--red-color);
    color: var(--white-color);
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    transition: all ease 0.5s;
    cursor: pointer;
}

.contact .contact2 .form form button:hover{
    background-color: transparent;
    color: var(--red-color);
    border: 1px solid var(--red-color);
}

.contact .contact2 .map{
    width: 50%;
    height: 500px;
    position: relative;
}


/* ! ------------------------------------------- fuar ---------------------------------------- */

.fuar .content{
    background-color: var(--white-color);
    margin-top: -100px;
}

.fuar .main_box{
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
}

.fuar .main_box .box{
    width: 30%;
    background-color: var(--white2-color);
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-radius: 5px;
    transition: all ease 0.5s;
}

.fuar .main_box .box::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: var(--white-color);
    z-index: 3;
    opacity: 0;
    border-radius: 5px;
    pointer-events: none;
    transition: all ease 0.5s;
}

.fuar .main_box .box .go{
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 10;
    width: 60px;
    height: 60px;
    background-color: var(--red-color);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    transition: all ease 0.5s;
}

.fuar .main_box .box .go a{
    color: var(--white-color);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fuar .main_box .box:hover .go{
    top: 50%;
}

.fuar .main_box .box:hover{
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.fuar .main_box .box:hover::before{
    opacity: 0.7;
}

.fuar .main_box .box a{
    text-decoration: none;
    color: var(--black-color);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.fuar .main_box .box .image{
    width: 100%;
    height: 270px;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}

.fuar .main_box .box .image img{
    width: 100%;
    height: 100%;
}

.fuar .main_box .box p{
    color: var(--red-color);
}

.fuar .main_box .box h1{
    font-size: clamp(0.75rem, 0.6574rem + 0.4938vw, 1.25rem);
}

.fuar .main_box .box h2{
    font-weight: 400;
    font-size: clamp(0.5rem, 0.4074rem + 0.4938vw, 1rem);
    opacity: 0.7;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
}

.fuar .main_box .box .date{
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    padding: 0.5rem 1rem;
    text-align: center;
    background-color: var(--red-color);
    border-radius: 5px;
}

.fuar .main_box .box .date p{
    color: var(--white-color);
    font-weight: 600;
}

.fuar_detail .main_box{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
}

.fuar_detail .main_box .image{
    width: 100%;
    height: 500px;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}

.fuar_detail .main_box .image img{
    width: 100%;
    height: 100%;
}

.fuar_detail .main_box .date{
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: var(--red-color);
}

.fuar_detail .main_box h2{
    font-weight: 400;
    font-size: clamp(0.5rem, 0.4074rem + 0.4938vw, 1rem);
    opacity: 0.7;
}


/* ! ----------------------------------------------- kurumsal -------------------------------------------------------- */

.kurumsal .main_box{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.kurumsal .main_box .text{
    width: 50%;
}

.kurumsal .main_box .text p{
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.kurumsal .main_box .pfirst{
    color: var(--red-color);
}

.kurumsal .main_box .text p span{
    width: 30px;
    height: 1px;
    border: 1px solid var(--red-color);
}

.kurumsal .main_box .text h1{
    font-weight: 600;
}

.kurumsal .main_box .text p{
    font-weight: 400;
    font-size: clamp(0.5rem, 0.4074rem + 0.4938vw, 1rem);
    opacity: 0.7;
}

.kurumsal .main_box .image{
    width: 50%;
    height: 400px;
    position: relative;
    overflow: hidden;
    transition: all ease 0.5s;
}

.kurumsal .main_box .image img{
    width: 100%;
    height: 100%;
    transition: all ease 0.5s;
    filter: grayscale(100%);
}

.kurumsal .main_box .image:hover img{
    filter: grayscale(0);
    transform: scale(1.01);
}


/*! --------------------------------- car detail ------------------------------------- */

.car_detail .detail_text p{
    font-weight: 200;
    font-size: clamp(0.75rem, 0.6574rem + 0.4938vw, 1.25rem);
    color: #F2AE2E;
}

.car_detail .detail_text2 p{
    color: var(--purple-color);
}

.car_detail .detail_text3 p{
    color: var(--red-color);
}

.car_detail .car_photo{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.car_detail .car_photo h2{
    color: var(--orange-color);
    font-size: clamp(1.0625rem, 0.9699rem + 0.4938vw, 1.5625rem);
}

.car_detail .car_photo2 h2{
    color: var(--purple-color);
}

.car_detail .car_photo3 h2{
    color: var(--red-color);
}

.car_detail .car_photo .main_box{
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    align-items: center;
}

.car_detail .car_photo .main_box .big_image{
    width: 70%;
    height: 600px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--grey-color);
}

.car_detail .car_photo .main_box .big_image img{
    width: 100%;
    height: 100%;
}

.car_detail .car_photo .main_box .small_images{
    width: 30%;
    height: 600px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.car_detail .car_photo .main_box .small_images .image{
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--grey-color);
    cursor: pointer;
}

.car_detail .car_photo .main_box .small_images .image img{
    width: 100%;
    height: 100%;
}

.car_detail .features{
    background-color: rgba(242, 174, 46, 0.1);
    display: flex;
    flex-direction: column;
    gap: 2rem;
    color: var(--orange-color);
    padding: 2rem;
}

.car_detail .features2{
    background-color: rgba(131, 45, 133, 0.1);
    color: var(--purple-color);
}


.car_detail .features3{
    background-color: rgba(255, 0, 0, 0.1);
    color: var(--red-color);
}

.car_detail .features h1{
    font-size: 25px;
    font-weight: 700;
}

.car_detail .features h2{
    font-size: 20px;
    font-weight: 500;
}

.car_detail .features .box{
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 1rem;
}

.car_detail .features .box .item{
    display: flex;
    align-items: center;
    gap: 7rem;
}

.car_detail .features .box .item h1{
    font-weight: 600;
    font-size: clamp(0.75rem, 0.6574rem + 0.4938vw, 1.25rem);
}


/*! ---------------------------------- services ----------------------------------------------------- */

.services{
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.services .main_box1{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
}

.services .main_box1 .text{
    width: 50%;
}

.services .main_box1 .text h1{
    font-size: clamp(2.5rem, 2.2685rem + 1.2346vw, 3.75rem);
    font-weight: 600;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.services .main_box1 .text h1 span{
    font-weight: 300;
    margin-top: -25px;
}

.services .main_box1 .text p{
    opacity: 0.8;
    margin-top: 1rem;
    width: 90%;
}

.services .main_box1 .image{
    width: 50%;
    height: 450px;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}

.services .main_box1 .image:hover img{
    transform: scale(1.1);
}

.services .main_box1 .image::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: black;
    opacity: 0.2;
}

.services .main_box1 .image img{
    width: 100%;
    height: 100%;
    transition: all ease 0.5s;
}

.services .main_box2{
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
}

.services .main_box2 .main_text{
    width: 50%;
    margin-top: 3rem;
}

.services .main_box2 .main_text h1{
    font-size: clamp(1.5625rem, 1.3889rem + 0.9259vw, 2.5rem);
    font-weight: 600;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.services .main_box2 .main_text h1 span{
    font-weight: 300;
    margin-top: -15px;
}

.services .main_box2 .list{
    width: 50%;
    display: flex;
    flex-direction: column;
}

.services .main_box2 .list .box{
    display: flex;
    align-items: start;
    gap: 1rem;
    position: relative;
    padding-bottom: 2rem;
    padding-top: 2rem;
    border-bottom: 1px solid var(--grey-color);
}

.services .main_box2 .list .box .icon{
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255, 0, 0, 0.19);
}

.services .main_box2 .list .box .icon i{
    font-size: 1.5rem;
    color: var(--red-color);
}

.services .main_box2 .list .box .text{
    display: flex;
    flex-direction: column;
    gap: .6rem;
    width: 90%;
}

.services .main_box2 .list .box .text h1{
    font-size: clamp(0.75rem, 0.6574rem + 0.4938vw, 1.25rem);
}

.services .main_box2 .list .box .text p{
    opacity: 0.8;
}

.services .btn{
    width: 100%;
    padding: 1rem 100px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services .btn button{
    width: 100%;
    height: 60px;
    border-radius: 20px;
    border: none;
    display: flex;
    align-items: center;
    position: relative;
    justify-content: center;
    background-color: transparent;
}

.services .btn button a{
    width: 100%;
    height: 100%;
    background-color: var(--red-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    text-decoration: none;
    font-size: 1.3rem;
    border-radius: 20px;
    transition: all ease 0.5s;
}

.services .btn button a:hover{
    transform: translateY(-5px);
}

/* ! ------------------------------------------  footer --------------------------------------------------*/

.footer{
    background-color: var(--grey3-color);
    margin-top: 170px;
}

.footer_content{
    padding: 60px 140px !important;
}

.footer .main_box{
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 3rem;
}

.footer .main_box .box{
    width: 33%;
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    gap: 3rem;
}

.footer .main_box .box2{
    margin-left: 120px;
}

.footer .main_box .box .footer_logo{
    width: 60%;
    height: 110px;
    position: relative;
    overflow: hidden;
}

.footer .main_box .box .footer_logo img{
    width: 100%;
    height: 100%;
}

.footer .main_box .box .footer_social{
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    gap: 2rem;
    font-size: 2rem;
    padding-left: 0;
}

.footer .main_box .box .footer_social a{
    color: var(--white-color);
    font-size: clamp(1rem, 0.8958rem + 0.5556vw, 1.5625rem);
}

.footer .main_box .box h1{
    color: var(--white-color);
    font-size: clamp(0.75rem, 0.6574rem + 0.4938vw, 1.25rem);
    font-weight: 600;
}

.footer .main_box .box .footer_ul{
    display: flex;
    flex-direction: column;
    list-style-type: none;
    gap: 1.1rem;
    padding-left: 0;
}

.footer .main_box .box .footer_ul a{
    color: var(--white-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 0.5rem;
    transition: all ease 0.5s;
}

.footer .main_box .box .address{
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 1.5rem;
}

footer .main_box .box .address i{
    font-size: 1.5rem;
    color: var(--red-color);
}

.footer .main_box .box .address .a{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer .main_box .box .address a{
    text-decoration: none;
    color: var(--white-color);
}

.footer .main_box .box .footer_ul li a:hover{
    margin-left: 10px;
}

.footer .footer_hakkimizda{
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.footer .footer_hakkimizda p{
    color: var(--white-color);
    line-height: 30px;
    opacity: 0.7;
}

.footer .footer2{
    border-top: 1px solid var(--grey-color);
    background-color: var(--grey3-color);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 0;
}

.footer .footer2 p{
    color: var(--white-color);
    margin: 0;
}



/*!-------------------------------------------- media query ------------------------------------ */

@media(max-width:1680px){

    .pre_loader p{
        margin-top: -90px;
    }

    .home .car .main_box .box{
        height: 250px;
    }

    .header .navbar .menu_ul{
        gap: 2.5rem;
    }

    .banner .banner_left{
        width: 225px;
    }

    .header_index{
        padding: 20px 60px !important;
    }

    .fixed_contact{
        width: 90px;
    }

    .fixed_contact p{
        font-size: 75%;
    }

    .fixed_contact a{
        width: 35px;
        height: 35px;
    }

    .home .home_video .text a{
        margin-top: -20px;
    }

    .home .content_stat{
        padding: 100px 150px;
    }

    .home .insta .main_box{
        padding: 0;
    }


    .page_top{
        height: 330px;
    }

    .content{
        padding: 120px 200px 0 200px;
    }

    .services .main_box1 .image{
        height: 380px;
    }

    .fuar .main_box .box .image{
        height: 250px;
    }

    .fuar_detail .main_box .date p{
        font-size: 1.5rem;
    }

    .fuar_detail .main_box h2{
        font-size: 105%;
    }

}

@media(max-width:1366px){

    .pre_loader p{
        margin-top: -80px;
    }

    .header{
        padding: 20px 100px;
    }

    .content{
        padding: 120px 150px 0 150px;
    }

    .kurumsal .main_box .text p{
        font-size: 90%;
    }

    .footer_content{
        padding: 60px 100px;
    }

    .services .main_box1 .text h1{
        font-size: 260%;
    }

    .services .main_box1 .image{
        height: 300px;
    }

    .services .main_box2 .list .box .icon{
        width: 40px;
        height: 40px;
    }

    .services .main_box2 .list .box .icon i{
        font-size: 1.2rem;
    }

    .services .btn button a{
        font-size: 1.1rem;
    }

    .fuar .main_box .box .image{
        height: 220px;
    }
}

@media(max-width:992px){

    .pre_loader p{
        margin-top: -55px;
    }

    .header_index .navbar .logo{
        opacity: 1;
    }

    .header_index .navbar .logo p{
        color: var(--white-color);
    }

    .banner .carousel-item .text{
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .banner .carousel-item .text .btn{
        justify-content: center;
    }

    .banner .carousel-item .text .line{
        width: 70%;
    }


    .banner .banner_left p{
        display: none;
    }

    .banner .banner_left{
        bottom: 3%;
        left: 0;
        top: auto;
        width: 100%;
        height: auto;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        border: none;
    }

    .banner .banner_left .social{
        flex-direction: row;
    }

    .banner .banner_left .left_logo{
        display: none;
    }



    .banner .carousel-item .text{
        right: 35% !important;
    }

    .mobile_menu .logo{
        height: 80px;
    }

    .home .insta .main_box .box{
        height: 300px;
    }

    .home .statisctics .main_box{
        display: grid;
        grid-template-columns: 1fr 1fr;
        row-gap: 4rem;
    }

    .home .content_stat{
        padding: 100px;
    }

    .home .features{
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 2rem;
    }

    .home .home_video .text a{
        margin-top: -10px;
    }

    .banner .carousel-item .text{
        right: 30%;
    }

    .home .car .main_box{
        grid-template-columns: 1fr 1fr;
    }

    .home .car .main_box .box{
        height: 230px;
    }

    .home .content2{
        margin-top: 0;
    }
    .home .home_video{
        height: 520px;
    }

    .home .home_video .video{
        height: 520px;
    }

    .home .home_video .text{
        padding: 2rem;
    }

    .header.fixed{
        height: 85px;
        padding: 0 100px;
    }

    .menu_bar{
        display: flex;
    }

    .page_top{
        top: 130px;
    }


    .header .navbar .menu_ul{
        display: none;
    }

    .page_top{
        height: 280px;
    }

    .content{
        padding: 100px 100px 0 100px;
    }

    .kurumsal .main_box{
        flex-direction: column;
        gap: 4rem;
    }

    .kurumsal .main_box .text{
        width: 100%;
    }

    .kurumsal .main_box .image{
        width: 100%;
    }

    .footer_content{
        padding: 60px 100px !important;
    }

    .footer .main_box .box2{
        display: none;
    }

    .footer .main_box .box{
        width: 50%;
    }

    .footer .main_box{
        gap: 5rem;
    }

    .services .main_box1{
        flex-direction: column;
    }

    .services .main_box1 .text{
        width: 100%;
        align-items: center;
        justify-content: center;
        text-align: center;
        display: flex;
        flex-direction: column;
    }

    .services .main_box1 .text h1{
        flex-direction: row;
        text-align: center;
        display: flex;
        align-items: center;
    }

    .services .main_box1 .image{
        width: 100%;
    }

    .services .main_box1 .text h1 span{
        margin-top: 0;
        margin-left: 10px;
    }

    .services .main_box2{
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .services .main_box2 .main_text{
        width: 100%;
        display: flex;
        align-items: center;
        text-align: center;
        justify-content: center;
    }

    .services .main_box2 .list{
        width: 100%;
    }

    .services .main_box1 .image{
        height: 350px;
    }

    .fuar .main_box .box{
        width: 50%;
        margin-top: 50px;
    }

    .fuar .main_box .box h2{
        font-size: 85%;
    }

    .gallery .main_gallery .main_images{
        grid-template-columns: 1fr 1fr;
    }

    .gallery .main_video{
        grid-template-columns: 1fr 1fr;
    }

    .contact .contact1 .first{
        width: 30% !important;
    }

    .contact .contact1{
        gap: 2rem;
    }

    .contact .contact1 .second{
        width: 70%;
    }

    .contact .contact1 .first .logo{
        width: 100%;
    }

    .contact .contact2{
        justify-content: center;
        flex-direction: column;
    }

    .contact .contact2 .form{
        width: 100%;
    }

    .contact .contact2 .map{
        width: 100%;
        margin-top: 30px;
    }

    .contact .contact1 .first .logo{
        height: 80px;
    }

    .fuar_detail .main_box .image{
        height: 400px;
    }

    .car_detail .car_photo .main_box{
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .car_detail .car_photo .main_box .big_image{
        width: 100%;
        height: 500px;
    }

    .car_detail .car_photo .main_box .small_images{
        width: 100%;
        height: 300px;
        flex-direction: row;
    }

    .car_detail .detail_text p{
        font-size: 100%;
    }

    .car_detail .features .box .item{
        gap: 4rem;
    }

    .header{
        padding: 20px 70p;
    }


}

@media(max-width:768px){

    .pre_loader p{
        margin-top: -35px;
        font-size: 1.8rem;
    }

    .banner .banner_left .social a{
        width: 40px;
        height: 40px;
    }

    .banner .banner_left p{
        display: none;
    }

    .banner{
        height: 60vh;
    }

    .banner .carousel-item .text .btn{
        justify-content: center;
    }

    .banner .carousel-item .text h2{
        font-size: 2rem;
    }

    .banner .carousel-item .text h1{
        font-size: 4rem;
    }

    .banner .banner_left .left_logo{
        width: 150px;
        height: 40px;
    }

    .banner .banner_left{
        width: 100%;
    }

    .home .insta .main_box .box{
        height: 370px;
    }

    .home .insta .main_box{
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .home .insta .main_box .box{
        width: 100%;
    }

    .home .content2{
        margin-top: 60px;
    }

    .home .home_video .video{
        width: 100%;
        height: 350px;
    }

    .home .home_video .text{
        width: 100%;
    }

    .home .home_video{
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: auto;
    }

    .home .car .main_box .box{
        height: 200px;
    }

    .header.fixed{
        padding: 0 50px;
    }

    .header{
        padding: 10px 50px;
    }

    .page_top{
        top: 110px;
    }

    .header .navbar .logo{
        width: 150px;
    }

    .content{
        padding: 60px 60px 0 60px;
    }

    .footer_content{
        padding: 60px !important;
    }

    .footer .main_box{
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .footer .main_box .box{
        width: 100%;
    }

    .footer .footer_hakkimizda{
        gap: 1rem;
    }

    .footer .main_box .box .footer_social{
        margin-top: -2rem;
    }

    .footer{
        margin-top: 120px;
    }

    .fuar .main_box{
        justify-content: center;
        align-items: center;
    }

    .fuar .main_box .box{
        width: 55%;
    }

    .gallery .main_gallery .main_images .image{
        width: 100%;
    }

    .gallery .main_video .video{
        width: 100%;
    }

    .contact .contact1{
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4rem;
    }

    .contact .contact1 .first{
        width: 40% !important;
        align-items: center;
    }

    .contact .contact1 .first .logo{
        width: 100%;
        height: 100%;
    }

    .contact .contact1 .second{
        width: 100%;
    }

    .car_detail .car_photo .main_box .small_images{
        height: 200px;
    }

}

@media(max-width:500px){

    .pre_loader p{
        margin-top: -60px;
    }


.kurumsal .main_box .image img{
    filter: grayscale(0);
}

    .pre_loader img{
        width: 55%;
    }

    .header .navbar .logo p{
        font-size: .5rem;
    }

    .header .navbar .logo{
        width: 120px;
    }

    .footer_content{
        padding: 60px 25px !important;
    }

    .home .we_jobs{
        margin: 100px 0 !important;
    }

    .home .content_stat{
        padding: 3rem 25px !important;
    }

    .home .we_jobs .owl-carousel .owl-nav{
        display: none;
    }

    .home .we_jobs .owl-carousel .owl-dots{
        display: none;
    }

    .home .content2{
        padding: 0.1rem 25px !important;
    }

    .content{
        padding: 30px 25px 0 25px !important;
    }

    .banner .carousel-item .text h1{
        font-size: 2rem !important;
    }

    .banner .carousel-item .text h2{
        font-size: 1.5rem;
    }

    .header.fixed{
        padding: 0 30px;
    }

    .services .btn button{
        height: 70px !important;
    }

    .services .main_box1 .text h1{
        flex-direction: column;
    }

    .page_top h3{
        font-size: 240%;
    }

    .page_top h1{
        font-size: 170%;
    }

    .kurumsal .main_box .text h1{
        text-align: center;
    }

    .kurumsal .main_box .text p{
        text-align: center;
    }

    .home .insta{
        margin-top: 50px;
    }

    .home .content_stat{
        margin-top: -50px;
    }

    .home .car{
        margin-top: 50px;
    }

    .header_index{
        padding: 0px 30px !important;
    }

    .header_index .navbar .logo{
        opacity: 1;
    }

    .header_index .navbar .logo p{
        color: var(--white-color);
    }

    .banner{
        height: 50vh;
    }

    .banner .carousel-item .text .line{
        width: 60%;
    }

    .banner .carousel-item .text{
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .banner .carousel-item .text .btn{
        justify-content: center;
    }

    .banner .banner_left{
        bottom: 3%;
        left: 0;
        top: auto;
        width: 100%;
        height: auto;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        border: none;
    }

    .banner .banner_left .social{
        flex-direction: row;
    }

    .banner .banner_left .left_logo{
        display: none;
    }

    .mobile_menu .exit2{
        display: block;
        position: absolute;
        top: 2%;
        left: 5%;
        font-size: 1.5rem;
        color: var(--white-color);
        cursor: pointer;
    }

    .banner .carousel-item .text a{
        width: 150px;
        height: 40px;
    }

    .banner .carousel-item .text h1{
        font-size: 3rem;
    }

    .home .insta .main_box{
        grid-template-columns: 1fr;
    }

    .home .insta .title h1{
        text-align: center;
    }

    .home .statisctics .box h2{
        font-size: 1.1rem;
    }

    .home .statisctics .box .number h1{
        font-size: 3rem;
    }

    .home .statisctics .box .number i{
        font-size: 1.5rem;
    }

    .home .content_stat{
        padding: 100px 0;
    }

    .home .we_jobs p{
        text-align: center;
    }

    .home .features{
        margin-top: 50px;
    }

    .home .we_jobs{
        margin-bottom: 50px;
        margin: 150px 0;
    }

    .home .features{
        grid-template-columns: 1fr 1fr;
        row-gap: 3rem;
    }

    .home .features .box p{
        font-size: 17px;
        margin: 0;
    }

    .home .features .box i{
        font-size: 2rem;
    }

    .home .home_video .text p{
        text-align: center;
    }

    .home .home_video .text{
        align-items: center;
    }

    .home .car .main_box .box .text h2{
        font-size: 95%;
    }

    .home .car .main_box .box{
        height: 250px;
    }

    .home .car .main_box{
        grid-template-columns: 1fr;
    }

    .mobile_menu{
        width: 280px;
    }

    .mobile_menu .logo{
        width: 100%;
    }

    .header{
        padding: 10px 30px;
    }

    .page_top{
        height: 240px;
    }

    .content{
        padding: 30px 40px 0 40px;
    }

    .kurumsal .main_box .image{
        height: 280px;
    }

    .footer{
        margin-top: 100px;
    }

    .services .main_box1 .image{
        height: 300px;
    }

    .services .btn{
        padding: 1rem 0;
    }

    .services .btn button{
        height: 53px;
    }

    .footer .footer_hakkimizda{
        align-items: center;
    }

    .footer .footer_hakkimizda p{
        text-align: center;
    }

    .footer .main_box .box h1{
        font-size: 100%;
    }

    .footer .main_box .box:nth-child(1){
        align-items: center;
    }

    .services .main_box2 .list .box .text h1{
        font-size: 90%;
    }

    .fuar .main_box .box{
        width: 80%;
    }

    .gallery .main_gallery .buttons{
        flex-direction: column;
    }

    .gallery .main_gallery .main_images{
        grid-template-columns: 1fr;
    }

    .gallery .main_video{
        grid-template-columns: 1fr;
    }

    .contact .contact1 .first{
        width: 60% !important;
    }

    .contact .contact1 .first .logo{
        width: 85%;
    }

    .contact .contact1 .second{
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .contact .contact1 .second h1{
        transform: rotate(0);
    }

    .contact .contact1 .second .address{
        align-items: center;
        justify-content: center;
    }

    .contact .contact2 .form form input{
        width: 100%;
    }

    .fuar_detail .main_box .image{
        height: 300px;
    }

    .fuar_detail .main_box .date{
        align-items: center;
        margin-top: 2rem;
    }

    .fuar_detail .main_box h2{
        text-align: center;
    }

    .car_detail .detail_text p{
        text-align: center;
    }

    .car_detail .car_photo .main_box .big_image{
        height: 400px;
    }

    .car_detail .car_photo .main_box .small_images{
        height: 150px;
    }

    .car_detail .features{
        align-items: center;
    }

    .car_detail .features h1{
        text-align: center;
    }

    .car_detail .features .box .item{
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        justify-content: center;
    }

    .car_detail .features .box .item p{
        text-align: center;
    }

    .contact .contact2 .map{
        height: 350px;
    }

}

@media(max-width:480px){

    .footer_content{
        padding: 60px 25px !important;
    }

    .contact .contact1 .first p{
        text-align: center;
        font-size: 80%;
    }

    .fuar_detail .main_box .date p{
        text-align: center;
    }

    .services .main_box1 .image{
        height: 250px;
    }
    
    .home .we_jobs h1{
        text-align: center;
    }

    .car_detail .car_photo .main_box .small_images{
        height: 100px;
    }

    .fuar .main_box .box{
        width: 100%;
    }

    .fuar_detail .main_box .image{
        height: 200px;
    }

}
