/* -> cookie bar
================================ */
#cookie-bar {
	background: #222;
	height: auto;
	color: #fff;
	text-align: center;
	position: fixed;
	bottom: 0px;
	width: 100%;
	z-index: 600;
    padding: 8px 20px;
    font-size: 16px;
}
#cookie-bar p {
	margin: 0;
	padding: 0;
}
#cookie-bar a {
	color: #fff;
	display: inline-block;
	text-decoration: none;
	background-color: transparent;
    padding: 10px 20px;
    line-height: 1;
    margin-left: 20px;
    border-radius: 5px;
	transition: all 0.3s;
	-moz-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	border: 1px solid #fff;
}
#cookie-bar a:hover {
    background-color: #be1519;
    border-color: #be1519;
}
/*================================ */

/* -> Slick Slider
================================ */
.slick-slider {
	position: relative;
	display: block;
	box-sizing: border-box;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-touch-callout: none;
	-khtml-user-select: none;
	-ms-touch-action: pan-y;
	touch-action: pan-y;
	-webkit-tap-highlight-color: transparent;
}

.slick-list {
	position: relative;
	display: block;
	overflow: hidden;
	width: 100%;
}

.slick-list:focus {
	outline: none;
}

.slick-list.dragging {
	cursor: pointer;
	cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.slick-track {
	position: relative;
	top: 0;
	left: 0;
	display: block;
}

#testimonials .slick-track {
	display: flex;
	align-items: center;
}

.slick-track:before,
.slick-track:after {
	display: table;
	content: '';
}

.slick-track:after {
	clear: both;
}

.slick-loading .slick-track {
	visibility: hidden;
}

.slick-slide {
	display: none;
	float: left;
	outline: none;
	min-height: 1px;
}

[dir='rtl'] .slick-slide {
	float: right;
}

.slick-slide img {
	position: absolute;
	display: block;
}

.slick-slide.slick-loading img {
	display: none;
}

.slick-slide.dragging img {
	pointer-events: none;
}

.slick-initialized .slick-slide {
	display: block;
}

.slick-loading .slick-slide {
	visibility: hidden;
}

.slick-vertical .slick-slide {
	display: block;
	height: auto;
	border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
	display: none;
}

.slick-disabled{
	opacity: 0;
	visibility: hidden;
}

/*Portefolio Arrows*/
.slick-prev,
.slick-next{
	text-decoration: none;
    width: 65px;
    height: 65px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    overflow: hidden;
    cursor: pointer;
    font-size: 0;
    color: #fff;
    background: rgba(0,0,0,0.1);
    opacity: 1;
    text-align: center;
    border: none;
    transition: all 0.2s ease-in-out 0s;
    outline: none!important;
    display: flex;
    align-items: center;
    justify-content: center;
    backface-visibility: hidden;
}

.slick-prev{
    left: 20px;
}

	.slick-prev:hover,
	.slick-next:hover{
        background-color: #be1519;
        color: #fff;
    }

.slick-next{
    right: 20px;
}

	.slick-prev:before,
    .slick-next:before{
		font-family: "Font Awesome 5 Free";
        font-weight: 900;
		font-size: 18px;
	}

    .slick-prev:before{
		content: "\f30a";
	}

    .slick-next:before{
		content: "\f30b";
    }
    
.slick-dots {
    position: relative;
    bottom: -20px;
    left: 0;
    right: 0;
    text-align: center;
    display: block;
    padding: 0;
    list-style: none;
}

    .slick-dots li{
        position: relative;
        display: inline-block;
        width: 10px;
        height: 10px;
        margin: 0 5px;
        padding: 0;
        cursor: pointer;
    }

        .slick-dots li button{
            font-size: 0;
            line-height: 0;
            display: block;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            cursor: pointer;
            color: transparent;
            background-color: transparent;
            outline: none;
            border: none;
            background-color: #000;
            transition: all 0.3s;
            -webkit-transition: all 0.3s;
            -moz-transition: all 0.3s;
            -ms-transition: all 0.3s;
            -o-transition: all 0.3s;
            opacity: 0.25;
            padding: 0;
        }

        .slick-dots li button:hover,
        .slick-dots li.slick-active button{
            opacity: 1;
            background-color: #be1519;
        }

.slick-disabled{
	opacity: 0;
	visibility: hidden;
}
/*================================ */


/* Loader */
#loading{
    position: fixed;
    width: 100%;
    height: 100%;
    opacity: 1;
    background-color: #87a06c;
    visibility: visible;
    transition: all .3s;
	-moz-transition: all .3s;
	-webkit-transition: all .3s;
    -o-transition: all .3s;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#loading.hidden{
    opacity: 0;
    visibility: hidden;
}

    #loading-box{
        height: 190px;
        width: 150px;
        overflow: hidden;
        display: flex;
        align-items: flex-end;
        justify-content: center;
        position: relative;
    }
        #l2, #l3, #l4{
            position: absolute;
            /* opacity: 0; */
        }

        #l1{
            height: 80px;
        } 

        #l2{
            bottom: 78px;
            width: 9px;
            animation: fadein 2s 0s ease-in-out;  
        }

        #l3{
            top: 0px;
            left: 0px;
            width: 65px;
            animation: fadein1 2s 0s ease-in-out;  
        }

        #l4{
            top: 0px;
            right: 0px;
            width: 65px;
            animation: fadein1 2s 0s ease-in-out;  
        }

        #l5{
            width: 150px;
            animation: fadein1 2s 0s ease-in-out;
            margin-top: 20px;  
        }

.loader {
	height: 58px;
	position: absolute;
	width: 58px;
}

@keyframes fadein {
    0%{
        bottom: -20px;
    }

    30%, 100%{
        bottom: 78px;
    }
}

@keyframes fadein1 {
    0%, 50%{
        opacity: 0;
    }
  
    100%{
        opacity: 1;
    }
}
/* ============================= */


/* -> Main
================================ */
body {
    font-family: 'Nunito', sans-serif;
    font-weight: 400;
	font-size: 18px;
    line-height: 1.46;
    color: #343940;
	overflow-x: hidden;
}

a {
	color: #fff;
	transition: all .3s;
	-moz-transition: all .3s;
	-webkit-transition: all .3s;
	-o-transition: all .3s
}

a:hover {
	color: #be1519;
    text-decoration: none;
}

.grecaptcha-badge{
    visibility: collapse !important;  
}

section{
    position: relative;
    z-index: 2;
}

.transition {
	transition: all .3s;
	-moz-transition: all .3s;
	-webkit-transition: all .3s;
	-o-transition: all .3s
}

#back-to-top{
    position: fixed;
    right: 45px;
    bottom: 50px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    width: 63px;
    height: 63px;
    font-size: 16px;
    line-height: 63px;
    color: #fff;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    border-radius: 50%;
    background: #FF6600;
}

    #back-to-top.visible{
        opacity: .8;
        visibility: visible;
    }

        #back-to-top:hover{
            opacity: 1;
            transform: translateY(-5px);
        }

    h1{
        font-size: 33px;
        line-height: 35px;
        margin-bottom: 10px;
        font-weight: 700;
        color: #343940;
    }


    h2{
        font-size: 38px;
        line-height: 46px;
        font-weight: 700;
        margin-top: 0;
        margin-bottom: 0;
        color: #343940;
        position: relative;
        z-index: 3;
    }

    h3{
        font-size: 26px;
        font-weight: 700;
        margin-bottom: 12px;
        color: #343940;
    }

    h4{
        font-weight: 700;
    }

    .pre-title{
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 15px;
        color: #be1519;
        position: relative;
        z-index: 3;
        display: flex;
        align-items: center;
    }

        .pre-title-icon{
            color: #fff;
            background-color: #be1519;
            border-radius: 50px;
            height: 40px;
            width: 40px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            font-size: 20px;
        }

        .pre-title.center{
            flex-direction: column;
        }

            .pre-title.center .pre-title-icon{
                margin-right: 0;
                margin-bottom: 10px;
            }

            .pre-title-icon img{
                height: 60%;
            }

    .title-text{
        position: relative;
        z-index: 10;
    }

.btn{
    border-radius: 0;
    cursor: pointer;
    outline: none;
    border-radius: 50px;
    line-height: 17px;
    font-weight: 600;
    font-size: 16px;
    margin: 0px;
    padding: 18px 40px;
    text-decoration: none;
    white-space: nowrap;
    display: inline-block;
    position: relative;
    background-color: #be1519;
    color:#fff!important;
}

    .btn:hover{
        filter: brightness(0.9);
    }

.btn-alt{
    color: #be1519!important;
    background-color: transparent;
    border-bottom: 2px solid #be1519;
    font-weight: 600;
    font-size: 16px;
    padding-bottom: 6px;
}

    .btn-alt:hover{
        border-color: #000!important;
        color: #000!important;
    }

#page-header{
    position: relative;
    padding-top: 90px;
    height: 280px;
    background-color: #f9f9f9;
    display: flex;
    align-items: center;
}

    #page-header h1{
        font-size: 40px;
        color: #151515;
        font-weight: 700;
        font-family: 'Fira Sans';
    }

    .breadcrumb{
        color: #ababab;
        font-weight: 400;
        font-size: 16px;
        line-height: 22px;
        background-color:transparent;
        padding:0;
        display: block;
        position: relative;
        margin-bottom: 0;
    }

        .breadcrumb > li{
            display:inline-block;
        }

            .breadcrumb > li + li:before{
                content:"-";
                font-size: 14px;
                padding:0 12px 0 4px;
                color: #ababab;
            }

            .breadcrumb li a{
                color:#ababab;
            }

                .breadcrumb > .active{
                    color:#333;
                    text-decoration:none;
                }

                .breadcrumb li a:hover{
                    color:#be1519;
                    text-decoration:none;
                }

                
/*Pagination*/
#pagination{
    margin-top: 20px;
    border-top: 1px solid #eee;
    padding-top: 40px;
}

    #pagination ul{
        padding: 0;
    }

        #pagination ul li{
            display: inline-block;
            margin: 0px;
        }

            #pagination ul li a{
                display: inline-block;
                margin: 0 5px;
                width: 35px;
                height: 35px;
                -webkit-transition: all .3s;
                -moz-transition: all .3s;
                -ms-transition: all .3s;
                -o-transition: all .3s;
                transition: all .3s;
                color: inherit;
                font-weight: 500;
                line-height: 1.5;
                font-size: 14px;
                letter-spacing: .8px;
                color: #c2c2c2;
                border: 1px solid transparent;
                border-radius: 50%;
                line-height: 35px;
            }

                #pagination ul li a:hover{
                    border-color: #be1519;
                    color: #be1519;
                    -webkit-border-radius: 50%;
                    -moz-border-radius: 50%;
                }

                #pagination ul li a.active,
                #pagination ul li a.active:hover{
                    border: 1px solid;
                    border-color: #be1519;
                    color: #be1519;
                    -webkit-border-radius: 50%;
                    -moz-border-radius: 50%;
                    border-radius: 50%;
                    width: 35px;
                    height: 35px;
                    text-align: center;
                    line-height: 35px;
                }
/* ============================= */


/* -> Menu
================================ */
.navbar {
    height: 145px;
    padding: 0px;
    background-color: transparent;
    border-bottom: 1px solid transparent;
}

.navbar.scrolled,
.navbar.dark{
    box-shadow: 0 3px 7px -3px rgba(0,0,0,.1);
    border-bottom: 1px solid #eee;
    background-color: #fff;
    height: 90px;
}

    #pre-nav{
        border-bottom: 1px solid #EAEAEA36;
        height: 55px;
        line-height: 55px;
        color: #fff;
        font-size: 15px;
        color: #fff;
        overflow: hidden;
    }

    #pre-nav a:hover{
        color: #ffffff;
    }

        .socials{
            display: flex;
            align-items: center;
            justify-content: flex-end;
        }

            #pre-nav .socials a{
                text-align: center;
                border-radius: 50% 50% 50% 50%;
                font-size: 16px;
                color: #be1519;
                width: 32px;
                height: 32px;
                display: flex;
                align-items: center;
                justify-content: center;
                background-color: #fff;
                margin-left: 10px;
            }

    .navbar.scrolled #pre-nav{
        height: 0;
    }

    .navbar > .container{
        height: 90px;
    }

    .navbar-brand{
        line-height: 90px;
        padding: 0;
    }

        .navbar-brand img{
            height: 45px;
            filter: brightness(0) invert(1);
        }

        .navbar.scrolled .navbar-brand img,
        .navbar.dark .navbar-brand img{
            filter: none;
        }

        .navbar ul li{
            position: relative;
            margin: 0px 20px;
        }

        .navbar ul li:last-child{
            margin-right: 0;
        }

            .navbar ul > li > a{
                font-weight: 600;
                font-size: 16px;
                color: #fff;
                padding: 10px 0px;
                text-transform: uppercase;
            }

            .navbar.scrolled ul > li > a,
            .navbar.dark ul > li > a{
                color: #000;
            }

                .navbar ul > li > a:hover{
                    color: #be1519!important;
                }

            .navbar ul > li > a.btn{
                position: relative;
                z-index: 1;
                overflow: hidden;
                text-transform: uppercase;
                font-weight: 700;
                font-size: 14px;
                padding: 14px 20px 12px;
                letter-spacing: 0;
            }

            .navbar ul > li > a.btn:hover{
                color:#fff!important;
            }
/* ============================= */


/* -> Slideshow
================================ */
#slideshow {
	position: relative;
    background-color: #242227;
    min-height: 600px;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

    #slideshow-carousel{
        position: relative;
        width: 100%;
        height: 100%;
    }

        .slide{
            min-height: 600px;
            height: 100vh;
            position: relative;
            display: flex!important;
            align-items: center;
            justify-content: center;
        }

            .slide:before {
                content: '';
                background-color: transparent;
                background-image: linear-gradient(90deg, #252433 30%, #979797 100%);
                opacity: 0.7;
                width: 100%;
                height: 100%;
                left: 0;
                top: 0;
                position: absolute;
                z-index: 3;
            }

            .slick-active .slide-bg {
                background-size: cover;
                background-position: center center;
                width: 100%;
                height: 100%;
                position: absolute;
                z-index: 2;
            }

    .caption{
        color: #fff;
        position: relative;
        z-index: 4;
        padding-top: 100px;
    }     

        .caption-pre-title{
            line-height: 21px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
        }

            .caption-pre-title .pre-title-icon{
                background-color: #fff;
                color: #be1519;
            }

        .caption h1{
            color: rgb(255, 255, 255);
            line-height: 90px;
            font-weight: 800;
            font-size: 80px;
            padding-bottom: 10px;
            max-width: 900px;
        }

            .caption h1 b{
                color: #be1519;
            }

        .caption-text{
            max-width: 700px;
            font-size: 18px;
            line-height: 31px;
            margin-bottom: 50px;
        }

    #slideshow-arrows{
        display: flex;
    }
/* ============================= */


/* -> About
================================ */
#about{
    position: relative;
    padding: 100px 0px;
}

    #about-img div{
        background-position: center;
        background-size: cover;
        height: 0;
        border-radius: 50%;
        padding-bottom: 100%;
    }
/* ============================= */


/* -> Services
================================ */
#services{
    padding: 130px 0px 100px;
    position: relative;
    background-color: #f5f5f5;
}

    .service{
        padding: 30px;
        border-style: solid;
        border-width: 1px 1px 1px 1px;
        border-color: #EAEAEA;
        border-radius: 10px 10px 10px 10px;
        margin-bottom: 30px;
        background-color: #fff;
    }

        .service-icon{
            font-size: 40px;
            color: #be1519;
            margin-bottom: 15px;
        }
/* ============================= */


/* -> Locations
================================ */
#locations{
    padding: 130px 0px;
    background-image: url('../img/locations.jpg');
    background-position: center;
    background-size: cover;
    position: relative;
}

    #locations:before {
        content: '';
        background-color: transparent;
        background-image: linear-gradient(90deg, #252433 30%, #666666 100%);
        opacity: 0.9;
        opacity: 0.9;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        position: absolute;
        z-index: 3;
    }

    .location{
        position: relative;
        z-index: 10;
        color: #fff;
        margin-top: 30px;
    }

        .location h4{
            margin-bottom: 20px;
        }

        .location div{
            margin-bottom: 10px;
        }

        .location i{
            color: #be1519;
            margin-right: 5px;
        }

    
/* ============================= */


/* -> Contacts
================================ */
#contacts{
    padding: 130px 0px;
}

.contact-info{
    text-align: center;
    width: 33%;
    padding: 0px 30px 30px 30px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    height: 100%;
    position: relative;
}

    .contact-info:before{
        content: '';
        width: 100%;
        position: absolute;
        border-bottom: 2px dashed rgb(229, 229, 229);
        top: 50px;
        z-index: 1;
    }

    .contact-icon{
        display: block;
        font-size: 40px;
        margin-bottom: 20px;
        height: 100px;
        width: 100px;
        background-color: #FFFFFF;
        border-radius: 100px 100px 100px 100px;
        box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 10%);
        color: #be1519;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        z-index: 2;
    }

    .contact-info h5{
        font-weight: 700;
        font-size: 20px;
    }


form{
    margin-top: 60px;
}

    .form-input{
        display: flex;
        margin-bottom: 20px;
    }

    .form-text{
        font-weight: 600;
    }

        .form-text a{
            text-decoration: underline;
        }

        .form-input label{
            width: 40px;
            flex-shrink: 0;
            color: #555;
            border: 1px solid #ccc;
            border-right: none;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .form-input.error label{
            border-color: #e10000;
        }

        input[type='text'],
        input[type='email'],
        textarea{
            width: 100%;
            color: #777;
            font-size: 16px;
            padding: 0px 20px;
            height: 64px;
            background-color: #f5f5f5;
            border: 1px solid #f5f5f5;
            font-family: 'Roboto', sans-serif;
        }

        textarea{
            height: 200px;
            resize: none;
            padding: 20px;
        }

        .form-input.error input[type="text"],
        .form-input.error input[type="email"],
        .form-input.error textarea,
        .form-input.error select{
            border-color: #e10000;
        }

        .form-text{
            font-size:15px;
            line-height: 26px;
            margin-top: 0;
        }
        
            .form-text input{
                transform: translateY(2px);
                display: inline-block;
            }
        
            .form-text label{
                cursor: pointer;
                line-height: 26px;
                text-align: justify;
            }
        
            .form-text.error label{
                color: #e10000;
            }
        
            .form-text a{
                color: #000!important;
                text-decoration: underline!important;
            }

#map{
    height: 500px;
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #aaa;
    font-weight: 500;
}
::-moz-placeholder { /* Firefox 19+ */
    color: #aaa;
    font-weight: 500;
}
:-ms-input-placeholder { /* IE 10+ */
    color: #aaa;
    font-weight: 500;
}
:-moz-placeholder { /* Firefox 18- */
    color: #aaa;
    font-weight: 500;
}
/* ============================= */



/* -> Categories Page
================================ */
#categories{
    padding: 130px 0px;
}

    .categories{
        text-align: center;
        margin-bottom: 50px;
    }

        .categories-img{
            height: 320px;
            margin-bottom: 15px;
            background-size: auto 100%;
            background-repeat: no-repeat;
            background-position: center;
            display: block;
            position: relative;
            border: 15px solid #f5f5f5;
        }

            .categories-img:before{
                content: '';
                background-color: #000;
                opacity: 0;
                position: absolute;
                top: 0;
                left: 0;
                height: 100%;
                width: 100%;
                z-index: 1;
                transition: all .3s;
                -moz-transition: all .3s;
                -webkit-transition: all .3s;
                -o-transition: all .3s
            }

            .categories-img a{
                opacity: 0;
                z-index: 2;
                visibility: hidden;
                transform: translateY(30px);
            }

            .categories-img:hover a{
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
            }

            .categories-img:hover:before{
                opacity: 0.3;
            }

            .categories h3{
                color: #252525;
                font-size: 20px;
                font-weight: 700;
                line-height: 30px;
                margin-bottom: 5px;
            }
/* ============================= */


/* -> Products Page
================================ */
#products-page{
    padding: 120px 0px;
}

    .sidebar{
        padding-left: 30px;
    }

        .sidebar-title{
            font-size: 24px;
            font-weight: 600;
            color: #333;
            padding-bottom: 14px;
        }

            .product-cat{
                padding-left: 0px;
                list-style: none;
                margin-top: 0px;
            }

                .product-cat > li > ul{
                    font-size: 18px;
                    padding-left: 15px;
                    list-style: disc;
                    margin-top: 0px;
                }
    
                .product-cat > li > a{
                    cursor: pointer;
                    color: #666!important;
                    text-transform: uppercase;
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    border-bottom: 2px solid #fff;
                    font-size: 15px;
                    font-weight: 500;
                    padding: 15px 10px 13px 10px;
                    background-color: #e5e5e5;
                }
    
                    .product-cat > li > a:hover,
                    .product-cat > li.active > a{
                        color: #be1519!important;
                    }
    
                .product-cat > li > a > i{
                    display: inline-block;
                    margin-right: 3px;
                }
    
                .product-cat > .has-children.active > a > i{
                    transform: rotate(90deg);
                }
    
                .product-cat > .has-children > ul{
                    display: none;
                    padding: 5px 0px 6px 30px;
                }
    
                .product-cat > .has-children.active > ul{
                    display: block!important;
                }
    
                    .product-cat > .has-children > ul > li > a{
                        cursor: pointer;
                        color: #8b8b8b!important;
                        align-items: center;
                        display: block;
                        font-size: 15px;
                        font-weight: 500;
                        padding: 12px 0px 10px 0px;
                    }

                    .product-cat > li > ul > li.active > a{
                        color: #be1519!important;
                    }

                    .product-cat > .has-children > ul > li:not(:last-child) > a{
                        border-bottom: 1px solid #e5e5e5;
                    }
    
                        .product-cat > .has-children > ul > li > a:hover{
                            color: #be1519!important;
                        }
/* ============================= */


/* -> Product Page
================================ */
#product-page{
    padding: 120px 0px 70px 0px;
}

    .s-product-img{
        height: 500px;
        margin-bottom: 20px;
        border: 1px solid #ccc;
        text-align: center;
        padding: 20px 0px;
        overflow: hidden;
        background-position: center;
        background-size: cover;
    }

        .s-product-img img{
            height: 100%;
        }

        .s-product-other-img{
            background-position: center;
            background-size: auto 100%;
            background-repeat: no-repeat;
            height: 200px;
            cursor: pointer;
            border: 1px solid #ccc;
        }

    .s-product-info{
    }

        .s-product-cat{
            color:#be1519;
            margin-bottom: 30px;
        }

        .share a{
            display: inline-block;
            color: #777;
        }

            .share a:hover{
                display: inline-block;
                color: #be1519;
            }

            .share i{
                margin-left: 10px;
                margin-top: 5px;
            }
/* ============================= */


/* -> Work Page
================================ */
#work-page{
    padding: 120px 0px 70px 0px;
}

    .work-gallery{
        height: 200px;
        background-position: center;
        background-size: cover;
        margin-bottom: 30px;
        position: relative;
        display: block;
    }
/* ============================= */

/* -> Footer
================================ */
footer{
    background-color: #292929;
    padding: 50px 0px;
    font-size: 17px;
    color: #9b9b9b
}

    footer a{
        color: #9b9b9b
    }

        footer a:hover{
            color: #be1519
        }

    footer img{
        width: 100px;
        flex-shrink: 0;
        flex-grow: 0;
    }
/* ============================= */