@import url('fonts.css');
*,
*::after,
*::before {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

:root {
    --titleFont: "Gotham XNarrow", sans-serif;
    --textFont: "Neu", sans-serif;
    --yellow: #389D52
}

body {
    padding: 0;
    margin: 0;
    line-height: 1.618;
    font-family: var(--textFont);
}

h1,
h2 {
    margin: 0;
    font-family: var(--titleFont);
    line-height: 1;
}

h1 {
    font-size: 8.25em;
    font-weight: 900;
    text-transform: uppercase;
    color: #fff
}

h2 {
    font-size: 2.5em;
    color: var(--yellow)
}

ul,
li {
    list-style: none;
    padding: 0;
    margin: 0
}

a {
    color: inherit;
    text-decoration: none;
}


/* Start */

body {
    background-color: #0c2d64;
    background-image: url('../img/background.png');
    background-size: cover;
    background-attachment: fixed;
    min-height: 100vh;
    color: #fff
}

.container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

img {
    max-width: 100%;
}

header {
    background: #0c2d64;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
}

header img {
    width: 150px;
}

header nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 1em 0;
}

header nav>a {
    display: inline-flex;
}

header ul li {
    display: inline-flex;
}

header ul li a {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: .75em 1em;
    border: 1px solid #389d52;
    margin-left: 1em;
    color: #fff;
    transition: all 200ms ease-in-out
}

header ul li a:hover {
    letter-spacing: 1px;
}

header ul li a.active {
    background: #389d52;
}

header ul li svg {
    width: 1em;
    margin-left: 1em;
}


/* Main */

main {
    position: relative;
    height: 100vh;
    width: 50vw;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    text-align: right;
}

.main-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-position: 0 83px;
    background-size: 100vw calc(100vh - 82px);
    background-repeat: no-repeat;
    background-image: url('../img/bg-main.png');
    z-index: -1;
}

.content {
    margin-right: 90px;
}

.site-icon {
    position: absolute;
    width: 20em;
    left: 10%;
    bottom: 20%;
    transform: rotate(15deg)
}

.site-icon .fa-secondary {
    opacity: .2;
}

.site-icon .fa-primary {
    opacity: .4;
}

.content p {
    max-width: 50%;
    margin-left: auto;
    font-size: 1.25em;
}

.site-login {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    align-self: flex-end;
    background: var(--yellow);
    color: #fff;
    padding: .5em 1em;
    font-size: 1.5em;
    transition: all 200ms ease-in-out
}

.site-login:hover {
    letter-spacing: 1px;
}

.site-login svg {
    width: 1em;
    margin-left: 1em;
}

.social-area {
    position: absolute;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    width: 100%;
    background-color: #092350;
    padding: 0 50px;
}

.social-area a {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 2em 0;
}

.social-area svg {
    width: 1em;
    margin-left: 1em;
}


/* footer */

footer {
    padding: 2em 0;
    background-image: url('../img/bg-footer.png');
    background-size: 100vw 100vh;
    display: flex;
    flex-direction: row;
}

.footer-text {
    width: 50vw;
    padding: 0 90px 0 90px;
    text-align: right;
}

.footer-images {
    width: 50vw;
    padding: 0 90px 0 120px;
}

footer p {
    font-size: .875em;
    margin: 1em 0 0 0;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    align-items: center;
    justify-content: space-between;
    gap: 1em
}

.image-grid.saglayici {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    align-items: center;
    justify-content: space-between;
    gap: 1.5em;
}

.footer-licence {
    display: flex;
    align-items: center;
    justify-content: center;
}