/* =========================================================
   GÖVDESAN PUBLIC SITE - MODÜLER CSS
   Kaynak satırlar: 1-225
   Genel site gövdesi, top bar, header, logo, navigasyon, mobil menü düğmesi ve ana içerik
   NOT: İlk refactor aşamasında CSS kuralları değiştirilmemiştir.
   ========================================================= */

/* =========================================================
   GOVDESAN WEB SITE
   PUBLIC FRONT-END
   ========================================================= */

html,
body {
    margin: 0;
    padding: 0;
}

body.gv-site-body {
    background: #ffffff;
    color: #273746;
    font-family: "Segoe UI", Arial, Helvetica, sans-serif;
}


/* =========================================================
   TOP BAR
   ========================================================= */

.gv-topbar {
    min-height: 38px;
    background: #172a3a;
    color: #c7d2dc;
    font-size: 11px;
}

.gv-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 38px;
}

.gv-topbar-left {
    display: flex;
    align-items: center;
}

.gv-topbar-left a {
    margin-right: 22px;
    color: #c7d2dc;
    text-decoration: none;
}

.gv-topbar-left a:hover {
    color: #ffffff;
    text-decoration: none;
}

.gv-topbar-left .glyphicon {
    margin-right: 5px;
    color: #85a3bc;
}


.gv-topbar-right {
    display: flex;
    align-items: center;
}

.gv-topbar-engineering {
    margin-right: 22px;
    color: #94a8b9;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .5px;
}


.gv-language {
    display: flex;
    align-items: center;
}

.gv-language a {
    padding: 3px 5px;
    color: #859bad;
    font-size: 10px;
    font-weight: 700;
    text-decoration: none;
}

.gv-language a.active {
    color: #ffffff;
}

.gv-language span {
    color: #536d80;
}


/* =========================================================
   HEADER
   ========================================================= */

.gv-header {
    position: relative;
    z-index: 100;
    background: #ffffff;
    border-bottom: 1px solid #e3e8ec;
}

.gv-header-inner {
    display: flex;
    align-items: center;
    min-height: 84px;
}


/* =========================================================
   LOGO
   ========================================================= */

.gv-logo {
    display: flex;
    align-items: center;
    width: 205px;
    min-width: 205px;
    height: 70px;
    color: #1b354a;
    text-decoration: none;
}

.gv-logo:hover,
.gv-logo:focus {
    color: #1b354a;
    text-decoration: none;
}

.gv-logo img {
    max-width: 190px;
    max-height: 60px;
    object-fit: contain;
}


.gv-logo-text strong {
    display: block;
    color: #1c3850;
    font-size: 25px;
    line-height: 24px;
    letter-spacing: 1px;
}

.gv-logo-text span {
    display: block;
    margin-top: 4px;
    color: #718594;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 5px;
}


/* =========================================================
   NAVIGATION
   ========================================================= */

.gv-main-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
}

.gv-main-nav > a {
    display: block;
    padding: 32px 12px;
    color: #3e5161;
    font-size: 11px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

.gv-main-nav > a:hover,
.gv-main-nav > a:focus {
    color: #172f43;
    text-decoration: none;
    background: #f5f7f8;
}


.gv-main-nav > a.gv-nav-quote {
    margin-left: 10px;
    padding: 11px 15px;
    background: #b3262d;
    color: #ffffff;
    border-radius: 3px;
}

.gv-main-nav > a.gv-nav-quote:hover {
    background: #921d23;
    color: #ffffff;
}


/* =========================================================
   MOBILE BUTTON
   ========================================================= */

.gv-mobile-menu-button {
    display: none;
    margin-left: auto;
    padding: 8px 11px;
    background: #ffffff;
    border: 1px solid #d7dee4;
    border-radius: 3px;
    color: #2f4659;
    font-size: 20px;
}


/* =========================================================
   MAIN
   ========================================================= */

.gv-main-content {
    min-height: 400px;
}


