
@import url('https://fonts.googleapis.com/css2?family=Just+Another+Hand&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Just+Another+Hand&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Satisfy&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Satisfy&display=swap');


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

html {
    scroll-behavior: smooth;
}

body {
    height: 100vh;
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 7px;
    background-color: rgb(250, 250, 250);
}

::-webkit-scrollbar-thumb {
    background-color: black;
    border-radius: 5px;
}

a {
    text-decoration: none;
}


.sidebar {
    position: fixed;
    z-index: 4;
    left: -100%;
    transition: position;
    height: 100%;
    width: 25%;
    background-color: whitesmoke;
    transition-property: left;
    transition-duration: 1s;
    opacity: 1;
}

.sidebar .close-sidebar-button {
    font-size: 25px;
    position: absolute;
    left: 85%;
    top: 4%;
    cursor: pointer;
}

.sidebar > ul {
    list-style-type: none;
    font-size: 25px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding-left: 20%;
    padding-top: 25%;
}

.sidebar > ul li {
    width: fit-content;
    border-bottom: 2px solid black;
    cursor: pointer;
    transition-property: border;
    transition-duration: 0.2s;
}

.sidebar > ul li:hover {
    border-bottom: 2px solid whitesmoke;
}

.sidebar ul li a{
    color: black;
}

.sidebar ul li a:visited {
    color: black;
}

.sidebar #ren {
    font-size: 60px;
    position: absolute;
    top: 65%;
    left: 38%;
    /* border-bottom: 2px solid black; */
    font-family: "Great Vibes", cursive;
}

.sidebar #renLogo{
    width: 30px;
    position: absolute;
    top: 73%;
    left: 40%;
}

.sidebar #tekstil {
    font-size: 60px;
    position: absolute;
    top: 73%;
    left: 52%;
    /* border-bottom: 2px solid black; */
    font-family: "Great Vibes", cursive;
}

/* side LANGUAGE */

.side-language{
    display: none;
    justify-content: center;
    align-items: center;
    position: absolute;
    border-radius: 5px;
    position: absolute;
    flex-direction: row;
    top: 85%;
    left: 30%;
}

.side-language ul {
    list-style-type: none;
    display: flex;
    flex-direction: row;
    gap: 5px;
}

.side-language ul li img {
    width: 30px;
    border: 1px solid white;
    border-radius: 50%;
}

.side-language ul li img:hover {
    cursor: pointer;
}

.sidebar #copy {
    position: absolute;
    top: 94%;
    padding-left: 15%;
}

.sidebar #powered {
    font-size: 12px;
    position: absolute;
    top: 97%;
    padding-left: 28%;
    /* transform: translate(-50%); */
}

.sidebar #powered a:visited {
    color: black;
}

.open-sidebar-button {
    position: fixed;
    z-index: 4;
    font-size: 25px;
    left: 50px;
    top: 85px;
    cursor: pointer;
    transition-property: left opacity;
    transition-duration: 0.5s
}

/* BACKTOTOP BUTTON */

.backtotopbutton {
    position: fixed;
    z-index: 5;
    right: 30px;
    bottom: -60px;
    padding: 10px;
    background-color: black;
    color: white;
    border-radius: 5px;
    opacity: 0.8;
    transition-property: bottom opacity;
    transition-duration: 0.5s;
}

.backtotopbutton:hover {
    opacity: 1;
}

.backtotopbutton i {
    font-size: 30px;
}

/* main LANGUAGE */
.main-language {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 5;
    right: 30px;
    top: 10px;
    /* height: 50px;
    width: 200px; */
    /* background-color: white; */
    border-radius: 5px;
    gap: 5px;
}

.main-language ul {
    list-style-type: none;
    display: flex;
    gap: 5px;
}

.main-language ul li img {
    width: 30px;
    border: 1px solid white;
    border-radius: 50%;
}

.main-language ul li img:hover {
    cursor: pointer;
}

/* NAVBAR */

.navbar {
    position: fixed;
    z-index: 5;
    left: 50%;
    top: 0px;
    transform: translate(-50%);
    /* yatayda tam ortalamak için gerekli kod*/
    width: fit-content;
    background-color: rgb(240, 240, 240);
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    padding: 20px 40px;
    transition-property: transform;
    transition-duration: 0.7s;
}

.navbar ul {
    list-style-type: none;
    display: flex;
    gap: 50px;

}

.navbar ul li {
    font-size: 22px;
    border-bottom: 1px solid rgb(240, 240, 240);
    transition-property: border padding;
    transition-duration: 0.3s;
}

.navbar ul li:hover {
    cursor: pointer;
    border-bottom: 1px solid black;
    padding: 0 5px;
}

.navbar ul li a {
    color: black;
}

.navbar ul li a:visited {
    color: black;
}

/*  main slider */

.main-slider {
    position: relative;
    width: 100vw;
    height: 100vh;
    transition-property: opacity;
    transition-duration: 1s;
}


.slide {
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition-property: opacity;
    transition-duration: 1s;
}

.active {
    opacity: 1;
}


.background {
    position: absolute;
    z-index: 2;
    top: 25%;
    width: 100%;
    height: 40%;
    background-color: rgba(250, 235, 215, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.text-inner-main {
    text-align: center;
    position: absolute;
    top: 30px;
    z-index: 3;
    font-size: 40px;
}

.text-inner {
    text-align: center;
    position: absolute;
    top: 60px;
    z-index: 3;
    font-size: 40px;
}

.logo {
    margin-bottom: 10px;
}

.logo h1 {
    font-weight: 500;
}

.gotopage {
    text-decoration: none;
    cursor: pointer;
}


.gotoproducts-text {
    margin-bottom: 30px;
    transition-property: color;
    transition-duration: 1s;
}


.gotoproducts-icon {
    transition-property: color font-size;
    transition-duration: 1s;
}

.slide:nth-child(1) {
    background-image: url(/imgs/main1_bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: 1;

}


.slide:nth-child(2) {
    background-image: url(/imgs/main2_bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: -1;

}


.slide:nth-child(3) {
    background-image: url(/imgs/main3_bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: -2;

}


.slide:nth-child(4) {
    background-image: url(/imgs/main4_bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: -3;

}



.indicators .next {
    position: absolute;
    z-index: 1;
    right: 0;
    top: 25%;
    height: 50%;
    width: 7%;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    background-color: transparent;
    transition-property: background-color;
    transition-duration: 0.5s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.indicators .next:hover {
    cursor: pointer;
    background-color: rgba(250, 250, 250, 0.1);
}

.indicators .next i {
    font-size: 40px;
    color: black;
}


.indicators .previous {
    position: absolute;
    z-index: 1;
    left: 0;
    top: 25%;
    height: 50%;
    width: 7%;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    background-color: transparent;
    transition-property: background-color;
    transition-duration: 0.5s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.indicators .previous:hover {
    cursor: pointer;
    background-color: rgba(250, 250, 250, 0.1);
}

.indicators .previous i {
    font-size: 40px;
    color: black;
    /* opacity: 0.4; */
}


/* BG-01 */
.bg-01 {
    padding: 50px 0px;
    background-color: rgb(250, 250, 250);
}

/* BG-02 */
.bg-02 {
    padding: 50px 0px;
    background-color: rgb(240, 240, 240);
}


/* CONTAİNER */

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    width: 80%;
    margin: auto;
    transition-property: opacity;
    transition-duration: 1s;
}



/*  ABOUT US */

.container .aboutus-title h2 {
    font-size: 34px;
    font-weight: 500;
}

.container .aboutus-description-main {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    /* margin-bottom: 100px; */
}

.container .aboutus-description-main img {
    width: 50%;
    border-radius: 10px;

}

.container .aboutus-description-main .aboutus-description {
    width: 50%;
    text-align: center;
}

.container .aboutus-description-main .aboutus-description h3 {
    font-size: 60px;
    font-family: "Great Vibes", cursive;
    font-weight: 400;
    font-style: normal;
}

.container .aboutus-description-main .aboutus-description .line {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 50px;
    margin-bottom: 50px;
}

.container .aboutus-description-main .aboutus-description .line-box {
    height: fit-content;
    width: 150px;
    background-color: rgb(240, 240, 240);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}


/* RESPONSİVE */

@media (max-width: 1400px) {

    /*! general */
    .sidebar ul {
        font-size: 21px;

    }

    .sidebar #zuzu {
        font-size: 53px;
    }

    .sidebar #tekstil {
        font-size: 53px;

    }

    .sidebar #copy {
        padding-left: 12%;
        font-size: 13px;
    }

    .sidebar #powered {
        font-size: 10px;
    }

    .navbar {
        padding: 18px 36px;
    }

    .navbar ul li {
        font-size: 20px;
    }


    /*! only index */
    .text-inner-main {
        top: 23px;
        font-size: 35px;
    }

    .text-inner {
        top: 60px;
        font-size: 35px;
    }

    .aboutus-title h2 {
        font-size: 32px !important;
    }

    .aboutus-description p {
        font-size: 15px;
    }
}


@media (max-width: 1200px) {

    /*! general*/

    .side-language{
        display: flex;
    }

    .side-language ul li img{
        width: 23px;
    }

    .main-language {
        display: none;
    }

    /*! only index */
    .text-inner-main {
        top: 23px;
        font-size: 33px;
    }

    .text-inner {
        top: 60px;
        font-size: 33px;
    }

    .aboutus-title h2 {
        font-size: 30px !important;
    }

    .aboutus-description h3 {
        font-size: 50px !important;
    }

    .aboutus-description p {
        font-size: 13px;
    }


}



@media (max-width: 992px) {

    /*! general */
    .sidebar ul {
        font-size: 18px;
        padding-top: 30%;

    }

    .sidebar #zuzu {
        font-size: 45px;
    }

    .sidebar #tekstil {
        font-size: 45px;

    }

    .side-language{
        display: flex;
        top: 80%;
        left: 25%;
    }

    .side-language ul li img{
        width: 20px;
    }


    .sidebar #copy {
        padding-left: 11%;
        font-size: 11px;
    }

    .sidebar #powered {
        font-size: 9px;
    }

    .navbar {
        padding: 14px 28px;
    }

    .navbar ul li {
        font-size: 16px;
    }

    /*! only index */
    .text-inner-main {
        top: 33px;
        font-size: 30px;
    }

    .text-inner {
        top: 60px;
        font-size: 30px;
    }

    .aboutus-title h2 {
        font-size: 28px !important;
    }


    .aboutus-description h3 {
        font-size: 45px !important;
    }

    .aboutus-description p {
        font-size: 13px;
    }

    .container .aboutus-description-main {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 50px;
    }

    .container .aboutus-description-main img {
        width: 100%;
        border-radius: 10px;

    }

    .container .aboutus-description-main .aboutus-description {
        width: 100%;
        text-align: center;
    }
}


@media (max-width: 768px) {

    /*! general */
    .sidebar {
        width: 50%;

    }

    .sidebar ul {
        font-size: 20px;
        padding-top: 30%;

    }

    .sidebar #zuzu {
        font-size: 45px;
        left: 38%;
    }

    .sidebar #tekstil {
        font-size: 45px;
        left: 48%;

    }

    .side-language{
        display: flex;
        top: 80%;
        left: 30%;
    }

    .side-language ul li img{
        width: 23px;
    }

    .sidebar #copy {
        padding-left: 17%;
        font-size: 13px;
    }

    .sidebar #powered {
        font-size: 11px;
        padding-left: 33%;
    }

    .navbar ul li {
        font-size: 13px;
    }


    /*! only index */

    .text-inner-main {
        top: 42px;
        font-size: 27px;
    }

    .text-inner {
        top: 67px;
        font-size: 27px;
    }

    .aboutus-title h2 {
        font-size: 25px !important;
    }


    .aboutus-description h3 {
        font-size: 40px !important;
    }

    .aboutus-description p {
        font-size: 13px;
    }

    .container .aboutus-description-main {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 50px;
    }

    .container .aboutus-description-main img {
        width: 100%;
        border-radius: 10px;

    }

    .container .aboutus-description-main .aboutus-description {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 576px) {
    /*! general */

    .sidebar {
        width: 50%;

    }

    .sidebar ul {
        font-size: 18px;
        padding-top: 35%;

    }

    .sidebar #zuzu {
        font-size: 45px;
        left: 38%;
    }

    .sidebar #tekstil {
        font-size: 45px;
        left: 48%;

    }

    .side-language{
        display: flex;
        top: 78%;
        left: 27%;
    }

    .side-language ul li img{
        width: 22px;
    }

    .sidebar #copy {
        padding-left: 12%;
        font-size: 12px;
    }

    .sidebar #powered {
        font-size: 10px;
    }

    .navbar {
        display: none;
    }

    /*! only index */
    .text-inner-main {
        top: 42px;
        font-size: 24px;
    }

    .text-inner {
        top: 67px;
        font-size: 24px;
    }

    .aboutus-title h2 {
        font-size: 25px !important;
    }


    .aboutus-description h3 {
        font-size: 40px !important;
    }

    .aboutus-description p {
        font-size: 13px;
    }

    .container .aboutus-description-main {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 50px;
    }

    .container .aboutus-description-main img {
        width: 100%;
        border-radius: 10px;

    }

    .container .aboutus-description-main .aboutus-description {
        width: 100%;
        text-align: center;
    }
}


@media (max-width: 450px) {
    /*! general */

    .sidebar {
        width: 75%;

    }

    .sidebar ul {
        font-size: 18px;
        padding-top: 35%;

    }

    .sidebar #zuzu {
        font-size: 45px;
        left: 38%;
    }

    .sidebar #tekstil {
        font-size: 45px;
        left: 48%;

    }

    .side-language{
        display: flex;
        top: 78%;
        left: 28%;
    }

    .side-language ul li img{
        width: 21px;
    }

    .sidebar #copy {
        padding-left: 14%;
        font-size: 12px;
    }

    .sidebar #powered {
        font-size: 10px;
        padding-left: 28%;
    }



    /*! only index */
    .text-inner-main {
        top: 53px;
        font-size: 22px;
    }

    .text-inner {
        top: 70px;
        font-size: 22px;
    }

    .aboutus-title h2 {
        font-size: 25px !important;
    }


    .aboutus-description h3 {
        font-size: 40px !important;
    }


}

@media (max-width: 350px) {
    /*! general */

    .sidebar {
        width: 75%;

    }

    .sidebar ul {
        font-size: 18px;
        padding-top: 38%;

    }

    .sidebar #zuzu {
        font-size: 40px;
        left: 38%;
    }

    .sidebar #tekstil {
        font-size: 40px;
        left: 48%;

    }

    .side-language{
        display: flex;
        top: 78%;
        left: 28%;
    }

    .side-language ul li img{
        width: 19px;
    }


    .sidebar #copy {
        padding-left: 10%;
        font-size: 11px;
    }

    .sidebar #powered {
        font-size: 9px;
        padding-left: 28%;
    }


    /*! only index */
    .text-inner-main {
        top: 65px;
        font-size: 20px;
    }

    .text-inner {
        top: 90px;
        font-size: 20px;
    }

    .aboutus-title h2 {
        font-size: 25px !important;
    }


    .aboutus-description h3 {
        font-size: 40px !important;
    }

}

@media (max-width: 300px) {

    /*! general */

    .sidebar {
        width: 75%;

    }

    .sidebar ul {
        font-size: 16px;
        padding-top: 31%;

    }

    .sidebar #zuzu {
        font-size: 40px;
        left: 38%;
        top: 68%;
    }

    .sidebar #tekstil {
        font-size: 40px;
        left: 48%;
        top: 76%;

    }

    .side-language{
        display: flex;
        top: 82%;
        left: 28%;
    }

    .side-language ul li img{
        width: 17px;
    }


    .sidebar #copy {
        padding-left: 10%;
        font-size: 10px;
    }

    .sidebar #powered {
        font-size: 8px;
        padding-left: 28%;
    }


    /*! only index */
    .text-inner-main {
        top: 45px;
        font-size: 17px;
    }

    .text-inner {
        top: 90px;
        font-size: 17px;
    }

    .aboutus-title h2 {
        font-size: 25px !important;
    }


    .aboutus-description h3 {
        font-size: 40px !important;
    }

}

@media (max-width: 270px) {

    /*! general */

    .sidebar {
        width: 75%;

    }

    .sidebar ul {
        font-size: 15px;
        padding-top: 31%;

    }

    .sidebar #zuzu {
        font-size: 38px;
        left: 38%;
        top: 68%;
    }

    .sidebar #tekstil {
        font-size: 38px;
        left: 48%;
        top: 76%;

    }

    .side-language{
        display: flex;
        top: 82%;
        left: 28%;
    }

    .side-language ul li img{
        width: 16px;
    }

    .sidebar #copy {
        padding-left: 10%;
        font-size: 9px;
    }

    .sidebar #powered {
        font-size: 7px;
        padding-left: 28%;
    }


    /*! only index */
    .text-inner-main {
        top: 45px;
        font-size: 16px;
    }

    .text-inner {
        top: 90px;
        font-size: 16px;
    }

    .aboutus-title h2 {
        font-size: 25px !important;
    }


    .aboutus-description h3 {
        font-size: 40px !important;
    }

}