/* STYLES 25.05.2026
Developer: LAPSE DEVELOPER
Screen resolution: 460, 860, 1440, 1920 */
@font-face {
    font-family: Gilroy;
    src: url(../fonts/Gilroy-Light.woff2) format("woff2"),url(../fonts/Gilroy-Light.woff) format("woff");
    font-weight: 300;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: Gilroy;
    src: url(../fonts/Gilroy-Regular.woff2) format("woff2"),url(../fonts/Gilroy-Regular.woff) format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: Gilroy;
    src: url(../fonts/Gilroy-Medium.woff2) format("woff2"),url(../fonts/Gilroy-Medium.woff) format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: Gilroy;
    src: url(../fonts/Gilroy-SemiBold.woff2) format("woff2"),url(../fonts/Gilroy-SemiBold.woff) format("woff");
    font-weight: 600;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: Gilroy;
    src: url(../fonts/Gilroy-ExtraBold.woff2) format("woff2"),url(../fonts/Gilroy-ExtraBold.woff) format("woff");
    font-weight: 700;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: Gilroy;
    src: url(../fonts/Gilroy-Heavy.woff2) format("woff2"),url(../fonts/Gilroy-Heavy.woff) format("woff");
    font-weight: 900;
    font-style: normal;
    font-display: swap
}

:root {
    --bg: #f0f4fe;
    --bg2: #fff;
    --text: #000;
    --text1: #fff;
    --text2: #5c6578;
    --color1: #2563eb;
    --color2: #2563eb;
    --light: rgb(255 255 255 / 10%);
    --light2: rgb(255 255 255 / 30%);
    --dark: rgb(0 0 0 / 30%);
    --radius: 20px;
}

body {
    background: radial-gradient(90% 70% at 100% -10%, rgba(37, 99, 235, .14), transparent 55%), radial-gradient(70% 55% at -5% 110%, rgba(14, 165, 233, .10), transparent 50%), linear-gradient(180deg, #EEF3FF 0%, var(--bg) 72%);
    color: var(--text);
    line-height: normal;
    font-family: 'Unbounded', sans-serif;
    font-size: 16px;
    font-weight: 300;
}

/* HEADER */
header {
    position: absolute;
    top: 0;
    left: 0;
    background: transparent;
    width: 100%;
    padding: 20px 0;
    z-index: 5;
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    grid-gap: 40px;
}

.header-logo {
    font-size: 20px;
    font-weight: bold;
    width: 150px;
    height: auto;
}

.header-logo img {
    width: 100%;
    height: 100%;
}

.header-app {
    display: inline-block;
    background: #0f1b33;
    color: #fff;
    font-size: 12px;
    padding: 12px 18px;
    border-radius: 14px;
    font-weight: 500;
}

/* SIGN HERO */
.sign-hero {
    position: relative;
    background: transparent;
    padding: 100px 0;
}

.sign-hero .container {
    display: grid;
    grid-gap: 60px;
    grid-auto-rows: max-content;
    grid-template-columns: 1fr 500px;
    align-items: center;
}

.sign-hero .container > img {
    width: 100%;
    height: auto;
}

@media (max-width: 860px) {
    .sign-hero .container {
        grid-template-columns: 1fr;
    }

    .sign-hero .container > img {
        order: -1;
    }
}

.sign-eyebrow {
    position: relative;
    display: flex;
    align-items: center;
    grid-gap: 15px;
    color: #2563eb;
    font-weight: 500;
    margin-bottom: 20px;
}

.sign-eyebrow:before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 2px;
    background: #2563eb;
}

.sign-hero h1 {
    font-size: 60px;
}

.sign-hero h1 span {
    color: #2563eb;
}

.sign-hero_text {
    display: block;
    color: var(--text2);
    line-height: 1.5;
    margin-bottom: 30px;
}

.sign-hero_links {
    display: flex;
    =: wrap; align-items: center;
    grid-gap: 15px;
}

.sign-hero_links .skoro {
    position: absolute;
    background: red;
    color: #fff;
    top: -5px;
    right: -5px;
    font-size: 8px;
    font-weight: bold;
    text-transform: uppercase;
    transform: rotate( 4deg);
    padding: 3px 10px;
    border-radius: 12px;
}

.sign-hero_links > a {
    position: relative;
    display: flex;
    align-items: center;
    grid-gap: 10px;
    background: #0f1b33;
    color: #fff;
    padding: 14px 18px;
    border-radius: 16px;
    font-size: 14px;
    font-weight: bold;
    transition: 0.3s;
}

.sign-hero_links > a:hover {
    transform: scale(1.05);
}

.sign-hero_links > a:nth-child(2) {
    background: #fff;
    color: #0b1220;
    border: 1px solid rgb(11 18 32 / 8%);
}

.sign-hero_links > a > div > span {
    display: block;
    font-size: 10px;
    font-weight: 300;
    opacity: 0.8;
}

/* FOOTER */
footer {
    position: relative;
    background: #fff;
    border: 1px solid rgb(11 18 32 / 8%);
    padding: 20px 0;
}

footer .container {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    grid-gap: 60px;
}

@media (max-width: 860px) {
    footer .container {
        flex-direction: column;
        align-items: flex-start;
        grid-gap: 20px;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    grid-gap: 20px;
}

.footer-logo > a {
    display: inline-block;
    width: 100px;
    height: auto;
}

.footer-logo > a img {
    width: 100%;
    height: auto;
}

.footer-logo span {
    color: var(--text2);
    font-size: 12px;
    border-left: 1px solid var(--dark);
    padding-left: 20px;
}

.footer-soc {
    display: flex;
    align-items: center;
}

.footer-soc a {
    width: 40px;
    height: 40px;
    border-radius: 50px;
    background: rgb(236 242 255);
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--color1);
}

.footer-soc a:hover {
    background: var(--color1);
    color: #fff;
}
