@charset "utf-8";
/*!
 * custom.css
 * Patron Teknoloji - 2024
 */

:root {
    --color-primary: #2b3774;
    --color-primary-alt: #14236e;
    --color-secondary: #ba9982;
    --color-secondary-alt: #8b6951;
}

@media (min-width: 1400px){
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {max-width: 1140px;}
}

/* body */
body{
    font-family: "Manrope", sans-serif;
    font-optical-sizing: auto;
    /* font-weight: <weight>; */
    font-style: normal;
}

/* h */
.h, h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
}
h1, .h1 {
}
h2, .h2 {
}
h3, .h3 {
}
h4, .h4 {
}
h5, .h5 {
}
h6, .h6 {
}

/* header */
header {
    position: absolute;
    width: 100%;
}

/* navbar */
.navbar {
    padding: 6vh 0 0;
}
.navbar-brand {
    margin: 0;
    padding: 0;
}
.navbar-brand img {
    width: 160px;
    opacity: 0.95;
    filter: grayscale(1) brightness(99);
}

/* */
.section.section-hero {
    /* padding-bottom: 320px; */
    background: #09091d;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-image: url(../img/home/bg.png);
    min-height: 63vh;
    padding-top: 19vh;
    color: #ffffffd1;
}
.section.section-hero .row > div {
    display: flex;
    align-items: center;
}
.hero-caption {
    padding-right: 30%;
}
.hero-caption > span {
    font-size: 0.6875rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}
.hero-caption > p {
    margin: 0;
    font-size: 1.75rem;
    font-weight: 600;
    color: #fff;
}
.hero-quote-bar {
    margin-bottom: 2.5rem;
}
.hero-quote-bar > p {
    margin: 0;
    font-size: 0.875rem;
    font-weight: 300;
    color: #fff9;
    line-height: 1.7;
}
.hero-quote {
    padding-right: 20%;
}
.hero-author-bar {
    display: flex;
    gap: 2rem;
}
.hero-quote-author {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}
.hero-quote-author span.name {
    font-size: 0.875rem;
    font-weight: 500;
    color: #fffd;
}
.hero-quote-author span.title {
    font-size: 0.75rem;
    font-weight: 300;
    color: #fff9;
}
.hero-quote-signature > img {
    max-height: 50px;
}

/* portal */
.section.section-portal {
    position: relative;
    margin-top: -130px;
}
.portal-item {
    position: relative;
}
.portal-item > a {
    display: flex;
    position: relative;
    border-radius: 5px;
    overflow: hidden;
}
.portal-item > a:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(360deg, #0c214b 0%, #fff0 100%);
    z-index: 1;
    opacity: 1;
    transition: opacity.2s ease-in-out;
}
.portal-item > a:hover:before {
    opacity: 0.85;
}
.portal-item > a > img {
    height: 230px;
    filter: grayscale(0.9) sepia(1) hue-rotate(75deg) saturate(0.5);
    transition: filter .2s ease-in-out;
    width: 100%;
    object-fit: cover;
}
.portal-item > a:hover > img {
    filter: grayscale(0.2) sepia(0) hue-rotate(0) saturate(0.9);
}
.portal-item > a > span {
    position: absolute;
    width: 100%;
    left: 0;
    text-align: center;
    bottom: 16%;
    z-index: 2;
    font-weight: 600;
    font-size: 1.25rem;
    letter-spacing: 0.5px;
    color: #fff;
}

/* references */
.section-references {
    padding: 5vh 0 0;
}
.section-references p {
    text-align: center;
    font-weight: 500;
    color: #94949da8;
    margin-bottom: 2vh;
    font-size: 0.9375rem;
}
.references-item {
    margin: 0 1.5rem;
}
.references-item > img {
    filter: grayscale(1) brightness(99) contrast(0.6);
    width: 100%;
    height: 70px;
    object-fit: contain;
}
.references-all {
    margin: 0 -1.5rem;
}

/* footer */
footer {
    margin-top: 3vh;
}
footer .container {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding-top: 0.9375rem;
}
footer, footer a {
    font-weight: 500;
    color: #94949da8;
    font-size: 0.875rem;
    text-decoration: unset;
}
footer .container:before {
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    border-top: 1px solid #eee;
}
.footer-menu ul {
    margin: 0;
}

@media (max-width: 768px){
    .navbar {
        padding: 3vh 1rem;
    }
    html {
        font-size: 15px;
    }
    .navbar-brand img {
        width: 140px;
    }
    .section.section-hero {
        padding-top: 15vh;
        min-height: 85vh;
    }
    .hero-caption {
        padding: 0;
        margin-bottom: 2rem;
    }
    .hero-caption > span {
        margin-bottom: 1vh;
    }
    .hero-caption > p {
        line-height: 1.4;
    }
    .section.section-portal {
        margin: -50px 0 0;
    }
    .section {
        padding: 0 1rem 1rem;
    }
    .hero-quote {
        padding: 0;
    }
    header {
        position: absolute;
        width: 100%;
    }
    .portal-item > a > img {
        height: 160px;
        width: 100%;
        object-fit: cover;
    }
    .portal-item {
        margin-bottom: 1rem;
    }
    .section-references p {
        font-size: 0.6875rem;
    }
    .references-item {
        margin: 0 0.5rem;
    }
    .references-all {
        margin: 0 -0.5rem;
    }
    footer .container {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 1rem 0;
    }
    .footer-menu ul {
        margin: 0.5rem 0 0;
    }
}