
@font-face {
    font-family: "mainFont";
    src: url(font/Roboto/Roboto-Regular.ttf);
}
body{
    font-family: "mainFont";
    background-color: var(--backcolor);
}
:root{
    --backcolor:#fefefefe;
    --text-color-1:#8a8a8a;
    --text-color-3 : #737373;
    --text-color-1-light:#b1b1b1;
    --text-color-2-light:#d9d9d9;
    --text-color-red: #ef5651;
    --text-color-main :#483d8b;
    --mavi :#49c7ef;
    --mor: #7723db;
    --yesil : #57b900;
    --darkMor : #652573;
    --orange :#fe6e1a;
    --black: #000000;
}
#header{
    /* background-color: green; */
    display: flex;
    flex-direction: row;
    justify-content:flex-start;
    /* background-color: #57b900; */
}
#header > div:nth-child(1){
    /* background-color: red; */
    flex-basis:70%;
    box-shadow: border-box;
    /* padding: 0.5rem; */
}
#header > div:nth-child(1) img{
    width: 100%;
    height: auto;
    box-shadow: border;
}
#header > div:nth-child(2){
    /* padding-left:0px ; */
    display: flex;
    /* flex-direction: row; */
    
    align-items: end;
    
}
ul.top-menu{
    /* padding-left:0px ;
    padding-right: 0px; */
    list-style-type: none;
    display: flex;
    justify-content: space-between; 
    flex-direction: row;     
    
}
ul.top-menu > li{
    padding-left: 1rem;
}
ul.top-menu > li > a{
    text-decoration: none;
    color: var(--text-color-1);
    font-size: 24pt;
    font-weight: 600;
    

}
ul.top-menu > li > a:hover{
    color: var(--black);
}
ul.top-menu > li > a.farkli{
    color:var(--darkMor);

}
ul.top-menu > li > a.farkli:hover{
    color:var(--black)
}
@media (max-width:990px){
    #header{
        flex-direction: column;
    }
    /* #header > div{
        flex-basis: 100%;
    } */
    #header > div:nth-child(1) {
        text-align: center;
    }
    #header > div.container{
        text-align: center;
        align-items: center;
        justify-content: center;
    }

    ul.top-menu{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    /* #header > div:nth-child(3){
        display: none;
        flex-direction: column;
        flex-wrap: wrap;
    }
    #header > div:nth-child(3) > a{
        width: 50%;
        margin-bottom: .5rem;
    } */
}
.alBar{
    width: 100%;
    display: flex;
    flex-direction: row;
}
.alBar > div:nth-child(1){
    /* padding: 0.5rem; */
    width: 30%;
    background-color: var(--orange);
    height: 0.5vh;
}
.alBar > div:nth-child(2){
    /* padding: 0.5rem; */
    width: 25%;
    background-color: var(--mavi);
    height: 0.5vh;
}
.alBar > div:nth-child(3){
    /* padding: 0.5rem; */
    width: 20%;
    background-color: var(--mor);
    height: 0.5vh;
}
.alBar > div:nth-child(4){
    /* padding: 0.5rem; */
    width: 15%;
    background-color: var(--yesil);
    height: 0.5vh;
}
.alBar > div:nth-child(5){
    width: 10%;
    background-color: var(--text-color-main);
    height: 0.5vh;
}
.bg-silver{
    background-color: var(--text-color-2-light);
}
.carousel-indicators [data-bs-target]{
    width: 15px;
    height: 15px;
    border-radius: 50%;
}
div.footer{
    text-align: center;
}
div.footer a{
    text-decoration: none;
    color: var(--text-color-4);
    font-size: 14px;
    font-weight: 600;
    margin-top: .5rem;
    margin-bottom: .5rem;
    display: block;
    padding-top: .5rem;
    padding-bottom: .5rem;
}
@media  (max-width:990px) {
    footer div.footer {
        flex-basis: 90%;
    }
}