/* =========================================================
   GÖVDESAN PUBLIC SITE - MODÜLER CSS
   Kaynak satırlar: 544-672
   Ana sayfa ortak bölüm başlıkları, linkler ve butonlar
   NOT: İlk refactor aşamasında CSS kuralları değiştirilmemiştir.
   ========================================================= */

/* =========================================================
   ANA SAYFA - GENEL
   ========================================================= */

.gv-section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 35px;
}

.gv-section-heading > div {
    flex: 1;
}

.gv-section-heading > span,
.gv-section-heading > div > span {
    display: block;
    margin-bottom: 7px;
    color: #a4272d;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.3px;
}

.gv-section-heading h2 {
    margin: 0;
    color: #20384c;
    font-size: 31px;
    font-weight: 600;
}

.gv-section-heading p {
    max-width: 700px;
    margin: 10px 0 0 0;
    color: #75838e;
    font-size: 13px;
    line-height: 21px;
}

.gv-section-heading-center {
    display: block;
    text-align: center;
}

.gv-section-heading-center p {
    margin-left: auto;
    margin-right: auto;
}

.gv-section-link {
    margin-bottom: 5px;
    color: #526c81;
    font-size: 10px;
    font-weight: 700;
    text-decoration: none;
}

.gv-section-link:hover,
.gv-section-link:focus {
    color: #a4272d;
    text-decoration: none;
}

.gv-section-link .glyphicon {
    margin-left: 5px;
    font-size: 9px;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.gv-btn {
    display: inline-block;
    padding: 14px 21px;
    border-radius: 3px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .3px;
    text-decoration: none;
}

.gv-btn:hover,
.gv-btn:focus {
    text-decoration: none;
}

.gv-btn .glyphicon {
    margin-left: 7px;
    font-size: 9px;
}

.gv-btn-primary {
    background: #b3262d;
    border: 1px solid #b3262d;
    color: #ffffff;
}

.gv-btn-primary:hover {
    background: #921e24;
    border-color: #921e24;
    color: #ffffff;
}

.gv-btn-outline {
    margin-left: 8px;
    background: transparent;
    border: 1px solid rgba(255,255,255,.55);
    color: #ffffff;
}

.gv-btn-outline:hover {
    background: rgba(255,255,255,.10);
    color: #ffffff;
}

.gv-btn-white {
    background: #ffffff;
    color: #1c3549;
}

.gv-btn-white:hover {
    background: #f1f3f5;
    color: #1c3549;
}


