/* Minification failed. Returning unminified contents.
(38,12): run-time error CSS1038: Expected hex color, found '#ccc8'
(48,12): run-time error CSS1038: Expected hex color, found '#ccc8'
 */
/* Oluşturma: 05.01.2020 - 14:10 */
/* Son Değişiklik: 27.02.2020 - 12:04 */

.baskanMesaj {
    position: relative;
    display: block;
    padding: 3rem 0 3rem 6rem;
}

.baskanMesaj_Baslik {
    display: block;
    width: 70%;
    margin: 0 0 2rem;
    font-weight: 900;
    font-size: 2.7rem;
    color: #ed7f11;
    font-family: sans-serif
}
/* kullanılan font-family sabit değil tiptir  - ek açıklama: https://css-tricks.com/sans-serif/ */
.baskanMesaj_Mesaj {
    display: block;
    width: 70%;
    font-size: 1.5rem;
    line-height: 2.4rem;
    font-weight: 400;
    color: #ed7f11;
    font-style: italic;
    font-family: sans
}
/* kullanılan font-family sabit değil tiptir */
.baskanMesaj_Baslik:before {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    content: '“';
    font-size: 9rem;
    color: #ccc8;
    font-family: Georgia, sans
}

.baskanMesaj_Mesaj:after {
    position: absolute;
    display: inline-block;
    content: '”';
    font-size: 9rem;
    line-height: 9rem;
    color: #ccc8;
    font-family: Georgia, sans
}

.baskanMesaj_Adi {
    margin-top: 2rem;
    font-size: 1.8rem;
    font-weight: bold;
    font-family: sans;
    color: #008bbf
}

.baskanMesaj_Unvani {
    font-size: 1rem;
    font-family: sans-serif;
    color: #ed7f11
}

.baskanMesaj_Foto {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30%
}

@media screen and (max-width:800px) {
    .baskanMesaj {
        padding-left: 0
    }

    .baskanMesaj_Baslik, .baskanMesaj_Mesaj {
        width: 100%
    }

    .baskanMesaj_Adi, .baskanMesaj_Unvani {
        text-align: right
    }

    .baskanMesaj_Foto, .baskanMesaj_Baslik:before, .baskanMesaj_Mesaj:after {
        display: none
    }
}

