/*
Theme Name: No Kick Bike
Theme URI: https://nokick.bike
Author: Miha Novak
Author URI: https://mihanovak.com
Description: Clean and simple one page theme
Version: 1.0
License: NOT GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: one pager, clear, dark, bootstrap
Text Domain: nokick

This theme, is NOT licensed under the GPL.

*/

/* Import raleway font */
/* @import url('https://fonts.googleapis.com/css?family=Raleway:200,300,400,500,700&display=swap'); */
@import url('https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900&display=swap');

/* Antialias */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body, html {
    /* font-family: "Raleway", sans-serif !important; */
    font-family: "Poppins", sans-serif !important;
}

/*  
/* Preloader
*/
.preloader-bg {
    position: fixed;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-image: radial-gradient(circle farthest-corner at center, #2a2a2a 0%, #000000 100%);
    z-index: 999999;
}
.preloader {
    position: fixed;
    display: table;
    table-layout: fixed;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-image: url('/assets/img/nkb-logo-white.svg');
    filter: grayscale(100%);
    background-size: 200px 200px;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 999999;
}
.blinking {
    animation: blinker 1.4s linear infinite;
}
@keyframes blinker {  
    50% { opacity: 0.4; }
}

body {
    background-color: #111;
}

/*  
/* Navbar
*/
.navbar {
    /* height: 140px; */
    /* border-bottom: 1px solid red; */
    padding-bottom: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.82) 100%);
    z-index: 100;
}
    .navbar.direction {
        background: none;
        -webkit-transition: all .5s ease;
        -moz-transition: all .5s ease;
        -ms-transition: all .5s ease;
        -o-transition: all .5s ease;
        transition: all .5s ease;	
    }
    .navbar .navbar-brand, footer .navbar-brand {
        width: 150px;
        height: 146px;
        text-indent: -9999em !important;
        background-color: white;
        -webkit-mask-image: url('/assets/img/nkb-logo-white.svg');
        mask-image: url('/assets/img/nkb-logo-white.svg');
        mask-position: center;
        background-size: 160px 146px;
        background-position: center;
        background-repeat: no-repeat;
        margin-top: 16px;
        margin-left: 48px;
        text-indent: 100em;
        -webkit-transition: all .5s ease;
        -moz-transition: all .5s ease;
        -ms-transition: all .5s ease;
        -o-transition: all .5s ease;
        transition: all .5s ease;	
    }
        .navbar .navbar-brand.direction {
            /* width: 150px; */
            /* height: 146px; */
            /* background-color: rgba(0,0,0,.8); */
            /* background-size: 150px 150px; */
        }
        footer .navbar-brand {
            width: 160px;
            height: 160px;
            background-size: 160px 160px;
            text-indent: -9999em;
        }

/*  
/* Burger menu
*/
.burger-icon-wrapper {
    position: fixed;
    right: 50px;
    top: 50px;
    z-index: 1001;
    padding: 12px 12px 8px 12px;
    cursor: pointer;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;	
}
    .burger-icon-wrapper.direction {
        background-color: rgba(0,0,0,.8);
    }
.nav-icon {
    width: 40px;
    height: 40px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    /* border: 1px solid white; */
    /* padding: 10px; */
    /* background-color: rgba(0,0,0,.8); */
}

.nav-icon span {
    display: block;
    height: 2px;
    width: 100%;
    background: #fff;
    margin: 5px 0;
    float: right;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
    transform-origin: 10px 1px;
}
    .burger-icon-wrapper.open:hover .modal-close span {
        background-color: rgba(237,28,36,1);
    }

.nav-icon span:nth-child(3) {
    width: 60%;
    background: rgba(237,28,36,1);
}

.nav-icon:hover span:nth-child(3) {
    width: 100%;
}

/* Transform all the slices of hamburger into a crossmark. */
.burger-icon-wrapper.open .nav-icon span {
    opacity: 1;
    transform: rotate(45deg) translate(-2px, -1px);
}
/* Oh yeah and the second one should go the other direction */
.burger-icon-wrapper.open .nav-icon span:nth-child(2) {
    transform: rotate(-45deg) translate(0, -1px);
}
/* But let's hide the last one. */
.burger-icon-wrapper.open .nav-icon span:nth-child(3) {
    opacity: 0;
    transform: rotate(0deg) scale(0.2, 0.2);
}

/*  
/* Main menu
*/
.menu-overlay-left {
    position: fixed;
    width: calc(50% + 4px);
    height: 100%;
    overflow: hidden;
    top: 0;
    left: -100%;
    background: rgba(0, 0, 0, .7);
    -webkit-transition: all .4s ease-in-out;
       -moz-transition: all .4s ease-in-out;
        -ms-transition: all .4s ease-in-out;
         -o-transition: all .4s ease-in-out;
            transition: all .4s ease-in-out;
            opacity: 0;
       -moz-opacity: 0;
    -webkit-opacity: 0;
    filter: alpha(opacity=0);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    z-index: 200;
    }
    
    @media only screen and (max-width: 880px) {
      .menu-overlay-left {
        width: 26%;
      }
    }
    
    .menu-overlay-left.open {
    left: 0;
            opacity: 1;
       -moz-opacity: 1;
    -webkit-opacity: 1;
    filter: alpha(opacity=100);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    }

/* Right */
.menu-overlay-right {
    position: fixed;
    width: 50%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    top: 0;
    right: -100%;
    background: rgba(0,0,0,.92);
    -webkit-transition: all .4s ease-in-out;
       -moz-transition: all .4s ease-in-out;
        -ms-transition: all .4s ease-in-out;
         -o-transition: all .4s ease-in-out;
            transition: all .4s ease-in-out;
            opacity: 1;
       -moz-opacity: 1;
    -webkit-opacity: 1;
    filter: alpha(opacity=100);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    z-index: 200;
    }
    
    @media only screen and (max-width: 880px) {
      .menu-overlay-right {
        width: 75%;
      }
    }
    
    .menu-overlay-right.open {
    right: 0;
    }
    ul li a {
        -webkit-transition: all .4s ease-in-out;
        -moz-transition: all .4s ease-in-out;
         -ms-transition: all .4s ease-in-out;
          -o-transition: all .4s ease-in-out;
             transition: all .4s ease-in-out; 
    }
    ul.main-menu {
        font-family: "Poppins", sans-serif !important;
    }
        ul.main-menu li {

        }
            ul.main-menu li a {
                font-size: 32px;
                font-weight: 300;
                color: white;
                text-decoration: none;
                padding: 10px 20px 4px 20px;
                border-bottom: 1px solid transparent;
            }
                .list-group-item.active {
                    background: none;
                    border: none;
                }
                ul.main-menu li a:hover, ul.main-menu li a.active {
                    border-bottom: 1px solid rgba(237,28,36,1);
                }

                ul.nav-social li a:hover {
                    color: rgba(237,28,36,1) !important;
                }


/* 
/* General styling
*/
.go-to-top {
    position: fixed;
    width: 50px;
    height: 50px;
    font-size: 22px;
    line-height: 28px;
    bottom: 50px;
    right: 50px;
    padding: 12px;
    cursor: pointer;
    opacity: 0;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
    z-index: 1001;
}
    .go-to-top.show {
        opacity: 1;
        background-color: rgba(0,0,0,.8);
        border: 1px solid rgba(255,255,255,0.4);
        -webkit-transition: all .5s ease;
        -moz-transition: all .5s ease;
        -ms-transition: all .5s ease;
        -o-transition: all .5s ease;
        transition: all .5s ease;    
    }
        .go-to-top.show:hover {
            border: 1px solid rgba(237,28,36,1);
            color: rgba(237,28,36,1) !important;
        }
.bg-light {
    background-image: radial-gradient(circle farthest-corner at center, #ffffff 0%, #a0a0a0 100%);
}
.bg-dark {
    background-image: radial-gradient(circle farthest-corner at center, #2a2a2a 0%, #000000 100%);
}
.bg-white {
    background-color: whitesmoke !important;
}
/* Image hotspots */
.hotspot:before, .hotspots-label:before {
    content: "";
    display: block;
    /* border: 1px solid #fff; */
    /* background-color: transparent; */
    border-radius: 50%;
    width: 24px;
    height: 24px;
    position: absolute;
    left: 3px;
    top: 3px;
    background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxOC4xLjEsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9IjAgMCAxMS42IDExLjYiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDExLjYgMTEuNiIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8bGluZSBmaWxsPSJub25lIiBzdHJva2U9IiNGRkZGRkYiIHN0cm9rZS13aWR0aD0iMC41NjI1IiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiIHgxPSI1LjgiIHkxPSIxMS42IiB4Mj0iNS44IiB5Mj0iMCIvPg0KPGxpbmUgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjRkZGRkZGIiBzdHJva2Utd2lkdGg9IjAuNTYyNSIgc3Ryb2tlLW1pdGVybGltaXQ9IjEwIiB4MT0iMCIgeTE9IjUuOCIgeDI9IjExLjYiIHkyPSI1LjgiLz4NCjwvc3ZnPg0K");
    background-size: 68%;
    background-position: 5px 5px;
    background-repeat: no-repeat;
    /* z-index: 199; */
}
    .hotspot:hover::before, .hotspots-label:hover::before {
        background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAJYAAACWCAYAAAA8AXHiAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA3hpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDkuMC1jMDAwIDc5LjE3MWMyN2ZhYiwgMjAyMi8wOC8xNi0yMjozNTo0MSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDo2ZWJhODFhNi1kMDk0LTQ2NzItOWQ5Ny1lODMzYTMyMWJlMjMiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NjE5MENERkE3NDdDMTFFREE2MzI4NjUwREVDQkVCMEIiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NjE5MENERjk3NDdDMTFFREE2MzI4NjUwREVDQkVCMEIiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIDI0LjAgKE1hY2ludG9zaCkiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo2ZWJhODFhNi1kMDk0LTQ2NzItOWQ5Ny1lODMzYTMyMWJlMjMiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6NmViYTgxYTYtZDA5NC00NjcyLTlkOTctZTgzM2EzMjFiZTIzIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+zWKorgAAAWVJREFUeNrs2MEJhDAURVEVy3AzYBe2ohanU8pYhxWkBo1b8TvuPQeyyu5xIZAyNW1BaM6nv7kbTXStMgHCQlgIC4SFsBAWCAthISwQFsJCWCAshIWwQFgIC2GBsBAWwgJhISyEBcJCWAgLhIWwEBYIC2EhLBAWwkJYICyEhbBAWAgLYYGwEBbCAmEhLIQFwkJYCAuEhbAQFggLYSEsEBbCQlggLISFsEBYCAthgbAQFsKCkzqfyQyh7s+d7QJlatrNDHgKERbCAmEhLF7q+G74miF0fCl8grs1n8VEcViDGULzTVi/fEYTeQoRFsICYSEshAXCQlgIC4SFsBAWCAthISwQFsJCWCAshIWwQFgIC2EhLBAWwkJYICyEhbBAWAgLYYGwEBbCAmEhLIQFwkJYCAuEhbAQFggLYSEsEBbCQlggLISFsEBYCAthgbAQFsICYSEshAXCQlgIC4SFsBAWPLMLMADdNQ0rHd/NNAAAAABJRU5ErkJggg==") !important;
    }
.hotspots-label { /* Details bubble */
    position: absolute;
    width: 400px;
    top: 40%;
    left: 0%;
    text-align: left;
    padding: 20px;
    color: #fff;
    font-size: 16px;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
    /* background-color: rgba(0,0,0,.8); */
    /* border: 1px solid rgba(237,28,36,.6); */
}
    .hotspots-label.offroad {
        top: 26%;
        right: 0%;
        left: initial;
    }
    .hotspots-label h5 {
        font-weight: 500;
        margin-bottom: 16px;
        font-size: 32px;
        text-transform: uppercase;
    }
    .hotspots-label:before {
        display: none;
    }
    .hotspots-label.is-visible {
        opacity: 1;
        visibility: visible;
    }
  
.hotspot {
    padding: 16px;
    height: 32px;
    box-sizing: border-box;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    position: absolute;
    line-height: 32px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 500;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    cursor: pointer;
    opacity: 0;
    width: 0;
    transition: opacity 650ms ease-in, width 350ms linear;
    text-indent: -9999em;
    user-select: none;
}
    .hotspot:hover {
        color: white;
        text-decoration: none;
    }
  .hotspot.is-visible {
    opacity: 1;
  }
  .hotspot.is-active {
    padding: 0 20px 0 40px;
    text-indent: 0;
    width: auto;
  }
  .hotspot.is-active:before {
    transform: rotate(45deg);
  }
  .hotspot:before {
    transition: transform 150ms cubic-bezier(0.2, 0.5, 0.34, 1);
  }
  .image {
    width: 82%;
    display: block;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
  }
  .image:before {
    content: "";
    display: block;
    width: 100%;
    padding-top: 70%;
  }

  /* Urban NoKickBike background */
  #urban .image .contain {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-image: url("/assets/img/NoKickBike-Urban.png");
    background-size: cover;
    background-position: center;
  }

  /* OffRoad NoKickBike background */
  #offroad .image .contain {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-image: url("/assets/img/NoKickBike-OffRoad.png");
    background-size: cover;
    background-position: center;
  }

/*  
/* Intro section
*/
.intro {
    /* background-image: url('/assets/img/nkb-header-bg-01.jpg'); */
    /* background-position: center; */
    /* background-size: cover; */
}
.intro:after {
	/* content: '';
	display: block;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
    background: rgba(0, 0, 0, 0.2); */
    /* Small dots */
	/* background-image: radial-gradient(black 60%, transparent 50%); */
    /* background-size: 3px 3px; */
}
 .intro video {
    object-fit: cover;
    background-position: left center;
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
 }
    .intro .heading {
        padding: 16px;
        background: rgba(0,0,0,0.52);
        z-index: 1;
        margin-right: 16%;
        margin-bottom: 4%;
    }
    .intro .heading h1, .intro .heading h5, .intro .heading h3 {
        opacity: 0;
    } 
    .intro .heading h1.animate, .intro .heading h3.animate {
        white-space: nowrap;
        overflow: hidden;
        animation:  typing 3s steps(30, end) forwards,
                    blink .8s infinite;
        border-right: 2px solid transparent;
        width: 0;
        margin-right: 8px;
        opacity: 1;
        /* animation-delay: 4s; */
    }
    .intro .heading h5.animate {
        white-space: nowrap;
        overflow: hidden;
        animation:  typing 3s steps(30, end) forwards;
        border-right: 2px solid transparent;
        width: 0;
        align-self: flex-end;
        margin-right: 8px;
        opacity: 1;
        /* animation-delay: 10s; */
    }
    .intro .line-break {
        flex-basis: 100%;
        height: 0;
    }
    @keyframes typing {
        from { width: 0 }
        to { width: 100% }
    }
    @keyframes blink {
        from { border-color: transparent; }
        to { border-color: rgba(237,28,36,1); }
    }


.intro-footer {
    position: absolute;
    bottom: 24px;
    padding: 16px;
    z-index: 1;
    left: 160px;
    /* left: 12%; */
    /* transform: translate(-12%, 0%); */
}
    .intro-footer .item {
        float: left;
        text-align: left;
        min-width: 180px;
        display: inline-block;
        padding: 2px 24px;
        border-right: 1px solid rgba(255, 255, 255, 0.48);
        /* border-right: 1px solid rgba(237,28,36,0.8); */
    }
        .intro-footer .item.last-child {
            border-right: 1px solid transparent;
        }
    .intro-footer .item h4 {
        text-transform: uppercase;
        font-weight: 300;
        font-size: 1.4rem !important;
        margin-bottom: 2px;
    }
    .intro-footer .item span {
        font-size: 14px;
        font-weight: 400;
        display: block;
    }

.pre-order {
    margin: 16px 0;
}
    .pre-order a {
        margin: 0px 10px;
        padding: 8px 40px;
        font-weight: 500;
        border-radius: 6px;
        transition: transform .4s; /* Animation */
    }
    .pre-order a.transparent {
        background-color: transparent;
        color: white;
    }
    .pre-order a:hover {
        transform: scale(1.2);
    }



 .intro-details {
    display: none;
    position: absolute;
    bottom: 96px;
    padding: 16px;
    background: rgba(0,0,0,0.52);
    z-index: 1;
 }
    .intro-details .item {
        float: left;
        display: inline-block;
        padding: 10px 40px;
        border-right: 1px solid rgba(237,28,36,0.8);
    }
    .intro-details .item:last-child, .intro-details .item.last-child {
        border-right: 1px solid transparent;
    }
        .intro-details .item h5 {
            /* text-transform: uppercase; */
            font-weight: 600;
        }
        .intro-details .item span {
            font-size: 14px;
            font-weight: 500;
            display: block;
        }
        .intro-details .btn-buy {
            border: 2px solid rgba(237,28,36,1);
            color: rgba(237,28,36,1);
            font-weight: 500;
            margin: 22px 0 0 28px;
        }
            .intro-details .btn-buy:hover {
                color: white;
            }

    .intro-details .item-batt {
        clear: both;
    }
    .intro-details .item-batt span {
        font-size: 14px;
        font-weight: 300;
    }

/*  
/* Urban section
*/
.urban {
    /* background-image: radial-gradient(circle farthest-corner at center, #333333 0%, #000000 100%); */
}
    .image-cover {
        position: relative;
        width: 94%;
        height: 94%;
    }
    .urban h2, .offroad h2 {
        position: absolute;
        top: 40px;
        /* left: 75%; */
        transform: translate(-50%);
        /* border-bottom: 1px solid rgba(237,28,36,1); */
        /* padding: 4px 16px; */
        /* font-weight: 200 !important; */
    }
    .p-title-right {
        right: 10%;
    }
    .p-title-left {
        left: 10%;
    }

    /* 3D Button */
    .ddd {
        position: absolute;
        right: 10%;
        top: 20%;
        margin: 0;
        z-index: 199;
    }
        .ddd li {
            display: flex;
            flex-direction: row;
            align-items: center;
            padding: 4px 20px;
            background-color: rgba(0, 0, 0, .8);
            border-radius: 20px;
            border: 1px solid transparent;
            font-size: 18px;
            font-weight: 200;
            color: whitesmoke;
            font-family: sans-serif;
            -webkit-transition: all .5s ease;
            -moz-transition: all .5s ease;
            -ms-transition: all .5s ease;
            -o-transition: all .5s ease;
            transition: all .5s ease;        
        }
            .ddd li:hover, #offroad .ddd li:hover {
                cursor: pointer;
                color: rgba(237,28,36,1);;
            }
        .material-symbols-outlined {
            font-size: 38px !important;
            margin-right: 8px;
            font-variation-settings:
                'FILL' 0,
                'wght' 100,
                'GRAD' -25,
                'opsz' 48
        }

/* Section Elevate */
.elevate, .mobile, .contact {
    background-color: #060606 !important;
    background-image: none !important;
}

/*  
/* OffRoad section
*/

    /* 3D Button */
    #offroad .ddd {
        left: 10%;
        right: unset;
    }


/* Tech specs */
.techspecs table tr td {
    border-color: #666;
    font-size: 14px;
}
.techspecs table tr td.noBottomBorder {
    border-color: transparent !important;
}
.techspecs table tr:hover {
    background-color: #060606;
}
    .techspecs table tr:hover td {
        color: white !important;
    }


/*  
/* Contact section
*/
.contact {
    min-height: 720px;
    /* min-height: 50vh; */
}
    #map {
        /* border: 1px solid red; */
        height: 720px;
    }

    .titlebckup {
        position: relative;
        margin: 18px 0;
        text-transform: uppercase;
        font-weight: 600;
        /* font-size: 48px; */
        font-size: 32px;
        color: whitesmoke;
        font-weight: 200 !important;
        /* border: 1px solid rebeccapurple; */
    }
    .title {
        position: relative;
        margin: 18px 0;
        text-transform: uppercase;
        font-weight: 600;
        font-size: 100px;
        color: whitesmoke;
        font-weight: 600 !important;
        white-space: nowrap;
    }
    .title.title-light {
        color: #333;
    }
    .title .dot {
        display: inline-block;
        position: absolute;
        bottom: 7px;
        width: 4px;
        height: 4px;
        margin-left: 3px;
        background-color: rgba(237,28,36,1);
    }
    .title .small-title {
        position: absolute;
        bottom: 54%;
        left: 50%;
        transform: translate(-50%,64%);
        font-size: 32px;
        font-weight: 200;
        color: whitesmoke;
        /* opacity: 0.2; */
    }
    .title.title-light .small-title {
        color: whitesmoke;
    }

    .contact-form-wrapper input, .contact-form-wrapper textarea {
        font-size: 18px;
        font-weight: 300;
        background: transparent;
        border: transparent;
        border-bottom: 1px solid #444;
        border-radius: 0;
        margin: 10px 0;
    }
        .contact-form-wrapper input:focus, .contact-form-wrapper textarea:focus {
            background: transparent;
            outline: none;
            border-color: transparent;
            box-shadow: none;
            border-bottom: 1px solid rgba(237,28,36,1);
        }
        .contact-form-wrapper textarea {
            height: 132px !important;
            resize: none;
        }
        .contact-form-wrapper .btn-dark {
            border: transparent;
        }
        .contact-form-wrapper .btn-dark:hover {
            background-color: rgba(237,28,36,1);
            /* border: rgba(237,28,36,1); */
        }




/*  
/* Footer section
*/
.company span {
    color: rgba(237,28,36,1);
}
.company i {
    font-size: 14px;
    font-style: normal;
}
.links ul li a {
    padding: 4px 0 2px 0;
    margin-bottom: 2px;
    color: white;
    text-decoration: none;
    display: inline-block;
    border-bottom: 1px solid transparent;
}
    .links ul li a:hover {
        border-bottom: 1px solid rgba(237,28,36,1);
    }
    .links ul li a i {
        font-size: 20px;
        padding-right: 10px;
        color: rgba(237,28,36,1);
    }

    .copyright {
        font-size: 14px;
    }
        .copyright a {
            text-decoration: none;
        }
            .copyright a:hover {
                color: rgba(255,255,255,.8) !important;
            }

/* Dark MODAL */
.modal-content.dark {
    background-image: radial-gradient(circle farthest-corner at center, #333333 0%, #000000 100%);
}
    .modal-header {
        position: relative;
        padding: 24px 0;
        border-bottom: 1px solid black;
    }
        .modal-header .modal-close {
            position: absolute;
            right: 50px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 64px !important;
            margin: 0;
            color: whitesmoke;
            cursor: pointer;
            -webkit-transition: all .5s ease;
            -moz-transition: all .5s ease;
            -ms-transition: all .5s ease;
            -o-transition: all .5s ease;
            transition: all .5s ease;        
        }
            .modal-header .modal-close.dark {
                color: #111111;
            }
            .modal-header .modal-close:hover {
                color: rgba(237,28,36,1);
            }
            /* Hide button when full screen is active */
            .fs-active .modal-header .modal-close {
                display: none;
            }

    .modal-body {
        padding: 0;
    }
    .modal-body model-viewer {
        width: 100%;
        height: 100%;
    }
    .ddd.fullscreen {
        right: 5%;
        bottom: 5%;
        top: unset;
    }

.w-40 {
    width: 40%;
}

.mw-95 {
    max-width: 95%;
}

.h-90 {
    height: 90%;
}