/**
 * WEBSITE: https://themefisher.com
 * TWITTER: https://twitter.com/themefisher
 * FACEBOOK: https://www.facebook.com/themefisher
 * GITHUB: https://github.com/themefisher/
 */

/*!------------------------------------------------------------------
[MAIN STYLESHEET]

PROJECT:	Project Name
VERSION:	Versoin Number
-------------------------------------------------------------------*/
/*------------------------------------------------------------------
[TABLE OF CONTENTS]
-------------------------------------------------------------------*/
/*  typography */
/* @import url("https://fonts.googleapis.com/css?family=Montserrat:300,400,500,600,700,800&display=swap"); */

:root {
    --primary-mev: #ff0046;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Thin.woff2') format('woff2');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}
  
@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-ExtraLight.woff2') format('woff2');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-ExtraBold.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Black.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}


body {
    font-family: "Roboto", sans-serif !important;
    -webkit-font-smoothing: antialiased;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
}

p,
.paragraph {
    font-weight: 400;
    color: #333;
    font-size: 16px;
    line-height: 26px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #222;
    font-weight: 700;
    /*  line-height: 1.8 !important;*/
}

h1,
.h1 {
    font-size: 50px;
    font-weight: 800;
}
@media (max-width: 575px) {
    h1,
    .h1 {
        font-size: 36px;
        font-weight: 600;
    }
}

h2,
.h2 {
    font-size: 42px;
    font-weight: 800;
}
@media (max-width: 575px) {
    h2,
    .h2 {
        font-size: 32px;
        font-weight: 600;
    }
}

h3,
.h3 {
    font-size: 32px;
}
@media (max-width: 575px) {
    h3,
    .h3 {
        font-size: 28px;
    }
}

h4,
.h4 {
    font-size: 26px;
}

h5,
.h5 {
    font-size: 22px;
}

h6,
.h6 {
    font-size: 18px;
}

/* Button style */
.btn {
    letter-spacing: 1px;
    font-size: 16px;
    text-transform: uppercase;
    padding: 13px 30px;
    border-radius: 0px;
    border: 1px solid;
    position: relative;
    z-index: 1;
    transition: 0.2s ease;
    font-weight: 600;
}
.btn:hover,
.btn:active,
.btn:focus {
    outline: 0;
    box-shadow: none !important;
}
.btn-sm {
    font-size: 14px;
    padding: 10px 25px;
}

.btn-primary {
    background: #ff0046;
    color: #fff;
    border-color: #ff0046;
}
.btn-primary:active,
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
    background: #e8ecef !important;
    border-color: #e8ecef !important;
    color: #000;
} /*
.btn-primary:active, .btn-primary:hover, .btn-primary:focus, .btn-primary.focus, .btn-primary.active {
  background: #cc0036 !important;
  border-color: #cc0036 !important;
}*/

.btn-outline-primary {
    background: transparent;
    color: #ff0046;
    border-color: #ff0046;
}
.btn-outline-primary:active,
.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary.focus,
.btn-outline-primary.active {
    background: #cc0036 !important;
    border-color: #cc0036 !important;
    color: #fff;
}

::-moz-selection {
    background: #ff0046;
    color: #fff;
}

::selection {
    background: #ff0046;
    color: #fff;
}

/* preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

img {
    vertical-align: middle;
    border: 0;
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

a {
    color: inherit;
}

a,
a:hover,
a:focus {
    text-decoration: none;
}

a,
button,
select {
    cursor: pointer;
    transition: 0.2s ease;
}
a:focus,
button:focus,
select:focus {
    outline: 0;
}

a:hover {
    color: #ff0046;
}

.slick-slide {
    outline: 0;
}

.section {
    padding-top: 80px;
    padding-bottom: 80px;
}
.section-2 {
    padding-top: 60px;
    padding-bottom: 60px;
}
.section-sm {
    padding-top: 50px;
    padding-bottom: 50px;
}
.section-title {
    margin-bottom: 40px;
}

.bg-cover {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.border-default {
    border-color: #e2e2e2 !important;
}

/* overlay */
.overlay {
    position: relative;
}
.overlay::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: #000;
    opacity: 0.5;
}

.outline-0 {
    outline: 0 !important;
}

.rounded,
.card-icon,
.card {
    border-radius: 0px !important;
}

.shadow,
.card,
.search-wrapper .form-control,
.navigation.nav-bg {
    box-shadow: 0px 15px 60px rgba(62, 62, 62, 0.102) !important;
}

.d-unset {
    display: unset !important;
}

.bg-primary {
    background: #ff0046 !important;
}

.text-primary {
    color: #ff0046 !important;
}

.text-light {
    color: #999 !important;
}

.mb-10 {
    margin-bottom: 10px !important;
}

.mb-20 {
    margin-bottom: 20px !important;
}

.mb-30 {
    margin-bottom: 30px !important;
}

.mb-40 {
    margin-bottom: 40px !important;
}

.mb-50 {
    margin-bottom: 50px !important;
}

.mb-60 {
    margin-bottom: 60px !important;
}

.mb-70 {
    margin-bottom: 70px !important;
}

.mb-80 {
    margin-bottom: 80px !important;
}

.mb-90 {
    margin-bottom: 90px !important;
}

.mb-100 {
    margin-bottom: 100px !important;
}

.zindex-1 {
    z-index: 1;
}

.overflow-hidden {
    overflow: hidden;
}

.font-weight-medium {
    font-weight: 500;
}

.navigation {
    transition: 0.2s ease;
}
.navigation.nav-bg {
    background: #e8ecef;
}
@media (max-width: 991px) {
    .navigation .form-inline {
        width: 100%;
    }
    .navigation .form-inline input {
        width: 100%;
    }
}

.nav-item {
    margin: 0;
}
.nav-item .nav-link {
    text-transform: capitalize;
}

.navbar-light .navbar-nav .nav-link {
    color: #222;
}
.navbar-light .navbar-nav .nav-link:hover {
    color: #fff;
    background-color: var(--primary-mev);
}
.navbar-light .navbar-nav .nav-link:focus {
    color: #fff;
    background-color: var(--primary-mev);
}

.navbar-expand-lg .navbar-nav .nav-link {
    padding: 20px;
    font-size: 15px;
}
@media (max-width: 991px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding: 10px;
        display: block;
    }
}

.search-wrapper {
    position: relative;
}
.search-wrapper .form-control {
    height: 46px;
    border: 0;
    outline: 0;
}
.search-wrapper .form-control::-moz-placeholder {
    color: #999;
    font-size: 15px;
}
.search-wrapper .form-control::placeholder {
    color: #999;
    font-size: 15px;
}
.search-wrapper .form-control-lg {
    height: 70px;
}
.search-wrapper .form-control.active.focus-visible {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
.search-wrapper button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}
.search-wrapper button i {
    color: #ff0046;
}

.card {
    transition: 0.2s ease;
    border: 0;
}
.card-lg .card-body {
    padding: 35px;
}
.card-icon {
    background: #ff0046;
    color: #fff;
    height: 55px;
    width: 60px;
    line-height: 55px;
    text-align: center;
    font-size: 27px;
    display: block;
}
.card-text {
    margin-bottom: 0;
}
.card-title {
    font-weight: 700;
}
.card-body {
    padding: 25px;
}
.card:hover {
    box-shadow: 0px 15px 60px rgba(62, 62, 62, 0.2) !important;
}

.social-icons {
    margin-bottom: 0;
}
.social-icons a {
    display: block;
    height: 42px;
    width: 42px;
    line-height: 42px;
    text-align: center;
    color: #fff;
    background: #ff0046;
    border-radius: 0px;
}

.footer-menu {
    margin-bottom: 0;
}
.footer-menu a {
    display: block;
    padding: 10px;
    color: #333;
    transition: 0.2s ease;
}
.footer-menu a:hover {
    color: #ff0046;
}

/* sidenav */
.sidenav {
    border-right: 1px solid #e2e2e2;
    padding-right: 20px;
}
.sidenav ul {
    padding-left: 10px;
}
.sidenav > li a {
    padding: 20px 0;
    color: #222;
    display: block;
    font-size: 18px;
    font-weight: 500;
}
.sidenav > li:not(:last-child) {
    border-bottom: 1px solid #e2e2e2;
}
.sidenav .sidelist ul {
    display: none;
}
.sidenav .parent > a {
    color: #000 !important;
    position: relative;
    /*  margin-left: 10px;*/
}
.sidenav .parent > a::before {
    position: absolute;
    content: "";
    left: -10px;
    top: 25%;
    height: 50%;
    width: 1px;
    background: #ff0046;
}
.sidenav .parent ul {
    display: block;
    margin-bottom: 10px;
}
.sidenav .parent ul a {
    padding: 5px 0;
    font-size: 14px;
    font-weight: 400;
    color: #222;
}
.sidenav .parent ul li.active > a {
    margin-left: 10px;
}
.sidenav .parent ul li.active > a::before {
    height: 5px;
    width: 5px;
    border-radius: 50%;
    display: block;
    top: 13px;
}

/* /sidenav */
.page-list {
    list-style-type: none;
}
.page-list a {
    display: none;
}
.page-list ul {
    padding: 0;
}
.page-list ul a {
    display: inline-block;
    padding: 7px 0;
    font-size: 20px;
    color: #222;
}

.pagination {
    margin-top: 50px;
    justify-content: space-between;
}
.pagination a {
    color: #ff0046;
    font-size: 18px;
    font-weight: 500;
}
.pagination i {
    line-height: 1.6;
}

.code-tabs {
    border: 1px solid #e2e2e2;
    overflow: hidden;
    margin-bottom: 20px;
}
.code-tabs .nav-tabs {
    margin-bottom: 0;
}
.code-tabs .nav-tabs .nav-item {
    padding-left: 0;
    border-right: 1px solid #e2e2e2;
}
.code-tabs .nav-tabs .nav-item .nav-link {
    text-decoration: none;
    font-weight: 500;
    border: 0;
}
.code-tabs .nav-tabs .nav-item::before {
    display: none;
}
.code-tabs .nav-tabs .nav-item.active {
    background: #ff0046;
}
.code-tabs .nav-tabs .nav-item.active .nav-link {
    color: #fff;
}
.code-tabs .tab-content {
    padding: 20px 15px;
}

pre {
    position: relative;
}
pre .copy-to-clipboard {
    background: #ff0046;
    color: #fff;
    cursor: pointer;
    padding: 4px 5px;
    line-height: 1;
    font-size: 12px;
    font-weight: 500;
    border-radius: 0px;
    position: absolute;
    right: 10px;
    top: 10px;
}

:not(pre) > code + span.copy-to-clipboard {
    display: none;
}

.autocomplete-suggestions {
    border: 0;
    border-radius: 0 0 6px 6px;
    box-shadow: 0px 50px 60px rgba(62, 62, 62, 0.102) !important;
    background: #fff;
}
.autocomplete-suggestions .autocomplete-suggestion {
    transition: 0.2s ease;
    padding: 10px;
    font-weight: 500;
}
.autocomplete-suggestions .autocomplete-suggestion.selected {
    background: #ff0046;
}

.search-item a {
    color: #222;
    display: block;
}
.search-item a:hover {
    color: #ff0046;
}
.search-item:not(:last-child) {
    border-bottom: 1px solid #e2e2e2;
}

.form-group label {
    font-size: 15px;
    font-weight: 500;
}
.form-group .form-control {
    height: 40px;
    background: transparent;
    border: 0;
    border-bottom: 1px solid #e2e2e2;
    border-radius: 0;
    padding: 10px 0;
}
.form-group .form-control::-moz-placeholder {
    font-size: 13px;
    color: #999;
}
.form-group .form-control::placeholder {
    font-size: 13px;
    color: #999;
}
.form-group .form-control:focus {
    outline: 0;
    border-color: #ff0046;
    box-shadow: none;
}
.form-group .custom-select {
    font-size: 13px;
    color: #999;
}
.form-group textarea.form-control {
    height: 100px;
}

.badge {
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 15px;
    padding: 5px 10px;
}
.badge.added {
    background: #3778ff;
    color: #fff;
}
.badge.fixed {
    background: #f54773;
    color: #fff;
}
.badge.changed {
    background: #3aaa55;
    color: #fff;
}
.badge.depricated {
    background: #343434;
    color: #fff;
}
.badge.removed {
    background: #3bbfe4;
    color: #fff;
}
.badge.security {
    background: #f53535;
    color: #fff;
}
.badge.unreleased {
    background: #a037ff;
    color: #fff;
}

.collapse-wrapper {
    padding: 5px 15px;
}
.collapse-wrapper .collapse-head {
    text-decoration: none;
    color: #333;
    font-size: 18px;
    font-weight: 500;
    align-items: center;
}

:not(.highlight) pre {
    background: #fbfbfb;
}

.content h1,
.content h2,
.content h3,
.content h4,
.content h5,
.content h6 {
    font-weight: 500;
}
.content strong {
    font-weight: 600;
}
.content a {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 8px;
    color: #ff0046;
}
.content a:hover {
    text-decoration: none;
    background-color: rgba(255, 0, 70, 1);
    color: #fff;
}
.content ol,
.content ul {
    padding-left: 20px;
}
.content ol li,
.content ul li {
    margin-bottom: 10px;
}
.content ul {
    padding-left: 0;
    margin-bottom: 20px;
}
.content ul li {
    padding-left: 20px;
    position: relative;
}
.content ul li::before {
    position: absolute;
    content: "";
    height: 8px;
    width: 8px;
    border-radius: 50%;
    background: #ff0046;
    left: 3px;
    top: 8px;
}
.content table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 1rem;
    border: 1px solid #eeeeee;
}
.content table td,
.content table th {
    padding: 0.75rem;
    vertical-align: top;
    margin-bottom: 0;
}
.content tr:not(:last-child) {
    border-bottom: 1px solid #eeeeee;
}
.content th {
    font-weight: 500;
}
.content thead {
    background: #fbfbfb;
    margin-bottom: 0;
}
.content thead tr {
    border-bottom: 1px solid #eeeeee;
}
.content tbody {
    background: #fff;
    margin-bottom: 0;
}
.content .notices {
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
}
.content .notices p {
    padding: 10px;
    margin-bottom: 0;
}
.content .notices p::before {
    position: absolute;
    top: 2px;
    color: #fff;
    font-weight: 900;
    content: "\e717";
    left: 10px;
}
.content .notices.note p {
    border-top: 30px solid #6ab0de;
    background: #e7f2fa;
}
.content .notices.note p::after {
    content: "Note";
    position: absolute;
    top: 2px;
    color: #fff;
    left: 2rem;
}
.content .notices.tip p {
    border-top: 30px solid #78c578;
    background: #e6f9e6;
}
.content .notices.tip p::after {
    content: "Tip";
    position: absolute;
    top: 2px;
    color: #fff;
    left: 2rem;
}
.content .notices.info p {
    border-top: 30px solid #f0b37e;
    background: #fff2db;
}
.content .notices.info p::after {
    content: "Info";
    position: absolute;
    top: 2px;
    color: #fff;
    left: 2rem;
}
.content .notices.warning p {
    border-top: 30px solid #e06f6c;
    background: #fae2e2;
}
.content .notices.warning p::after {
    content: "Warning";
    position: absolute;
    top: 2px;
    color: #fff;
    left: 2rem;
}
.content blockquote {
    font-size: 20px !important;
    color: #222;
    padding: 20px 40px;
    border-left: 2px solid #ff0046;
    margin: 40px 0;
    font-weight: bold;
    background: #fbfbfb;
}
.content blockquote p {
    margin-bottom: 0 !important;
}
.content pre {
    display: block;
    padding: 9.5px;
    margin: 10px 0px 10px;
}
.content code {
    margin-bottom: 0 !important;
    font-size: 100%;
}
/*# sourceMappingURL=style.css.map */

/* ROBOTO FONTS */
.roboto-thin {
    font-weight: 100 !important;
    font-style: normal !important;
}

.roboto-light {
    font-weight: 300 !important;
    font-style: normal !important;
}

.roboto-regular {
    font-weight: 400 !important;
    font-style: normal !important;
}

.roboto-medium {
    font-weight: 500 !important;
    font-style: normal !important;
}

.roboto-bold {
    font-weight: 700 !important;
    font-style: normal !important;
}

.roboto-black {
    font-weight: 900 !important;
    font-style: normal !important;
}
/* END ROBOTO FONTS */

/* MEV TEXT STYLE*/

.text-1 {
    font-size: 5rem !important;
    line-height: 1.2 !important;
    font-weight: 100 !important;
    font-style: normal !important;
}

.text-2 {
    font-size: 42px !important;
    font-weight: 300 !important;
    font-style: normal !important;
}

.text-3 {
    font-weight: 400 !important;
    font-style: normal !important;
    font-size: 34px !important;
    line-height: 1.7 !important;
}

.text-3-light {
    font-weight: 300 !important;
    font-style: normal !important;
    font-size: 34px !important;
    line-height: 1.7 !important;
}
.text-4 {
    font-weight: 400 !important;
    font-style: normal !important;
    font-size: 24px !important;
    line-height: 1.7 !important;
}

.text-4-light {
    font-weight: 300 !important;
    font-style: normal !important;
    font-size: 24px !important;
    line-height: 1.7 !important;
}

.text-5 {
    font-size: 22px !important;
}

.text-6 {
    font-size: 19px !important;
}

input::placeholder {
    font-size: 22px !important;
    opacity: 0.4 !important;
}

input {
    font-size: 22px !important;
}

select {
    font-size: 22px !important;
}

.form-control:focus {
    border-color: var(--primary-mev);
    box-shadow: 0 0 0 0;
}


textarea::placeholder {
    font-size: 24px !important;
}
textarea {
    font-size: 24px !important;
    overflow: hidden;
    min-height: 190px !important;
    resize: none;
}

@media (max-width: 787px) {
    .w-100-mobile {
        width: 100%;
    }
    .text-1 {
        font-size: 3.3rem !important;
        line-height: 1.2 !important;
        font-weight: 100 !important;
        font-style: normal !important;
    }

    .text-2 {
        font-size: 38px;
        font-weight: 300 !important;
        font-style: normal !important;
    }

    .text-3 {
        font-weight: 400 !important;
        font-style: normal !important;
        font-size: 28px !important;
        line-height: 1.7 !important;
    }

    .text-3-light {
        font-weight: 300 !important;
        font-style: normal !important;
        font-size: 28px !important;
        line-height: 1.7 !important;
    }

    .text-4 {
        font-weight: 400 !important;
        font-style: normal !important;
        font-size: 20px !important;
        line-height: 1.7 !important;
    }

    .text-4-light {
        font-weight: 300 !important;
        font-style: normal !important;
        font-size: 20px !important;
        line-height: 1.7 !important;
    }
    .text-4-light-mobile {
        font-weight: 300 !important;
        font-style: normal !important;
        font-size: 20px !important;
        line-height: 1.7 !important;
    }

    .text-5 {
        font-size: 22px !important;
    }

    .text-6 {
        font-size: 19px !important;
    }
}

/* END MEV TEXT STYLE*/

/* MEV OTHER CLASSES */

.bg-grey-mev {
    background-color: #e8ecef;
}

.nav-link-mev {
    padding: 4px 8px !important;
    margin: 16px 12px !important;
    letter-spacing: 2px !important;
}

.nav-link-mev.active {
    text-decoration: underline !important;
    text-decoration-thickness: 2px !important;
    text-decoration-color: var(--primary-mev) !important;
    text-underline-offset: 8px !important;
}

.dropdown-divider-mev {
    height: 0;
    margin: 0rem 0;
    overflow: hidden;
    border-top: 1px solid #fff;
    opacity: 1;
}

.breadcrumb-item-mev {
    opacity: 0.6 !important;
}

.breadcrumb {
    margin-bottom: 0px;
}

.section-2 {
    padding-top: 24px;
}

.footer-link-mev {
    color: #000 !important;
}

.breadcrumb-item-mev:hover,
.footer-link-mev:hover {
    opacity: 1 !important;
    color: #000 !important;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 8px;
    text-decoration-color: #ff0046;
}

.bkwd-text,
.fwd-text {
    color: #000 !important;
}
.bkwd-text:hover,
.fwd-text:hover {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 8px;
    text-decoration-color: #ff0046;
}

.footer-icon-link:hover {
    background: #e8ecef !important;
    border-color: #e8ecef !important;
    color: #000;
}
.footer-icon-link:active {
    background: var(--primary-mev) !important;
    border-color: var(--primary-mev) !important;
    color: #fff;
}

.sticky-credentials {
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 212px !important;
}

.sticky-credentials .sidelist {
    padding-right: 10px;
}

.sticky-credentials-mobile {
    position: fixed !important;
    bottom: 10px !important;
    right: 10px !important;
    z-index: 100;
}

.section-link {
    opacity: 0.6 !important;
}
.section-link:hover {
    opacity: 1 !important;
    color: #000 !important;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 8px;
    text-decoration-color: #ff0046;
}
.section-link:focus {
    opacity: 1 !important;
    color: #000 !important;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 8px;
    text-decoration-color: #ff0046;
}

.active-section {
    opacity: 1 !important;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 8px;
    text-decoration-color: #ff0046;
}
.dropdown-link {
    margin: 0px 12px !important;
}

.form-check-input {
    border-radius: 0 !important;
    width: 18px;
    height: 18px;
    margin-top: 0em;
    /*  float: left;*/
    margin-left: -1.1em !important;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.form-check-input:checked {
    background-color: var(--primary-mev);
    border-color: var(--primary-mev);
}
.form-check-input:focus {
    border-color: var(--primary-mev);
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(255, 0, 70, 0.25);
}

.hr-mev {
    border-bottom: 1px solid #e2e2e2;
}

.logo-container {
    display: flex;
    justify-content: center;
}

.logo {
    max-height: 300px;
}

.logo-autoworld {
    background: #222222;
    padding: 30px 50px;
}

/*.arrow-up {
  content: "";
  font-size: smaller;
  margin: 5px;
  border-bottom: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-top: 0;
  border-left: 0.3em solid transparent;
}

.arrow-down {
  content: "";
  font-size: smaller;
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}
*/
/* END MEV OTHER CLASSES */

/* MOBILE */
@media (max-width: 788px) {
    .dropdown-link {
        margin: 16px 12px !important;
    }
    .text-center-mobile {
        text-align: center;
    }
    .pt-8px-mobile {
        padding-top: 8px;
    }
    .px-0-mobile {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }
    .px-1-mobile {
        padding-left: 30px !important;
        padding-right: 30px !important;
    }
    .mb-4-mobile {
        margin-bottom: 24px !important;
    }
    .text-sm-up {
        transform: scale(1.4) !important;
    }
    .center-menu {
        padding-top: 14vh;
    }
}

@media (max-width: 575px) {
    .center-mobile {
        text-align: center;
    }
    .mb-contact-mobile {
        margin-bottom: 76px !important;
    }
    .card-icon {
        line-height: 35px;
        width: 40px;
        height: 40px;
    }
    .card-icon:before {
        font-size: 20px !important;
    }
    .card-title-mobile {
        flex-grow: 1;
        padding-left: 24px;
        margin-bottom: 0px !important;
    }
    .card-icon-mobile {
        flex-shrink: 0;
        margin-bottom: 0px !important;
        /* margin-bottom: 24px; */
    }
    .card-title,
    .text-4 {
        font-weight: 500 !important;
    }
    .card-flex-mobile {
        display: flex;
        align-items: center;
        margin-bottom: 24px;
    }
    .contact-form-mobile {
        flex-direction: column;
    }
    .m-t-18-mobile {
        margin-top: 18px;
    }
}

@media (min-width: 788px) {
    .text-md-up {
        transform: scale(1.2) !important;
    }
}

@media (min-width: 788px) {
    .text-md-up {
        transform: scale(1.2) !important;
    }
}

.language {
    font-weight: 500;
    position: fixed;
    display: flex;
    flex-direction: row;
    right: 0;
    bottom: 0;
}
.language .active {
    text-decoration: underline;
    text-decoration-color: var(--primary-mev);
    text-decoration-thickness: 1px;
    text-underline-offset: 8px;
}
@media (max-width: 991px) {
    .sidenav {
        width: 70%;
        height: 62%;
    }
    #navigation {
        height: 0;
        overflow: hidden;
        transition: height 0.2s linear;
    }
    #navigation.show {
        height: calc(100vh - 60px);
        .language {
            bottom: 0;
            opacity: 1;
        }
    }
    .language {
        flex-direction: column !important;
        bottom: 300px;
        right: 16px;
        font-weight: 700;
        opacity: 0;
        transition: all 0.3s ease-in-out;
    }
}

html {
    scroll-padding-top: 90px; /* Adjust value based on your header height */
}
  
.highlight {
    color: var(--primary-mev);
}

.highlight-scroll {
    background-color: var(--primary-mev);
    color: #fff;
}

.btn-secondary {
    background: #e8ecef !important;
    border-color: #e8ecef !important;
    color: #000;
}

.btn-secondary:hover {
    background: #dee2e5 !important;
    border-color: #dee2e5 !important;
    color: #000 !important;
}

/* Style for the image in normal state */
.fullscreen-image {
    cursor: pointer;
}

/* The modal (background) */
.fullscreen-modal {
    display: none; 
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    overflow: auto;
    justify-content: center;
    align-items: center;
}

/* Modal content (the image) */
.modal-content {
    max-width: 90%;
    max-height: 90%;
    height: 80vh;
    width: auto;
    object-fit: contain;
    display: block;
    margin: auto;
}

/* Close button (X) */
.close-btn {
    padding: 13px 30px;
    position: absolute;
    top: 0;
    right: 0;
    font-size: 36px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    background-color: transparent;
    border: none;
}

/* Close button hover effect */
.close-btn:hover {
    color: #f44336;
}

@media (max-width: 787px) {
    .modal-content {
        height: unset;
    }
}