*{
    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 #0071BC;
    border-bottom: 2px solid #0071BC;
    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: 485px;
    aspect-ratio: 485/500;
    border-left: 30px solid #0071BC;
    background-image: url(./assests/PeletPres/Section1/image1.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.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: 42px;
    letter-spacing: 1px;
}

.section1Down{
    width: 100%;
    padding: 20px 0;
    border-top: 2px solid #0071BC;
    border-bottom: 2px solid #0071BC;
    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;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.section2LeftBoxİmage{
    justify-self: flex-start;
    width: 750px;
    aspect-ratio: 750/722;
    background-image: url(./assests/PeletPres/Section2/image1.2.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.section2RightBox{
    width: 371px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 9px;
    align-items: flex-end;
}
.section2RightUpİmage{
    width: 99.46%;
    aspect-ratio: 1/1;
    background-image: url(./assests/PeletPres/Section2/image2.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.section2RightDownİmage{
    width: 92.18%;
    aspect-ratio: 1/1;
    background-image: url(./assests/PeletPres/Section2/image3.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}   
@media screen and (max-width:850px) {
   .contentSection2{
    flex-direction: column;
    align-items: center;
   }
   .section2LeftBoxİmage{
    width: 75%;
    margin-bottom: 30px;
   }
   .section2RightBox{
    gap: 30px;
    align-items: center;
   }
}
@media screen and (max-width:550px){
    .section2LeftBoxİmage{
        width: 100%;
    }
    .section2RightBox{
        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: flex-start;
    gap: 25px;
    padding: 0 8.662%;
    border-left: 2px solid #0071BC;
    border-right: 2px solid #0071BC;
}
.Section3BoxTitle{
    font-family: 'inter';
    font-size: 2.5rem;
    font-weight: 400;
}
.Section3BoxArticleSection{
    color: #808080;
    font-family: 'inter';
    font-size: 1.5rem;
    margin-left: 20px;
}
.Section3BoxArticleSection> li::marker{
    color: #0071BC;
    font-size: 30px;
}

.Section3Button{
    display: flex;
    align-items: center;
    padding: 12px 30px;
    font-family: 'inter';
    font-size: 1.25rem;
    background-color: #0071BC;
    border-radius: 25px;
    color: white;
    cursor: pointer;
}

/* FOOTER SECTION */
#downNavigator{
    width: 100%;
    background-color: #0071BC;
    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: white;
    text-align: center;
}

@media screen and (max-width:480px) {
    *{
        word-break: break-word;
    }
}