/* Reset və Box Sizing */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;

}

/* Layout üçün Flex */
body>div {
    /* display: flex; */
    flex-direction: row;
    font-family: 'Montserrat', sans-serif;
    /* overflow-x: hidden */
    /* position: relative; */
}

.baseSextionDiv {
    position: relative;
}


.left {
    position: fixed;
    top: 0;
    left: 0;
    width: 170px;
    height: 100vh;
    z-index: 10;
}

.right {
    position: fixed;
    top: 0;
    right: 0;
    width: 170px;
    height: 100vh;
    z-index: 10;
}

.left img,
.right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* Ortadakı Məzmun Sahəsi */
.center {
    max-width: 100%;
    width: 750px;
    flex: 1;
    margin: 0 2px;
}

.rightCenterMenu {
    width: 240px;
}

/* Header */
header {
    flex: 1;
    padding: 5px 10px;
    /* border-bottom: 2px solid #00b140; */
    position: relative;
    max-width: 1024px;
    margin: auto;
    /* background: red; */
}

@media (max-width:1150px) {

    .center {
        width: 100%;
    }

    .rightCenterMenu {
        width: 100%;
    }


}

@media (max-width: 768px) {
    body>div {
        flex-direction: column;
    }

    /* .left,
    .right {
        width: 100%;
        height: auto;
    }

    .left img,
    .right img {
        height: auto;
        position: relative;
    } */

    .center {
        width: 100%;
        margin: 0;
    }

    .rightCenterMenu {
        width: 100%;
    }
}


@media (max-width:500px) {
    .center {
        /* width: 50%; */
    }
}