@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap');


:root{
    --primary:#EF7F1A;
    --secondary:#2C2C2C;
    --lightgray:#F5F5F7;
    --gray:#666;
}

body{
    font-family: "Lexend", sans-serif;
    font-optical-sizing: auto;
    font-weight:400;
    font-style: normal; 
}
.bg-primary {background-color: var(--primary) !important;}
.bg-secondary {background-color: var(--secondary) !important;}
.bg-lightgray {background-color: var(--lightgray) !important;}
.text-primary {color: var(--primary) !important;}
.text-secondary {color: var(--secondary) !important;}
.text-gray {color: var(--gray) !important;}
.text-lightgray {color: var(--lightgray) !important;}
a {
    text-decoration: none;
    color: var(--secondary); 
} 
ul,ol {    
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.font-weight-100 {
    font-weight: 100;
}
.font-weight-200 {
    font-weight: 200;
}
.font-weight-300 {
    font-weight: 300;
}
.font-weight-400 {
    font-weight: 400;
}
.font-weight-500 {
    font-weight: 500;
}
.font-weight-600 {
    font-weight: 600;
}
.font-weight-700 {
    font-weight: 700;
}
.font-weight-800 {
    font-weight: 800;
}
.b-radius-big{
    border-radius: 32px;
} 
.font-big {
    font-size: 30px;
    line-height: 36px;
}
.btn-primary {
    background-color: var(--primary);
    color: #fff;
    border: 1px solid var(--primary);
    padding: 10px 20px;
    font-size: 14px;
    line-height: 14px;
    border-radius: 100px;
    transition: all 200ms linear;
}
.btn-primary:hover {
    background-color: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    border-radius: 100px;
}

.btn-secondary {
    background-color:transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
    padding: 10px 20px;
    font-size: 14px;
    line-height: 14px;
    border-radius: 100px;
    transition: all 200ms linear;
}
.btn-secondary:hover {
    background-color: var(--primary);
    border: 1px solid #fff;
    color:#fff;
    border-radius: 100px;
}


.px-60 {padding-right: 60px; padding-left: 60px;}
.z-index-2 {z-index: 2;}


header {
    background-color: var(--lightgray);   
    z-index: 1;
}
.header {
    background-color: var(--primary);
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
}
.header .headercontainer {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: start;
}
.header .headerleft {
    display: flex;
    align-items: center;
    justify-content: start;   
    width: calc(100% - 400px);
}
.header .headerright {    
    width: 400px;
    
}

.header .headerright .top {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--secondary);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    padding: 0 30px 10px 30px;
} 
.header .headerright .bottom {
    display: flex;
    align-items: center;
    justify-content: end; 
    padding-right: 35px;   
    padding-top: 15px;
    padding-bottom: 15px;  
} 

.header-topMenu {
    position: relative;
    display: inline-flex;
    margin: 0;
    padding: 0;
    z-index: 3;
}
.header-topMenu li {
    list-style-type: none;  
    color: #fff;
    padding: 0;
    margin: 0;
}
.header-topMenu li:hover .submenu {
    visibility: visible;
    opacity: 1;
    display: block;
     
}
.header-topMenu li a {
    color: #fff;
    font-size: 13px;
    line-height: 13px;
    font-weight: 300;    
    margin:0;
    text-decoration: none;
    margin: 0 10px;
    transition: all 200ms linear;
}
.header-topMenu li a:hover {
    color: var(--primary);    
}
.header-topMenu li:first-child a{
   margin-left: 0;  
}
.header-topMenu li:last-child a{
    font-weight: 500;    
}

.header-topMenu li:last-child::before {
    content: "|"; 
    font-weight: 200;   
}

.searchicon {
    margin-left: 10px;
    border: 0;
    padding: 0;
    background-color: transparent;
   
}
.searchicon .icon {
   transition: all 200ms linear;
}
.searchicon .icon:hover {
   transform: rotate(45deg);
}

.header-topMenu .submenu {
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 34px;
    padding: 0;
    background-color: #fff;
    box-shadow: 0 0  10px rgba(0, 0, 0, .2);
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    z-index:2;
    visibility: hidden;
    opacity:0 ;
}
.header-topMenu .submenu li{
    padding: 10px 8px;
}
.header-topMenu .submenu li a {
    font-size: 13px;
    line-height: 13px;
    font-weight: 300;  
    color: var(--secondary);
    text-decoration: none;
    padding: 10px 8px;
    margin: 0;
}
.header-topMenu .submenu li:last-child a{
    font-weight: 300;    
}

.header-topMenu .submenu li:last-child::before {
    content: "";     
}


.bottomContainer {
    display: inline-flex;
    align-items: center;
    justify-content: start;
    width: 100%;
}
.bottomContainer .bottomLeft{
    display: flex;
    align-items: center;
    justify-content: start;
    width: calc(100% - 165px);
}
.bottomContainer .bottomRight{    
   text-align: right;
   width: 165px;
}
.bottomnLeftMenu {  
    margin: 0;
    padding: 0;
}
.bottomnLeftMenu li{
    list-style-type: none;
    display: inline-flex;
}
.bottomnLeftMenu li a{
    display: flex;
    align-items: center;
    margin: 0;
    padding: 20px 0;
    margin-right: 20px;
    text-decoration: none;
    font-size: 15px;
    line-height: 15px;
    color: var(--secondary); 
    transition: all 200ms linear;    
}
.bottomnLeftMenu li a:hover{    
    color: var(--primary);     
} 


.bottomnRightMenu {
    margin: 0;
    padding: 0;
}
.bottomnRightMenu li{
    list-style-type: none;
    display: inline-flex;
}
.bottomnRightMenu li a{
    margin: 0;
    padding: 0;
    margin-left: 20px;
    text-decoration: none;
    font-size: 15px;
    line-height: 15px;
    color: var(--secondary);     
    transition: all 200ms linear;    
}
.bottomnRightMenu li a:hover{    
    color: var(--primary);     
}

.bottomRightButton {
    background-color: var(--secondary);
    border: 0;
    color: #fff;
    font-size: 14px;
    line-height: 14px;
    padding: 7px 15px;
    border-radius: 7px;
    transition: all 200ms;
    border: 1px solid var(--secondary);
}
.bottomRightButton:hover {
    background-color: transparent;
    border: 1px solid var(--primary); 
    color: var(--secondary); 
    border-radius: 100px;
}

/*dropdown menu*/
.dropdown img {
margin-left: 5px;
}

.dropdown-menu {
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 0;
    margin-left: -72px;
    padding:15px 0;
    background-color: var(--lightgray);
    border: 0;
    border-radius: 5px;
    z-index: 2; 
    display: none;
    visibility: hidden;
    opacity: 0;
    
    min-width: 250px;  
    transition: all 200ms linear;  
}
.bottomnLeftMenu li.dropdown:hover .dropdown-menu{
    visibility: visible;
    opacity: 1;
    display: block;
    margin-top: 54px;
}
.dropdown-menu li {
    list-style-type: none;
    padding: 5px 15px;
    width: 100%;
}
.dropdown-menu li a {
    font-size: 13px;
    line-height: 13px;
    font-weight: 300;  
    color: var(--secondary);
    text-decoration: none;
    padding: 10px 15px;
    margin: 0;
    width: 100%;
    margin-right: 0;
}
.dropdown-menu li:last-child::after {
    content: "";
    border: 0;
}
/*HEADER END*/


/*searchpanel */
.searchpanel {
    position: fixed;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    background-color: rgba(255,255,255, 80%);
    backdrop-filter: blur(10px);
    z-index: 55;
    display: none;
    visibility: hidden; 
    opacity: 0;
    transition: all 400ms linear;  
     
}
.searchpanel.visible{     
    display: flex;
    align-items: center;
    justify-content: center;  
    visibility: visible;
    opacity: 1;
    width: 100%;
    height: 100vh;
}

.searchpanel .closeicon{
    position: absolute;
    top: 60px;
    right: 60px;
    z-index: 2;     
    border: 0;
    padding: 0;
    transition: all 400ms linear;
}
.searchpanel .closeicon:hover {
    cursor: pointer;
    transform: rotate(90deg);
} 
.searchpanel .searchbox {
    position: relative;
    width: 100%; 
    background-color: transparent; 
    padding: 20px;
    border-radius: 10px; 
    border: 1px solid rgba(255,255,255,1);
    color: #fff;
}
.searchpanel .searchbox::placeholder {  
    color: #fff !important;
}
.searchpanel .searchbox:active,
.searchpanel .searchbox:focus,
.searchpanel .searchbox:hover {
    outline: none !important;
    border: 1px solid var(--primary);  
    color: var(--primary) !important;
    box-shadow: none !important;,
}
/*searchpanel end*/


.main {
    position: relative;
    max-width: 2560px;
    margin: 0 auto;
}
.container-fluid { 
    max-width: 1680px;
    margin: 0 auto;
}
.aracinisec {
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
}
.markaBox {
    float: left;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #fff;
    width: 5.7%;    
    margin: 5px;
    border-radius: 10px;
    padding: 5px 0 15px 0;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    transition: all 200ms linear;
}
.markaBox:hover {
     box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.markaBox:hover .title{
     color: var(--primary);
}
.markaBox img {
    width: 80%;
    margin-bottom: 2px;
}
.markaBox .title {
    font-size: 10px;
    line-height: 10px;
    font-weight: 400;
    letter-spacing: 0;
    margin: 0;
    transition: all 200ms linear;
}
.page .markaBox {
     border: 1px solid #fff;      
}
.page .markaBox.active{
    border: 1px solid var(--primary);       
    width: 5.7%;    
    margin: 5px;
    border-radius: 10px;
    padding: 5px 0 15px 0;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    transition: all 200ms linear;
}
.page .markaBox.active .title{
    color: var(--primary);
}
.page .markaBox:hover{
    border: 1px solid var(--primary);     
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1); 
}
.product-title {
    font-size: 2.22222222vw !important;
}
.urunkodu {
    font-size: 1.2vw;
    color: #757575;
    font-weight: 300;
}
.modelBox {
    float: left;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--lightgray);
    width: auto;        
    border-radius: 10px;
    padding: 15px 20px; 
    font-size: 15px;
    line-height: 15px;
    font-weight: 400;
    letter-spacing: 0;
    margin: 5px;
    transition: all 200ms linear;    
}
.modelBox:hover {
      background-color: var(--primary);
       color: #fff;
}
.modelBox.active {     
    background-color: var(--primary);
    color: #fff;
}  
/*
.page .markaBox { 
    width:21.9%;    
    margin: 0;
    margin-right: 10px;
    margin-bottom: 10px;
    border-radius: 10px;
    padding: 5px 0 15px 0; 
    box-shadow: none;
}
    */

.bg-map {
    background: var(--lightgray) url(../images/map.png) no-repeat center center;
    background-size: 85%;    
}
.d-ruby {display: ruby !important;}
.ozellikbox { 
    display: block;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #fff;    
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    padding: 10px;
    margin: 50px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    transition: all 200ms linear;
}
.ozellikbox:hover {
     box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.ozellikbox:hover .title{
     color: var(--primary);
     cursor: default;
} 
.ozellikbox .title {
    font-size: 13px;
    line-height: 13px;
    margin: 0;
    transition: all 200ms linear;
}

.bg-satista {
    position: relative;
    background: transparent url(../upload/bg/android-arac-navigasyon-urunleri.webp) no-repeat center top;
    background-size: cover;     
    height: 460px; 
    z-index: 0;
}
.bg-satista::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 32px;
    background: rgba(0, 0, 0, .5);
    background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .8) 90%);
    z-index: 1;
}

.card {
    background-color: var(--lightgray);
    border: 0;
    border-radius: 17px;
    padding: 10px;
    height: 240px;
}
.card-title {
    font-size: 22px;
    line-height: 24px;
    font-weight: 500;
    color: var(--secondary);
    margin-bottom: 15px;
}


.contact .title {
    font-size: 22px;
    line-height: 24px;
    font-weight: 500;
    color: var(--secondary);
    margin-bottom: 15px;

}

.destektel {
    font-size: 22px;
}
.whatsappdestek {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    font-size: 14px;
    background-color: #67c15e;
    color: #fff;
     border-radius: 150px;
     padding: 7px;
     padding-left: 10px; 
}
.whatsappdestek img {
    width: 35px;
    height: 35px;
   
    transition: all 200ms linear;   
}
.whatsappdestek a {
   color: #fff;
   font-size: 13px;
}
.eglencebox {
    position: relative;
    display: flex;
    align-items: start;
    justify-content: center;
    text-align: left;     
    transition: all 200ms linear;
    border-radius: 22px;
}
.eglencebox::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 22px;
    background: rgba(0, 0, 0, .5);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .9) 80%);
    z-index: 1;
}
.eglencebox img {
    width: 100%;
    height: 100%;
    border-radius: 22px;
    transition: all 200ms linear;
}
.eglencebox .content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 30px;
    z-index: 2;
}
.eglencebox .content .title {
    font-size: 15px;
    line-height: 20px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 15px;
    transition: all 200ms linear;
    z-index: 2;
}
.eglencebox .content .text {
    font-size:21px;
    line-height: 27px;
    color: #fff;
    margin: 0;
    transition: all 200ms linear;
    z-index: 2;
}

.bg-diamond {
    position: relative;
    background: transparent url(../upload/bg/diamond-tablet-ekranlar.webp) no-repeat center center;
    background-size: cover;
    height: 550px;    
    z-index: 0;
}
.bg-diamond.bg-diamond-en { 
    position: relative;
    background: transparent url(../upload/bg/diamond-tablet-screens.webp) no-repeat center center; 
    height: 550px;   
    background-size: cover;
    height: 550px;    
    z-index: 0; 
}
.bg-diamond .box-content{
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%; 
    
}
.bg-diamond .box-content .title{
   color: #fff;
   font-size: 22px;
}
.bg-diamond .btn-kesfet{
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
    border-radius: 150px;
    padding: 8px 25px;
    font-weight: 200;
}

.urunbox {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 40px 30px;
    transition: all 200ms linear;
    border-radius: 22px;
    background-color: #fff;
} 
.urunbox .content{ 
    height: 100px;
} 
.urunbox .img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;  
    height: 200px;
    transition: all 200ms linear;
    margin-bottom: 40px;
    z-index: 1;
}
.page .urunbox .img { 
    height: 150px; 
    margin-bottom: 40px;
}
.urunbox .img img{
    width: 100%;
    height: 100%; 
    object-fit: contain; 
    z-index: 1;
} 
.urunbox .img img:hover{
    
    transition: all 200ms linear;
} 
.urunbox .title {
    font-size: 16px;
    line-height: 24px;
    font-weight: 300;
    color: var(--secondary); 
    transition: all 200ms linear;
    z-index: 9999;
}
.urunbox .urunkodu {
    display: block;
    font-size:17px;
    line-height: 24px; 
    font-weight: 500;
    color:var(--secondary);
    margin: 0;
    transition: all 200ms linear;
    z-index: 2;
    margin-bottom: 0px;
} 
.urunbox .ekran {
    font-weight: 400;
    line-height: 17px;
}
.urunbox .ekran .inch{
    margin-left: 3px; 
    font-style: normal;
} 
.breader {
    margin: 0;
    padding: 0;
}
.breader li {
    list-style-type: none;
    display: inline-flex;
    font-size: 13px;
    color: var(--gray);
    margin: 0;
    padding: 0;
}
.breader li:hover {
    cursor: default;
}
.breader li::after {
    content: ">";
    display: inline-flex;    
    color: var(--primary); 
    font-weight: 700; 
    padding: 0;
    margin: 0 7px;
     
}
.breader li:last-child:after {
    content: "";    
}
.breader li a {
    color: var(--secondary);
}

.page h1 {
    font-size: 22px;
}
.page .rounded {
    border-radius: 30px !important;
}
.page .rounded-lg {
    border-radius: 30px;
}
.page .rounded-sm {
    border-radius: 10px !important;
}
.page .sidetitle {
    color: #fff;
    font-size: 20px;
}


#fade {
  display: none;
  position: fixed;
  top: 0;
  left: 0%;
  width: 100%;
  height: 100vh;
  background-color: black;
  z-index: 1001;
  -moz-opacity: 0.8;
  opacity: .80;
  filter: alpha(opacity=80);
}

#light {
  display: none;
  position: absolute;
  top: 0;
  left: 0; 
  width: 100%; 
  z-index: 1002;
  overflow: visible;
  align-items: center;
  justify-content: center;
}
#light:hover {
    cursor: pointer;
}

#boxclose {
  float: right;
  cursor: pointer;
  color: #fff;  
  background: transparent;
  font-size: 31px;
  font-weight: 400;
  display: inline-block;
  line-height: 0px;
  padding: 11px 3px;  
  z-index: 1002;
  opacity: 0.9;
}

.boxclose:before {
  content: "×";
}

#fade:hover ~ #boxclose {
  display:none;
}

.play:hover { 
    cursor: pointer;
    color: var(--primary);
}


/*footer*/
footer {
    border: 20px solid var(--lightgray); 
}
.footer-title {
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
    color: var(--secondary);
    margin-bottom: 15px;
}
.footer-title:hover {
    cursor: default;
}
 .footer-list { 
    width: 100%;   
    margin: 0;
    padding: 0;
}
.footer-list li {
    list-style-type: none;
    display: block;
    margin: 0;
    padding: 0;
    transition: all 200ms linear;   
}
.footer-list li::before {
    content: ">";
    display: inline-flex;
    font-size: 15px;
    color: var(--primary); 
    font-weight: 600;
    margin-right: 10px;
}
.footer-list li a {
    color: var(--secondary);
    font-size: 13px;
    line-height: 13px;
    font-weight: 300;
    text-decoration: none;
    transition: all 200ms linear;
}
.footer-list li a:hover {
    color: var(--primary);
} 

.contact li {
    list-style-type: none;
    display: inline-flex;
    align-items: start;
    justify-content: center;
    margin-right: 20px;
    margin-bottom: 10px;
    font-size: 16px;
}

.footer-bottom { 
    width: 100%;  
    background-color: var(--lightgray);
    font-size: 13px;  
}

footer .social {
    display: inline-flex;
    align-items: center;
    justify-content: center; 
    margin-right: 15px;
}
footer .social li {
    list-style-type: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
}