    /* ===========================
   Global Variables
   =========================== */
    
     :root {
        /*Background Color*/
        --color-background: #f5f6f7;
        /* Spacing */
        --space-base: 12px;
        --space-padding: 20px;
        --space-xs: 0.5rem;
        --space-sm: 1rem;
        --space-md: 2rem;
        --space-lg: 4rem;
        --space-global: 0.7rem;
        --space-mobile-global: 0.5rem;
        --space-mobile-out-global: 1rem;
        /* Border / Radius */
        --global-radius: 0.7rem;
        --global-mobile-radius: 0.5rem;
        /* Font */
        --font-raleway: "Raleway", sans-serif;
        --font-outFit: 'Outfit', sans-serif;
        /* === Colors === */
        --color-primary: #0a1829;
        --color-primary-hover: #071220;
        --color-accent: #5E82A2;
        /* Background / surfaces */
        --color-bg: #ffffff;
        /* genel sayfa ve section zeminleri */
        --color-surface: #112740;
        /* kartlar, menü, modal gibi yüzeyler */
        /* Text */
        --color-text: #0a1829;
        --color-text-muted: #6b7785;
        --color-text-footer: #888888;
        --color-text-white: #ffffff;
        /* Borders */
        --color-border: #bebebe;
        --color-border-strong: #474747;
        /* Overlay / modal mask */
        --color-overlay: rgba(0, 0, 0, 0.4);
        /* Semantic colors */
        --color-success: #2ecc71;
        --color-warning: #f39c12;
        --color-danger: #e74c3c;
        --color-border-trans: #e3e3e361;
    }
    
    * {
        margin: 0;
        padding: 0;
        outline: none;
        border: none;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        -webkit-tap-highlight-color: transparent;
        text-decoration: none;
        list-style: none;
        -webkit-box-shadow: none;
        box-shadow: none;
    }
    
    body {
        margin: 0;
        overflow-x: hidden;
        overflow-y: auto;
        font-family: var(--font-raleway);
    }
    
    body.no-scroll {
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
    }
    
    a {
        text-decoration: none !important;
    }
    
    ul {
        padding-inline-start: 0px !important;
    }
    
    p {
        margin-top: 0;
        margin-bottom: 0;
    }
    
    #smooth-content {
        padding-bottom: 15px;
        will-change: transform;
    }
    
    section {
        width: 100%;
        position: relative;
        overflow: hidden;
    }
    
    .cp-1 {
        padding: 1rem 0
    }
    
    .n-p {
        padding-left: 0;
        padding-right: 0;
    }
    
    @keyframes hov {
        0% {
            transform: scale(1)
        }
        50% {
            transform: scale(1.1)
        }
        100% {
            transform: scale(1)
        }
    }
    /* ===========================
   Hamburger Icon
   =========================== */
    
    .nav-icon {
        display: block;
        margin-top: 5px;
        width: 50px;
        height: 32px;
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: .5s ease-in-out;
        -moz-transition: .5s ease-in-out;
        -o-transition: .5s ease-in-out;
        transition: .5s ease-in-out;
        cursor: pointer;
    }
    
    .nav-icon span {
        display: block;
        position: absolute;
        width: 100%;
        height: 4px;
        opacity: 1;
        background: var(--color-bg);
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: .25s ease-in-out;
        -moz-transition: .25s ease-in-out;
        -o-transition: .25s ease-in-out;
        transition: .25s ease-in-out;
    }
    
    .nav-icon span:nth-child(1) {
        top: 0;
        -webkit-transform-origin: left center;
        -moz-transform-origin: left center;
        -o-transform-origin: left center;
        transform-origin: left center;
        transition: all .35s;
    }
    
    .nav-icon span:nth-child(2) {
        top: 12px;
        width: 85%;
        right: 0;
        -webkit-transform-origin: left center;
        -moz-transform-origin: left center;
        -o-transform-origin: left center;
        transform-origin: left center;
        transition: all .35s;
    }
    
    .nav-icon span:nth-child(3) {
        top: 24px;
        width: 65%;
        right: 0;
        -webkit-transform-origin: left center;
        -moz-transform-origin: left center;
        -o-transform-origin: left center;
        transform-origin: left center;
        transition: all .35s;
    }
    
    .nav-icon:hover span {
        width: 100%;
    }
    
    .active.nav-icon span:nth-child(1) {
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
        top: -2px;
        left: 10px;
        transition: all .35s;
    }
    
    .active.nav-icon span:nth-child(2) {
        opacity: 0;
        transition: all .35s;
    }
    
    .active.nav-icon span:nth-child(3) {
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
        top: 32px;
        left: 10px;
        width: 100%;
        transition: all .35s;
    }
    
    header {
        position: fixed;
        left: var(--space-global);
        /* 0.7rem */
        width: calc(100% - (2 * var(--space-global)));
        z-index: 10;
        -webkit-transition: all .5s;
        -moz-transition: all .5s;
        -o-transition: all .5s;
        transition: all .5s;
        padding-top: 0.7rem;
    }
    
    header.scrolled {
        padding-top: 0 !important;
        border-end-start-radius: var(--space-base);
        border-end-end-radius: var(--space-base);
        border-radius: 20px;
    }
    
    header.scrolled nav {
        -webkit-transition: all .5s;
        -moz-transition: all .5s;
        -o-transition: all .5s;
        transition: all .5s;
        background: var(--color-bg);
        transform: translateZ(0);
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
        color: var(--color-primary);
        box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    }
    
    header.scrolled .nav-icon span {
        -webkit-transition: all .5s;
        -moz-transition: all .5s;
        -o-transition: all .5s;
        transition: all .5s;
        background: var(--color-primary);
    }
    
    header.scrolled .right-menu .language a {
        color: var(--color-primary);
    }
    
    header.scrolled svg {
        color: var(--color-primary);
    }
    
    header.scrolled .logo .icon {
        visibility: visible;
        display: block;
    }
    
    header.scrolled .logo .text {
        display: none;
    }
    
    header nav {
        left: 0;
        z-index: 1;
        /* border-bottom: solid rgba(255, 255, 255, .3) .1rem;*/
        display: flex;
        height: 4.5rem;
        padding: 0 2rem;
        transition: all .5s;
        align-items: center;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
    }
    
    header .logo img {
        width: 15rem;
    }
    
    header .logo .text img {
        display: block;
    }
    
    header .logo .icon {
        visibility: hidden;
        display: none;
        width: 50px;
    }
    
    section.content-full {
        padding: var(--space-global);
    }
    
    section.content-full {
        padding: var(--space-global);
    }
    
    header .right-menu {
        display: flex;
        flex-direction: row;
        align-items: center;
        flex-wrap: nowrap;
        gap: 2rem;
        color: var(--color-text-white);
        cursor: pointer;
    }
    
    header .right-menu .language {
        color: var(--color-text-white);
        display: flex;
        align-items: center;
    }
    
    header .right-menu .language a {
        color: var(--color-text-white);
        display: flex;
        align-items: center;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 0.2rem
    }
    
    header .right-menu .language a span {
        font-size: 24px;
        font-weight: 500;
    }
    
    .nav-hamburger {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        position: relative;
        padding-right: 2rem
    }
    
    .mobile-menu {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        height: auto;
        color: var(--color-text-white);
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        font-weight: 500;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        position: relative;
        cursor: pointer
    }
    
    .mobile-menu .icon {
        position: relative;
        width: 4.4rem;
        height: 4.4rem;
        border-radius: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }
    
    @media only screen and (max-width: 768px) {
        .mobile-menu .icon {
            width: 3rem;
            height: 3rem
        }
    }
    
    .mobile-menu .icon #hamburger-menu {
        width: 4rem;
        height: 1rem;
        position: relative
    }
    
    .mobile-menu .icon #hamburger-menu.z-index {
        z-index: 0
    }
    
    .mobile-menu .icon #hamburger-menu span {
        opacity: 1;
        left: 0;
        display: block;
        width: 100%;
        height: 2px;
        border-radius: 10px;
        background-color: var(--color-bg);
        position: absolute;
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: .4s ease-in-out;
        transition: .4s ease-in-out
    }
    
    .mobile-menu .icon #hamburger-menu span:nth-child(1) {
        top: 0
    }
    
    .mobile-menu .icon #hamburger-menu span:nth-child(2) {
        top: 1rem
    }
    
    .mobile-menu .icon #hamburger-menu.open span:nth-child(1) {
        -webkit-transform: translateY(5px) rotate(135deg);
        transform: translateY(5px) rotate(135deg)
    }
    
    .mobile-menu .icon #hamburger-menu.open span:nth-child(2) {
        -webkit-transform: translateY(-5px) rotate(-135deg);
        transform: translateY(-5px) rotate(-135deg)
    }
    
    .menu-content {
        position: fixed;
        width: calc(100% - 1.4rem);
        left: 0.7rem;
        top: 0.7rem;
        background: var(--color-primary);
        z-index: 3;
        height: 0;
        -webkit-transition: all 1s ease;
        -webkit-transition: all 1 ease;
        transition: all 1 ease;
        overflow: hidden;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        border-radius: 0.7rem;
    }
    
    .menu-content.open {
        height: calc(100% - 1.4rem);
        -webkit-transition: all 1s ease;
        -webkit-transition: all 1 ease;
        transition: all 1 ease
    }
    
    .menu-content.open .slide-menu {
        -webkit-transition: all 1.5s ease;
        transition: all 1.5s ease;
        -webkit-transition-delay: .5s;
        transition-delay: .5s;
        -webkit-transform: translate(0%, 15%);
        transform: translate(0%, 15%);
        opacity: 1;
        visibility: visible
    }
    
    @media only screen and (max-width: 1024px) {
        .menu-content.open .slide-menu {
            -webkit-transform: translate(0%, 10%);
            transform: translate(0%, 10%)
        }
    }
    
    @media only screen and (max-width: 768px) {
        .menu-content.open .slide-menu {
            -webkit-transform: translate(0%, 14%);
            transform: translate(0%, 14%)
        }
    }
    
    .menu-content.open .overlay {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: #000;
        -webkit-transition: all .5s ease;
        transition: all .5s ease;
        -webkit-transition: all 2s cubic-bezier(0.6, 0.15, 0.25, 0.9);
        -moz-transition: all 2s cubic-bezier(0.6, 0.15, 0.25, 0.9);
        opacity: 1
    }
    
    .menu-content.open .menu-photo {
        height: 100%;
        top: 0;
        -webkit-transition: all 1s ease;
        transition: all 1s ease;
        background-position: center
    }
    
    @media only screen and (max-width: 768px) {
        .menu-content.open .menu-photo {
            display: none !important;
            width: 0 !important
        }
    }
    
    .menu-content.open .menu {
        height: 100%;
        -webkit-transition: all 1.5s ease;
        transition: all 1.5s ease;
        -webkit-transition-delay: 3s;
        transition-delay: 3s;
        -webkit-transition: all 3s cubic-bezier(0.6, 0.15, 0.25, 0.9);
        -moz-transition: all 3s cubic-bezier(0.6, 0.15, 0.25, 0.9)
    }
    
    .menu-content.open .bottom {
        opacity: 1;
        visibility: visible;
        -webkit-transition: all 1.5s ease;
        transition: all 1.5s ease;
        -webkit-transition-delay: 3s;
        transition-delay: 3s;
        -webkit-transition: all 3s cubic-bezier(0.6, 0.15, 0.25, 0.9)
    }
    
    .menu-content .slide-menu {
        position: absolute;
        max-width: 70rem;
        width: 100%;
        height: 100%;
        overflow: hidden;
        -webkit-transition-delay: .4s;
        transition-delay: .4s;
        -webkit-transform: translate(0%, -20%);
        transform: translate(0%, -20%);
        -webkit-transition: all .4s ease;
        transition: all .4s ease;
        opacity: 0;
        visibility: hidden
    }
    
    @media only screen and (max-width: 768px) {
        .menu-content .slide-menu {
            padding: 0
        }
    }
    
    .menu-content .slide-menu .rwd-menu {
        width: 100%;
        position: relative;
        left: 0;
        top: 0;
        z-index: 1;
        -webkit-transition: all 4s ease;
        transition: all 4s ease
    }
    
    .menu-content .slide-menu .rwd-menu li {
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content
    }
    
    .menu-content .slide-menu .rwd-menu li:first-child {
        display: none
    }
    
    .menu-content .slide-menu .rwd-menu li:hover {
        background: url(../menu/menu-hover-bg.svg);
        background-repeat: no-repeat;
        background-position: right .5rem center
    }
    
    @media only screen and (max-width: 768px) {
        .menu-content .slide-menu .rwd-menu li:hover {
            background: none
        }
    }
    
    .menu-content .slide-menu .rwd-menu li a {
        width: 100%;
        padding: 10px 7rem 10px;
        font-size: 1.5rem;
        color: var(--color-text-white);
        font-weight: 600;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-transition: all .3s;
        transition: all .3s;
        align-items: center;
    }
    
    @media (-webkit-device-pixel-ratio: 1.5),
    (-webkit-device-pixel-ratio: 1.25),
    (-webkit-device-pixel-ratio: 1.1) {
        .menu-content .slide-menu .rwd-menu li a {
            font-size: 1.2rem
        }
    }
    
    @media only screen and (max-width: 768px) {
        .menu-content .slide-menu .rwd-menu li a {
            font-size: 20px;
            padding: var(--space-mobile-global) 0;
            justify-content: center;
        }
        .menu-content .slide-menu .rwd-menu {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
    }
    
    .menu-content .slide-menu .rwd-menu li a:hover {
        color: var(--color-accent)
    }
    
    @media only screen and (max-width: 768px) {
        .menu-content .slide-menu .rwd-menu li a:before {
            padding-right: 2rem
        }
    }
    
    .menu-content .slide-menu .rwd-submenu {
        position: absolute;
        left: 100%;
        top: 0;
        background: var(--color-primary);
        width: 100%;
        height: 100%;
        visibility: hidden;
        -webkit-transition: all .4s ease;
        transition: all .4s ease
    }
    
    .menu-content .slide-menu .rwd-submenu .back-btn {
        position: relative;
        font-size: 1.2rem;
        margin-bottom: 5.2rem;
        font-weight: normal;
        background: none
    }
    
    @media only screen and (max-width: 768px) {
        .menu-content .slide-menu .rwd-submenu .back-btn {
            font-size: 14px;
            margin-bottom: 2rem
        }
        .menu-content .slide-menu .rwd-submenu .back-btn {
            font-size: 14px;
            margin-bottom: 2rem
        }
    }
    
    .menu-content .slide-menu .rwd-submenu li {
        width: 100%;
        padding-left: 10pxx
    }
    
    @media only screen and (max-width: 768px) {
        .menu-content .slide-menu .rwd-submenu li {
            padding-left: 0
        }
    }
    
    .menu-content .slide-menu .rwd-submenu li:hover {
        background: none
    }
    
    .menu-content .slide-menu .rwd-submenu li:first-child {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        padding: 0
    }
    
    .menu-content .slide-menu .rwd-submenu li a:before {
        display: none
    }
    
    .menu-content .slide-menu .open-submenu .rwd-submenu {
        left: 0;
        top: 0;
        z-index: 2;
        visibility: visible;
        -webkit-transition: all .4s ease;
        transition: all .4s ease
    }
    
    .menu-content .menu-photo {
        width: 40%;
        position: relative;
        height: 0;
        top: 0;
        left: 0;
        top: -.1rem;
        background: url(../images/slider/menu.jpg) no-repeat;
        background-position: center;
        background-size: cover;
        -webkit-transition: all 1.5s ease;
        transition: all 1.5s ease;
        opacity: 1;
    }
    
    @media only screen and (max-width: 768px) {
        .menu-content .menu-photo {
            display: none !important;
            width: 0 !important
        }
    }
    
    .menu-content .menu {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: baseline;
        -ms-flex-align: baseline;
        align-items: baseline;
        -webkit-transition: all 1.5s ease;
        transition: all 1.5s ease;
        -webkit-transition-delay: 3s;
        transition-delay: 3s;
        -webkit-transition: all 3s cubic-bezier(0.6, 0.15, 0.25, 0.9);
        -moz-transition: all 3s cubic-bezier(0.6, 0.15, 0.25, 0.9);
        padding-left: 5rem;
        z-index: 2
    }
    
    @media (-webkit-device-pixel-ratio: 1.5),
    (-webkit-device-pixel-ratio: 1.25),
    (-webkit-device-pixel-ratio: 1.1) {
        .menu-content .menu {
            padding-left: 3rem
        }
    }
    
    @media only screen and (max-width: 768px) {
        .menu-content .menu {
            padding-left: 0
        }
    }
    
    .menu-content .menu:before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        background: url(../menu/menu-bg.svg) no-repeat center right;
        background-position: center;
        display: none
    }
    
    @media only screen and (max-width: 768px) {
        .menu-content .menu:before {
            display: none
        }
    }
    
    .menu-content .bottom {
        position: absolute;
        bottom: 2rem;
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 0 2rem;
        opacity: 0;
        visibility: hidden;
        -webkit-transition: all 1.5s ease;
        transition: all 1.5s ease;
        -webkit-transition-delay: 1s;
        transition-delay: 1s;
        -webkit-transition: all 1s cubic-bezier(0.6, 0.15, 0.25, 0.9);
        -moz-transition: all 1s cubic-bezier(0.6, 0.15, 0.25, 0.9)
    }
    
    .menu-content .bottom .item {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        text-align: center;
        padding-top: 20px;
    }
    
    @media only screen and (max-width: 1024px) {
        .menu-content .bottom .item {
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -ms-flex-direction: column;
            flex-direction: column;
        }
    }
    
    @media only screen and (max-width: 768px) {
        .menu-content .bottom .item ul {
            display: none
        }
        .menu-content .bottom .copyright {
            justify-content: center;
        }
    }

.menu-content .bottom .copyright {
    width: 40%;
    color: rgba(255, 255, 255, 0.5);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: center;
    color: var(--color-text-white);
    font-size: 12px;
    justify-content: flex-start;
}
    .menu-content .bottom .copyright p{
        color:var(--color-text-white);
    }

    .menu-content .bottom .copyright a {
        color: var(--color-text-white);
    }
    
    @media (-webkit-device-pixel-ratio: 1.5),
    (-webkit-device-pixel-ratio: 1.25),
    (-webkit-device-pixel-ratio: 1.1) {
        .menu-content .bottom .copyright {
            font-size: 1.1rem;
            width: auto
        }
    }
    
    @media only screen and (max-width: 1024px) {
        .menu-content .bottom .copyright {
            width: 100%
        }
    }
    
    .menu-content .bottom ul {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin-bottom: 0;
    }
    
    @media only screen and (max-width: 1024px) {
        .menu-content .bottom ul {
            margin-top: 2rem
        }
    }
    
    .menu-content .bottom ul li a {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.5);
        margin-left: 2rem
    }
    
    @media (-webkit-device-pixel-ratio: 1.5),
    (-webkit-device-pixel-ratio: 1.25),
    (-webkit-device-pixel-ratio: 1.1) {
        .menu-content .bottom ul li a {
            font-size: 1.1rem
        }
    }
    
    @media only screen and (max-width: 1024px) {
        .menu-content .bottom ul li a {
            margin-left: 0;
            margin-right: 2rem
        }
    }
    
    .menu-content .social {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin-top: 6rem;
        padding-bottom: 2rem;
        border-bottom: solid rgba(255, 255, 255, 0.4) 0.1rem;
        gap: 20px;
    }
    
    @media only screen and (max-width: 768px) {
        .menu-content .social {
            margin-top: 4rem;
            padding-left: 0;
            border: none
        }
    }
    
    @media (-webkit-device-pixel-ratio: 1.5),
    (-webkit-device-pixel-ratio: 1.25),
    (-webkit-device-pixel-ratio: 1.1) {
        .menu-content .social {
            margin-top: 2rem;
            padding-bottom: 1rem
        }
    }
    
    .menu-content .social a {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    
    @media (-webkit-device-pixel-ratio: 1.5),
    (-webkit-device-pixel-ratio: 1.25),
    (-webkit-device-pixel-ratio: 1.1) {
        .menu-content .social a {
            -webkit-box-pack: start;
            -ms-flex-pack: start;
            justify-content: flex-start;
            height: 3rem;
            margin-right: 1.8rem
        }
    }
    
    @media only screen and (max-width: 768px) {
        .menu-content .social {
            justify-content: center;
        }
    }
    
    .menu-content .social a svg {
        width: 3.2rem;
        height: 3.2rem;
        fill: var(--color-text-white);
        -webkit-transition: all .3s;
        transition: all .3s
    }
    
    @media (-webkit-device-pixel-ratio: 1.5),
    (-webkit-device-pixel-ratio: 1.25),
    (-webkit-device-pixel-ratio: 1.1) {
        .menu-content .social a svg {
            width: 2rem;
            height: 2rem
        }
    }
    
    @media only screen and (max-width: 768px) {
        .menu-content .social a svg {
            width: 2rem;
            height: 2rem
        }
    }
    
    .menu-content .social a:hover {
        -webkit-transition: all .3s;
        transition: all .3s
    }
    
    .menu-content .social a:hover svg {
        fill: var(--color-surface)
    }
    
    @-webkit-keyframes fadeIn {
        from {
            opacity: 0;
            transform: matrix(1, 0, 0, 1, 0, 10);
            -ms-transform: matrix(1, 0, 0, 1, 0, 10);
            -webkit-transform: matrix(1, 0, 0, 1, 0, 10)
        }
        to {
            opacity: 1;
            transform: matrix(1, 0, 0, 1, 0, 0);
            -ms-transform: matrix(1, 0, 0, 1, 0, 0);
            -webkit-transform: matrix(1, 0, 0, 1, 0, 0)
        }
    }
    
    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: matrix(1, 0, 0, 1, 0, 10);
            -ms-transform: matrix(1, 0, 0, 1, 0, 10);
            -webkit-transform: matrix(1, 0, 0, 1, 0, 10)
        }
        to {
            opacity: 1;
            transform: matrix(1, 0, 0, 1, 0, 0);
            -ms-transform: matrix(1, 0, 0, 1, 0, 0);
            -webkit-transform: matrix(1, 0, 0, 1, 0, 0)
        }
    }
    
    @-webkit-keyframes fadeOut {
        from {
            opacity: 1;
            transform: matrix(1, 0, 0, 1, 0, 10);
            -ms-transform: matrix(1, 0, 0, 1, 0, 10);
            -webkit-transform: matrix(1, 0, 0, 1, 0, 10)
        }
        to {
            opacity: 0;
            transform: matrix(1, 0, 0, 1, 0, 0);
            -ms-transform: matrix(1, 0, 0, 1, 0, 0);
            -webkit-transform: matrix(1, 0, 0, 1, 0, 0)
        }
    }
    
    @keyframes fadeOut {
        from {
            opacity: 1;
            transform: matrix(1, 0, 0, 1, 0, 10);
            -ms-transform: matrix(1, 0, 0, 1, 0, 10);
            -webkit-transform: matrix(1, 0, 0, 1, 0, 10)
        }
        to {
            opacity: 0;
            transform: matrix(1, 0, 0, 1, 0, 0);
            -ms-transform: matrix(1, 0, 0, 1, 0, 0);
            -webkit-transform: matrix(1, 0, 0, 1, 0, 0)
        }
    }
    
    @media only screen and (max-width: 768px) {
        section.content-full {
            padding: var(--space-mobile-global);
        }
        header {
            border-end-start-radius: var(--space-base);
            border-end-end-radius: var(--space-base);
            left: var(--space-mobile-global);
            width: calc(100% - 20px);
            /* 0.5rem */
        }
        header nav {
            height: 4.8rem;
            padding: 0 0.7rem;
        }
        header .logo img {
            width: 10.5rem;
        }
        header .right-menu {
            gap: 0.5rem;
        }
        header .right-menu .language svg {
            width: 28px;
        }
        header .right-menu .search svg {
            width: 28px;
        }
        .nav-icon {
            width: 40px;
            margin-top: 9px;
        }
        .nav-icon span {
            height: 3px;
        }
        .nav-icon span:nth-child(2) {
            top: 10px;
        }
        .nav-icon span:nth-child(3) {
            top: 20px;
        }
        .active.nav-icon span:nth-child(3) {
            top: 25px;
        }
        .menu-content.open {
            height: calc(100% - 1rem);
            -webkit-transition: all 1s ease;
            -webkit-transition: all 1 ease;
            transition: all 1 ease;
        }
        .menu-content {
            width: calc(100% - 1rem);
            left: 0.5rem;
            top: 0.5rem;
            border-radius: 0.5rem;
        }
    }
    /* ===========================
   Home Slider  Start
   =========================== */
    
    .home-slider {
        height: calc(100vh - 1.4rem);
        border-radius: 0.7rem;
        transform: translateZ(0);
        overflow: hidden;
        position: relative;
        font-family: var(--font-raleway);
    }
    
    @media only screen and (max-width: 480px) {
        .home-slider {
            height: calc(100vh - 1rem);
        }
    }
    
    .home-slider .slider-progress {
        position: absolute;
        bottom: 2rem;
        left: calc(50% - 42px);
        z-index: 2;
        width: 100%
    }
    
    .home-slider .slider-progress .prog {
        width: 85px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
        position: relative
    }
    
    .home-slider .slider-progress .prog .progress {
        height: 2px;
        width: 0%;
        background: var(--color-text-white);
        transform: translateY(1px)
    }
    
    @media (max-width: 1366px) {
        .home-slider .tel a {
            font-size: 20px
        }
    }
    
    .home-slider .tel a:before {
        content: "";
        display: inline-block;
        transform: rotate(90deg) translateY(13px);
        width: 20px;
        height: 20px;
        background: url("../images/icon/tel.svg") no-repeat left center
    }
    
    .home-slider .slide-count-wrap {
        position: absolute;
        bottom: 4rem;
        left: var(--space-md);
        width: 100%;
        display: flex;
        align-items: center;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 1.2rem;
        height: 4rem;
        color: var(--color-text-white);
    }
    
    @media only screen and (max-width: 480px) {
        .home-slider .slide-count-wrap {
            bottom: 50px;
            gap: 0.8rem
        }
    }
    
    .home-slider .slide-count-wrap .carousel-prev,
    .home-slider .slide-count-wrap .carousel-next {
        display: inline-block;
        transition: .4s;
        width: 3.5rem;
        height: 3.5rem;
        margin-right: 5px;
        border-radius: 50%;
        border: 1px solid rgba(255, 255, 255, 0.5);
        vertical-align: middle;
        cursor: pointer;
        background: url("../images/icon/arrow.svg") no-repeat center center
    }
    
    .home-slider .slide-count-wrap .carousel-button a {
        display: flex;
        width: fit-content;
        margin-right: 5px;
        border-radius: 40px;
        border: 1px solid rgba(255, 255, 255, 0.5);
        vertical-align: middle;
        cursor: pointer;
        align-items: center;
        padding: 0 40px;
        height: 3.5rem;
        display: flex;
        font-size: 20px;
        color: black;
        background-color: var(--color-text-white);
        transition: .35s;
        gap: 0;
    }
    
    .home-slider .slide-count-wrap .carousel-button a:hover {
        gap: 1rem;
        text-decoration: underline;
    }
    
    .uk-margin-small-left {
        margin-left: 10px !important;
    }
    
    @media (max-width: 1450px) {
        .home-slider .slide-count-wrap .carousel-prev,
        .home-slider .slide-count-wrap .carousel-next {
            width: 55px;
            height: 55px
        }
    }
    
    @media (max-width: 1366px) {
        .home-slider .slide-count-wrap .carousel-prev,
        .home-slider .slide-count-wrap .carousel-next {
            width: 47px;
            height: 47px;
            background-size: 7px
        }
    }
    
    @media only screen and (max-width: 480px) {
        .home-slider .slide-count-wrap .carousel-prev,
        .home-slider .slide-count-wrap .carousel-next {
            width: 37px;
            height: 37px
        }
        .home-slider .slide-count-wrap .carousel-button a {
            height: 37px;
            padding: 0 20px;
            font-size: 18px;
        }
    }
    
    .home-slider .slide-count-wrap .carousel-prev.carousel-next,
    .home-slider .slide-count-wrap .carousel-next.carousel-next {
        transform: rotate(-180deg)
    }
    
    @media (min-width: 992px) {
        .home-slider .slide-count-wrap .carousel-prev:hover,
        .home-slider .slide-count-wrap .carousel-next:hover {
            background-color: var(--color-text-white);
            background-image: url("../images/icon/arrow-color.svg")
        }
    }
    
    .home-slider .slide-count-wrap .carousel-next {
        transform: rotate(180deg);
        margin-right: 30px
    }
    
    .home-slider .slide-count-wrap .current,
    .home-slider .slide-count-wrap .total {
        color: var(--color-text-white);
        opacity: 0.80;
        display: inline-block;
        font-size: 36px;
    }
    
    @media (max-width: 1366px) {
        .home-slider .slide-count-wrap .current,
        .home-slider .slide-count-wrap .total {
            font-size: 20px
        }
    }
    
    .home-slider .slide-count-wrap .current:after {
        content: "/";
        margin: 0 5px 0 10px
    }
    
    .home-slider .slick-slider .item {
        position: relative;
        height: 100vh
    }
    
    @media only screen and (max-width: 480px) {}
    
    .home-slider .slick-slider .item .slider-content {
        position: absolute;
        display: flex;
        bottom: 10rem;
        left: var(--space-md);
        width: 100%;
        z-index: 2;
        color: var(--color-text-white);
        flex-direction: column;
    }
    
    @media only screen and (max-width: 480px) {
        .home-slider .slick-slider .item .slider-content {
            height: auto;
            bottom: 150px
        }
    }
    
    .home-slider .slick-slider .item .slider-content .line1 {
        font-weight: 800;
        font-size: 50px;
        letter-spacing: -0.02em;
        opacity: 0
    }
    
    @media only screen and (max-width: 992px) {
        .home-slider .slick-slider .item .slider-content .line1 {
            font-size: 50px;
            line-height: 50px
        }
    }
    
    @media only screen and (max-width: 480px) {
        .home-slider .slick-slider .item .slider-content .line1 {
            font-size: 22px;
            line-height: 25px
        }
    }
    
    .home-slider .slick-slider .item .slider-content .line2 {
        font-size: 25px;
        font-weight: 400;
        max-width: 600px;
        opacity: 0
    }
    
    @media (min-width: 2000px) {
        .home-slider .slick-slider .item .slider-content .line2 {
            font-size: 20px;
            max-width: 700px
        }
    }
    
    @media (max-width: 1450px) {
        .home-slider .slick-slider .item .slider-content .line2 {
            font-size: 17px;
            max-width: 500px
        }
    }
    
    @media only screen and (max-width: 767px) {
        .home-slider .slick-slider .item .slider-content .line2 {
            font-size: 14px
        }
    }
    
    @media only screen and (max-width: 480px) {
        .home-slider .slick-slider .item .slider-content .line2 {
            margin-top: 15px
        }
    }
    
    .home-slider .slick-slider .item img {
        object-fit: cover;
        width: 100%;
        height: 100%;
        transition: transform 0s linear, opacity 1.2s linear;
        opacity: 0
    }
    
    .home-slider .slick-slider .item img.active {
        transform: scale(1.1);
        transition: transform 10s linear, opacity 1.2s linear
    }
    
    .home-slider .slick-slider .item img.active[aria-hidden="false"] {
        opacity: 1
    }
    
    .language-section {
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        z-index: 10000;
        display: flex;
        justify-content: center;
        align-items: center;
        opacity: 0;
        visibility: hidden;
        background: rgba(17, 39, 64, 0.55);
    }
    
    .language-section:before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: rgba(0, 0, 0, .4);
    }
    
    .language-section .language-content {
        max-width: 40rem;
        width: 100%;
        border-radius: var(--global-radius);
        transform: translateZ(0);
        z-index: 1;
        display: flex;
        padding: 4rem 2rem;
        background: var(--color-primary);
        background-size: 100rem;
        position: relative;
        transform: translateY(80%);
        opacity: 0;
        align-items: center;
        flex-direction: column;
    }
    
    .language-section .language-close {
        position: absolute;
        top: 0;
        right: 0;
        width: 6.4rem;
        height: 6.4rem;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        cursor: pointer
    }
    
    .language-section .language-close svg {
        width: 2rem
    }
    
    .language-section .language-content .caption {
        width: 100% !important;
        color: var(--color-text-white);
    }
    
    .language-section .language-content .caption h6 {
        font-size: 2rem;
    }
    
    .language-section .language-content ul {
        display: flex;
        flex-direction: column;
        padding-left: 5rem;
        width: 100%;
        text-align: center;
    }
    
    .language-section .language-content ul li {
        margin: 1rem 0;
        border: 1px solid var(--color-border-strong);
        padding: 0.3rem;
        border-radius: 40px;
        transition: all .5s;
        cursor: pointer;
    }
    
    .language-section .language-content ul li a {
        font-size: 1.8rem;
        color: var(--color-text-white);
    }
    
    .language-section .language-content ul li:hover {
        background-color: var(--color-primary-hover);
    }
    
    .search-section {
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        z-index: 10000;
        display: flex;
        justify-content: center;
        align-items: center;
        opacity: 0;
        visibility: hidden;
        background: rgba(17, 39, 64, 0.55);
    }
    
    .search-section:before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: rgba(0, 0, 0, .4);
    }
    
    .search-section .search-content {
        width: calc(100% - 2.4rem);
        border-radius: var(--global-radius);
        transform: translateZ(0);
        z-index: 9999;
        display: flex;
        padding: 8rem 4rem;
        background: var(--color-bg) top;
        background-size: 100rem;
        position: relative;
        transform: translateY(-80%);
        opacity: 0;
        align-items: center;
        flex-direction: column;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    form input,
    form textarea {
        width: 100%;
        padding: 0;
        font-size: 1.4rem;
        color: var(--color-border-strong);
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        -webkit-transition: all .5s;
        -moz-transition: all .5s;
        -o-transition: all .5s;
        transition: all .5s;
        background: none;
        border-radius: 100vmax;
        transform: translateZ(0);
        border: solid var(--color-border-strong) .1rem;
        text-align: left;
    }
    
    .search-content form {
        max-width: 70%;
        width: 100%;
        margin: auto;
        display: flex;
        background: var(--color-text-white);
        border: solid var(--color-border-strong) .1rem;
        border-radius: 1rem;
        transform: translateZ(0);
        flex-direction: row;
    }
    
    .search-content form input {
        border: none;
        font-size: 3rem;
        letter-spacing: 0;
    }
    
    .search-content form button {
        width: auto;
        background: none;
        padding: 0;
        margin-right: 1rem;
        letter-spacing: .6291px;
    }
    
    .search-section .search-close {
        position: absolute;
        top: 0;
        right: 0;
        width: 6.4rem;
        height: 6.4rem;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        cursor: pointer;
        color: var(--color-primary);
    }
    
    .search-section .search-close svg {
        width: 2rem;
        color: var(--color-primary);
    }
    
    footer {
        position: relative;
        background-color: var(--color-primary);
        border-radius: var(--global-mobile-radius);
        -webkit-margin-start: var(--global-mobile-radius-radius);
        margin-inline-start: var(--global-mobile-radius);
        -webkit-margin-end: var(--global-mobile-radiusradius);
        margin-inline-end: var(--global-mobile-radius);
        z-index: 1;
    }
    
    footer .footer-logo {
        padding: 7rem 2rem 0 2rem;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .footer-content {
        position: relative;
        display: flex;
        flex-direction: row;
        padding: 20px 20px 5rem 20px;
        width: 100%;
        height: 100%;
        z-index: 1;
    }
    
    .footer-content .item {
        width: 20%;
        display: flex;
        flex-direction: column;
    }
    
    .footer-content .item.right {
        padding-left: 6rem;
    }
    
    .footer-content .social {
        width: 25%;
        display: flex;
        text-align: center;
    }
    
    .footer-content .icon a {
        cursor: pointer;
        padding: 10px;
    }
    
    .footer-content .item .title {
        font-size: 0.8rem;
        letter-spacing: 2px;
        font-weight: 700;
        color: var(--color-text-white);
        padding: 20px 0 10px 0;
    }
    
    .footer-content .item a {
        color: var(--color-text-footer);
        font-size: 0.8rem;
    }
    
    .footer-content .subscribe-form {
        position: relative;
        padding: 20px 0;
    }
    
    .footer-content .subscribe-form input[type=email] {
        height: 52px;
        padding: 15px 60px 15px 25px;
        border: 0;
        border-radius: var(--global-radius);
        outline: 1px solid transparent;
        border: 1px solid var(--color-border-strong);
        color: var(--color-text-white);
    }
    
    .footer-content .subscribe-form button {
        position: absolute;
        width: 52px;
        height: 52px;
        inset-inline-end: 0;
        top: 20px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        font-size: 26px;
        line-height: 1;
        color: var(--color-text-white);
    }
    
    .footer-content .subscribe-form button::before {
        content: "";
        position: absolute;
        inset-inline-start: 0;
        top: 14px;
        height: 24px;
        -webkit-border-start: 1px solid var(--tj-color-border-1);
        border-inline-start: 1px solid var(--color-border-strong);
    }
    
    .footer-content .subscribe-form button svg {
        color: var(--color-text-white);
    }
    
    .subscribe-form label {
        color: var(--color-text-white);
        margin-top: 20px;
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    
    .subscribe-form input[type=checkbox] {
        position: relative;
        -webkit-margin-end: 8px;
        margin-inline-end: 8px;
        width: 18px;
        height: 18px;
        border: 1px solid var(--color-border-strong);
        border-radius: 3px;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        cursor: pointer;
    }
    
    .subscribe-form input[type=checkbox]::before {
        content: "✔";
        font-size: 16px;
        line-height: 1;
        font-family: var(--font-relawey) !important;
        color: var(--color-primary);
        position: absolute;
        width: 100%;
        text-align: center;
        line-height: 18px;
        -webkit-transform: scale(0.5);
        -ms-transform: scale(0.5);
        transform: scale(0.5);
        opacity: 0;
        -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
        left: 2px;
    }
    
    .subscribe-form input[type=checkbox]:checked {
        background-color: var(--color-text-white);
    }
    
    .subscribe-form input[type=checkbox]:checked::before {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
    
    .subscribe-form label a {
        color: var(--color-border-strong);
        font-weight: bold;
        -webkit-margin-start: 4px;
        margin-inline-start: 4px;
    }
    
    button {
        outline: none;
        border: none;
        background: transparent;
        padding: 0;
    }
    
    footer .copyright {
        padding: 20px;
        color: var(--color-text-white);
    }
    
    footer .copyright .copyright-content {
        padding: 20px 0px;
    }
    
    .copyright-content {
        display: flex;
        flex-wrap: wrap;
        -webkit-box-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        justify-content: space-between;
        gap: 30px;
        padding: 20px 0px;
    }
    
    .copyright-content .footer-contact ul {
        line-height: 1;
        display: flex;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        justify-content: center;
        list-style: none;
        gap: 22px;
    }
    
    .copyright-content .footer-contact ul li a {
        display: inline-flex;
        -webkit-box-align: center;
        align-items: center;
        color: var(--color-text-white);
        gap: 7px;
    }
    
    .copyright-text {
        color: var(--color-text-white);
        font-size: 12px;
    }
    
    .copyright-text a {
        color: var(--color-text-white);
    }
    
    .bg-shape-2,
    .bg-shape-1 {
        position: absolute;
        top: 0;
        inset-inline-start: 0;
        max-width: 370px;
        width: 100%;
        z-index: -1;
        mix-blend-mode: difference;
        pointer-events: none;
    }
    
    .bg-shape-2 {
        top: inherit;
        inset-inline-start: inherit;
        bottom: 0;
        inset-inline-end: 0;
    }
    
    .cta-section {
        margin-bottom: -70px;
        overflow: hidden;
    }
    
    .cta-content {
        background-color: var(--color-bg);
        position: relative;
        z-index: 3;
        display: flex;
        flex-wrap: wrap;
        overflow: hidden;
        border-radius: var(--space-base);
        box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
        padding: 40px;
    }
    
    .cta-content .text {
        position: relative;
        display: inline-block;
        width: 60%;
    }
    
    .cta-content .text .title {
        font-size: 40px;
        font-weight: 800;
        margin-bottom: 0;
    }
    
    .cta-content .text p {
        font-size: 15.5px;
        font-weight: 200;
    }
    
    .cta-content .cta-btn {
        width: 40%;
        display: flex;
        justify-content: space-between;
    }
    
    .primary-btn.btn-dark {
        background-color: var(--color-primary);
        width: 40%;
    }
    
    .primary-btn {
        display: inline-flex;
        -webkit-box-align: center;
        align-items: center;
        -webkit-box-pack: center;
        justify-content: center;
        position: relative;
        font-size: 16px;
        font-weight: bold;
        text-align: center;
        line-height: 1;
        z-index: 2;
        gap: 10px;
        padding: 5px 25px 5px 5px;
        border-radius: 50px;
        overflow: hidden;
        white-space: nowrap;
    }
    
    .primary-btn .btn-text {
        color: var(--color-text-white);
        overflow: hidden;
    }
    
    .primary-btn.btn-dark .btn-icon {
        color: var(--color-text-white);
    }
    
    .primary-btn .btn-icon {
        display: inline-flex;
        -webkit-box-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        align-items: center;
        font-size: 20px;
        line-height: 1;
        width: 42px;
        height: 42px;
        background-color: var(--color-primary);
        overflow: hidden;
        border-radius: 50%;
    }
    
    .primary-btn:hover .btn-text span {
        transform: translateY(-30px);
    }
    
    .primary-btn .btn-text span {
        display: flex;
        line-height: 1;
        text-shadow: 0px 30px 0px;
        backface-visibility: hidden;
        transform: translateY(0px);
        transition: 0.4s ease-in-out;
    }
    
    @media only screen and (max-width: 780px) {
        .footer-content {
            width: 100%;
            flex-direction: column;
        }
        .footer-content .item {
            width: 50%;
            display: flex;
            flex-direction: column;
        }
        .search-section .search-content {
            padding: 5rem 1rem 3rem 1rem;
        }
        .search-section .search-close {
            width: 4.4rem;
            height: 4.4rem;
        }
        .language-section .language-content {
            width: calc(100% - 2.4rem)
        }
        .language-section .language-close {
            width: 4.4rem;
            height: 4.4rem;
        }
        .language-section .language-content .caption h6 {
            font-size: 24px;
        }
        .language-section .language-content ul li a {
            font-size: 16px;
        }
    }
    
    @media only screen and (max-width: 500px) {
        .footer-content {
            width: 100%;
            flex-direction: column;
        }
        .footer-content .item {
            width: 100%;
            display: flex;
            flex-direction: column;
        }
        .search-content form {
            max-width: 100%;
        }
        .search-content form input {
            font-size: 14px;
        }
        form input,
        form textarea {
            height: 3.5rem;
        }
    }
    
    @media only screen and (max-width: 780px) {
        .cta-content {
            flex-direction: column;
            padding: 30px 1rem;
        }
        .cta-content .text {
            width: 100%;
            padding-bottom: 1rem;
        }
        .cta-content .text .title {
            width: 320px;
            font-size: 24px;
        }
        .cta-content .cta-btn {
            width: 100%;
        }
        .cta-content .text p {
            font-size: 14px;
            width: 320px;
        }
        .primary-btn.btn-dark {
            width: 48%;
        }
        .primary-btn {
            font-size: 14px;
        }
        .copyright-content {
            flex-direction: column;
            gap: 10px;
        }
        footer .copyright .copyright-content {
            padding: 10px 0px;
        }
    }
    
    @media (max-width: 780px) {
        .footer-content {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            grid-template-areas: "kurumsal urunler" "uretim diger" "sosyal sosyal";
            gap: 2rem;
            padding: 20px;
        }
        .footer-content .item {
            width: 100%;
            padding-left: 0;
            align-items: center;
            /* içerikleri ortala */
            text-align: center;
            /* metinleri ortala */
        }
        .footer-content .item:nth-child(1) {
            grid-area: kurumsal;
        }
        .footer-content .item:nth-child(2) {
            grid-area: urunler;
        }
        .footer-content .item:nth-child(3) {
            grid-area: sosyal;
        }
        .footer-content .item:nth-child(4) {
            grid-area: uretim;
        }
        .footer-content .item:nth-child(5) {
            grid-area: diger;
        }
        .footer-content .item.social {
            width: 100%;
        }
        .footer-content .item.social .icon {
            justify-content: center;
            /* ikonları ortala */
        }
        .footer-content .item.right {
            padding-left: 0;
        }
    }
    
    .home-abount-us {
        position: relative;
        padding: 5rem 2rem;
        z-index: 1;
        background-color: var(--color-bg);
        border-radius: var(--global-radius);
        border: 1px solid var(--color-border-trans);
    }
    
    p {
        margin-top: -3px;
    }
    
    .home-abount-us .home-abount-us-content {
        width: 100%;
        display: flex;
        flex-direction: column
    }
    
    .home-abount-us .home-abount-us-content .text {
        width: 100%;
        font-size: 24px;
        font-weight: 500;
        text-align: justify;
    }
    
    .small-title {
        width: fit-content;
        position: relative;
        font-size: 18px;
        letter-spacing: 3.27273px;
        text-transform: uppercase;
        font-weight: bold;
        white-space: nowrap;
        padding: 0px 12px 0 0;
        display: inline-block;
    }
    
    .abountUs::before {
        content: "";
        position: absolute;
        left: -1px;
        top: 20px;
        transform: translateY(-50%);
        width: 95%;
        height: 10px;
        background-color: var(--color-border);
        z-index: -1;
    }
    
    .btn-continue {
        width: fit-content;
        position: relative;
        display: flex;
        margin-right: 5px;
        vertical-align: middle;
        cursor: pointer;
        align-items: center;
        height: 3.5rem;
        display: flex;
        font-size: 18px;
        color: var(--color-primary);
        transition: .35s;
        gap: 0;
        font-weight: bold;
    }
    
    .btn-continue svg {
        fill: var(--color-primary);
    }
    
    .btn-continue:hover {
        gap: 1rem;
        text-decoration: underline;
    }
    
    .btn-continue::before {
        content: "";
        position: absolute;
        left: 0px;
        top: 28.5px;
        transform: translateY(-50%);
        width: 100%;
        height: 24px;
        background-color: var(--color-warning);
        z-index: -1;
    }
    
    .home-abount-us .home-abount-us-content .feature {
        width: 100%;
        display: flex;
        justify-content: space-between;
    }
    
    .items {
        width: 40rem;
        margin-left: auto;
        box-sizing: border-box;
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: auto;
        gap: 18px;
        align-items: start;
        justify-items: stretch;
    }
    
    .items>div {
        display: contents;
    }
    
    .home-abount-us .items .item {
        padding: 12px;
        border-radius: 8px;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        min-height: 72px;
        align-items: flex-end;
    }
    
    .item .countnumber {
        font-family: var(--font-outFit);
        display: flex;
        font-size: 4rem;
        font-weight: 700;
        line-height: 1;
        align-items: center;
    }
    
    .item .countnumber small {
        font-weight: 400;
        font-size: 40px;
    }
    
    .item p {
        margin: 0;
        font-size: 14px;
        line-height: 1.2;
        color: var(--color-border-strong);
        text-align: end;
        padding-right: 25px;
        font-weight: 500;
    }
    
    .item>div {
        display: flex;
        align-items: baseline;
        gap: 6px;
        justify-content: center;
    }
    
    @media (max-width: 780px) {
         :root {
            --right-width-min: 340px;
            --right-width-max: 420px;
        }
    }
    
    @media (max-width: 700px) {
        .feature {
            flex-direction: column;
            gap: 12px;
        }
        .items {
            width: 100%;
            margin-left: 0;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }
    }
    
    @media only screen and (max-width: 780px) {
        .home-abount-us {
            position: relative;
            padding: 3rem var(--space-mobile-out-global);
            z-index: 1;
            background-color: var(--color-bg);
        }
        .font-normal {
            font-size: 20px;
        }
        .small-title.abountUs {
            white-space: normal;
            text-align: left;
            padding-top: 0px;
        }
        .abountUs::before {
            top: 20px;
        }
    }
    
    @media only screen and (max-width: 1000px) {
        .home-abount-us .home-abount-us-content .feature {
            width: 100%;
            display: flex;
            flex-direction: column;
        }
    }
    
    @media only screen and (max-width: 650px) {
        .item .countnumber {
            font-size: 3rem;
        }
    }
    
    @media only screen and (max-width: 480px) {
        .item .countnumber {
            font-size: 32px;
        }
        .item .countnumber small {
            font-size: 32px;
        }
        .item p {
            font-size: 12px;
            padding-right: 19px;
        }
    }
/*Page */

header .page {
    border-bottom: 2px solid #9092951a;
}

    header .page .right-menu {
        color: var(--color-primary);
    }

        header .page .right-menu .language a {
            color: var(--color-primary);
        }

    header .page .nav-icon span {
        -webkit-transition: all .5s;
        -moz-transition: all .5s;
        -o-transition: all .5s;
        transition: all .5s;
        background: var(--color-primary);
    }

    header .page .dark {
        display: block;
    }

    header .page .white {
        display: none;
    }

.menushow .page .right-menu {
    color: var(--color-text-white);
}

    .menushow .page .right-menu .language a {
        color: var(--color-text-white);
    }

.menushow .page .nav-icon span {
    background: var(--color-text-white);
}

.menushow .page .dark {
    display: none;
}

.menushow .page .white {
    display: block;
}