
@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');


html {
    scroll-behavior: smooth;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Poppins", sans-serif;
    background: #ffffff;
    color: #0b0b0b;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.loader {
    position: fixed;
    inset: 0;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 3.6%;
    top: 16.4%;
}

.loader svg {
    width: 139px !important;
    height: 139px !important;
    display: block;
}

.loader svg path {
    animation: loaderFlash 2s ease-in-out infinite;
}

@keyframes loaderPulse {
    0% {
        transform: scale(0.9);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.05);
        opacity: 1;
    }
}

@keyframes loaderFlash {
    0%,
    100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}
/* WRAPPER */
.about-wrapper {
    width: 100%;
    display: flex;
    font-family: "Poppins", sans-serif;
    color: #555;
    padding-bottom: 20px;
}

/* SOL DÃƒâ€žÃ‚Â°KEY ALAN */
.left-stick {
    width: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto;
    flex-shrink: 0;
}

.left-stick img {
    width: 70px;
    margin-bottom: 20px;
}

.stick-line {
    width: 2px;
    height: 100%;
    background: #e6e6e6;
    border-radius: 2px;
}

/* ANA CONTAINER */
.about-container {
    margin-left: 0px;
    width: calc(100% - 80px);
    padding: 60px 70px 0px 0px;
    max-width: 1500px;
    box-sizing: border-box;
    margin-top: 230px;
}

/* ÃƒÆ’Ã…â€œST KISIM */
.about-top {
    display: flex;
    justify-content: start;
    align-items: flex-start;
    margin-bottom: 0px;
    gap: 65px;
}

h3{
    font-size: 18px;
    font-weight: 400;
    line-height: 32px;
}

.about-text {
    width: 750px;
}

.about-text p {
    font-size: 12px;
    line-height: 1.7;
    margin-bottom: 22px;
    color: #909090;
    text-align: justify;
}

.about-contact {
    text-align: left;
    margin-top: 0px;
    flex-shrink: 0;
    width: 420px;
}

.about-contact p {
    font-size: 12px;
    margin-bottom: 8px;
    color: #909090;
}

.about-contact a {
    font-size: 12px;
    color: #909090;
    border-bottom: 1px solid #909090;
    text-decoration: none;
}

.brand-list {
    display: flex;
    flex-wrap: wrap;
    padding: 150px 0 160px 0;
    justify-content: space-between;
}

.brand-list img {
    height: 24px;
    opacity: 0.75;
    transition: 0.3s;
    width: 75px;
    object-fit: contain;
    filter: grayscale(1) opacity(0.7) contrast(0.5);
    transition: 0.4s;
}

.brand-list img:hover {
    transition: 0.4s;
    filter: none;
}
.city-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding-bottom: 50px;
    border-bottom: 1px solid #eee;
    margin-bottom: 0px;
    padding-top: 100px;
    border-top: 1px solid #eee;
}

.city h4 {
    font-size: 17px;
    margin-bottom: 10px;
    color: #222;
}

.city p {
    font-size: 12px;
    color: #909090;
    line-height: 1.5;
}

/* FOOTER */
.footer {
    padding-top: 20px;
    font-size: 12px;
    color: #909090;
    display: flex;
    justify-content: space-between;
}

.footer-links a {
    margin-left: 18px;
    font-size: 12px;
    color: #909090;
    text-decoration: none;
}


.contact-form-wrapper {
    width: 420px;
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 18px;

    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all .45s ease;
}

.contact-form-wrapper.open {
    opacity: 1;
    max-height: 900px;
}

.contact-form-wrapper input,
.contact-form-wrapper textarea {
    width: 100%;
    border: 1px solid #b5b5b5;
    padding: 12px;
    font-size: 12px;
    color: #909090;
    background: transparent;
    margin-bottom:20px;
}

.contact-form-wrapper textarea {
    height: 120px;
    resize: none;
}

.form-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.not-robot-box {
    border: 1px solid #b5b5b5;
    padding: 14px 30px;
    font-size: 12px;
    color: #909090;
}

.form-send-btn {
    border: 1px solid #b5b5b5;
    padding: 14px 32px;
    font-size: 12px;
    background: transparent;
    cursor: pointer;
    color: #909090;
}

.follow-pin-offset {
    transform: translateY(110px);
}


.logo-fade {
    transition: opacity .4s ease, transform .4s ease;
    opacity: 0;
    transform: scale(0.95);
}

.left-stick img {
    width: 80px;
    height: 70px;
    object-fit: contain;
    object-position: center;
}


.logo-wrapper {
    position: relative;
    width: 90px;     
    height: 120px;   
}

.logo-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 90px;     
    height: 120px;
    object-fit: contain;
    object-position: top left;  
    transition: opacity .4s ease;
}


.logo-main { opacity: 1; }
.logo-o    { opacity: 0; }

img.logo-main {
    left: 26%;
    height: 130px !important;
    width: 130px !important;
}

img.logo-o {
    left: 25.3%;
    height: 102px !important;
    width: 102px !important;
    margin-top: -2px;
}

@media (max-width: 1400px) {
    .about-container {
        width: 100%;
        padding: 50px 50px 0;
    }

    .about-top {
        gap: 40px;
    }

    .about-text {
        max-width: 100%;
    }
}

@media (max-width: 992px) {
    .about-wrapper {
        flex-direction: column;
        padding: 40px 28px 80px;
    }

    .career-form-wrapper input,
    .career-form-wrapper textarea {
        width: 100% !important;
    }
    .left-stick {
        width: 100%;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 18px;
        margin-bottom: 30px;
    }

    .stick-line {
        height: 90px;
    }

    .logo-wrapper {
        width: 80px;
        height: 100px;
    }

    .logo-wrapper img,
    img.logo-main,
    img.logo-o {
        width: 80px !important;
        height: 100px !important;
        left: 0;
    }

    .about-container {
        margin-top: 20px;
        padding: 0;
    }

    .about-top {
        flex-direction: column;
        gap: 50px;
    }

    .about-contact {
        width: 100%;
    }

    .contact-form-wrapper {
        width: 100%;
    }

    .brand-list {
        justify-content: center;
        gap: 28px;
        padding: 80px 0 100px;
    }

    .brand-list img {
        width: 65px;
        height: 20px;
    }

    .city-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }

    .form-bottom {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    .footer {
        flex-direction: column;
        gap: 16px;
    }

    .footer-links {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
    }

    .footer-links a {
        margin: 0;
    }
}

@media (max-width: 768px) {
    .about-wrapper {
        padding: 30px 20px 70px;
    }

    .about-container {
        padding: 0;
    }

    .about-text p,
    .about-contact p,
    .about-contact a,
    .city p,
    .footer {
        font-size: 13px;
    }

    .brand-list {
        gap: 20px;
    }

    .brand-list img {
        width: 58px;
    }

    .city-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        padding-top: 70px;
    }

    .left-stick {
        gap: 12px;
    }

    .stick-line {
        height: 70px;
    }

    .form-bottom {
        width: 100%;
    }

    .form-send-btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 540px) {
    .about-wrapper {
        padding: 84px 16px 60px;
    }

    .left-stick {
        flex-direction: column;
    }

    .stick-line {
        width: 2px;
        height: 60px;
    }

    .logo-wrapper {
        width: 130px;
        height: 125px;
        text-align: center;
        /* justify-content: center; */
        /* display: flex; */
    }

    .logo-wrapper img,
    img.logo-main,
    img.logo-o {
        width: 130px !important;
        height: 100px !important;
    }

    .brand-list {
        padding: 60px 0 80px;
    }

    .footer-links {
        flex-direction: column;
        align-items: flex-start;
    }
}


.menu-link ul {
    list-style: none;
    display: flex;
    gap: 16px;
}

.menu-link ul li {
    margin: 0;
    margin-top: -8px;
}

.menu-link ul li a {
    font-size: 12px;
    line-height: 1.7;
    margin-bottom: 22px;
    color: #909090;
    text-align: justify;
}
.menu-link {
    display: flex;
    justify-content: end;
    margin-bottom: 30px;
}

.tab-link {
    border: none;
    background: transparent;
    font-size: 12px;
    line-height: 1.7;
    color: #909090;
    cursor: pointer;
    padding: 0;
    font-family: inherit;
    transition: color 0.3s ease;
    text-decoration: underline;
}

.tab-link:hover,
.tab-link.active {
    color: #474747;
}

.tab-panels {
    position: relative;
}

.tab-panel {
    display: none;
    opacity: 0;
}

.tab-panel.is-active {
    display: block;
    opacity: 1;
    animation: tabFade 0.45s ease;
}
@keyframes tabFade {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.brand-list-sub {
    display: flex;
    flex-wrap: wrap;
    padding: 10px 0px 30px;
    justify-content: start;
    gap: 30px;
}
.brand-list-sub img {
    height: 26px;
    opacity: 0.75;
    transition: 0.3s;
    width: 100px;
    object-fit: contain;
    filter: grayscale(1) opacity(0.7) contrast(0.5);
    transition: 0.4s;
    object-position: left;
}

.brand-list-sub img:hover {
    transition: 0.4s;
    filter: none;
}

.sector-block {
    padding: 30px 0;
    border-bottom: 1px solid #eee;
}

.sector-block:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}




.career-form-wrapper input,
.career-form-wrapper textarea {
    width: 48.7%;
    border: 1px solid #b5b5b5;
    padding: 12px;
    font-size: 12px;
    color: #909090;
    background: transparent;
}

.career-form-wrapper textarea {
    height: 120px;
    resize: none;
    width: 100%;
}


.career-form-wrapper {
    width: 100%;
    margin-top: 12px;
    gap: 18px;
    display: flex;
    transition: all .45s ease;
    flex-wrap: wrap;
    margin-bottom:60px;
}
.form-send-btn {
    border: 1px solid #b5b5b5;
    padding: 14px 32px;
    font-size: 12px;
    background: transparent;
    cursor: pointer;
    color: #909090;
}

input{
    transition: 0.2s ease-in-out;
}
textarea{
    transition: 0.2s ease-in-out;
}
input:focus-visible{
    outline: none;
    transition: 0.2s ease-in-out;
}
textarea:focus-visible{
    outline: none;
    transition: 0.2s ease-in-out;
}

.career-gallery img {
    height: 385px;
    width: 100%;
    object-fit: cover;
}

.swiper-pagination-bullet-active {
    background: #d41016 !important;
}

.swiper-button-next, .swiper-button-prev {

    color:  #d41016 !important;
}
.career-gallery {
    margin-top: 50px;
    margin-bottom: 50px;
}

.brand-list a {
    align-content: center;
}
.kvkk-row a {
    font-size: 12px;
    color: #909090;
    border-bottom: 1px solid #909090;
    text-decoration: none;
}
