:root {    --font1: "Urbanist", Helvetica, Arial, sans-serif;    --primary-orange: #ff6b00;    --radius: 3px;}body {    font-family: var(--font1);    padding: 0px;    margin: 0px;}body.menu-open {    overflow: hidden;}a.WhatsApp1 {    display: flex;    font-size: 18px;    background: #2EB843;    font-weight: 600;    width: 51px;    height: 51px;    position: fixed;    bottom: 20px;    left: 20px;    border-radius: 50%;    -webkit-transition: all .1s ease-out 0s;    -moz-transition: all .1s ease-out 0s;    -ms-transition: all .1s ease-out 0s;    -o-transition: all .1s ease-out 0s;    transition: all .1s ease-out 0s;    color: #fff;    align-items: center;    justify-content: center;    animation: whatsapp infinite 2s linear;    z-index: 9999}a.WhatsApp1 svg {    width: 20px;    overflow: inherit;    fill: #fff;}@keyframes whatsapp {    0% {        box-shadow: 0 0 0 0 #2EB843    }    50% {        box-shadow: 0 0 0 10px #015dc700    }    100% {        box-shadow: 0 0 0 0 #015dc700    }}.social-linksler.iki,.contact-info.iki{    display: none;}.contact-info {    color: #000;    font-size: 16px;    white-space: nowrap;    padding-left: 25px;    border-left: 1px solid #0000001f;    margin-left: 25px;    padding-top: 10px;    padding-bottom: 10px;}.contact-info a {    font-weight: 700;    text-decoration: none;    color: #2424c2;    margin-left: 5px;}/* Site Header: Genel ve Masaüstü */.site-header {    position: fixed;    top: 0;    left: 0;    width: 100%;    display: flex;    justify-content: space-between;    align-items: center;    padding: 10px 5%;    background-color: white;    backdrop-filter: blur(8px);    z-index: 1000;    transition: background-color 0.3s ease;    box-sizing: border-box;    box-shadow: 0px 0px 10px 0px #00000033;}.site-header .logo {    flex-shrink: 0;    display: flex;    align-items: center;    text-decoration: none;}.site-header .logo img {    height: 90px;    width: auto;    display: block;}.site-header .main-nav {    flex-grow: 1;    display: flex;    justify-content: end;    padding-right: 25px;    border-right: 1px solid #0000001f;    margin-right: 25px;}.site-header .main-nav ul#main-menu {    display: flex;    list-style: none;    gap: 29px;    margin: 0;    padding: 0;    align-items: center;}.site-header .main-nav a {    transition: color 0.3s ease;    white-space: nowrap;    align-items: center;    /* display: block; */    /* padding: 0.65rem 0rem; */    color: #100F17;    font-size: 16px;    text-decoration: none;    font-weight: 500;    position: relative;    cursor: pointer;}.site-header .main-nav a:hover {    color: #2424c2;}/* Alt Menüler: Masaüstü */.site-header .nav-item.nav-submenu {    position: relative;}.site-header .nav-submenu > a::after {    content: "▼";    font-size: 0.6em;    margin-left: 7px;    display: inline-block;    transition: transform 0.3s ease-in-out;}.site-header .nav-submenu ul {    list-style: none;    padding: 10px;    margin: 0;    margin-top: 15px;    background-color: #0b1a2c;    border-radius: 8px;    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);    min-width: 220px;    position: absolute;    top: 100%;    left: 0;    opacity: 0;    visibility: hidden;    transform: translateY(10px);    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;    z-index: 10;}.site-header .nav-submenu ul li {    padding: 0;    margin: 0;}.site-header .nav-submenu ul a {    padding: 10px 15px;    display: block;    font-size: 14px;    font-weight: 500;    border-radius: 5px;}.site-header .nav-item.nav-submenu:hover > ul {    opacity: 1;    visibility: visible;    transform: translateY(0);}.site-header .nav-item.nav-submenu:hover > a::after {    transform: rotate(180deg);}/* Hamburger Menü Butonu */.site-header .menu-toggle {    display: none;    background: none;    border: none;    cursor: pointer;    padding: 10px;    z-index: 1001;}.site-header .menu-toggle .bar {    display: block;    width: 25px;    height: 3px;    background-color: #000;    margin: 5px 0;    transition: all 0.4s;    padding-left: 10px;}.site-header .menu-toggle.is-active .bar:nth-child(1) {    transform: translateY(8px) rotate(45deg);}.site-header .menu-toggle.is-active .bar:nth-child(2) {    opacity: 0;}.site-header .menu-toggle.is-active .bar:nth-child(3) {    transform: translateY(-8px) rotate(-45deg);}/* Mobil Menü Arka Plan Overlay */.nav-overlay {    position: fixed;    top: 0;    left: 0;    width: 100%;    height: 100%;    background-color: rgba(0, 0, 0, 0.6);    z-index: 998;    opacity: 0;    visibility: hidden;    transition: opacity 0.5s ease, visibility 0.5s ease;}.nav-overlay.is-active {    opacity: 1;    visibility: visible;}/* Mobil Görünüm */@media (max-width: 1200px) {    .site-header .menu-toggle {        display: block;    }    .site-header .main-nav {        border-right: none;        margin-right: 0;        padding-right: 0;        justify-content: flex-end;    }    .site-header .main-nav ul#main-menu {        overflow-y: auto;        padding-bottom: 40px;        flex-direction: column;        position: fixed;        top: 0;        left: -100%;        width: 80%;        max-width: 320px;        height: 100vh;        background-color: #ffffff;        padding: 80px 40px 40px;        align-items: flex-start;        gap: 15px;        transition: left 0.5s cubic-bezier(0.77, 0, 0.175, 1);        z-index: 999;    }    .site-header .main-nav ul#main-menu.is-active {        left: 0;    }    .site-header .main-nav ul a {        /* font-size: 18px; */        /* width: 100%; */    }    .site-header .main-nav ul li {        position: relative;        margin-bottom: 20px;    }    .site-header .main-nav ul li .mobil-logo {        margin-bottom: 25px;        display: block !important;    }    /* Mobil Alt Menüler */    .site-header .nav-submenu > li::after {        content: "›";        font-size: 1.8em;        font-weight: bold;        position: absolute;        right: 10px;        top: 50%;        transform: translateY(-50%) rotate(0deg);        transition: transform 0.3s ease-in-out;    }    .site-header .nav-submenu ul {        position: static;        width: 100%;        opacity: 1;        visibility: visible;        transform: none;        box-shadow: none;        background-color: rgba(0, 0, 0, 0.2);        padding: 10px 0 10px 20px;        margin-top: 10px;        border-radius: 8px;        max-height: 0;        overflow: hidden;        transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out, margin 0.4s ease-in-out;        padding-top: 0;        padding-bottom: 0;        margin-top: 0;    }    .site-header .nav-submenu.submenu-open > ul {        max-height: 500px;        margin-top: 10px;        padding-top: 10px;        padding-bottom: 10px;    }    .site-header .nav-submenu.submenu-open > a::after {        transform: translateY(-50%) rotate(90deg);    }}footer.footer9 {    width: 100%;    height: auto;    background-color: #2424c2;    color: #fff;    position: relative;}footer.footer9::before {    content: '';    position: absolute;    width: 100%;    height: 100%;    background-image: url(../../images/bg.png);    opacity: 20%;}footer.footer9 .footer-sosyal {    display: flex;    align-items: center;    margin-left: auto;}footer.footer9 .footer-sosyal li:first-child {    margin-left: 0px;}footer.footer9 .footer-sosyal li {    list-style: none;    margin-left: 15px;}footer.footer9 .footer-sosyal li a {    width: 40px;    height: 40px;    border-radius: 50%;    display: flex;    align-items: center;    justify-content: center;    background: rgba(255, 255, 255, 0.096);    color: #fff;}footer.footer9 .footer-sosyal li a svg {    height: 15px;    width: 15px;    fill: #fff;    line-height: 1.2;}footer.footer9 .footer-sosyal li a:hover {}footer.footer9 .footer-ust {    width: 100%;    height: auto;    padding: 50px 0px;    display: flex;    align-items: center;    position: relative;}footer.footer9 .footer-logo {    width: 150px;    height: auto;}footer.footer9 .footer-logo img {    width: 100%;    height: auto;}footer.footer9 .footer-text {    width: calc(100% - 150px);    height: auto;    padding-left: 50px;    font-size: 16px;}footer.footer9 .footer-orta {    width: 100%;    height: auto;    padding: 40px 0px;    border-top: 1px solid #ffffff2b;    border-bottom: 1px solid #ffffff2b;    position: relative;}footer.footer9 .footer-liste {    width: 100%;    height: auto;    display: flex;    flex-wrap: wrap;    margin: 0;    padding: 0;}footer.footer9 .footer-liste li:first-child {    margin-left: 0px;}footer.footer9 .footer-liste li {    list-style: none;    margin-left: 40px;}footer.footer9 .footer-liste li a {    color: #ffffff;}footer.footer9 .footer-alt {    width: 100%;    height: auto;    display: flex;    padding: 40px 0px;    position: relative;}footer.footer9 .footer-alt .footer-unvani {    display: block;}footer.footer9 .footer-alt .hasem-logo {    width: auto;    display: block;    margin-left: auto;}footer.footer9 .footer-alt .hasem-logo img {    width: auto;    height: 20px;    display: block;    margin-right: auto;}.Sitelinkk_textt2 {    font-size: 15px;    letter-spacing: 0;    font-weight: 700;    color: #2424c2;    border-radius: 0px 0px 0px 0px !important;    padding: 15px 0px;    line-height: 1;    position: relative;    display: inline-block;    overflow: hidden;}.Sitelinkk_textt2::after {    content: '';    position: absolute;    width: 100%;    height: 2px;    background: #ccc;    display: block;    bottom: 0px;}.Sitelinkk_textt2::before {    content: '';    position: absolute;    width: 0%;    height: 2px;    background: #2424c2;    display: block;    bottom: 0px;    z-index: 9;    transition: all 0.9s;}.Sitelinkk_textt2:hover:before {    content: '';    position: absolute;    width: 100%;    height: 2px;}.Sitelinkk_textt2 .Sitelink1 {    transition: opacity 0.65s, transform 0.85s;    transition-timing-function: cubic-bezier(0.15, 0.85, 0.31, 1);    display: block;}.Sitelinkk_textt2:hover .Sitelink1 {    transform: translateY(-200%);    opacity: 0;    transition: opacity 0.65s, transform 0.85s;    transition-timing-function: cubic-bezier(0.15, 0.85, 0.31, 1);}.Sitelinkk_textt2 .Sitelink2 {    transform: translate(0px, 250px);    transition: opacity 0.65s, transform 0.85s;    transition-timing-function: cubic-bezier(0.15, 0.85, 0.31, 1);    position: absolute;    width: 100%;    opacity: 0;    left: 0px;    text-align: center;}.Sitelinkk_textt2:hover .Sitelink2 {    transform: translate(0px, -15px);    opacity: 1;    transition: opacity 0.65s, transform 0.85s;    transition-timing-function: cubic-bezier(0.15, 0.85, 0.31, 1);}.Sitelinkk_textt2:hover {    color: #2424c2;}.social-linksler {    list-style-type: none;    display: flex;    gap: 10px;    padding: 0;    margin: 0;}.social-link:link {    text-decoration: none;    background-color: transparent;    width: 30px;    height: 30px;    border: solid 1px #ccc;    border-radius: 50%;    display: flex;    justify-content: center;    align-items: center;    transition: all 0.3s ease-in-out;}.social-link:link svg {    height: 15px;    width: 15px;    fill: #000000;    line-height: 1.2;    transition: 0.3s ease;}.social-link:link:hover {}.mobilbuttonlar {    display: none;}@media(max-width: 1024px) {    footer.footer9 .footer-ust, footer.footer9 .footer-orta {        display: none;    }    .site-header .main-nav ul#main-menu .contact-info {        display: block !important;        border: none;        padding: 0;        margin: 0;    }    .site-header .main-nav ul#main-menu .social-linksler {        margin-top: 30px;    }    .social-linksler {        margin-right: 40px;    }    footer.footer9 {        margin-bottom: 35px;    }    .btn {        border-radius: 0;        display: flex;        justify-content: center;        align-items: center;        padding: 10px 20px;        width: 100%    }    .btn svg {        width: 24px;        height: 24px;        fill: currentColor    }    .mobilbuttonlar {        position: fixed;        width: 100%;        bottom: 0;        z-index: 999;        display: flex ;    }    .btn1 {        background: #2424c2;        border-color: #2424c2;        color: #fff    }    .btn2 {        background: #1717a4;        border-color: #1717a4;        color: #fff    }    .btn3 {        background: #0d0d8c;        border-color: #0d0d8c;        color: #fff    }    a.WhatsApp1 {        bottom: 60px;    }    .contact-info {        display: none;    }    .social-linksler.iki{        display: flex;    }    .contact-info.iki{        display: block;    }}