
<!--------------------------------------------------------------
Settings laden
--------------------------------------------------------------->

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {}

@media (max-width: 768px) {
    .container,
    .container-fluid,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        padding-left: 20px;
        padding-right: 20px;
    }
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    color: rgba(40,40,40,1.0);
    overflow: scroll;
}

@media (max-width: 768px) {
    body {
        font-size: 0.95rem;
    }
}

a {
    color: rgba(10,110,150,1.0);
    text-decoration: none;
}

a:hover {
    color: rgba(20,160,220,1.0);
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Roboto', sans-serif;

}

.section {
    margin-top: 50px;
}

@media (max-width: 768px) {
    .section {
        margin-top: 20px;
    }
}

hr {
    border: none; 
    height: 2px; 
    background: linear-gradient(to right, rgba(160,160,160,1.0), #fff);
    margin-top: 0.25rem;
    margin-bottom: 0.75rem;
}

ul {
    padding-right: 1rem;
    margin-top: 0.5rem;
    margin-bottom: 0rem;
}

.custom-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .custom-img {
        width: 100%;
        max-height: 290px;
        object-fit: cover;
        object-position: top;
    }
}

.fade-in {
  opacity: 0; 
  animation: fadeIn 2s ease-in-out forwards; 
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1; 
  }
}

/*--------------------------------------------------------------
# Navigation / Dropdown
--------------------------------------------------------------*/
.navbar {
    padding-top: 0.75rem;
    padding-bottom: 0.50rem;
    padding-left: 0.25rem;
    padding-right: 0.00rem;
    background-color: rgba(255,255,255,1.0) !important;
    box-shadow: 0px 6px 6px rgba(0,0,0,0.075) !important;
    transition: all 0.3s ease;
}

.navbar-logo {
    max-height: 76px;
    width: auto;
    margin-bottom: 0px;
    transition: transform 0.3s ease;
}
@media (max-width: 991.98px) {
    .navbar-logo {
        max-height: 59px;
    }
}

.navbar-brand:hover .navbar-logo {
    transform: scale(1.03);
}

.navbar-nav .nav-link {
    font-family: 'Roboto', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: rgba(10,110,150,1.0) !important;
    padding: 0.5rem 1.2rem !important;
    transition: color 0.3s ease-in-out;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: rgba(20,160,220,1.0) !important; 
    background: transparent !important;
}

.navbar-nav .dropdown-toggle::after {
    color: rgba(160,160,160,1.0);
    display: inline-block;
    transform: scale(1.5); 
    vertical-align: middle; 
    margin-left: 0.5rem;  
}

.navbar-nav .dropdown-toggle:hover::after,
.navbar-nav .dropdown-toggle.show::after,
.navbar-nav .nav-link.active::after {
    color: rgba(20,160,220,1.0);
}

/* DESKTOP MODUS (Ab 992px) */

@media (min-width: 992px) {
    .dropdown-menu {
        border: none;
        box-shadow: 3px 3px 6px rgba(0,0,0,0.08) !important;
        border-radius: 0px 0px 10px 10px;
        margin-top: 20px !important;
    }

    .dropdown-item {
        padding: 10px 25px !important; 
        font-family: 'Roboto', sans-serif;
        font-size: 0.9rem;
        font-weight: 400;
        transition: all 0.2s ease;
    }

    .dropdown-item:hover,
    .dropdown-item.active {
        color: rgba(20,160,220,1.0);
        background: rgba(160,160,160,0.075) !important; 
    }
}

/* MOBILE MODUS (Bis 991px) (Kasten-Look) */

@media (max-width: 991.98px) {

    .navbar-toggler-icon {
        width: 2.0em;
        height: 2.0em;
        margin-right: 0.5rem;
    }

    .navbar-toggler {
        border: none !important;      
        padding: 0 !important;       
        box-shadow: none !important;  
        outline: none !important;    
    }

    .navbar-toggler:hover,
    .navbar-toggler:focus {
        opacity: 0.6;
        background: transparent !important;
    }

.dropdown-item.active {
        color: rgba(20,160,220,1.0);
        background-color: transparent !important;
    }

    .navbar-collapse {
        padding-top: 1rem;
        padding-bottom: 0rem;
    }

    .navbar-nav .nav-item.dropdown {
        background: linear-gradient(to right, rgba(160,160,160,0.1), rgba(160,160,160,0.001));
        border-radius: 10px 0px 0px 10px;
        margin-bottom: 12px; 
        overflow: hidden;
    }

    .navbar-nav .nav-item.dropdown > .nav-link {
        padding: 8px 15px !important;
        font-family: 'Roboto', sans-serif;
        font-size: 0.9rem;
        font-weight: 400;
    }

    .navbar-nav .nav-item.dropdown .show + .dropdown-menu,
    .navbar-nav .nav-item.dropdown > .nav-link.show {
    }

    .navbar-nav .dropdown-menu {
        border: none !important;
        box-shadow: none !important;
        margin: 0 !important;
        padding: 0;
        background: transparent !important;
    }

    .navbar-nav .dropdown-item {
        padding: 8px 25px !important; 
        font-family: 'Roboto', sans-serif;
        font-size: 0.9rem;
        font-weight: 400;
    }

    .navbar-nav .dropdown-item:last-child {
    }

    .navbar-nav .dropdown-toggle::after {
        float: right;
        margin-top: 10px;
    }

    .navbar-nav .nav-item:not(.dropdown) {
        padding-left: 15px;
    }
}

/*--------------------------------------------------------------
# Typo
--------------------------------------------------------------*/
.text-copy {
    font-family: 'Roboto', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
}

.text-bu {
    font-family: 'Roboto', sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    padding-top: 0.5rem;
    line-height: 1.3;
    color: rgba(40,40,40,0.8); 
}

.text-subhead {
    font-family: 'Roboto', sans-serif;
    font-size: 1.0rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: rgba(160,160,160,1.0);
    margin-top: 6px;
    margin-bottom: 8px;
}

.text-overline {
    font-family: 'Roboto', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04rem;
    padding: 5px 7px 4px 7px;
    background-color: rgba(20,160,220,0.2);
    color: rgba(40,40,40,0.8);
    border-radius: 5px;
    padding: 4px 9px; 
    margin-bottom: -1px;
}

.text-accordion {
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: rgba(40,40,40,0.8);
}

.text-headline {
    font-family: 'Roboto', sans-serif;
    font-size: 1.9rem;
    font-weight: 300;
    line-height: 1.3;
    letter-spacing: 0.01em;
    color: rgba(10,110,150,1.0);
    padding-top: 15px;
    padding-bottom: 0px;
}
@media (max-width: 768px) {
    .text-headline {
        font-size: 1.6rem;
    }
}

.text-headline-slide {
    font-family: 'Roboto', sans-serif;
    font-size: 2.8rem;
    font-weight: 300;
    letter-spacing: 0.01rem;
    color: #fff;
    padding-bottom: 0px;
    margin-bottom: 0px;
    text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.8);
}
@media (max-width: 768px) {
    .text-headline-slide {
        font-size: 1.8rem;
        letter-spacing: 0.005rem;
        text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.8);
    }
}

.text-copy-slide {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    padding-top: 0px;
    text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.8);
}
@media (max-width: 768px) {
    .text-copy-slide {
        font-size: 0.8rem;
        text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.8);
    }
}

.text-badge {
    font-family: 'Roboto', sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.04rem;
    padding: 5px 7px 4px 7px;
    background-color: rgba(20,160,220,1.0);
    color: #fff;
    border-radius: 4px;
}

.text-badge-copy {
    font-family: 'Roboto', sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    padding-top: 0.75rem;
}

.pri {
    color: rgba(20,160,220,1.0) !important;
}

.sec {
    color: rgba(10,110,150,1.0) !important;
}

.fett {
    font-weight: 500 !important;
}

.halbfett {
    font-weight: 400 !important;
}

.klein {
    font-size: 0.75rem !important;
}

.micro {
    font-size: 0.6rem !important;
}

/*--------------------------------------------------------------
# Quotes
--------------------------------------------------------------*/
.quote-container {
    position: relative;
    padding: 40px 80px;
    max-width: 800px;
    margin: 0 auto;
    margin-top: -20px;
    margin-right: 10px;
}
@media (max-width: 768px) {
    .quote-container {
        margin-top: 0px;
    }
}

.quote-text {
    font-family: 'Roboto';
    font-size: 2rem; 
    font-weight: 100;  
    font-style: italic;
    line-height: 1.3;
    position: relative;
    z-index: 2;
    margin-left: 15px;
}
@media (max-width: 768px) {
    .quote-text {
        font-size: 1.5rem;
        margin-left: 1px;
        margin-right: -6px;
    }
}

.quote-mark {
    position: absolute;
    font-family: Georgia, serif;
    font-size: 12rem;
    font-weight: 600;
    color: rgba(10,110,150,0.1);
    user-select: none;
    z-index: 1;
}
@media (max-width: 768px) {
    .quote-mark {
        font-size: 9.5rem;
    }
}

.quote-mark-open {
    left: 10px;
    top: 5px;
    line-height: 1;
}
@media (max-width: 768px) {
    .quote-mark-open {
        left: 0px;
        top: 5px;
    }
}

.quote-mark-close {
    right: 0px;
    bottom: 30px;
    line-height: 0;
}
@media (max-width: 768px) {
    .quote-mark-close {
        right: -5px;
    }
}

.quote-mark-open::after {
    content: "";
    position: absolute;
    top: 20px; 
    left: 100%;  
    width: 220px;   
    height: 1px;     
    background-color: rgba(10,110,150,0.2);
    margin-left: 10px;   
}

.quote-mark-close::before {
    content: "";
    position: absolute;
    bottom: 10px;  
    right: 100%;  
    width: 220px; 
    height: 1px;    
    background-color: rgba(10,110,150,0.2);
    margin-right: 10px; 
}

@media (max-width: 768px) {
    .quote-mark-open::after,
    .quote-mark-close::before {
        width: 220px;
        margin-left: 5px;
        margin-right: 5px;
    }
}

/*--------------------------------------------------------------
# Layout
--------------------------------------------------------------*/
.bullet {
    list-style-type: none;
    padding-left: 0;
    font-size: 0.85rem;
    font-weight: 400;
    line-height: 1.3;
}

.bullet li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 10px;
}

.bullet li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background-color: rgba(20,160,220,0.7);
}

.aufzaehlung {
    color: rgba(40,40,40,1.0);
    list-style-type: none;
    padding-left: 0;
}

.aufzaehlung li {
    position: relative;
    padding-left: 14px;
    margin-bottom: 6px;
}

.aufzaehlung li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background-color: rgba(40,40,40,1.0);
}

.line-left {
    position: relative;
    padding-left: 15px;
}

.line-left:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 2px;
    background: rgba(20,160,220,0.7);
}

.kasten {
    background: linear-gradient(to right, rgba(10,110,150,0.1), rgba(10,110,150,0.001));
    padding-left: 20px;
    padding-right: 10px;
    padding-top: 12px;
    padding-bottom: 4px;
    border-radius: 10px;
}

/*--------------------------------------------------------------
# Accordion
--------------------------------------------------------------*/
.custom-accordion-btn {
    background: rgba(160,160,160,0.1);
    border: none !important;
    box-shadow: none !important;
    color: rgba(40,40,40,1.0); 
    font-family: 'Roboto';
    font-size: 0.9rem; 
    font-weight: 400;    
    transition: color 0.3s ease; 
    padding-left: 12px;
    padding-right: 5px;
    padding-top: 7px;
    padding-bottom: 6px;
    margin-top: 1rem;
}

.custom-accordion-btn:hover {
    color: rgba(10,110,150,1.0); 
}

.custom-accordion-btn:focus, 
    color: rgba(10,110,150,1.0); 
.custom-accordion-btn:not(.collapsed) {
    box-shadow: none !important;
    background: none !important;
    color: rgba(40,40,40,1.0); 
}

.custom-accordion-btn::after {
    background: none !important; 
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border-right: 2px solid rgba(20,160,220,1.0); 
    border-bottom: 2px solid rgba(20,160,220,1.0); 
    background: none;
    box-shadow: none;
    transform: rotate(45deg); 
    margin-left: 10px;
    margin-bottom: 3px;
    transition: border-color 0.3s ease;
}

.custom-accordion-btn:hover::after {
    background: none !important; 
    border-right-color: rgba(10,110,150,1.0); 
    border-bottom-color: rgba(10,110,150,1.0); 
    transform: rotate(45deg);
}

.custom-accordion-btn:not(.collapsed)::after {
    transform: rotate(-135deg); 
    margin-top: 8px;
}

.accordion-body {
    background: rgba(160,160,160,0.1);
    border: none !important;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    font-family: 'Roboto', sans-serif;
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.3;
}

/*--------------------------------------------------------------
# Carousel
--------------------------------------------------------------*/
.carousel-inner {
    height: 42vh;
}

@media (max-width: 768px) {
    .carousel-inner {
        height: 28vh;
    }
}

.carousel-inner img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.carousel-caption {
    right: 10%;
    left: 10%;
    top: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; 
    transform: none; 
    z-index: 2;
    color: #fff;
}

.carousel-item {
    height: 100%;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

@media (max-width: 768px) {
    .overlay {
        background-color: rgba(0, 0, 0, 0.0);
    }
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    color: rgba(255, 255, 255, 0.8);
}

.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
    color: rgba(255, 255, 255, 1.0);
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumb {
    font-size: 0.85rem;
    background: linear-gradient(to right, rgba(160,160,160,0.1), rgba(160,160,160,0.001));
    padding-top: 4px;
    padding-bottom: 4px;
    padding-left: 10px;
    margin-bottom: 30px;
    border-radius: 4px;
    --bs-breadcrumb-divider: '\00BB';
    --bs-breadcrumb-divider-color: rgba(160,160,160,1.0);
}

@media (max-width: 768px) {
    .breadcrumb {
        font-size: 0.75rem;
        margin-bottom: 25px;
    }
}

.breadcrumb-item:first-child a {
    font-weight: 500;
}

.breadcrumb-item.active {
    color: rgba(160,160,160,1.0);
}

/*--------------------------------------------------------------
# Cards
--------------------------------------------------------------*/
.card {
    margin-bottom: 1.5rem;
    border-color: rgba(160,160,160,1.0);
    border-radius: 10px;
}

@media (max-width: 768px) {
    .card {
        margin-top: 1.0rem;
    }
}

.card-img,
.card-img-top {
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
}

/*--------------------------------------------------------------   
# Feather
--------------------------------------------------------------*/
.feather {
    width: 20px;
    height: 20px;
    stroke-width: 2.0;
    color: rgba(160,160,160,1.0);
}

.feather-icon {
    width: 19px;
    height: 19px;
    stroke-width: 1.75;
    color: rgba(10,110,150,1.0);
}

/*--------------------------------------------------------------
# Buttons
--------------------------------------------------------------*/
.button {
    color: rgba(40,40,40,1.0);
    border: 1px solid rgba(10,110,150,1.0);
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400 !important;
    cursor: pointer;
    padding: 0.8em 1.1em 0.75em 1.1em;
}

.button:hover {
    color: rgba(10,110,150,1.0);
    border: 1px solid rgba(20,160,220,1.0);
    background-color: rgba(20,160,220,0.1);
}

.button-slide {
    color: rgba(40,40,40,1.0);
    border: 2px solid #FFF;
    background-color: rgba(255, 255, 255, 0.6);
    text-shadow: 0px 0px 0px rgba(0, 0, 0, 0.0);
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500 !important;
    cursor: pointer;
    padding: 0.8em 1.2em 0.75em 1.2em;
    transition: 0.2s ease-in-out;
}
@media (max-width: 768px) {
    .button-slide {
        border-radius: 6px;
        font-size: 0.8rem;
        padding: 0.6em 1.0em 0.6em 1.0em;
    }
}

.button-slide:hover {
    color: rgba(20,160,220,1.0);
    border: 2px solid #FFF;
    background-color: rgba(255, 255, 255, 0.6);
    text-shadow: 0px 0px 0px rgba(0, 0, 0, 0.0);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transform: scale(1.05);
}

/*--------------------------------------------------------------
# Bilder-Overlay
--------------------------------------------------------------*/
#media_preview_container {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.img-overlay-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
    overflow: hidden; 
    border-radius: 0.375rem; 
}

.img-overlay-wrapper img {
    display: block;
    width: 100%;
    height: auto;
}

.img-overlay-wrapper .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(20,160,220,1.0);
    mix-blend-mode: multiply;
    opacity: 1.0; 
    pointer-events: none;
}

/*--------------------------------------------------------------
# Cookies
--------------------------------------------------------------*/
.btn-cookie-accept {
    background-color: rgba(10,110,150,1.0);
    border-color: rgba(10,110,150,1.0);
    color: #fff;
}

.btn-cookie-accept:hover,
.btn-cookie-accept:focus {
    background-color: rgba(20,160,220,1.0);
    border-color: rgba(20,160,220,1.0);
    color: #fff;
}

.btn-cookie-accept:active {
    background-color: rgba(20,160,220,1.0);
    border-color: rgba(20,160,220,1.0);
}

.cookie-border-top {
    position: relative;
    border-top: 1px solid rgba(20,160,220,1.0);
}

.cookie-border-top::before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    height: 12px;
    pointer-events: none;
    box-shadow: 0 -6px 12px rgba(0,0,0,0.15);
}


/*--------------------------------------------------------------
# Zoom
--------------------------------------------------------------*/
.zoom-text {
    transition: 0.1s ease-in-out;
}

.zoom-text:hover {
    transform: scale(1.0325);
}

.zoom-card {
    transition: 0.2s ease-in-out;
}

.zoom-card:hover {
    transform: scale(1.03);
}

.zoom-image-xl {
    transition: 0.2s ease-in-out;
}

.zoom-image-xl:hover {
    transform: scale(1.01);
}

.zoom-image-svg {
    transition: 0.2s ease-in-out;
}

.zoom-image-svg:hover {
    transform: scale(1.035);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
    background-color: rgba(255,255,255,1.0) !important;
    box-shadow: 0px -6px 6px rgba(0,0,0,0.075) !important;
    color: rgba(160,160,160,1.0);
    font-size: 0.8rem;
            border-radius: 50px 50px 0px 0px;
        }

@media (max-width: 768px) {
    .footer {
        font-size: 0.75rem;
    }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 0px;
    bottom: 80px;
    z-index: 996;
    background: #FFF;
    box-shadow: -2px -2px 12px rgba(0,0,0,0.15) !important;
    width: 50px;
    height: 40px;
    border-radius: 8px 0px 0px 8px;
    transition: all 0.4s;
}

.back-to-top :hover {
    color: rgba(20,160,220,1.0) !important;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# Typo von lokal einbinden
--------------------------------------------------------------*/
/* roboto-100 - latin */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 100;
    src: url('../../includes/roboto/roboto-v30-latin-100.woff2') format('woff2');
}

/* roboto-100italic - latin */
@font-face {
    font-family: 'Roboto';
    font-style: italic;
    font-weight: 100;
    src: url('../../includes/roboto/roboto-v30-latin-100italic.woff2') format('woff2');
}

/* roboto-300 - latin */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 300;
    src: url('../../includes/roboto/roboto-v30-latin-300.woff2') format('woff2');
}

/* roboto-300italic - latin */
@font-face {
    font-family: 'Roboto';
    font-style: italic;
    font-weight: 300;
    src: url('../../includes/roboto/roboto-v30-latin-300italic.woff2') format('woff2');
}

/* roboto-regular - latin */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('../../includes/roboto/roboto-v30-latin-regular.woff2') format('woff2');
}

/* roboto-italic - latin */
@font-face {
    font-family: 'Roboto';
    font-style: italic;
    font-weight: 400;
    src: url('../../includes/roboto/roboto-v30-latin-italic.woff2') format('woff2');
}

/* roboto-500 - latin */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    src: url('../../includes/roboto/roboto-v30-latin-500.woff2') format('woff2');
}

/* roboto-500italic - latin */
@font-face {
    font-family: 'Roboto';
    font-style: italic;
    font-weight: 500;
    src: url('../../includes/roboto/roboto-v30-latin-500italic.woff2') format('woff2');
}

/* roboto-700 - latin */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: url('../../includes/roboto/roboto-v30-latin-700.woff2') format('woff2');
}

/* roboto-700italic - latin */
@font-face {
    font-family: 'Roboto';
    font-style: italic;
    font-weight: 700;
    src: url('../../includes/roboto/roboto-v30-latin-700italic.woff2') format('woff2');
}

/* roboto-900 - latin */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 900;
    src: url('../../includes/roboto/roboto-v30-latin-900.woff2') format('woff2');
}

/* roboto-900italic - latin */
@font-face {
    font-family: 'Roboto';
    font-style: italic;
    font-weight: 900;
    src: url('../../includes/roboto/roboto-v30-latin-900italic.woff2') format('woff2');
}
