@font-face {
    font-family: "CalibriBold";
    src: url("../fonts/CalibriBold.TTF");
}
@font-face {
    font-family: "CalibriRegular";
    src: url("../fonts/CalibriRegular.ttf");
}
@font-face {
    font-family: "GilroyLight";
    src: url("../fonts/GilroyLight.otf");
}
@font-face {
    font-family: "GilroyExtraBold";
    src: url("../fonts/Gilroy-ExtraBold.otf");
}
:root {
    --dark: #282932;
    --yellow: #fcdb0b;
}
html{
    scroll-behavior: smooth;
}
a{
    text-decoration: none !important;
}
.title_1{
    color: var(--dark);
    font-family: 'GilroyExtraBold';
    font-size: 46px;
    font-weight: 900;
}
.title_2{
    color: var(--dark);
    font-family: 'GilroyExtraBold';
    font-size: 38px;
    font-weight: 900;
}
.title_2y{
    color: var(--yellow);
    font-family: 'GilroyExtraBold';
    font-size: 32px;
    font-weight: 900;
}
.title_3{
    color: var(--dark);
    font-family: 'GilroyLight';
    font-size: 20px;
    font-weight: 700;
}
#TopBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    font-size: 22px;
    border: none;
    outline: none;
    background-color: var(--yellow);
    color: var(--dark);
    cursor: pointer;
    padding: 15px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
}
.navbar{
    position: relative;
    z-index: 9;
}
.main_sec .main_bg{
    width: 100%;
    height: 1100px;
    object-fit: cover;
}
.main_sec .main_text{
    position: absolute;
    top: 25%;
    left: 150px;
}
.main_sec .main_text h1{
    color: #fff;
    font-family: 'GilroyLight';
    font-size: 92px;
}
.main_sec .main_text h1.by{
    color: var(--yellow);
    font-family: 'GilroyExtraBold';
    font-weight: 900;
    font-size: 78px;
}
button:focus {
    outline: none !important;
}
.btn.focus, .btn:focus {
    outline: none !important;
    box-shadow: none !important;
}
.bg_dark {
    background-color: var(--dark);
}
.bg_yellow{
    background-color: var(--yellow);
}
.btn_yellow {
    background-color: var(--yellow);
    font-family: "GilroyLight";
    font-weight: 700;
    font-size: 16px;
    color: var(--dark);
    border-radius: 50px;
    width: fit-content;
}
.btn_white {
    background-color: #fff;
    font-family: "GilroyLight";
    font-weight: 700;
    font-size: 26px;
    color: var(--dark);
    border-radius: 22px;
    width: fit-content;
    position: relative;
    z-index: 1;
}
.main_navbar .nav-link {
    font-family: "CalibriBold";
    font-size: 17px;
    font-weight: 700;
    color: #fff;
}
.main_navbar .drop_box {
    position: relative;
}
.main_navbar .drop_box a {
    display: block;
}
#searchbar {
    display: none;
    position: absolute;
    right: 0px;
    border-radius: 50px;
    border: 1px solid #282932;
    outline: none;
    padding: 5px 15px;
    margin-top: 5px;
    z-index: 9;
}
.d_block {
    display: block !important;
}
.d_flex {
    display: flex !important;
}
.drop_down {
    display: none;
    position: absolute;
    width: max-content;
    padding: 8px 15px 15px 10px;
    background: white;
    border: 1px solid;
    z-index: 9;
}
.drop_item {
    font-family: "CalibriRegular";
    font-size: 17px;
    color: var(--dark);
    margin-bottom: 0px;
}
.drop_item b {
    font-family: "CalibriBold";
    font-size: 17px;
    color: var(--dark);
    margin-bottom: 0px;
}
.drop_item:hover {
    text-decoration: none;
    color: var(--dark);
}
.drop_box:hover .drop_down {
    display: flex;
}
.drop_down:hover .drop_down {
    display: flex;
}
.footer {
    background-image: url(../image/main_bgfilter.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position-y: 50px;
    background-position-x: -75px;
}
.footer .a_yellow,
.footer .a_white {
    display: block;
}
.a_yellow {
    font-family: "CalibriBold";
    font-size: 18px;
    color: var(--yellow);
    transition: 0.4s;
}
.a_yellow:hover {
    color: #fff;
    text-decoration: none;
}
.a_white {
    font-family: "CalibriRegular";
    font-size: 16px;
    color: #fff;
    transition: 0.4s;
}
.a_white:hover {
    color: var(--yellow);
    text-decoration: none;
}
.adress {
    display: grid;
    grid-template-columns: 30px auto;
    column-gap: 10px;
}
.sslcard {
    display: flex !important;
    align-items: flex-end;
    padding-left: 60px;
}
.f_son {
    font-family: "CalibriBold";
    font-size: 16px;
    color: #fff;
}
.f_son span {
    font-family: "GilroyLight";
    font-size: 16px;
}
.toggle_cont {
    display: inline-block;
    cursor: pointer;
}
.bar1,
.bar2,
.bar3 {
    width: 30px;
    height: 2px;
    background-color: #fcdb0b;
    margin: 7px 0;
    transition: 0.4s;
}
.change .bar1 {
    -webkit-transform: rotate(-45deg) translate(-9px, 6px);
    transform: rotate(-45deg) translate(-9px, 6px);
}
.change .bar2 {
    opacity: 0;
}
.change .bar3 {
    -webkit-transform: rotate(45deg) translate(-8px, -8px);
    transform: rotate(45deg) translate(-8px, -8px);
}
.main_sec {
    padding: 0px !important;
    position: relative;
}
.main_sec .motor{
    position: absolute;
    bottom: 100px;
    z-index: 2;
    right: 150px;
    width: 950px;
}
.dortlu_card {
    margin-top: -50px;
    padding-bottom: 25px;
}
.dortlu_card .d_card{
    background: #F2EFE6;
    border-radius: 20px;
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    transition: .3s;
}
.dortlu_card .d_card:hover{
    transform: scale(1.1);
    background: #fff;
    box-shadow: 0px 0px 45px rgba(0, 0, 0, 0.26)
}
.dortlu_card .d_card a{
    font-family: "CalibriBold";
    font-size: 24px;
    font-weight: 700;
    color: #282932;
}
.dortlu_card .d_card a:hover{
    text-decoration: none;
}
.dortlu_card .img_sar{
    background: var(--yellow);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 110px;
    height: 110px;
}
.form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + .75rem + 6px);
    padding: .375rem .75rem;
    font-family: "CalibriBold";
    font-size: 20px;
    font-weight: 700;
    text-align-last: center;
    line-height: 1.5;
    color: var(--dark);
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #909092;
    border-radius: 12px;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    box-shadow: 0 3px 4px #0000001f;
}
label{
    font-family: "CalibriBold";
    font-size: 22px;
    font-weight: 700;
    line-height: 1.5;
    color: var(--dark);
}
.form-check label{
    font-family: "GilroyLight";
    font-size: 16px;
    font-weight: 700;
    color: #909092;
}
.form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: #202122;
    outline: 0;
    box-shadow: 0 3px 4px #0000001f;
}
.multislider img{
    width: 250px !important;
}
:focus {
    outline: none !important;
}
.slick-prev, .slick-next {
    top: 40%;
    z-index: 9;
}
.slick-prev {
    left: 5px;
}
.slick-next {
    right: 5px;
}
.slick-prev img,
.slick-next img{
    width: 25px !important;
}
.slick-list{
    text-align-last: center;
}
.tech{
    background-image: url('../image/tech_bg.JPG');
    background-repeat: no-repeat;
    background-size: 60%;
    background-position: center bottom;
}
.hizmet{
    background-color: var(--dark);
}
.hizm_card p{
    font-family: "GilroyLight";
    font-size: 15px;
    font-weight: 700;
    color: #fff;
}
.small_row{
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}
.kry_cagir{
    background-color: var(--yellow);
}
.kry_cagir .adm{
    display: grid;
    grid-template-columns: 100px auto;
    align-items: center;
    column-gap: 10px;
}
.kry_cagir .adm p{
    font-family: "GilroyLight";
    font-size: 14px;
    font-weight: 700;
    color: #626264;
}
.yorumlar h3{
    font-family: "GilroyExtraBold";
    font-size: 28px;
    font-weight: 900;
    color: var(--yellow);
}
.yorumlar h2{
    font-family: "GilroyExtraBold";
    font-size: 32px;
    font-weight: 900;
    color: var(--dark);
}
.yorumlar h5{
    font-family: "GilroyExtraBold";
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
}
.yorumlar h6{
    font-family: "GilroyLight";
    font-size: 16px;
    font-weight: 700;
    color: var(--yellow);
}
.yorumlar p,
.parag_text{
    font-family: "GilroyLight";
    font-size: 20px;
    color: var(--dark);
}
.yorumlar hr{
    border-color: #707070;
    width: 300px;
}
.yorumlar .slide-item{
    text-align: -webkit-center;
}
.app_down{
    background-color: #FAFAFA;
}
.app_down h1.b{
    font-family: "GilroyLight";
    font-size: 42px;
    color: var(--dark);
}
.app_down h1.y{
    font-family: "GilroyLight";
    font-size: 42px;
    color: var(--yellow);
}
.app_down h1.b1{
    font-family: "GilroyExtraBold";
    font-size: 62px;
    color: var(--dark);
}
.app_down h1.y1{
    font-family: "GilroyExtraBold";
    font-size: 62px;
    color: var(--yellow);
}
.app_down .text{
    padding-left: 150px;
}
.app_down .app-img{
    width: 400px;
}
.bulten{
    background-color: var(--yellow);
}
.bulten .blt_card{
    display: grid;
    grid-template-columns: 90px auto;
    align-items: center;
    padding-left: 150px;
}
.bulten .blt_card h5{
    font-family: "GilroyExtraBold";
    font-size: 16px;
    color: #fff;
}
.bulten .blt_card h1{
    font-family: "GilroyExtraBold";
    font-size: 32px;
    color: var(--dark);
}
.bulten .input-group{
    width: 75%;
}
.bulten .form-control {
    width: 75%;
    height: calc(1.5em + .75rem + 15px);
    padding: .375rem 1.75rem;
    font-family: "GilroyLight";
    font-size: 18px;
    font-weight: 700;
    text-align-last: left;
    border-radius: 50px;
}
.bulten .input-group-append .btn{
    border-radius: 50px;
    margin-left: -50px;
    padding: 0px 30px;
    z-index: 9;
    background-color: var(--dark);
    font-family: "GilroyExtraBold";
    font-size: 18px;
    color: #fff;
}
.title_2 a{
    color: var(--dark);
    transition: .2s;
}
.title_2 a:hover{
    text-decoration: none;
    color: var(--yellow);
}
.p_hizmetleri .hizz_card h5.kateg{
    display: inline-block;
    background-color: var(--yellow);
    border-radius: 50px;
    font-family: "GilroyExtraBold";
    font-size: 22px;
    color: #fff;
    padding: 10px 15px;
}
.p_hizmetleri .hizz_cardY{
    display: grid;
    grid-template-columns: 250px auto;
}
.p_hizmetleri .hizz_cardY .text{
    background-color: #F2EFE6;
    padding-left: 15px;
    padding-right: 15px;
}
.p_hizmetleri .hizz_cardY .text h5.kateg{
    display: inline-block;
    background-color: var(--yellow);
    border-radius: 50px;
    font-family: "GilroyLight";
    font-weight: 700;
    font-size: 16px;
    color: #fff;
    padding: 10px 15px;
}
.p_hizmetleri .hizz_cardY .text h2{
    font-size: 26px;
}
.p_hizmetleri .hizz_cardY .text h5{
    font-size: 18px;
    font-weight: 300;
}
.p_hizmetleri .img_scale{
    display: block;
    overflow: hidden;
    border-radius: 50px;
}
.p_hizmetleri .hizz_cardY .img_scale{
    display: block;
    overflow: hidden;
    border-radius: 50px 0px 0px 50px;
}
.p_hizmetleri .img_scale img{
    transition: .4s;
}
.p_hizmetleri .img_scale img:hover{
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}
.blog_head,
.sss_head,
.about_head,
.yntkrl_head,
.clsnyps_head,
.blglrmz_head,
.araba_head,
.motor_head,
.ik_head{
    position: relative;
}
.blog_head::before,
.sss_head::before,
.about_head::before,
.yntkrl_head::before,
.clsnyps_head::before,
.blglrmz_head::before,
.araba_head::before,
.motor_head::before,
.ik_head::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    filter: brightness(0.55);
}
.blog_head h2,
.sss_head h2,
.about_head h2,
.yntkrl_head h2,
.clsnyps_head h2,
.blglrmz_head h2,
.araba_head h2,
.motor_head h2,
.ik_head h2{
    font-family: "GilroyExtraBold";
    font-size: 52px;
    color: var(--yellow);
}
.blog_head::before{
    background-image: url('../image/blog_bg.png');
}
.sss_head::before {
    background-image: url('../image/sss_bg.png');
}
.about_head::before {
    background-image: url('../image/hakkimizda.png');
}
.yntkrl_head::before {
    background-image: url('../image/yonetimk.png');
}
.clsnyps_head::before {
    background-image: url('../image/calisanyapi.png');
}
.blglrmz_head::before {
    background-image: url('../image/bolgelerimiz.png');
}
.araba_head::before {
    background-image: url('../image/arackry_bg.png');
}
.motor_head::before {
    background-image: url('../image/mtrkry_bg.png');
}
.ik_head::before {
    background-image: url('../image/ik_bg.png');
}
.breadcrumb{
    background-color: transparent;
}
.breadcrumb li a,
.breadcrumb-item.active{
    font-family: "GilroyLight";
    font-weight: 700;
    font-size: 20px;
    color: #fff;
    text-decoration: none;
}
.breadcrumb-item+.breadcrumb-item::before {
    display: inline-block;
    padding-right: .5rem;
    color: #ffffff;
    content: ">";
}
.boldhr{
    border-top: 15px solid rgb(252 219 11);
    width: 300px;
}
.blog_right{
    place-self: center;
}
.hizmet_card h3{
    font-family: "GilroyExtraBold";
    font-size: 26px;
    color: var(--dark);
}
.hizmet_card p{
    font-family: "GilroyLight";
    font-size: 18px;
    color: var(--dark);
}
.btn_dark{
    background-color: var(--dark);
    color: var(--yellow);
    font-family: "GilroyExtraBold";
    font-size: 20px;
    border-radius: 0px;
    padding: 5px 15px;
}
.alert_yellow{
    background-color: var(--yellow);
    color: var(--dark);
    font-family: "GilroyLight";
    font-size: 16px;
    border-radius: 12px;
}
.btn_dark:hover{
    color: var(--yellow);
}
.oval{
    border-radius: 12px !important;
}
.bold_btn{
    font-family: "GilroyLight" !important;
    font-size: 18px !important;
    font-weight: 700 !important;
}
.sorular_page #accordion .card-header,
.sorular_page #accordion .card{
    border-bottom: 0;
    padding: 0 !important;
    border-radius: 0;
    border: 0;
}
.sorular_page #accordion .card-header button{
    width: 100%;
    text-align: left;
    padding: 0 !important;
    padding-left: 15px !important;
    margin: 0 !important;
    height: 50px;
    display: flex;
    align-items: center;
    background-color: var(--dark);
    border-radius: 0px;
    border: 1px solid var(--dark);
    border-right: 0 !important;
    color: #fff;
    font-family: "GilroyExtraBold";
    font-size: 18px;
    text-decoration: none;
}
.sorular_page #accordion .card-header button span{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: -1px;
    width: 80px;
    height: 50px;
    background-color: var(--yellow);
    clip-path: polygon(33% 0, 100% 0, 100% 100%, 0% 100%);
}
.sorular_page #accordion .card-header button span i{
    font-size: 24px;
    margin-left: 10px;
    color: var(--dark);
}
[data-toggle="collapse"].collapsed {
    background-color: transparent !important;
    color: var(--dark) !important;
}
[data-toggle="collapse"].collapsed span {
    background-color: var(--dark) !important;
}
[data-toggle="collapse"].collapsed span i{
    color: var(--yellow) !important;
}
.giris_yap{
    background-color: #FAFAFA;
    border: 1px solid #707070;
    border-radius: 36px;
    padding: 25px 60px;
    height: 100%;
}
.giris_yap .title_1{
    font-size: 36px;
}
.cst_form .form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + .75rem + 8px);
    padding: .375rem 1.25rem;
    font-family: "CalibriRegular";
    font-size: 18px;
    font-weight: 400;
    text-align-last: left;
    line-height: 1.5;
    color: #B2ACAC;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #707070;
    border-radius: 12px;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    box-shadow: 0 3px 6px #00000017;
}
.cst_form textarea {
    height: auto !important;
}
.cst_select .form-control {
    text-align-last: center;
}
.form_modal .modal-content{
    border-radius: 0px;
}
.form_modal h1{
    color: var(--dark);
    font-family: "GilroyExtraBold";
    font-size: 26px;
}
.form_modal p{
    color: var(--dark);
    font-family: "GilroyLight";
    font-size: 16px;
}
.check_img{
    display: flex;
    justify-content: center;
    padding: 10px;
    border-radius: 6px;
    background: #282932;
    margin-bottom: 10px;
    width: 95px;
}
.modal .bilgiler{
    border: 1px solid #c7c7c7;
    margin: 0px 5px;
    padding: 15px 0px 0px 0px;
    box-shadow: 0px 3px 6px #0000000d;
}
.modal_addres{
    display: grid;
    grid-template-columns: auto 60px;
    justify-items: center;
}
.modal_addres .ic_sar{
    display: flex;
    align-items: center;
    height: fit-content;
    padding: 5px 7px;
    background-color: var(--yellow);
}
.statu{
    display: inline-block;
    padding: 5px 10px;
    background: #FC0B0B;
}
.gitgel{
    display: inline-block;
    padding: 5px 10px;
    background: #0BFCCB;
}
.statu p{
    color: #fff;
    margin-bottom: 0px;
}
.list-group {
    background: var(--dark);
    border-radius: 0px;
    padding: .75rem 1.25rem;
}
.list-group-item {
    position: relative;
    display: block;
    padding: .5rem 0rem;
    border: 0;
    border-bottom: 2px solid #ABABAF;
    background-color: transparent;
}
.list-group-item a{
    color: #fff;
    font-family: "GilroyLight";
    font-size: 18px;
    text-decoration: none;
}
.list-group-item.active {
    z-index: 2;
    background-color: transparent;
    border-color: #ABABAF;
}
.list-group-item.active a{
    color: var(--yellow);
    font-family: "GilroyLight";
    font-size: 18px;
}
.parag_text b{
    font-family: "GilroyExtraBold";
    font-size: 20px;
    color: var(--dark);
}
.hzmt_btn{
    display: grid;
    grid-template-columns: 95px auto;
    align-items: center;
    border: 1px solid #a1a1a1;
    height: 59.8px;
    font-family: "GilroyExtraBold";
    font-size: 18px;
    color: var(--dark);
    padding-right: 15px;
    transition: .2s;
}
.hzmt_btn:hover{
    border: 1px solid var(--yellow);
    color: var(--yellow);
}
.hzmt_btn img{
    width: 85px;
    height: 60px;
    position: relative;
    z-index: 9;
    margin-top: -1px;
    margin-left: -1px;
}
.bold_t{
    font-family: "GilroyExtraBold";
    font-size: 20px;
    color: var(--dark);
}
.yellow_box{
    padding: 15px 20px;
    background: var(--yellow);
}
.yellow_box span{
    display: block;
    border: 2px solid #282932;
    padding: 20px;
}
.dark_box{
    background: var(--dark);
    color: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding-left: 50px;
    justify-content: center;
}
.dark_box .address{
    display: grid;
    grid-template-columns: 50px auto;
    align-items: center;
}
.dark_box .address p{
    font-family: "GilroyLight";
    font-size: 20px;
}
.contact iframe{
    width: 100%;
    height: 350px;
}
.yardim h4{
    font-family: "GilroyLight";
    font-size: 26px;
    color: var(--dark);
    font-weight: 700;
}
.yardim h4 span{
    font-family: "GilroyExtraBold";
    font-size: 26px;
    color: var(--yellow);
}
.old_kry .table td, .table th {
    border: 1px solid #dadbdb;
    text-align: center;
    font-family: "GilroyLight";
    font-size: 16px;
    color: var(--dark);
}
.old_kry thead{
    background: #f0f0f0;
}
.table thead th {
    vertical-align: bottom;
    border-bottom: 2px solid #dadbdb;
    font-family: "GilroyExtraBold";
    font-size: 18px;
    color: var(--dark);
}
.old_kry .btn_yellow{
    padding: 5px 15px;
}
.kry_nerede .nerede{
    display: flex; justify-content: space-between;
}
.kry_nerede .img_in{
    display: inline-block;
    padding: 30px;
    border-radius: 50%;
    background: var(--yellow);
}
.kry_nerede .img_in.active{
    background: var(--dark);
}
.kry_nerede .orta_hr{
    margin: 0px 25px;
    border-top: 8px solid var(--yellow);
    margin-top: -70px;
}
.kry_nerede .blglr span{
    display: block;
    text-align: center;
    background: var(--yellow);
    padding: 8px 0px;
    font-family: "GilroyLight";
    font-size: 18px;
    color: var(--dark);
    font-weight: 700;
}
.kry_nerede .blglr span.time{
    background: var(--dark);
    color: #fff;
}
.dropdown-menu {
    position: absolute !important;
    top: 100%;
    right: 5px;
    left: auto;
    text-align: center;
    background: var(--yellow);
    border-radius: 0px;
    border: 1px solid grey;
    font-size: 16px;
    color: var(--dark);
}
.dropdown-item:focus, .dropdown-item:hover {
    color: inherit;
    text-decoration: none;
    background-color: inherit;
}
.check_boxs{
    display: inline-block;
    border: 1px solid;
    border-radius: 16px;
    width: 60%;
}
.check_boxs .form-check {
    position: relative;
    display: block;
    padding-left: 1.25rem;
    padding: 10px 2.5rem;
    border-bottom: 1px solid;
}
.check_boxs .form-check label{
    font-family: "GilroyLight";
    font-size: 17px;
    color: var(--dark);
    font-weight: 700;
    margin-left: 10px;
}
.odeme .table td, 
.odeme .table th {
    padding: .75rem;
    vertical-align: top;
    border: 1px solid #dee2e6;
    text-align: left;
}
/*
    Kredi kartı
*/
#ccsingle {
    position: absolute;
    right: 15px;
    top: 20px;
}

#ccsingle svg {
    width: 100px;
    max-height: 60px;
}
#ccicon {
    width: 40px;
    height: auto;
    position: absolute;
    bottom: .75rem;
    right: 15px;
}
.creditcard svg#cardfront,
.creditcard svg#cardback {
    width: 100%;
    -webkit-box-shadow: 1px 5px 6px 0px black;
    box-shadow: 1px 5px 6px 0px black;
    border-radius: 22px;
}
/* CHANGEABLE CARD ELEMENTS */
.creditcard .lightcolor,
.creditcard .darkcolor {
    -webkit-transition: fill .5s;
    transition: fill .5s;
}

.creditcard .lightblue {
    fill: #03A9F4;
}

.creditcard .lightbluedark {
    fill: #0288D1;
}

.creditcard .red {
    fill: #ef5350;
}

.creditcard .reddark {
    fill: #d32f2f;
}

.creditcard .purple {
    fill: #ab47bc;
}

.creditcard .purpledark {
    fill: #7b1fa2;
}

.creditcard .cyan {
    fill: #26c6da;
}

.creditcard .cyandark {
    fill: #0097a7;
}

.creditcard .green {
    fill: #66bb6a;
}

.creditcard .greendark {
    fill: #388e3c;
}

.creditcard .lime {
    fill: #d4e157;
}

.creditcard .limedark {
    fill: #afb42b;
}

.creditcard .yellow {
    fill: #ffeb3b;
}

.creditcard .yellowdark {
    fill: #f9a825;
}

.creditcard .orange {
    fill: #ff9800;
}

.creditcard .orangedark {
    fill: #ef6c00;
}

.creditcard .grey {
    fill: #bdbdbd;
}

.creditcard .greydark {
    fill: #616161;
}

/* FRONT OF CARD */
#svgname {
    text-transform: uppercase;
}

#cardfront .st2 {
    fill: #FFFFFF;
}

#cardfront .st3 {
    font-family: 'Source Code Pro', monospace;
    font-weight: 600;
}

#cardfront .st4 {
    font-size: 54.7817px;
}

#cardfront .st5 {
    font-family: 'Source Code Pro', monospace;
    font-weight: 400;
}

#cardfront .st6 {
    font-size: 33.1112px;
}

#cardfront .st7 {
    opacity: 0.6;
    fill: #FFFFFF;
}

#cardfront .st8 {
    font-size: 24px;
}

#cardfront .st9 {
    font-size: 36.5498px;
}

#cardfront .st10 {
    font-family: 'Source Code Pro', monospace;
    font-weight: 300;
}

#cardfront .st11 {
    font-size: 16.1716px;
}

#cardfront .st12 {
    fill: #4C4C4C;
}

/* BACK OF CARD */
#cardback .st0 {
    fill: none;
    stroke: #0F0F0F;
    stroke-miterlimit: 10;
}

#cardback .st2 {
    fill: #111111;
}

#cardback .st3 {
    fill: #F2F2F2;
}

#cardback .st4 {
    fill: #D8D2DB;
}

#cardback .st5 {
    fill: #C4C4C4;
}

#cardback .st6 {
    font-family: 'Source Code Pro', monospace;
    font-weight: 400;
}

#cardback .st7 {
    font-size: 27px;
}

#cardback .st8 {
    opacity: 0.6;
}

#cardback .st9 {
    fill: #FFFFFF;
}

#cardback .st10 {
    font-size: 24px;
}

#cardback .st11 {
    fill: #EAEAEA;
}

#cardback .st12 {
    font-family: 'Rock Salt', cursive;
}

#cardback .st13 {
    font-size: 37.769px;
}

/* FLIP ANIMATION */

.creditcard {
    width: 100%;
    max-width: 400px;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    transition: -webkit-transform 0.6s;
    -webkit-transition: -webkit-transform 0.6s;
    transition: transform 0.6s;
    transition: transform 0.6s, -webkit-transform 0.6s;
    cursor: pointer;
    margin-left: auto;
}

.creditcard .front,
.creditcard .back {
    position: absolute;
    width: 100%;
    max-width: 400px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
    color: #47525d;
}

.creditcard .back {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.creditcard.flipped {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
}
/*
    Kredi kartı
*/
.title_4_form {
    font-family: "CalibriBold";
    font-size: 32px;
    font-weight: 700;
    line-height: 1.5;
    color: var(--dark);
}
.gallery-container {
    background-color: #fff;
    color: #35373a;
    min-height: 100vh;
}

.gallery-container h1 {
    text-align: center;
    margin-top: 50px;
    font-family: 'Droid Sans', sans-serif;
    font-weight: bold;
}

.gallery-container p.page-description {
    text-align: center;
    margin: 25px auto;
    font-size: 18px;
    color: #999;
}

.tz-gallery {
    padding: 20px;
}

/* Override bootstrap column paddings */
.tz-gallery .row > div {
    padding: 10px;
}

.tz-gallery .lightbox img {
    width: 100%;
    height: 100%;
    border-radius: 0;
    position: relative;
}

.tz-gallery .lightbox:after {
    position: absolute;
    top: 10px;
    left: 10px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    opacity: 0;
    background-color: rgba(203, 206, 46, 0.438);
    content: '';
    transition: 0.4s;
}

.tz-gallery .lightbox:hover:after {
    opacity: 1;
}

.baguetteBox-button {
    background-color: transparent !important;
}
.kvkk_ilet{
    display: inline-block;
    padding: 5px 15px;
    background: #fcdb0b;
    font-size: 26px;
    position: relative;
    top: -24px;
}
.kvkk_hr{
    border-top: 20px solid rgb(255 214 27); width: 100px;
}
.right{
    position: absolute;
    right: 0px;
    bottom: -10px;
}
.left{
    position: absolute;
    left: 0px;
    bottom: -10px;
}
@media (min-width: 1396px) {
    .navbar-expand-xxl {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: flex-start;
    }
    .navbar-expand-xxl .navbar-nav {
        flex-direction: row;
    }
    .navbar-expand-xxl .navbar-nav .nav-link {
        padding-right: 0.5rem;
        padding-left: 0.5rem;
    }
    .navbar-expand-xxl .navbar-collapse {
        display: flex !important;
    }
    .navbar-expand-xxl .navbar-toggler {
        display: none;
    }
}
@media (max-width: 1520px) {
    .main_sec .main_bg {
        width: 100%;
        height: 900px;
        object-fit: cover;
    }
    .main_sec .motor {
        width: 650px;
    }
}
@media (max-width: 1396px) {
    .drop_box:hover .drop_down {
        display: none;
    }
    .drop_down:hover .drop_down {
        display: none;
    }
    .drop_down {
        display: none;
        position: relative;
        width: auto;
        padding: 8px 15px 15px 10px;
        background: transparent;
        border: 1px solid #ffffff45;
        border-left: 0px;
        border-right: 0px;
    }
    .drop_item {
        color: #fff;
    }
    .drop_item b {
        color: #fff;
    }
}
@media (max-width: 1199.98px) {
    .main_sec .main_bg {
        width: 100%;
        height: 680px !important;
        object-fit: cover;
    }
    .main_sec .main_text {
        position: absolute;
        top: 100px;
        left: 50px;
    }
    .main_sec .main_text h1 {
        font-size: 62px;
    }
    .main_sec .main_text h1.by {
        font-size: 68px;
    }
    .main_sec .motor {
        position: absolute;
        bottom: 80px;
        z-index: 2;
        right: 100px;
        width: 520px !important;
    }
    .app_down h1.b,
    .app_down h1.y {
        font-size: 32px;
    }
    .app_down h1.b1,
    .app_down h1.y1 {
        font-size: 42px;
    }
    .app_down .app-img {
        width: 300px;
    }
    .main_navbar .navbar-nav{
        padding-top: 25px;
    }
    .btn_search{
        display: inline-block !important;
    }
    #searchbar {
        display: none;
        position: relative;
        right: 0px;
        border-radius: 50px;
        border: 1px solid #282932;
        outline: none;
        padding: 5px 15px;
        margin-top: 5px;
        margin-bottom: 5px;
    }
}
@media (max-width: 991.98px) {
    .small_row {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    .bulten .blt_card {
        padding-left: 0px;
    }
    .bulten .row {
        padding-left: 150px;
    }
}
@media (max-width: 767.98px) {
    .p_hizmetleri .hizz_cardY {
        display: grid;
        grid-template-columns: auto;
    }
    .main_sec .main_bg {
        width: 100%;
        height: 580px !important;
        object-fit: cover;
    }
    .main_sec .main_text {
        position: absolute;
        top: 50px !important;
        left: 50px;
    }
    .main_sec .main_text h1 {
        font-size: 42px !important;
    }
    .main_sec .main_text h1.by {
        font-size: 48px !important;
    }
    .main_sec .motor {
        position: absolute;
        bottom: 80px;
        z-index: 2;
        right: 50px;
        width: 420px !important;
    }
    .bulten .row {
        padding-left: 50px !important;
    }
    .p_hizmetleri .img_scale img {
        height: 100%;
        object-fit: cover;
        width: 100%;
        border-radius: 48px;
    }
    .p_hizmetleri .hizz_cardY .text {
        background-color: #F2EFE6;
        border-radius: 32px;
        padding: 15px;
    }
    .check_boxs {
        width: 100%;
    }
    .dropdown-menu {
        position: static !important;
        right: auto;
    }
    .kry_nerede .img_in {
        padding: 15px;
    }
    .kry_nerede .img_in img{
        width: 50px;
    }
    .kry_nerede .orta_hr {
        border-top: 5px solid var(--yellow);
        margin-top: -45px;
    }
    .yardim h4{
        font-size: 20px;
    }
    .yardim h4 span{
        font-size: 20px;
    }
    .dark_box{
        padding: 15px 20px;
    }
    .app_down .app-img {
        width: 200px;
    }
    .app_down .text {
        padding-left: 15px;
    }
    .app_down h1.b,
    .app_down h1.y{
        font-size: 26px;
    }
    .app_down h1.b1,
    .app_down h1.y1 {
        font-size: 34px;
    }
    .blog_head h2, .sss_head h2, .about_head h2, .yntkrl_head h2, .clsnyps_head h2, .blglrmz_head h2,
    .araba_head h2,
    .motor_head h2,
    .ik_head h2 {
        font-size: 32px;
    }
    ol.breadcrumb{
        place-content: center;
    }
    .breadcrumb li a, .breadcrumb-item.active {
        font-size: 16px;
    }
}
@media (max-width: 575.98px) {
    .sorular_page #accordion .card-header button {
        height: auto;
        font-family: "GilroyLight";
        font-size: 14px;
    }
    .hizm_card p {
        font-family: "GilroyLight";
        font-size: 14px;
        font-weight: 300;
        color: #fff;
    }
    .hizm_card img {
        height: 35px !important;
    }
    .mark_slider .slick-prev img {
        margin-right: -18px;
    }
    .mark_slider .slick-next img {
        margin-left: -18px;
    }
    .mark_slider .slick-list{
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
    .dortlu_card .d_card {
        padding: 15px;
    }
    .dortlu_card .img_sar {
        width: 70px;
        height: 70px;
    }
    .dortlu_card .img_sar img{
        width: 40px;
    }
    .title_2 {
        font-size: 26px;
    }
    .title_3 {
        font-size: 16px;
    }
    .p_hizmetleri .hizz_cardY .text h5 {
        font-size: 16px;
    }
    .bulten .input-group {
        width: 100%;
    }
    .bulten .form-control {
        width: 50%;
        height: calc(1.5em + .75rem + 1px);
    }
    .bulten .row {
        padding-left: 15px !important;
    }
    .bulten .blt_card {
        grid-template-columns: 60px auto;
    }
    .bulten .blt_card h1 {
        font-family: "GilroyExtraBold";
        font-size: 18px;
        color: var(--dark);
    }
    .bulten .blt_card img {
        width: 50px;
    }
    .slick-prev img, .slick-next img {
        width: 15px !important;
    }
    .slick-prev img{
        width: 15px !important;
        margin-left: -75px;
    }
    .slick-next img {
        margin-right: -35px;
    }
    .yorumlar h3 {
        font-size: 24px;
    }
    .yorumlar h2 {
        font-size: 24px;
    }
    .yorumlar p, .parag_text {
        font-size: 16px;
    }
    .btn_white {
        background-color: #fff;
        font-family: "GilroyLight";
        font-weight: 700;
        font-size: 18px;
        color: var(--dark);
        border-radius: 22px;
        width: fit-content;
        position: relative;
        z-index: 1;
    }
    .main_sec .main_bg {
        width: 100%;
        height: 420px !important;
        object-fit: cover;
    }
    .main_sec .main_text {
        position: absolute;
        top: 25px !important;
        left: 35px;
    }
    .main_sec .main_text h1 {
        font-size: 32px !important;
    }
    .main_sec .main_text h1.by {
        font-size: 38px !important;
    }
    .main_sec .motor {
        position: absolute;
        bottom: 50px;
        z-index: 2;
        right: 5px;
        width: 250px !important;
    }
    .navbar-brand .logo{
        height: 50px;
    }
    .giris_yap {
        border-radius: 16px;
        padding: 15px 30px;
    }
    .title_1 {
        font-size: 32px;
    }
}