<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*

[MatRoz Core Stylesheet]

Project: MatRoz - Material Design Agency and Business Template
Version: 1.1
Author : themelooks.com

[Table of Contents]

1. GENERAL STYLES
    - 1-1 TYPHOGRAPHY
    - 1-1 LOGO
    - 1-2 SECTION TITLE
    - 1-3 VERTICAL CENTERING
    - 1-4 BACK BUTTON
    - 1-5 BREADCRUMB
    - 1-6 BACK TO TOP BUTTON
    - 1-7 PRELOADER
    - 1-8 BROWSER UPGRADE

3. HEADER AREA

X. DEMO PREVIEW AREA

16. COPYRIGHT AREA

25. HELPER CLASSES
    - 25-1 RESET GUTTER
    - 25-2 BACKGROUND IMAGE
    - 25-3 BORDER NONE
*/

/*------------------------------------*\
    1. GENERAL STYLES
\*------------------------------------*/
/* 1-1 TYPHOGRAPHY */
html, body {
    font-family: 'Roboto', 'Helvetica', 'Arial', sans-serif;
    height: 100%;
}
body {
    background-color: #fff;
    color: #737373;
}
h1, h2, h3, h4, h5, h6 {
    font-weight: 300;
}
p {
    font-size: 14px;
    font-weight: 300;
    font-family: "Roboto", "Helvetica", "Arial", sans-serif;
    line-height: 22px;
    color: #737373;
}
a, .mdl-button {
    font-weight: 500;
    color: #303030;
}
a:hover, a:focus {
    color: #ff5252;
    text-decoration: none;
    outline: none;
}

.form-control::-webkit-input-placeholder {
    color: #fff;
}
.form-control::-moz-placeholder {
    color: #fff;
}
.form-control::-ms-input-placeholder {
    color: #fff;
}
.form-control.error {
    border-color: #ff5252;
}

/* 1-1 LOGO */
.logo {
    display: block;
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    font-weight: 900;
    text-transform: uppercase;
    -webkit-transition: margin .25s;
            transition: margin .25s;
}
.logo span.first,
.logo i.fa {
    color: #ed1b24;
}
.logo span.first,
.logo span.second,
.logo i.fa {
    display: inline-block;
    vertical-align: middle;
}
.logo i.fa {
    font-size: 28px;
    line-height: 0;
}

/* 1-2 SECTION TITLE */
.section-title {
    position: relative;
    margin: 70px 0 0;
    padding-bottom: 25px;
    color: #303030;
    font-family: 'Oswald', sans-serif;
    font-size: 60px;
    font-weight: 400;
    line-height: 68px;
    text-align: center;
    text-transform: uppercase;
}
.section-title:before {
    content: " ";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 60px;
    height: 2px;
    margin: 0 auto;
    background-color: #ed1b24;
}
.section-title span {
    display: block;
    color: #888989;
    font-size: 14px;
    font-weight: 700;
    line-height: 14px;
}
.section-title.text-left {
    text-align: left;
}
.section-title.text-left:before {
    left: 0;
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
}
.section-title.text-right {
    text-align: right;
}
.section-title.text-right:before {
    left: auto;
    right: 0;
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
}
.section-title.white {
    color: #fff;
}

/* 1-3 VERTICAL CENTERING */
.vc-parent {
    width: 100%;
    height: 100%;
    display: table;
}
.vc-child {
    display: table-cell;
    vertical-align: middle;
}
.vc-child-bottom {
    display: table-cell;
    vertical-align: bottom;
}

/* 1-4 BACK BUTTON */
.back-button {
    margin-top: 38px;
    display: block;
    -webkit-transition: margin-top .25s;
            transition: margin-top .25s;
}
#topNav.sticky .back-button {
    margin-top: 31px;
}
.back-button span {
    display: block;
    background-color: #fff;
    height: 1px;
}
.back-button:hover span {
    background-color: #ff5252;
}
.back-button span:nth-child(1) {
    -webkit-transform: rotate(-30deg);
        -ms-transform: rotate(-30deg);
            transform: rotate(-30deg);
    width: 13px;
    margin-bottom: 2px;
}
.back-button span:nth-child(2) {
    margin-bottom: 2px;
    margin-left: 2px;
    width: 30px;
}
.back-button span:nth-child(3) {
    -webkit-transform: rotate(30deg);
        -ms-transform: rotate(30deg);
            transform: rotate(30deg);
    width: 13px;
}

/* 1-5 BREADCRUMB */
.breadcrumb {
    background-color: transparent;
    padding: 8px 15px 0;
    margin-top: 22px;
    margin-bottom: 0;
    -webkit-transition: padding .25s;
            transition: padding .25s;
}
#topNav.sticky .breadcrumb {
    padding: 2px 15px 22px;
}
.breadcrumb li a {
    color: #fff;
}
.breadcrumb li a:hover {
    color: #ff5252;
}
.breadcrumb&gt;.active {
    color: #ff5252;
    font-weight: 300;
}

/* 1-6 BACK TO TOP BUTTON */
#backToTop {
    position: fixed;
    bottom: 35px;
    right: 35px;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: opacity .25s ease-in-out;
            transition: opacity .25s ease-in-out;
    z-index: 1;
}
#backToTop.show,
#backToTop.alwaysShow {
    opacity: 1;
    filter: alpha(opacity=100);
}
#backToTop button {
    display: block;
    width: auto;
    height: auto;
    min-width: 50px;
    padding: 8px 0 10px;
    color: #fff;
    background-color: #737373;
    border-radius: 0;
    font-size: 24px;
    line-height: 32px;
    text-align: center;
}

/* 1-7 PRELOADER */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ed1b24;
    z-index: 9999999;
}
.preloader--spinners {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    margin-top: -20px;
    margin-left: -20px;
    -webkit-animation: preloaderRotate 2.0s infinite linear;
            animation: preloaderRotate 2.0s infinite linear;
}
.preloader--spinner,
.preloader--spinner {
    width: 60%;
    height: 60%;
    display: inline-block;
    position: absolute;
    top: 0;
    background-color: #fff;
    border-radius: 100%;
    -webkit-animation: preloaderBounce 2.0s infinite ease-in-out;
            animation: preloaderBounce 2.0s infinite ease-in-out;
}
.preloader--spinner-2 {
    top: auto;
    bottom: 0px;
    -webkit-animation-delay: -1.0s;
            animation-delay: -1.0s;
}

@-webkit-keyframes preloaderRotate { 100% { -webkit-transform: rotate(360deg) }}
@keyframes preloaderRotate { 100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); }}

@-webkit-keyframes preloaderBounce {
  0%, 100% { -webkit-transform: scale(0.0) }
  50% { -webkit-transform: scale(1.0) }
}

@keyframes preloaderBounce {
  0%, 100% { 
    -webkit-transform: scale(0.0);
            transform: scale(0.0);
  } 50% { 
    -webkit-transform: scale(1.0);
            transform: scale(1.0);
  }
}

/* 1-8 BROWSER UPGRADE */
.browserupgrade {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    margin: 0;
    padding: 20px 0;
    color: #fff;
    background-color: #ff9800;
    text-align: center;
}
.browserupgrade a {
	color: #fff;
	text-decoration: underline;
}

/*------------------------------------*\
    3. HEADER AREA
\*------------------------------------*/
#header {
    z-index: 0;
}

.header-item {
    position: relative;
    padding: 80px 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 0;
}
.header-item:before {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #222;
    opacity: 0.6;
    z-index: -1;
}

.header-item-2 .header-img-holder {
    margin-top: 20px;
}

.header-img {
    display: block;
}
.header-img img.img-responsive {
    width: 100%;
}

.header-img .header-img-slider,
.header-img .header-img-inner {
    position: absolute;
    top: 9.5%;
    left: 150px;
    width: 261px;
    cursor: ew-resize;
}
.header-img-slider img {
    max-height: 68.5%;
}

.header-item {
    color: #fff;
    overflow: hidden;
}

.header-item h2 {
    display: inline-block;
    padding: 0px 20px;
    border-left: 5px solid #ff5252;
    font-size: 40px;
    font-weight: 700;
    line-height: 48px;
    text-transform: uppercase;
}
.header-item h2 span {
    color: #adadad;
}
.header-item-3 h2 {
    margin-bottom: 15px;
    font-family: 'Oswald', sans-serif;
}
.header-item p {
    padding: 0 20px;
    border-left: 5px solid #fff;
    color: #fff;
    font-size: 16px;
}

.owl-fadeInDown,
.owl-fadeInUp {
    visibility: hidden;
}
.owl-item.active .owl-fadeInDown {
    -webkit-animation: fadeInDown 1s linear 0s;
            animation: fadeInDown 1s linear 0s;
    visibility: visible;
}
.owl-item.active .owl-fadeInUp {
    -webkit-animation: fadeInUp 1s linear 0s;
            animation: fadeInUp 1s linear 0s;
    visibility: visible;
}
.owl-item.active .animate-2x {
    -webkit-animation-duration: 0.55s;
            animation-duration: 0.55s;
}

.header-item a.read-more,
.header-item a.buy-now {
    display: inline-block;
    min-width: 130px;
    padding: 10px 25px;
    margin-top: 10px;
    margin-right: 10px;
    color: #fff;
    border: 1px solid #fff;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    -webkit-transition: color .25s, border-color .25s, background-color .25s ease-in-out;
            transition: color .25s, border-color .25s, background-color .25s ease-in-out;
    outline: 0;
}

.header-item a.read-more:hover,
.header-item a.buy-now:hover {
    color: #fff;
    background-color: #ed1b24;
    border-color: #ed1b24;
}

#tubular-container, #tubular-shield {
    position: absolute !important;
    z-index: -2 !important;
    top: 0;
}

.header-items .owl-controls {
    position: absolute;
    bottom: 15px;
    right: 0;
    width: 100%;
    text-align: center;
}
.header-items &gt; .owl-controls { /* Header Slider Verion */
    bottom: 30px;
}
.header-items .owl-pagination {
    display: inline-block;
    overflow: hidden;
}
.header-items .owl-page {
    width: 8px;
    height: 8px;
    float: left;
    margin: 1px 5px;
    border: 1px solid #fff;
    border-radius: 50%;
    -webkit-transition: .25s;
            transition: .25s;
    outline: 0;
}
.header-items .owl-page.active {
    width: 10px;
    height: 10px;
    margin-top: -0.5px;
    margin-left: 4.5px;
    background-color: #fff;
}

/*------------------------------------*\
    X. DEMO PREVIEW AREA
\*------------------------------------*/
#demoPreview {
    padding-bottom: 44px;
    background-color: #fff;
}
#demoPreview .section-title {
    margin-bottom: 30px;
}

.demo-preview--item {
    margin-top: 30px;
}
.demo-preview--item a {
    -webkit-transition: color .25s ease;
            transition: color .25s ease;
}
.demo-preview--item a:hover,
.demo-preview--item a:focus {
    color: #ed1b24;
}
.demo-preview--item h3 {
    font-size: 24px;
    font-weight: 400;
    text-align: center;
}

/*------------------------------------*\
    16. COPYRIGHT AREA
\*------------------------------------*/
#copyright {
    padding: 20px 0;
    color: #fff;
    background-color: #222;
}
#copyright p {
    margin-bottom: 0;
    text-transform: capitalize;
    color: #fff;
}
#copyright p a {
    color: #ed1b24;
    font-weight: 500;
}

/*------------------------------------*\
    25. HELPER CLASSES
\*------------------------------------*/
/* 25-1 RESET GUTTER */
.no-gutter {
    margin-left: 0;
    margin-right: 0;
}
.no-gutter &gt; [class*='col-'] {
    padding-left: 0;
    padding-right: 0;
}

/* 25-2 BACKGROUND IMAGE */
.bg-img {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.bg-img:before {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(34, 34, 34, 0.8);
}

/* 25-3 BORDER NONE */
.bd-none {
    border: none !important;
}</pre></body></html>