/* @font-face {
    font-family: Jersey;
    src: url('/jersey.ttf');
} */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --glass-border-color: rgba(28, 28, 28, 0.137);
    --glass-blur: 1px;
}

html,
body {
    height: 100%;

    padding: 0;
    margin: 0;

    font-family: 'Montserrat', sans-serif;

    color: rgb(255, 255, 255);
}

* {
    box-sizing: border-box;
}

.container {
    height: 100%;

    display: grid;
    grid-template-rows: 5% 90% 5%;

    background-color: #ececece5;
    background-image: radial-gradient(rgb(212, 212, 212) 1px, transparent 0);
    background-size: 40px 40px;
    background-position: -19px -19px;
}

.swiper {
    width: 100%;
    height: 100%;

    padding: 12px !important;
}

.swiper-slide {
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.info-block {
    max-width: 450px;

    display: block;
    width: 100%;
    height: auto;
    padding: 20px;

    /* -webkit-box-shadow: 7px 7px 0px 0px #000000;
    box-shadow: 7px 7px 0px 0px #000000; */

    /* border: 3px solid #a7a7a7; */

    background: rgba(27, 27, 27, 0.295);
    border-radius: 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.281);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    /* border: 1px solid var(--glass-border-color); */
}

.example-block {
    padding: 0;
}

.example-block video {
    width: 100%;
    height: 100%;
    object-fit: fill;
    border-radius: 8px;
}

.example-image-block {
    height: 300px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.example-image {
    height: 100%;
    max-width: 100%;
    width: auto;
    border-radius: 13px;
}

.logo {
    position: absolute;
    top: 20px;

    text-align: center;
    width: 100%;
    font-size: 70px;
    font-weight: 800;

    color: rgb(255, 255, 255);
    text-shadow: 0px 2px 19px rgba(0, 0, 0, 0.151);

    transform-origin: 0 0;
    transform: scaleY(1.7);
}

.first-block {
    display: grid;
    grid-template-rows: auto auto auto auto;
    gap: 10px;
}

.title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 10px;

    transform: scaleY(1.6);
}

.info {
    font-size: 15px;
    margin-left: 20px;
    margin-bottom: 10px;
}

.arrow {
    width: 100%;
    height: 50px;
    background: #ffffff;
    display: inline-block;
    clip-path: polygon(0 0, 95% 0, 100% 50%, 95% 100%, 0 100%, 5% 50%);
    border-radius: 6px;

    display: flex;
    justify-content: center;
    align-items: center;
}

.arrow-text {
    color: #b3b3b3;
    font-size: 60px;
    font-weight: 800;

    transform: scaleX(0.6);
}

.links {
    display: flex;
    justify-content: center;
    gap: 7%;
    text-align: center;
}

.links a {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

.link-text {
    text-decoration: underline;
}