/* jost-regular - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Jost';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/jost-v19-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}


/* jost-700 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Jost';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/jost-v19-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}


html {
    scroll-behavior: smooth;
    font-size: 16px;
}


body {
    font-size: 1rem;
    line-height: 140%;
    color: #ffffff;
    -webkit-text-size-adjust: none;
    font-family: Jost, sans-serif;

    background-image: url('../images/tml-back.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}


.orbyz {
    position: relative;
    width: 100%;
    display: block;
}


.orbyz:before {
    content: "";
    width: 100px;
    position: absolute;
    right: 0;
    top: 0;
    height: 132px;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url('../images/orbyz.png');
    transform: translateY(-82%) rotate(-7deg) scale(1.1);
    animation: pulse 2s infinite;
    z-index: 3;
}


@keyframes pulse {
    0% {
        transform: translateY(-82%) rotate(-5deg) scale(.9);
    }

    70% {
        transform: translateY(-82%) rotate(-7deg) scale(1.05);
    }

    100% {
        transform: translateY(-82%) rotate(-5deg) scale(.9);
    }
}


header {
    color: #fff;
}


.main-headline {
    font-size: 2.75rem;
    line-height: 140%;
    color: #fff;
}


@media only screen and (max-width: 767px) {
    .main-headline {
        font-size: 1.75rem;
    }
}


.container {
    width: 100%;
}


.section {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}


.section > .inside {
    width: 100%;
    max-width: 767px;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 25px;
    padding-bottom: 25px;
    display: flex;
    flex-wrap: wrap;
}


.section > .inside > :last-child {
    margin-bottom: 0 !important;
}


.section-header {
    text-align: center;
}


.section-header > .inside {
    padding-top: 45px;
    padding-bottom: 45px;
}


.section-header .button-main {
    margin: 0 auto;
}


.section-header figure {
    margin: 0 auto;
    margin-bottom: 2rem;
    max-width: 180px;
}

.section-body a{
    color:#ffffff;
    text-decoration: underline;
}


h1,
h2,
h3 {
    margin-top: 1rem;
    color: #ffffff;
    display: block;
    width: 100%;
}


h1 {
    font-size: 2rem;
    line-height: 2.8rem;
    margin-bottom: 1.5rem;
}


h2 {
    font-size: 1.6rem;
    line-height: 2.2rem;
    margin-bottom: 1.25rem;
}


h3 {
    font-size: 1.2rem;
    line-height: 1.8rem;
    margin-bottom: 0.75rem;
}


p {
    margin-top: 0;
    margin-bottom: 1.5rem;
    display: block;
    width: 100%;
}


strong {
    color: #000;
}



figure {
    margin: 0;
    padding: 0;
    display: block;
}


figcaption {
    padding: 0;
    margin: 0;
    margin-top: 0.5rem;
    width: 100%;
    display: block;
    font-size: 0.85rem;
    letter-spacing: 0.025rem;
    text-align: center;
}


img {
    max-width: 100%;
    height: auto;
    display: block;
}


.box-full {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    padding: 2rem;
}


.box-full:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: black;
    filter: blur(60px);
    z-index: 0;
    opacity: .5;
}


.box-full .inside {
    z-index: 2;
    position: relative;
}


.box-full .inside > * {
    margin-top: 0;
}


.box-group {
    width: calc(100% + 1rem);
    display: flex;
    flex-wrap: wrap;
    margin-bottom: -1rem;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
    margin-top: 2.5rem;
}


.box-group .box {
    background-color: #000000;
    width: calc(50% - 1rem);
    margin: 0 0.5rem;
    margin-bottom: 1rem;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}


.box-group .box a {
    text-decoration: none;
    display: block;
}


.box-group .box a:hover img,
.box-group .box a:focus img {
    transform: scale(1.15);
    will-change: transform;
}


.box-group .box a:after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(42, 123, 155, 0) 64%, rgba(0, 0, 0, 0.6) 100%);
}


.box-group .box .name {
    color: #ffffff;
    font-size: 1.4rem;
    text-align: center;
    width: 100%;
    display: block;
    position: absolute;
    bottom: 1rem;
    z-index: 2;
    padding-left: .5rem;
    padding-right: .5rem;
}

@media only screen and (max-width:767px){
    .box-group .box .name {
        font-size: 1rem;
    }
}


.box-group .box .image_container {
    display: block;
    overflow: hidden;
    position: relative;
    backface-visibility: hidden;
}


.box-group .box img {
    width: 100%;
    transform: scale(1.005);
    transition: all 300ms ease-in-out;

}


.button-main {
    font-size: 1.25rem;
    line-height: 1.6rem;
    border-radius: calc(1.6rem + .5rem);
    padding: .3rem 1rem .25rem;
    border: 2px solid #ffffff;
    color: #ffffff !important;
    text-decoration: none!important;
    text-transform: uppercase;
    transition: all 200ms ease-in-out;
}


.button-main:hover,
.button-main:focus {
    background-color: #ffffff;
    color: #000000 !important;
}


footer {
    background-color: #000000;
    color: #6b6b6b;
    font-size: .7rem;
    line-height: 1rem;
}


footer a {
    text-align: center;
    margin-right: 1rem;
    color: #6b6b6b;
    display: block;
    text-decoration-color: inherit;
    text-decoration: none;

}


footer a:focus,
footer a:hover {
    color: #cccccc;
}