        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;600&family=Roboto:wght@100&display=swap');
         :root {
            /*--main-color: #bda892;*/
            --main-color: #D5C3AF;
            --black-color: #231F20;
            --border: 0.1rem solid rgba(117, 75, 40, 0.4);
            --main-color2: #754b28;
        }
        
        * {
            font-family: "Poppins", sans-serif;
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            outline: none;
            border: none;
            text-decoration: none;
            text-transform: none;
            transition: 0.4s ease;
        }
        /* base html codes */
        
        html {
            font-size: 62.5%;
            overflow-x: hidden;
            scroll-padding-top: 9rem;
            scroll-behavior: smooth;
        }
        
        html::-webkit-scrollbar {
            width: 0.8rem;
            background-color: #bd9d7c;
        }
        
        html::-webkit-scrollbar-thumb {
            border-radius: 3rem;
            background-color: var(--main-color2);
        }
        
        body {
            background-color: var(--main-color);
        }
        
        section {
            padding: 3.5rem 10%;
        }
        
        .index {
            height: 100vh;
            width: 100%;
        }
        
        a {
            color: var(--main-color2);
            text-decoration: none;
        }
        
        .btn {
            margin-top: 1rem;
            display: inline-block;
            padding: 2rem 3.75rem;
            border-radius: 30rem;
            font-size: 1.7rem;
            color: #ccc;
            background-color: #754b28;
            cursor: pointer;
        }
        
        .search-input {
            font-size: 1.6rem;
            color: var(--black-color);
            padding: 1rem;
            text-transform: none;
            border-radius: 3rem;
        }
        
        .btn:hover {
            opacity: 0.8;
        }
        
        .heading {
            color: #ffff;
            font-size: 4rem;
            margin-bottom: 3.5rem;
            border-bottom: 0.1rem solid #ffff;
        }
        
        .heading span {
            color: #754b28;
        }
        /*! Header Baslangic */
        
        .header .logo img {
            height: 10rem;
        }
        
        .header {
            height: 115px;
            background-color: #ffff;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 3%;
            margin: 2rem 7%;
            border-radius: 30rem;
            box-shadow: 0px 0px 17px -2px rgba(117, 75, 40, 0.85);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        #menu {
            visibility: hidden;
            display: none;
            cursor: pointer;
        }
        
        .navbar {
            visibility: visible;
        }
        
        .header .navbar a {
            margin: 1rem;
            font-size: 1.7rem;
            color: var(--black-color);
            border-bottom: 0.1rem solid transparent;
        }
        
        .line1 {
            content: '';
            width: 35px;
            height: 4px;
            background-color: black;
        }
        
        .line1.active {
            transform: rotate(45deg);
            margin-top: 5px;
        }
        
        .line2 {
            content: '';
            width: 35px;
            height: 4px;
            margin-top: 6px;
            background-color: black;
        }
        
        .line2.active {
            visibility: hidden;
            display: none;
        }
        
        .line3 {
            content: '';
            width: 35px;
            height: 4px;
            margin-top: 6px;
            background-color: black;
        }
        
        .line3.active {
            transform: rotate(-45deg);
            margin-top: 1px;
        }
        
        #menuEkranı {
            top: 115px;
            width: 100%;
            height: 100vh;
            display: flex;
            opacity: 0.4;
            left: -35%;
            visibility: hidden;
            position: fixed;
            z-index: 999;
            justify-content: space-around;
            align-items: center;
            transition: 500ms;
            overflow: visible;
            word-wrap: normal;
            flex-wrap: wrap;
        }
        
        #menuEkranı.active {
            background-color: white;
            opacity: 0.95;
            display: flex;
            visibility: visible;
            left: 0;
        }
        
        #menuEkranı>div>a {
            transform: translateY(-50px);
            display: block !important;
            font-size: 32px;
            color: black;
            display: block;
            margin-bottom: 40px;
            transition: 0s;
            background-color: transparent;
        }
        
        #menuEkranı>div>a.active {
            text-decoration: underline;
        }
        
        #menuEkranı>div>a:hover {
            text-decoration: underline;
        }
        
        .header .navbar .active,
        .header .navbar a:hover {
            border-color: var(--main-color2);
            padding-bottom: 0.5rem;
        }
        
        .header .buttons button {
            cursor: pointer;
            font-size: 2rem;
            margin-left: 2rem;
            background-color: transparent;
        }
        
        .header .buttons button>a>img {
            width: 40px;
        }
        /*! Header Son */
        /*! Ana Sayfa Başlangıç */
        
        section .index {
            position: relative;
            width: 100%;
            min-height: 100vh;
            padding: 120px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: var(--main-color);
        }
        
        .content {
            position: relative;
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 250px;
        }
        
        .content .textBox {
            position: relative;
            max-width: 600px;
        }
        
        .content .textBox h2 {
            color: #fff;
            font-size: 5em;
            line-height: 1.4em;
            font-weight: 500;
        }
        
        .content .textBox h2 span {
            color: var(--main-color);
            font-size: 1.2em;
            font-weight: 900;
            text-shadow: 0px 1px 1px black;
        }
        
        .content .textBox p {
            color: #fff;
            font-size: 2em;
            text-shadow: 0px 1px 1px black;
        }
        
        .content .textBox a {
            display: inline-block;
            margin-top: 20px;
            padding: 8px 20px;
            background: var(--main-color);
            color: var(--main-color2);
            border-radius: 40px;
            font-weight: 600;
            letter-spacing: 1px;
            font-size: 2.5rem;
            margin-left: 0.5rem;
            text-decoration: none;
        }
        
        .content .imgBox {
            display: flex;
            justify-content: flex-end;
            padding-right: 10px;
        }
        
        .content .imgBox img {
            max-width: 340px;
        }
        
        .thumb {
            position: absolute;
            left: 50%;
            bottom: 20px;
            transform: translateX(-50%);
            display: flex;
        }
        
        .thumb li {
            list-style: none;
            display: inline-block;
            margin: 0 20px;
            cursor: pointer;
            transition: 0.5s;
        }
        
        .thumb li:hover {
            transform: translateY(-15px);
        }
        
        .thumb li img {
            max-width: 60px;
        }
        
        .img1900-900 {
            aspect-ratio: 1860/900;
        }
        
        .classicImage {
            width: 100%;
            margin: 100px 0 100px 0 !important;
        }
        
        .circle {
            position: absolute;
            top: 1670px;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--main-color2);
            clip-path: circle(600px at right);
        }
        
        .circle2 {
            position: absolute;
            top: 1670px;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--main-color2);
            clip-path: circle(800px at left);
        }
        
        .none {
            visibility: hidden !important;
        }
        
        .leftMenu {
            left: -300px;
            opacity: 0.5;
            transition: 1s;
        }
        
        .rightMenu {
            left: -300px;
            opacity: 0.5;
            transition: 1sß;
        }
        /*! Ana Sayfa Son */
        /*! Kaydırmalı Resim */
        
        .kaydir {
            margin-top: 100px;
            width: 100%;
            height: 600px;
            background-color: var(--main-color);
            content: '';
        }
        
        .kaydirImage {
            width: 100%;
            height: 600px;
            transition: 500ms;
            position: absolute;
        }
        
        .kaydirImage.active {
            display: none;
        }
        
        #goLeft {
            position: absolute;
            top: 65%;
            transform: translateY(-50%);
            left: 10%;
            height: 50px;
            width: 50px;
        }
        
        #goRight {
            position: absolute;
            top: 65%;
            transform: translateY(-50%);
            left: 85%;
            height: 50px;
            width: 50px;
        }
        
        #selector {
            display: flex;
            position: absolute;
            top: 800px;
            width: 100%;
            height: 20px;
            justify-content: center;
            align-items: center;
        }
        
        .selectorElements {
            -webkit-border-radius: 10px;
            -moz-border-radius: 10px;
            border-radius: 10px;
            background-color: #231F20;
            width: 20px;
            height: 20px;
            content: '';
            margin: 0 5px 0 5px;
            border: solid black 1px;
            transition: 200ms;
        }
        
        .selectorElements.active {
            background-color: aliceblue;
            transition: 200ms;
        }
        /*! Kaydırmalı Resin Son */
        /*! Dondurma Menu Baslangic */
        
        .products .box-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
            gap: 1.5rem;
        }
        
        .products .box-container .box {
            text-align: center;
            background-color: #ffff;
            position: relative;
            border-radius: 3rem;
            display: flex;
            flex-direction: column;
            height: 410px;
            justify-content: space-between;
            padding: 3rem;
            top: -100px;
            opacity: 0;
            transition: 500ms;
            cursor: pointer;
        }
        
        .products .box-container .box:hover {
            background-color: rgb(236, 235, 235);
        }
        
        .products .box-container .box .box-head {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            position: relative;
            z-index: 10;
        }
        
        .products .box-container .box .box-head .title {
            font-size: 1.4rem;
        }
        
        .products .box-container .box .box-head .name {
            font-size: 2.5rem;
            font-weight: bold;
            text-align: start;
            overflow-wrap: anywhere;
        }
        
        .products .box-container img {
            aspect-ratio: 4/3;
            position: absolute;
            top: 50%;
            left: 50%;
            width: 100%;
            object-fit: cover;
            transform: translate(-50%, -50%);
            border-radius: 3rem;
        }
        
        .products .box-container .product-btn a {
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            width: 6.5rem;
            height: 6.5rem;
            border: 0.2rem solid var(--main-color2);
        }
        
        .products .box-container .product-btn a i {
            font-size: 1.6rem;
            color: var(--main-color2);
        }
        
        .products .box-container .product-btn:hover {
            border-color: var(--main-color);
            padding-bottom: 1.3rem;
        }
        
        .image>img {
            margin-top: 40px;
            width: 95% !important;
            transition: 500ms;
        }
        
        .image>img:hover {
            width: 100% !important;
            transition: 500ms;
        }
        /*! Dondurma Menu Son */
        /* Footer Baslangic */
        
        .footer {
            background-color: var(--black-color);
            text-align: center;
            margin-top: 140px;
            height: unset !important;
        }
        
        .footer .search {
            display: flex;
            justify-content: center;
            border-radius: 3rem;
            text-transform: none;
        }
        
        .footer .search .search-input {
            width: 30rem;
        }
        
        .footer .search .btn .btn-primary {
            background-color: var(--black-color);
            padding: 1rem 2rem;
            margin-left: 1rem;
        }
        
        .footer .search .btn .btn-primary:hover {
            background-color: #705640;
        }
        
        .footer .share {
            padding: 2rem 0;
        }
        
        .footer .share {
            width: 10rem;
            height: 10rem;
            line-height: 5rem;
            font-size: 3.5rem;
            border-radius: 50%;
            margin: 0rem auto;
            display: flex;
            justify-content: center;
            text-transform: none;
            padding-left: 10rem 0;
            text-align: center;
            gap: 1rem;
        }
        
        .footer .share1 a {
            /*Facebook*/
            width: 5rem;
            height: 5rem;
            line-height: 5rem;
            color: #3b5998;
            font-size: 3.5rem;
            border: var(--border);
            border-radius: 50%;
            margin: 0.3rem;
        }
        
        .footer .share2 a {
            /*Twitter*/
            width: 5rem;
            height: 5rem;
            line-height: 5rem;
            color: #00acee;
            font-size: 3.5rem;
            border: var(--border);
            border-radius: 50%;
            margin: 0.3rem;
        }
        
        .footer .share3 a {
            /*İnstagram*/
            width: 5rem;
            height: 5rem;
            line-height: 5rem;
            color: rgba(221, 42, 123, 1);
            font-size: 3.5rem;
            border: var(--border);
            border-radius: 50%;
            margin: 0.3rem;
        }
        
        .footer .share1 a:hover {
            /*Facebook*/
            background-color: var(--main-color);
        }
        
        .footer .share2 a:hover {
            /*Twitter*/
            background-color: var(--main-color);
        }
        
        .footer .share3 a:hover {
            /*İnstagram*/
            background-color: var(--main-color);
        }
        
        .footer .links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1rem;
        }
        
        .footer .links a {
            background-color: var( --main-color);
            padding: 0.7rem 2rem;
            color: var(--main-color2);
            font-size: 2rem;
            border-radius: 1.3rem;
        }
        
        .footer .links a:hover {
            background-color: var(--main-color2);
            color: var(--main-color);
        }
        
        .footer .links a.active {
            background-color: var(--main-color2);
            color: var(--main-color);
        }
        
        .footer .credit {
            font-size: 1.5rem;
            color: var(--main-color);
            font-weight: 300;
            padding-top: 1.5rem;
        }
        
        .footer .credit span {
            font-size: 1.5rem;
            color: var(--main-color2);
        }
        
        #menu-btn {
            display: none;
        }
        /*HAKKIMIZDA CSS */
        
        #Hakkimizda {
            color: var(--black-color);
            padding: 5rem;
            text-align: center;
            text-transform: capitalize;
            font-weight: 600;
        }
        
        #hakkimizdabaslik {
            font-size: 55px;
            color: var(--main-color2);
            text-shadow: 0px 1px 1px black;
            font-weight: 600;
            margin-bottom: 5rem;
            text-align: center;
        }
        
        #hakkimizdabaslikk {
            font-size: 75px;
            color: var(--main-color2);
            text-shadow: 0px 1px 1px black;
            font-weight: 600;
            text-align: center;
        }
        
        #container {
            width: 1200px;
            height: auto;
            margin: auto;
        }
        
        #sol {
            float: left;
            border-right: 0.3rem solid var(--main-color2);
            font-size: 5rem;
            width: 40rem;
        }
        
        #h5sol {
            line-height: 1.6;
            font-size: 3.2rem;
            font-weight: 600;
        }
        
        #h5sol,
        #sag {
            margin: 0;
            padding: 0;
        }
        
        #hak-span {
            font-size: 7rem;
            margin-right: 0.7rem;
            line-height: 4.2rem;
            color: var(--main-color2);
            font-weight: 600;
            float: left;
            text-align: center;
        }
        
        #sag {
            float: right;
            width: 750px;
            color: var(--black-color);
            letter-spacing: 0.1rem;
            font-size: 1.2rem;
            line-height: 1.3;
            text-align: left;
            text-shadow: 0px 0px 0.5px black;
        }
        
        .img-fluid {
            max-width: 100%;
            width: 80%;
            max-height: auto;
            height: 50%;
        }
        
        .img-fluid2 {
            max-width: 100%;
            width: 70%;
            max-height: auto;
            height: 30rem;
            margin-left: 15%;
            margin-right: 15%;
        }
        
        .mt100 {
            margin-top: 5rem;
            margin-bottom: 2.5rem;
        }
        
        .mt1002 {
            margin-top: 5rem;
            margin-bottom: 2.5rem;
        }
        
        .mt1001 {
            margin-top: 3rem;
            margin-bottom: 2.5rem;
        }
        
        .pson {
            color: var(--black-color);
            letter-spacing: 0.1rem;
            font-weight: 400;
            font-size: 2rem;
            line-height: 1.8;
            text-align: center;
            text-shadow: 0px 0px 0.5px black;
            transition: 500ms;
        }
        
        #indexPson {
            display: none;
            visibility: hidden;
        }
        
        #indexPson.active {
            display: block;
            visibility: visible;
        }
        
        #hakkimizdabaslik2 {
            font-size: 55px;
            color: var(--main-color2);
            text-shadow: 0px 1px 1px black;
            font-weight: 600;
            margin-bottom: 1rem;
            text-align: center;
        }
        /* Footer Son */
        /*İLETİSİM CSS*/
        /*FRANCHAİSE START CSS */
        
        .franchiseBaslik h1 {
            font-size: 55px;
            color: #754b28;
            text-shadow: 0px 1px 1px black;
            font-weight: 600;
            padding-top: 5rem;
            margin-bottom: 1.3rem;
            text-align: center;
        }
        
        p.telefon {
            color: red;
            font-size: 1.5rem;
        }
        
        form {
            display: flex;
            flex-direction: column;
            width: 170%;
            margin: auto;
            max-width: 500px;
            max-height: auto;
            padding: 40px;
            color: rgb(224, 210, 210);
            background-color: rgb(117, 75, 40, 0.6);
            border-radius: 10px;
        }
        
        form>div {
            justify-content: space-between;
            display: flex;
        }
        
        form>div>select {
            float: left;
            width: 30%;
        }
        
        label {
            font-size: 1.9rem;
            margin-bottom: 10px;
        }
        
        .form-group>label {
            margin-bottom: 5px;
            font-size: 1.3rem;
        }
        
        input {
            font-size: 1.8rem;
            padding: 5px 10px;
            border: none;
            outline: none;
            border-radius: 10px;
            color: var(--main-color2);
        }
        
        select {
            font-size: 1.8rem;
            padding: 5px 10px;
            border: none;
            outline: none;
            border-radius: 10px;
            color: var(--main-color2);
        }
        
        a {
            color: var(--main-color2);
            text-decoration: none;
        }
        
        .bilgi {
            margin-top: 50px;
            padding-bottom: 50px;
        }
        
        .bilgi>h3>img {
            aspect-ratio: 120/153;
            width: 24px;
        }
        
        textarea {
            font-size: 1.8rem;
            padding: 5px 10px;
            border: none;
            outline: none;
            border-radius: 10px;
        }
        
        input[type="textarea"] {
            width: 430px;
            height: 150px;
        }
        
        input[type="radio"] {
            width: 14px;
            height: 14px;
        }
        
        input[type="checkbox"] {
            width: 18px;
            height: 18px;
        }
        
        .php-css {
            font-size: 1.3rem;
            color: #fff;
            text-shadow: 0px 1px 1px black;
        }
        
        .btn-form {
            margin-top: 1rem;
            display: inline-block;
            padding: 2rem 3.75rem;
            border-radius: 30rem;
            font-size: 1.9rem;
            color: #ccc;
            background-color: var(--main-color2);
            cursor: pointer;
        }
        
        .btn-form:hover {
            cursor: pointer;
            opacity: 0.7;
        }
        
        .bannerImg {
            margin-bottom: 100px;
        }
        
        .bannerImg>div {
            padding-top: 50px;
            width: 60%;
            margin-left: 20%;
            position: relative;
            display: flex;
            justify-content: space-around;
        }
        
        .bannerImg>div>a {
            width: min-content;
            width: 20%;
        }
        
        .bannerImg>div>a>img {
            aspect-ratio: 1 / 1;
            width: 100%;
            object-fit: cover;
            -webkit-box-shadow: -1px 25px 10px 0px rgba(0, 0, 0, 0.75);
            -moz-box-shadow: -1px 25px 10px 0px rgba(0, 0, 0, 0.75);
            box-shadow: -1px 25px 10px 0px rgba(0, 0, 0, 0.75);
            border-radius: 50%;
            transition: 500ms;
        }
        
        .bannerImg>div>a>img:hover {
            transform: scale(1.2);
            -webkit-box-shadow: -1px 15px 10px 0px rgba(0, 0, 0, 0.75);
            -moz-box-shadow: -1px 15px 10px 0px rgba(0, 0, 0, 0.75);
            box-shadow: -1px 15px 10px 0px rgba(0, 0, 0, 0.75);
        }
        
        .bannerImg>img {
            aspect-ratio: 395/187;
            width: 100%;
        }
        
        .bannerMobile {
            display: none;
            visibility: hidden;
            width: 100%;
            aspect-ratio: 16/9;
        }
        
        .bannerMobile2 {
            display: none;
            visibility: hidden;
            width: 100% !important;
            height: 100vh !important;
            object-fit: cover !important;
        }
        
        #dondurma {
            aspect-ratio: 1/1;
            width: 60%;
            margin-left: 15%;
            cursor: pointer;
        }
        /*FRANCHAİSE END CSS */
        
        #main {
            top: -200px;
            opacity: 0.5;
            transition: 500ms;
            text-transform: none;
        }
        /* Responsive Baslangic */
        
        #endbanner2 {
            margin-top: -100px;
            display: none;
            visibility: hidden;
            width: 100%;
            aspect-ratio: 50/73;
            object-fit: contain;
        }
        
        @media (max-width: 1500px) {
            .circle {
                width: 50% !important;
                margin-left: 50% !important;
                clip-path: circle(500px at right);
            }
            .circle2 {
                width: 55% !important;
                margin-right: 40% !important;
                clip-path: circle(740px at left);
            }
            .content {
                margin-top: 250px !important;
            }
            .circle {
                top: 120vh;
                display: none !important;
            }
            .circle2 {
                top: 120vh;
                display: none !important;
            }
            .textBox.leftMenu {
                padding: 30px;
                background-color: var(--main-color2);
                border-radius: 20px;
            }
            .imgBox {
                padding: 30px;
                background-color: var(--main-color2);
                border-radius: 20px;
            }
            .content {
                margin-top: 50px !important;
            }
            .index {
                margin-top: 50px !important;
                padding: 0 !important;
                width: 90% !important;
                margin-left: 5%;
            }
            .bannerMobile {
                width: 100% !important;
                aspect-ratio: 16/9 !important;
                display: unset !important;
                visibility: visible !important;
            }
            .bannerImg>img {
                visibility: hidden;
                display: none;
            }
        }
        
        @media (max-width: 1350px) {
            .circle {
                width: 45% !important;
                margin-left: 55% !important;
                clip-path: circle(500px at right);
            }
            .circle2 {
                width: 55% !important;
                margin-right: 40% !important;
                clip-path: circle(740px at left);
            }
            .textBox.leftMenu>p {
                width: 80%;
                font-size: 1.8em !important;
            }
            .content {
                margin-top: 100px;
            }
            .kaydir {
                height: 500px !important;
            }
            .kaydirImage {
                height: 500px !important;
            }
            #selector {
                top: 680px !important;
            }
            .header .navbar a {
                font-size: 1.3rem;
            }
        }
        
        @media (max-width: 1300px) {
            .header {
                padding: 5px 20px 5px 20px;
                margin: 0;
                width: 100%;
                border-radius: 0;
            }
            .img-fluid.mt100 {
                height: 50%;
                width: 80%;
            }
            .pson {
                width: 80%;
                margin-left: 10% !important;
                font-size: 1.5rem;
            }
            #h5sol {
                font-size: 2.5rem !important;
            }
            #hak-span {
                font-size: 4rem !important;
            }
            #psag {
                width: 100% !important;
            }
            #container {
                width: unset;
            }
            #sag {
                width: 50% !important;
                margin-right: 10% !important;
            }
            #sol {
                width: 30% !important;
                margin-left: 8%;
            }
            .circle {
                width: 50% !important;
                margin-left: 50% !important;
                clip-path: circle(500px at left);
            }
            .circle2 {
                width: 50% !important;
                margin-right: 50% !important;
                clip-path: circle(600px at right);
            }
            .textBox.leftMenu>p {
                width: 80%;
                font-size: 1.8em !important;
            }
            .content {
                margin-top: 60px;
            }
            .index {
                margin-top: 90px;
                max-height: 500px;
            }
        }
        
        @media (max-width: 1000px) {
            .header {
                justify-content: right;
                height: 60px;
            }
            #menuEkranı {
                top: 60px;
            }
            .header .logo img {
                height: 5rem;
            }
            .navbar {
                visibility: hidden;
                display: none;
            }
            #menu {
                visibility: visible;
                display: block;
                right: 0;
            }
            .buttons {
                width: 100%;
                text-align: end;
                margin-right: 20px;
            }
            .img-fluid.mt100 {
                height: 50%;
                width: 80%;
            }
            .franchiseBaslik>h1 {
                color: white;
            }
            .form {
                display: unset !important;
            }
            .container {
                padding-left: 0 !important;
                padding-right: 0 !important;
            }
            .title {
                font-size: 3rem !important;
            }
            .information>p {
                font-size: 1.7rem;
            }
            .text {
                font-size: 1.7rem !important;
            }
            .img-fluid2.mt1001 {
                width: 100% !important;
                height: 25%!important;
                margin-left: 0 !important;
                margin-right: 0 !important;
            }
            .pson {
                width: 80%;
                margin-left: 10% !important;
                font-size: 1.2rem;
            }
            #hakkimizdabaslik {
                font-size: 40px !important;
            }
            #hakkimizdabaslik2 {
                font-size: 40px !important;
            }
            .content {
                display: block;
                position: relative;
                justify-content: center;
                align-items: center;
            }
            .content .imgBox {
                justify-content: start !important;
            }
            .textBox.leftMenu>h2 {
                font-size: 3.2em;
            }
            .textBox.leftMenu>p {
                width: 80%;
                font-size: 1.8em !important;
            }
            .imgBox {
                display: none;
                visibility: hidden;
            }
            .index {
                margin-top: 50px !important;
            }
            .circle {
                height: 70%;
            }
            .circle2 {
                height: 70%;
            }
            .kaydir {
                height: 400px !important;
            }
            .kaydirImage {
                height: 400px !important;
            }
            #selector {
                top: 520px !important;
            }
        }
        
        @media (max-width: 500px) {
            body {
                background-image: none !important;
            }
            .heading>span {
                color: white;
            }
            .form-group>form {
                width: auto;
                max-width: none;
                margin: 0;
            }
            .franchiseBaslik>h1 {
                font-size: 36px;
            }
            .form {
                display: unset !important;
            }
            .input {
                margin: 0 18px 0 12px !important;
                width: 60% !important;
            }
            .btn-formm {
                margin: 0 18px 0 12px !important;
                width: 60% !important;
            }
            #Hakkimizda {
                padding: 30px 0 0 0 !important;
            }
            .img-fluid.mt100 {
                height: 50%;
                width: 80%;
            }
            #h5sol {
                color: white !important;
            }
            #psag {
                font-size: 16px;
            }
            .pson {
                font-size: 16px !important;
            }
            .textBox.leftMenu>h2 {
                font-size: 2.5em;
            }
            .textBox.leftMenu>p {
                width: 80%;
                font-size: 1.5em !important;
            }
            .content {
                margin-top: 50px;
            }
            .theloqma.rightMenu {
                max-width: 250px !important;
            }
            #sol {
                border-right: none !important;
                border-bottom: 0.3rem solid var(--main-color2);
                width: 80% !important;
                margin-left: 10% !important;
                float: none;
                justify-content: center;
                align-items: center;
            }
            #sag {
                width: 80% !important;
                float: none;
                justify-content: center;
                align-items: center;
                margin-left: 10%;
                margin-top: 30px;
            }
            .header .buttons button>a>img {
                width: 30px;
            }
            .index {
                margin-top: 50px !important;
            }
            .circle {
                top: 140vh !important;
                height: 70%;
            }
            .circle2 {
                top: 140vh !important;
                height: 70%;
            }
            .kaydir {
                height: 250px !important;
            }
            .kaydirImage {
                height: 250px !important;
            }
            #selector {
                top: 370px !important;
            }
            #hakkimizdabaslikk {
                font-size: 60px !important;
            }
            .bannerImg>div {
                width: 100% !important;
                margin-left: 0 !important;
            }
            .classicImage {
                margin: -60px 0 0 0;
                box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
            }
            .products .box-container .box {
                height: 320px;
            }
            #dondurma {
                aspect-ratio: 1/1;
                width: 100%;
                margin-left: 0;
                cursor: pointer;
            }
            .classicImage {
                width: 100%;
                margin: -50px 0 100px 0 !important;
            }
            .bannerMobile {
                display: none !important;
                visibility: hidden !important;
            }
            .bannerMobile2 {
                visibility: visible !important;
                display: unset !important;
            }
            #endbanner1 {
                display: none !important;
                visibility: hidden !important;
            }
            #endbanner2 {
                display: unset !important;
                visibility: visible !important;
            }
            .products .box-container .box .box-head .name {
                font-size: 2rem !important;
            }
            .none {
                display: none !important;
            }
        }
        
        @media (max-width: 400px) {
            .kaydir {
                height: 200px !important;
            }
            .kaydirImage {
                height: 200px !important;
            }
            #selector {
                top: 320px !important;
            }
            #hakkimizdabaslikk {
                font-size: 60px !important;
            }
            .pson {
                font-size: 12px !important;
            }
            .bannerImg>div {
                width: 80% !important;
                margin-left: 10% !important;
            }
            .bannerImg>div>a {
                width: 30%;
            }
            .bannerImg>div>a>img {
                aspect-ratio: 1 / 1;
                width: 100%;
                object-fit: cover;
                border-radius: 50%;
                transition: 500ms;
            }
            .index {
                font-size: 8px !important;
            }
            .classicImage {
                width: 100%;
                margin: -80px 0 100px 0 !important;
            }
            #menuEkranı>div>a {
                font-size: 16px;
            }
            .content {
                margin-top: 30px;
            }
        }
        
        @media (max-height: 300px) {
            .classicImage {
                width: 100%;
                margin: 0 0 100px 0 !important;
            }
        }
        
        @media (max-height: 600px) {
            #menuEkranı>div {
                display: flex;
                justify-content: space-between;
                width: 90%;
                padding: 5% 0 5% 0;
            }
            #menuEkranı>div>a {
                font-size: 14px;
            }
            .content {
                margin-top: 30px;
            }
        }
        
        @media(max-height: 600px) AND (max-width:600px) {
            #mobileEkrani {
                display: none !important;
                visibility: hidden !important;
            }
        }