*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}
a{
    color: white;
}
.mainContainer{
    width: 1270px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
@media screen and (max-width:1270px){
    .mainContainer{
        width: 100%;
        padding: 0 5%;
    }
}
.pageTitleContainer{
    width: 100%;
    padding: 10px 0;
    border-top: 2px solid #00A99D;
    border-bottom: 2px solid #00A99D;
    font-family: "inter", sans-serif;
    font-size: 3rem;
    margin-bottom: 60px;
}

/* SECTİON1 */
.contentSection1{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-bottom: 60px;
}
.section1Up{
    width: 100%;
    display: flex;
    gap: 30px;
}
.section1UpLeft{
    width: 490px;
    aspect-ratio: 490/500;
    border-left: 30px solid #00A99D;
    background-image: url(./assests/YemMakineleri/Section1/image1.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.section1UpRight{
    width: 59.06%;
    display: flex;
    flex-direction: column;
}
.section1UpRightContentTitle{
    font-family: 'inter';
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: 400;
    letter-spacing: 1px;
}
.section1UpRightContentArticles{
    font-family: 'inter';
    font-size: 1.5rem;
    margin-bottom: 30px;
    margin-right: 50px;
    letter-spacing: 1px;
}

.section1Down{
    width: 100%;
    padding: 20px 0;
    border-top: 2px solid #00A99D;
    border-bottom: 2px solid #00A99D;
    font-family: 'inter';
    font-size: 1.5rem;
}

@media screen and (max-width:1270px) {
    .section1UpRightContentArticles{
        margin-right: 0;
    }
}
@media screen and (max-width:900px) {
    .section1Up{
        flex-direction: column;
        align-items: center;
    }
    .section1UpRight{
        width: 100%;
    }
    
}
@media screen and (max-width:550px){
    .section1UpLeft{
        width: 100%;
    }
}

/* SECTİON2 */
.contentSection2{
    width: 100%;
    display: flex;
    margin-bottom: 60px;
}

.pageİmageLeft{
    width: 59.06%;
}
.pageİmageRight{
    width: 40.94%;
}
@media screen and (max-width:700px) {
    .contentSection2{
        flex-direction: column;
        align-items: center;
    }
    .pageİmageLeft{
        width: 100%;
    }
    .pageİmageRight{
        width: 100%;
    }
}


/* SECTİON3 */
.contentSection3{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    margin-bottom: 60px;
}
.Section3ArticleContainer{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    padding: 0 8.662%;
    border-left: 2px solid #00A99D;
    border-right: 2px solid #00A99D;
}
.Section3BoxTitle{
    font-family: 'inter';
    font-size: 2.5rem;
    font-weight: 400;
}
.Section3BoxArticleSection{
    color: #808080;
    font-family: 'inter';
    font-size: 1.5rem;
    margin-left: 20px;
}

.Section3Button{
    display: flex;
    align-items: center;
    padding: 12px 30px;
    font-family: 'inter';
    font-size: 1.25rem;
    background-color: #00A99D;
    border-radius: 25px;
    color: white;
    cursor: pointer;
}

.Section3BoxArticleSection> li::marker{
    color: #00A99D;
    font-size: 30px;
}


/* FOOTER SECTION */
#downNavigator{
    width: 100%;
    /* border-top:2px solid black ; */
    /* border-bottom:2px solid black ; */
    background-color: #00A99D;
    padding: 15px 0;
    margin-bottom: 20px;
}
.socialMediaContainer{
    display: flex;
    justify-content: center;
    
}
.socialMediaIcons{
    transition: all 0.6s;
    opacity: 1;
}
.socialMediaIcons:hover{
    opacity: 0.5;
    color: black;
}
.locationContainer{
   font-family: "inter", sans-serif;
    /* color: #808080; */
    color: white;
    text-align: center;
}

@media screen and (max-width:430px) {
    *{
        word-break: break-word;
    }
}