@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Outfit:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: auto;
}
/*html, body {
    background-color: #050048;
}*/
body {
    overscroll-behavior: none;
}
@supports (-webkit-touch-callout: none) {
    .parallax { background-attachment: scroll !important; }
}
:root{
    /*--primary: #00b0b9!important;*/
    --primary: #050048!important;
    --secondary:#fff101!important;
    --tercial: #212529!important;
    --bgColor:#ffffff!important;
    --sectionPadding:6rem;
    --main_font:"Titillium Web", sans-serif;
}
::-webkit-scrollbar {
    width: 15px;
    height: 15px;
    background: #151d29;
    box-shadow: 2px 2px 20px #2e394d inset;
}
::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 0px;
    box-shadow: 0px 1px 40px rgba(243, 248, 251, 0.5);
    transition: background 0.3s, box-shadow 0.3s;
}
* {
    scrollbar-width: thin;
    scrollbar-color: var(--secondary) #151d29;
}
.sectionTitle h2, .sectionTitle h1{
    font-family: var(--main_font);
    font-size: 3rem;
}
.title_dark h2, .title_dark h1{
    text-shadow: 10px 10px 50px #3286ffa8;
    color: white;
}
.title_light h2, .title_light h1 {
    text-shadow: 12px 12px 20px #5e9fff73;
}
.title_dark span{
    color: var(--primary);
}
.title_light span{
    color: var(--primary);
}
.sectionParagraph p,.sectionParagraph ul li, .sectionParagraph ol li{
    font-family: var(--main_font);
    font-size: 1.4rem;
    margin-top: 25px;
    margin-bottom: 25px;
    opacity: 0.8;
    font-weight: 400;
}
.sectionParagraph p a,.sectionParagraph ul li a, .sectionParagraph ol li a{
    color: var(--primary);
    text-decoration: none;
}
.paragraph_pc{
    display: block;
}
.paragraph_phone{
    display: none;
}
.callToActionButton a {
    color: var(--primary);
    text-decoration: none;
    border: 3px solid var(--primary);
    padding: 15px 25px;
    border-radius: 10px;
    /* font-size: 18px; */
    font-family: var(--main_font);
    text-transform: uppercase;
    transition: 500ms;
}
.callToActionButton a:hover{
    background: var(--secondary);
    color: var(--primary);
}
.myButton a{
    background: var(--primary);
    z-index: 999;
    color: var(--bgColor);
    box-shadow: 0px 5px 12px #0000006e;
    display: none;
}
.myButton a:hover{
    background: var(--primary);
}
.back-to-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: none;
}
#flash1, #flash2{
    display: none;
    position: fixed;
    right: 0;
    z-index: 999;
    bottom: 20%;
    background: var(--primary);
    padding: 25px;
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
    box-shadow: 2px 2px 15px black;
}
.sectionTitle h2{
    font-size: 62px;
    text-align: center;
    font-family: var(--main_font);
    color: var(--primary);
}
@media only screen and (max-width: 991px) {
    :root{
        --sectionPadding:4rem;
    }
    .paragraph_pc{
        display: none;
    }
    .paragraph_phone{
        display: block;
    }
    .myReverse{
        flex-direction: column-reverse;
    }
}
@media only screen and (max-width: 760px) {
    :root{
        --sectionPadding:3rem;
    }
}
@media only screen and (max-width: 425px) {
    :root{
        --sectionPadding:1.6rem;
    }
    /*.section{
        padding-top: 50px!important;
        padding-bottom: 50px!important;
    }*/
    .cta-button{
        display: block!important;
        margin-bottom: 15px!important;
        left: 0!important;
        right: 0!important;
        margin-left: auto!important;
        margin-right: auto!important;
        text-align: center!important;
    }
}
@media only screen and (max-width: 320px) {
    .sectionTitle h2, .sectionTitle h1 {
        font-size: 2.2rem;
    }
}

/*=======================================================NAVBAR=======================================================*/
.navbar {
    background: var(--primary);
    font-family: var(--main_font);
    padding: 0;
    box-shadow: 2px 2px 12px black;
    position: relative;
    padding: 10px;
}
.navbar.scrolled {
    box-shadow: 0 5px 25px #62626278;
    font-family: var(--main_font);
    background: linear-gradient(45deg, #0b090c, #1c1b1b, #1a1717);
}
.navbar-nav{
    margin-left: auto;
}
.navbar-brand img {
    width: 250px;
    transition: all 1s ease-in-out;
}
.logo_container img {
    transition: opacity 0.3s ease;
    min-height: 100px;
    padding: 10px;
}
.logo_container {
    background: var(--primary);
    position: absolute;
    clip-path: polygon(0 0, 100% 0, 88% 100%, 12% 100%);
    min-width: 350px;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 2px 12px black;
    z-index: 999;
}
.navbar-brand svg{
    width: 250px;
    padding-top: 5px;
    padding-bottom: 5px;
}
.navbar-brand .st0{
    fill:var(--primary);
}
.navbar-brand .st1{
    fill:#FFFFFF;
    stroke:#FFFFFF;
    stroke-width:1.4173;
    stroke-miterlimit:10;
}
.navbar .nav-link {
    color: var(--bgColor)!important;
    font-size: 18px;
    margin-left: 5px;
    margin-right: 5px;
    font-family: var(--main_font);
}
.navbar .nav-link img{
    width: 25px;
}
.navbar .nav-link i{
    color: var(--bgColor);
}
.navbar .nav-link i:hover{
    color: var(--secondary);
}
.navbar .nav-link:hover{
    color: var(--secondary)!important;
}
.navbar .social_icon .nav-link{
    text-transform: none!important;
}
.navbar .social_icon .nav-link:hover{
    color: var(--primary)!important;
}
.navbar .social_icon i{
    color: var(--primary);
}
.navbar .nav-link:hover{
    color: var(--primary);
}
.navbar_flags{
    display: flex;
}
.navbar .navbar_flags img {
    width: 25px;
}
.navbar .headerActive{
    color: var(--secondary)!important;
    background: transparent!important;
}
.dropdown-item:focus, .dropdown-item:hover {
    color: var(--tercial);
    background-color: var(--primary);
}
.navbar-collapse.show{
    height: 100vh;
    padding-top: 50px;
}
.navbar .dropdown-menu{
    background: var(--primary);
}
.navbar .dropdown-item {
    color: var(--bgColor);
}
.navbar .dropdown-item:hover {
    color: var(--secondary);
}
.navbar .headerCallToAction a {
    padding: 12px 25px !important;
    color: var(--bgColor);
    text-decoration: none;
    text-transform: uppercase;
    border: 2px solid var(--primary);
    border-radius: 5px;
    transition: 500ms;
}
.navbar .headerCallToAction a:hover{
    background: var(--primary);
}
.navbar .headerCallToAction i {
    padding-right: 5px;
}
.navbar.scrolled img {
    width: 250px;
    transition: opacity 0.3s ease;
}
.social-icons {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    z-index: 990;
}

.social-icons a {
    background-color: var(--primary);
    color: white;
    text-align: center;
    padding: 10px;
    margin: 5px 0;
    border-radius: 5px 0 0 5px;
    text-decoration: none;
    font-size: 24px;
    transition: background-color 0.3s;
    filter: drop-shadow(2px 4px 6px black);
}

/* Hover efekt na ikony */
.social-icons a:hover {
    background-color: var(--secondary);
    transform: scale(1.2);
    color: var(--primary);
}

.header_language {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
}
.header_language li {
    list-style: none;
}
.header_language .nav-link {
    padding-left: 5px;
    padding-right: 5px;
    margin: 0 !important;
}
.header_language img {
    width: 40px;
}
.navbar-collapse.show{
    height: 100vh;
}
#bottom_navbar_section {
    position: sticky;
    top: 0;            /* nebo top: 70px; pokud máš nahoře ještě jiný fixed header */
    z-index: 998;
}
#bottom_navbar_section .navbar-brand img{
    width: 150px;
}
/* ===== Multi-level dropdown only for bottom navbar ===== */
#bottom_navbar_section .dropdown-submenu {
    position: relative;
}
#bottom_navbar_section .dropdown-submenu > .dropdown-menu {
    position: absolute;
    top: 0;
    left: 100%;
    margin-left: 5px;
    margin-top: -4px;
}
#bottom_navbar_section .dropdown-submenu > .dropdown-item::after {
    content: "";
    float: right;
    font-size: 14px;
}
#bottom_navbar_section .dropdown-menu.show {
    display: block;
}
@media (min-width: 992px) {
    #bottom_navbar_section .dropdown-submenu:hover > .dropdown-menu {
        display: block;
    }
}
@media (max-width: 991px) {
    #bottom_navbar_section .dropdown-submenu > .dropdown-menu {
        position: static;
        margin-left: 0;
        margin-top: 0;
    }
    #bottom_navbar_section .dropdown-submenu > .dropdown-item::after {
        content: "";
    }
}

@media only screen and (max-width: 1400px){
    .navbar .social_icon{
        display: none;
    }
}
@media only screen and (max-width: 1199px) {
    .navbar-brand img {
        width: 200px;
    }
    .navbar_flags {
        display: block;
    }
}
@media only screen and (max-width: 991px) {
    .logo_container {
        background: unset;
        position: relative;
        clip-path: unset;
        min-width: unset;
        width: auto;
        left: 0;
        top: 0;
        box-shadow: unset;
    }
    .navbar .nav-link {
        margin-left: auto;
        margin-right: auto;
        left: 0;
        right: 0;
        text-align: center;
        font-size: 20px;
        margin-top: 15px;
    }
    .navbar.navbartop .nav-link {
        margin-top: 10px;
        margin-left: 5px !important;
        margin-right: 5px !important;
    }
    .navbar .callToActionButton {
        text-align: center;
        font-size: 18px;
        padding-top: 25px;
    }
    .navbar-nav {
        margin-top: 0;
    }
    .navbar .dropdown-menu {
        background: transparent;
    }
    .navbar .dropdown-item {
        color: var(--bgColor);
        font-size: 22px;
        text-align: center;
        margin-bottom: 15px;
    }
    .navbar img{
        width: 200px;
    }
}

@media only screen and (max-width: 500px){
    .navbar img {
        width: 200px;
    }
    .social_nav{
        display: none;
    }
}
@media only screen and (max-width: 425px) {
    .social-icons {
        display: none;
    }

}
@media only screen and (max-width: 375px) {
    .navbar-brand img {
        width: 160px;
    }
}
/*=======================================================NAVBAR=======================================================*/

/*===================================================HEADER SECTION===================================================*/
#header_section {
    background-image: url("../img/header_bg_01.webp");
    box-shadow: inset 0 0 0 2000px #050048b8;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 75vh;
    height: auto;
    display: flex;
    align-items: center;
    padding: var(--sectionPadding);
    background-color: var(--primary);
    position: relative;
    background-attachment: fixed;
}
#header_section h1{
    color: var(--bgColor);
    font-size: 62px;
}
#header_section h1 span{
    color: var(--secondary);
}
#header_section p {
    color: var(--bgColor);
    font-family: var(--main_font);
    font-size: 22px;
}
.header_section_scroll_icon {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 25px;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    z-index: 999;
}

.scroll-icon {
    display: block;
    position: relative;
    height: 3em;
    width: 1.5em;
    border: .15em solid var(--secondary);
    border-radius: 1em;
}
.page-wrap {
    display: flex;
    height: 100vh;
}
.scroll-icon__wheel-outer {
    display: block;
    position: absolute;
    left: 50%;
    top: .6em;
    height: 1em;
    width: .4em;
    margin-left: -.2em;
    border-radius: .4em;
    overflow: hidden;
}

.scroll-icon__wheel-inner {
    display: block;
    height: 100%;
    width: 100%;
    border-radius: inherit;
    background: var(--bgColor);
    animation: scroll_1 2.75s ease-in-out infinite;
}
#header_section .phone_only{
    display: none;
}
#header_section .callToActionButton a{
    color: var(--bgColor);
    border-color: var(--secondary);
}
#header_section .callToActionButton a:hover{
    color: var(--bgColor);
    background: var(--primary);
}
@keyframes scroll_1 {
    0%   { transform: translateY(0); }
    25%  { transform: translateY(-0.6em); }
    50%  { transform: translateY(0); }
    75%  { transform: translateY(0.6em); }
    100% { transform: translateY(0); }
}

@media only screen and (max-width: 425px) {
    #header_section h1 {
        font-size: 48px;
    }
}
/*===================================================HEADER SECTION===================================================*/

/*====================================================OUR PRODUCTS====================================================*/
#our_products{
    padding: var(--sectionPadding);
    background-image: url("../img/page_bg.svg");
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}
#our_products img{
    width: 100%;
}
#our_products .product_box{
    text-align: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
}
#our_products .product_box:hover img{
    transform: scale(1.1);
}
#our_products .product_box p{
    color: var(--primary);
    font-family: var(--main_font);
    padding-top: 25px;
    font-size: 38px;
}
/*====================================================OUR PRODUCTS====================================================*/

/*===================================================TEXTURE DETAIL===================================================*/
#texture_detail {
    padding: var(--sectionPadding);
    background: var(--primary);
    background-image: url("../img/materials/materials-bg.webp");
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    box-shadow: inset 0 0 0 2000px #050048de;
    border-top: 3px solid var(--secondary);
    border-bottom: 3px solid var(--secondary);
}
#texture_detail .sectionTitle h2{
    color: var(--bgColor);
    padding-bottom: 50px;
}
#texture_detail img{
    width: 100%;
    transition: opacity 0.3s ease;
}
#texture_detail img:hover{
    transform: scale(1.1);
}
#texture_detail .texture_box{
    text-align: center;
}
#texture_detail .texture_box p{
    color: var(--secondary);
    font-family: var(--main_font);
    padding-top: 25px;
    font-size: 32px;
}
#texture_detail .texture_box p span{
    color: var(--bgColor);
}
/*===================================================TEXTURE DETAIL===================================================*/

/*======================================================REFERENCE======================================================*/
#reference{
    padding: var(--sectionPadding);
    background-image: url("../img/page_bg.svg");
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}
#reference .reference_box img {
    width: 70%;
    text-align: center;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    display: block;
}
#reference .reference_box{
    display: block;
    text-decoration: none;
    text-align: center;
    margin-top: 50px;
}
#reference .reference_box p{
    color: var(--primary);
    font-family: var(--main_font);
    padding-top: 25px;
    font-size: 28px;
}
@media only screen and (max-width: 425px) {
    #reference .callToActionButton a{
        display: block;
        margin-bottom: 25px;
    }
}
/*======================================================REFERENCE======================================================*/

/*============================================CONTACT SECTION=========================================================*/
#contact_section{
    position: relative;
    overflow: hidden;
    padding: var(--sectionPadding);
    background: var(--primary);
    color: var(--bgColor);
    background-image: url("../img/contact.webp");
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    box-shadow: inset 0 0 0 2000px #050048de;
    border-top: 3px solid var(--secondary);
    border-bottom: 3px solid var(--secondary);
}
#contact_section .sectionTitle h2{
    text-align: left;
    color: var(--bgColor);
}
#contact_section .contact_grid{
    display: block;
}
#contact_section .contact_cards{
    margin-top: 22px;
    display: block;
}
#contact_section .contact_card{
    display:flex;
    align-items:center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 18px;
    box-shadow: 0 18px 55px rgba(33,37,41,.08);
    color: inherit;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    text-decoration:none;
    margin-bottom: 25px;
}
#contact_section .contact_card img{
    width: 50px;
}
#contact_section .contact_card.is-static{
    cursor: default;
}

#contact_section .contact_icon{
    width: 50px;
    height: 50px;
    border-radius: 50px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    color: #fff;
    background: linear-gradient(45deg, #94206c, #c23881);
    box-shadow: 0 18px 45px color-mix(in srgb, var(--accentColor) 20%, transparent);
}

#contact_section .contact_icon i{
    font-size: 16px;
}

#contact_section .contact_meta strong{
    display:block;
    letter-spacing: -0.01em;
    margin-bottom: 2px;
}

#contact_section .contact_meta span{
    display:block;
    line-height: 1.4;
}

#contact_section a.contact_card:hover{
    transform: translateY(-3px);
    border-color: color-mix(in srgb, var(--primary) 24%, transparent);
    box-shadow: 0 26px 75px rgba(33,37,41,.12);
}

/* Note */
#contact_section .contact_note{
    margin-top: 18px;
    max-width: 520px;
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px dashed color-mix(in srgb, var(--primary) 28%, transparent);
    background: color-mix(in srgb, #ffffff 70%, transparent);
}

#contact_section .contact_note p{
    margin: 10px 0 0;
    line-height: 1.65;
}

#contact_section .contact_badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding: 7px 12px;
    border-radius: 999px;
    font-weight: 850;
    font-size: 12px;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--accentColor));
}
#contact_section .contact_panel {
    border-radius: 24px;
    padding: 25px;
    position: relative;
    overflow: hidden;
}
/* Form */
#contact_section .contact_form{
    position: relative;
    z-index: 1;
}

#contact_section .form_row{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

#contact_section .form_field{
    margin-bottom: 14px;
}

#contact_section label{
    display:block;
    font-size: 14px;
    letter-spacing: .02em;
    margin: 0 0 8px;
    font-weight: 800;
    color: var(--bgColor);
}

#contact_section .form-control {
    width: 100%;
    padding: 12px 15px;
    background: var(--bgColor);
    color: var(--tercial);
    box-shadow: 0 18px 55px rgba(33, 37, 41, .08);
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease, background .2s ease;
    border-radius: 12px;
    border: none;
}
#contact_section .form-control::placeholder{
    color: var(--primary);
}

#contact_section .form-control:focus{
    outline: none;
    border-color: color-mix(in srgb, var(--primary) 35%, transparent);
    box-shadow: 0 16px 45px color-mix(in srgb, var(--primary) 14%, transparent);
    background: #fff;
}

#contact_section textarea.form-control{
    resize: vertical;
    min-height: 140px;
}

/* Actions */
#contact_section .form_actions{
    margin-top: 6px;
    display:grid;
    gap: 10px;
}
#contact_section button {
    color: var(--bgColor);
    text-decoration: none;
    padding: 15px 25px;
    border-radius: 5px;
    font-family: var(--main_font);
    text-transform: uppercase;
    transition: 500ms;
    background: linear-gradient(180deg, #fff101, #a69f1f);
    outline: none;
    border: unset;
}
#contact_section .btn_arrow{
    font-size: 18px;
    transform: translateY(-1px);
}

#contact_section .form_hint{
    margin: 0;
    font-size: 12.5px;
    line-height: 1.5;
    color: var(--bgColor);
}
#contact_section .myFormBottom{
    display: flex;
    align-items: center;
}
#contact_section .myFormBottom label{
    padding-left: 5px;
}
.myFormBottom a{
    color: var(--secondary)!important;
}
/* Responsive */
@media (max-width: 992px){
    #contact_section .contact_grid{
        grid-template-columns: 1fr;
    }
    #contact_section .contact_cards,
    #contact_section .contact_note{
        max-width: 100%;
    }
}

@media (max-width: 576px){
    #contact_section .form_row{
        grid-template-columns: 1fr;
    }
}

/*============================================CONTACT SECTION=========================================================*/

/*======================================================OPEN PAGE======================================================*/
#services_open_header {
    position: relative;
    min-height: 50vh;
    height: auto;
    background: var(--primary);
    display: flex;
    align-items: center;
    text-align: center;
    background-image: url("../img/header_bg_02.webp");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    box-shadow: inset 0 0 0 2000px #050048e0;
    border-bottom: 4px solid var(--secondary);
}
#services_open_header h1{
    color: var(--bgColor);
    font-size: 62px;
}
#services_open_header p{
    color: var(--bgColor);
    font-family: var(--main_font);
    font-size: 22px;
}
#services_open_content{
    padding: var(--sectionPadding);
    background-image: url("../img/page_bg.svg");
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}
#services_open_content img{
    width: 100%;
}
.soc_boxes a{
    text-align: center;
    text-decoration: none;
    color: var(--primary);
}
.soc_boxes a:hover img{
    transform: scale(1.2);
}
@media only screen and (max-width: 375px) {
    #services_open_header{
        padding-top: 50px;
        padding-bottom: 50px;
    }
}
/*======================================================OPEN PAGE======================================================*/
.product_section{
    padding: var(--sectionPadding);
    padding-top: 150px;
    background-image: url("../img/page_bg.svg");
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    min-height: 60vh;
    height: auto;
}

/*====================================================CONFIGURATOR====================================================*/
#service_configurator { padding: 30px 0 50px; }

.sc-hero {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background: #f7f7f7;
    min-height: 320px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}
.sc-hero-inner {
    position: relative;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sc-hero-inner::before{
    content:"";
    position:absolute;
    inset:0;
    background:
            radial-gradient(circle at 10% 20%, rgba(0,0,0,.04) 0 1px, transparent 2px) 0 0/40px 40px,
            linear-gradient(0deg, rgba(255,255,255,.92), rgba(255,255,255,.92));
    pointer-events:none;
}
.sc-brand {
    position: relative;
    text-align: center;
    /* transform: translate(-50%, -50%); */
    font-weight: 900;
    letter-spacing: .14em;
    font-size: clamp(28px, 6vw, 76px);
    color: #0b1154;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    display: block;
    margin-bottom: 50px;
}
.sc-desc{
    font-family: var(--main_font);
    font-size: 1.4rem;
    margin-top: 25px;
    margin-bottom: 25px;
    opacity: 0.8;
    font-weight: 400;
}
.sc-bike{
    position: relative;
    z-index: 3;
    max-width: 92%;
    height: auto;
    filter: drop-shadow(0 16px 20px rgba(0,0,0,.18));
}

.sc-diagonal{
    position:absolute;
    width: 160%;
    height: 4px;
    background: #ffd500;
    transform: rotate(-58deg);
    left: -30%;
    top: 52%;
    z-index: 4;
    box-shadow: 0 0 0 2px rgba(255,213,0,.15);
}

.sc-label{
    font-size: 11px;
    letter-spacing: .12em;
    color: rgba(0,0,0,.45);
    margin-bottom: 6px;
    text-transform: uppercase;
}
.sc-link{
    font-size: 12px;
    color: #0b1154;
    text-decoration: underline;
    white-space: nowrap;
}
.sc-link:hover{ text-decoration: none; }

.sc-input,
.sc-textarea,.sc-select{
    border-radius: 0;
    border: 1px solid rgba(0,0,0,.18);
    box-shadow: 0 6px 14px rgba(0,0,0,.06);
    background: #fff;
    padding: 14px 16px;
}

.sc-textarea{ resize: vertical; min-height: 120px; }

.sc-btn{
    border-radius: 0;
    background: #0b1154;
    color: #fff;
    padding: 14px 16px;
    font-weight: 700;
    letter-spacing: .06em;
    border: 0;
}
.sc-btn:disabled{ opacity: .6; cursor: not-allowed; }
.sc-btn:hover{ background: #070c3d; color:#fff; }

.sc-btn-secondary{
    border-radius: 0;
    background: #ffffff;
    color: #0b1154;
    padding: 12px 16px;
    font-weight: 700;
    letter-spacing: .06em;
    border: 1px solid rgba(11,17,84,.35);
    box-shadow: 0 6px 14px rgba(0,0,0,.06);
}
.sc-btn-secondary:disabled{ opacity: .6; cursor: not-allowed; }
.sc-btn-secondary:hover{ background: #f6f7ff; color:#0b1154; }

.sc-price{
    min-width: 120px;
    text-align: right;
    line-height: 1;
    padding-bottom: 6px;
    white-space: nowrap;
}
.sc-price-value{
    font-size: 22px;
    font-weight: 900;
    color: #0b1154;
}
.sc-price-currency{
    font-size: 14px;
    font-weight: 800;
    color: #0b1154;
    margin-left: 6px;
}

.sc-help{
    font-size: 12px;
    color: rgba(0,0,0,.55);
}
/*====================================================CONFIGURATOR====================================================*/

/*========================================================FAQ========================================================*/
#faq {
    padding: var(--sectionPadding);
    background-image: url("../img/page_bg.svg");
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}

#faq .sectionTitle h2{
    padding-bottom: 50px;
    color: var(--tercial);
}
#faq .accordion {
    background: var(--primary);
    color: var(--bgColor);
    cursor: pointer;
    padding: 15px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    margin-bottom: 25px;
    font-size: 18px;
}
/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
#faq .active, #faq .accordion:hover {
    background: var(--secondary);
    color: var(--primary);
    font-weight: 600;
}
/* Style the accordion panel. Note: hidden by default */
#faq .panel {
    padding: 0 18px;
    display: none;
    overflow: hidden;
    color: var(--primary);
    font-family: var(--main_font);
    font-size: 18px;
    padding-bottom: 15px;
    text-align: left;
}
#faq .accordion:after {
    content: '+';
    font-size: 22px;
    font-weight: 600;
    font-family: var(--main_font);
    color: var(--bgColor);
    float: right;
    margin-left: 5px;
}
#faq .active:after {
    content: "-"; /* Unicode character for "minus" sign (-) */
}
#faq .active:after, #faq .accordion:hover:after {
    color: var(--bgColor);
}
#faq p a{
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}
#faq p a:hover{
    color: var(--secondary);
}
#faq h3{
    color: var(--primary);
}
@media only screen and (max-width: 1199px) {
    #faq .accordion{
        transition: unset;
    }
}
@media only screen and (max-width: 768px) {
    #faq .callToActionButton a{
        display: block;
        margin-bottom: 25px;
    }
}
@media only screen and (max-width: 425px) {
    #faq{
        padding-bottom: 50px;
    }
    #faq .panel{
        text-align: left;
    }
}
/*========================================================FAQ========================================================*/

/*===================================================CUSTOME GRAPHIC===================================================*/
#custom_graphic_header {
    background: linear-gradient(135deg, #0a0733 0%, #0b0470 100%);
    color: #fff;
    padding: var(--sectionPadding);
    position: relative;
    min-height: 580px;
    height: auto;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    box-shadow: inset 0 0 0 2000px #050048b3;
    border-bottom: 4px solid var(--secondary);
}
.graphic-page{
    background-image: url("../img/header-bg/grafika.webp")!important;
}
.support-page{
    background-image: url("../img/header-bg/podpora.webp")!important;
}
.gallery-page{
    background-image: url("../img/header-bg/gallery.webp")!important;
}
.contact-page{
    background-image: url("../img/header-bg/contact.webp")!important;
}
#custom_graphic_header h1{
    color: var(--bgColor);
    font-size: 62px;
}
#custom_graphic_header p{
    color: var(--bgColor);
    font-family: var(--main_font);
    font-size: 22px;
}
.custome_graphic {
    padding: var(--sectionPadding);
    background-image: url("../img/page_bg.svg");
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    box-shadow: inset 0 0 0 2000px #ffffff8c;
}
.custome_graphic h2{
    font-size: 62px;
    font-family: var(--main_font);
    color: var(--primary);
    margin-bottom: 50px;
}
.custome_graphic .checkboxRow{
    display: flex;
    align-items: center;
    flex-direction: unset !important;
}
.custome_graphic .checkboxRow input {
    margin-bottom: 0!important;
    width: 25px;
    height: 25px;
    margin-right: 10px;
}

.custome_graphic .form{
    margin-top: 2rem;
}

.custome_graphic .formGrid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (max-width: 640px){
    .custome_graphic .formGrid{
        grid-template-columns: 1fr;
    }
}

.custome_graphic .formField{
    display: flex;
    flex-direction: column;
}

.custome_graphic .formField label,
.custome_graphic .formField legend{
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.35rem;
    color: var(--primary);
}

.custome_graphic .formField input,
.custome_graphic .formField select,
.custome_graphic .formField textarea{
    font-family: var(--main_font);
    padding: 0.65rem 0.75rem;
    border: 1px solid rgba(0,0,0,0.15);
    border-radius: 4px;
    font-size: 0.95rem;
    transition: border-color .2s, box-shadow .2s;
}

.custome_graphic .formField textarea{
    resize: vertical;
}

.custome_graphic .formField input:focus,
.custome_graphic .formField select:focus,
.custome_graphic .formField textarea:focus{
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(5,0,72,0.15);
}

/* ===== Radios & Checkbox ===== */

.custome_graphic .radioRow{
    display: flex;
    gap: 1.25rem;
}

.custome_graphic .radioRow label,
.custome_graphic .checkboxRow label{
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--tercial);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.custome_graphic .checkboxRow{
    margin-top: 1.5rem;
}

/* ===== Help text ===== */

.custome_graphic .helpText{
    font-size: 0.8rem;
    color: rgba(0,0,0,0.55);
    margin-top: 0.3rem;
}

/* ===== Actions ===== */

.custome_graphic .formActions{
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.custome_graphic .btn{
    font-family: var(--main_font);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.85rem 1.75rem;
    border-radius: 4px;
    cursor: pointer;
    border: none;
    transition: background .2s, color .2s, transform .1s;
    width: fit-content;
}

.custome_graphic .btn-primary{
    background: var(--secondary);
    color: #000;
}

.custome_graphic .btn-primary:hover{
    background: #e6da00;
    transform: translateY(-1px);
}

/* ===== Required indicator & validation ===== */

.custome_graphic label span[aria-hidden="true"]{
    color: #c00;
}

.custome_graphic input:required:invalid,
.custome_graphic textarea:required:invalid{
    border-color: #c00;
}

/*===================================================CUSTOME GRAPHIC===================================================*/

/*===================================================SECTION SUPPORT==================================================*/
#sectionSupport{
    padding: var(--sectionPadding);
    background-image: url("../img/page_bg.svg");
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}
#sectionSupport .support_box h2{
    font-size: 62px;
    font-family: var(--main_font);
    color: var(--primary);
    padding-top: 25px;
    padding-bottom: 25px;
    text-align: center;
}
#sectionSupport .support_box h3{
    font-size: 38px;
    font-family: var(--main_font);
    color: var(--primary);
    padding-top: 25px;
    padding-bottom: 25px;
}
#sectionSupport .support_box p,#sectionSupport .support_box ul li, #sectionSupport .support_box ol li{
    color: var(--primary);
    font-family: var(--main_font);
    font-size: 22px;
}
#sectionSupport .support_box small{
    color: var(--primary);
    font-family: var(--main_font);
}
#sectionSupport img {
    width: 100%;
    border-radius: 25px;
    border: 10px solid var(--primary);
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    display: block;
}
#sectionSupport .row{
    align-items: center;
}
#sectionSupport .row .col-xl{
    margin-top: 50px;
    margin-bottom: 50px;
}
/*===================================================SECTION SUPPORT==================================================*/

/*====================================================SECTION INNER===================================================*/
#section_inner{
    padding: var(--sectionPadding);
    background: var(--primary);
    text-align: center;
    border-top: 3px solid var(--secondary);
    border-bottom: 3px solid var(--secondary);
}
#section_inner h2{
    font-size: 62px;
    font-family: var(--main_font);
    color: var(--bgColor);
    padding-top: 25px;
    padding-bottom: 25px;
    text-align: center;
}
#section_inner p{
    color: var(--bgColor);
    font-family: var(--main_font);
    font-size: 22px;
    text-align: center;
    padding-top: 25px;
    padding-bottom: 50px;
}
#section_inner .callToActionButton a{
    background: var(--secondary);
    color: var(--primary);
}
.texture-detail-page{
    font-family: var(--main_font);
}
.texture-detail-page h3{
    color: var(--secondary);
    padding-top: 25px;
}
.texture-detail-page p, .texture-detail-page ul li{
    color: var(--bgColor);
    font-family: var(--main_font);
    font-size: 22px;
}
/*====================================================SECTION INNER===================================================*/

/*===================================================GALLERY INTRO===================================================*/
#gallery_intro_section{
    padding: var(--sectionPadding);
    background-image: url("../img/page_bg.svg");
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}

#gallery_intro_section .galleryIntroGrid{
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 48px;
    align-items: center;
}

#gallery_intro_section .sectionTitle h2{
    text-align: left;
    color: var(--primary);
    margin-bottom: 18px;
}

#gallery_intro_section .sectionParagraph p{
    color: var(--primary);
    max-width: 760px;
}

#gallery_intro_section .galleryIntroStats{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 34px;
}

#gallery_intro_section .galleryIntroStats div{
    padding: 22px 18px;
    background: var(--primary);
    border-bottom: 4px solid var(--secondary);
    border-radius: 10px;
    box-shadow: 0 18px 45px rgba(5,0,72,.18);
}

#gallery_intro_section .galleryIntroStats strong{
    display: block;
    color: var(--secondary);
    font-family: var(--main_font);
    font-size: 28px;
    line-height: 1;
}

#gallery_intro_section .galleryIntroStats span{
    display: block;
    color: var(--bgColor);
    font-family: var(--main_font);
    font-size: 17px;
    margin-top: 8px;
}

#gallery_intro_section .galleryIntroPanel{
    padding: 34px;
    background: var(--bgColor);
    border-radius: 14px;
    border: 1px solid rgba(5,0,72,.12);
    box-shadow: 0 24px 70px rgba(5,0,72,.14);
}

#gallery_intro_section .galleryIntroPanel h3{
    color: var(--primary);
    font-family: var(--main_font);
    font-size: 34px;
    margin-bottom: 22px;
}

#gallery_intro_section .galleryIntroPanel ul{
    padding-left: 20px;
    margin: 0;
}

#gallery_intro_section .galleryIntroPanel li{
    color: var(--primary);
    font-family: var(--main_font);
    font-size: 21px;
    margin-bottom: 14px;
}

@media only screen and (max-width: 991px){
    #gallery_intro_section .galleryIntroGrid{
        grid-template-columns: 1fr;
    }
}

@media only screen and (max-width: 575px){
    #gallery_intro_section .sectionTitle h2{
        font-size: 42px;
    }

    #gallery_intro_section .galleryIntroStats{
        grid-template-columns: 1fr;
    }

    #gallery_intro_section .galleryIntroPanel{
        padding: 26px 22px;
    }
}
/*===================================================GALLERY INTRO===================================================*/

/*===============================================GALLERY CATEGORIES================================================*/
#gallery_section .galleryCategories{
    display: grid;
    gap: 72px;
}

#gallery_section .galleryCategory{
    position: relative;
}

#gallery_section .galleryCategory:not(:last-child){
    padding-bottom: 72px;
    border-bottom: 1px solid rgba(255,255,255,.16);
}

#gallery_section .galleryCategoryHeader{
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 28px;
    align-items: end;
    margin-bottom: 28px;
}

#gallery_section .galleryCategoryHeader h3{
    color: var(--bgColor);
    font-family: var(--main_font);
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1;
    margin: 0 0 12px;
    text-shadow: 0 14px 55px rgba(50,134,255,.35);
}

#gallery_section .galleryCategoryHeader p{
    max-width: 780px;
    margin: 0;
    color: rgba(255,255,255,.86);
    font-family: var(--main_font);
    font-size: 21px;
    line-height: 1.38;
}

#gallery_section .galleryCategoryHeader span{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    padding: 11px 18px;
    border-radius: 999px;
    border: 2px solid rgba(255,241,1,.7);
    color: var(--secondary);
    font-family: var(--main_font);
    font-size: 16px;
    white-space: nowrap;
}

#gallery_section .galleryEmpty{
    color: var(--bgColor);
    font-family: var(--main_font);
    font-size: 22px;
    text-align: center;
    margin: 0;
}

#gallery_section .galleryHiddenLinks{
    display: none;
}

#gallery_section .galleryCategory .galleryActions{
    margin-top: 30px;
}

@media only screen and (max-width: 991px){
    #gallery_section .galleryCategories{
        gap: 56px;
    }

    #gallery_section .galleryCategory:not(:last-child){
        padding-bottom: 56px;
    }

    #gallery_section .galleryCategoryHeader{
        grid-template-columns: 1fr;
        align-items: start;
    }

    #gallery_section .galleryCategoryHeader span{
        width: fit-content;
    }
}

@media only screen and (max-width: 575px){
    #gallery_section .galleryCategories{
        gap: 44px;
    }

    #gallery_section .galleryCategory:not(:last-child){
        padding-bottom: 44px;
    }

    #gallery_section .galleryCategoryHeader p{
        font-size: 18px;
    }
}
/*===============================================GALLERY CATEGORIES================================================*/


/*=======================================================GALLERY======================================================*/
#gallery_section{
    position: relative;
    overflow: hidden;
    padding: var(--sectionPadding);
    background:
            radial-gradient(circle at 18% 20%, rgba(50,134,255,.28), transparent 28%),
            radial-gradient(circle at 78% 66%, rgba(50,134,255,.18), transparent 30%),
            linear-gradient(180deg, #050048 0%, #050048 48%, #07005d 100%);
    color: var(--bgColor);
    border-top: 3px solid var(--secondary);
    border-bottom: 3px solid var(--secondary);
}
#gallery_section::before,
#gallery_section::after{
    content: "";
    position: absolute;
    pointer-events: none;
    opacity: .08;
    background-repeat: no-repeat;
    background-size: contain;
}
#gallery_section::before{
    left: -2%;
    top: 24px;
    width: 430px;
    height: 170px;
    background-image: url("../img/logo.svg");
    filter: brightness(0) invert(1);
}
#gallery_section::after{
    right: 8%;
    top: 82px;
    content: "RIDE\A WITH STYLE";
    white-space: pre;
    font-family: var(--main_font);
    font-weight: 900;
    font-style: italic;
    font-size: clamp(34px, 5vw, 70px);
    line-height: .9;
    color: var(--bgColor);
    letter-spacing: .05em;
}
#gallery_section .container-sm{
    position: relative;
    z-index: 1;
}
#gallery_section .sectionTitle h2{
    color: var(--bgColor);
    margin-bottom: 12px;
    text-shadow: 0 14px 55px rgba(50,134,255,.45);
}
#gallery_section .sectionTitle .lead{
    max-width: 720px;
    margin: 0 auto 48px;
    color: rgba(255,255,255,.92);
    font-family: var(--main_font);
    font-size: 22px;
    line-height: 1.35;
    font-weight: 600;
}
#gallery_section .sectionTitle .lead span{
    color: var(--secondary);
}
#gallery_section .galleryGrid{
    display: grid;
    grid-template-columns: 1.05fr .95fr 1.05fr .95fr;
    grid-auto-rows: 235px;
    gap: 14px;
}
#gallery_section .galleryItem{
    position: relative;
    display: block;
    overflow: hidden;
    min-height: 100%;
    border-radius: 7px;
    border: 1px solid rgba(255,255,255,.38);
    background: rgba(255,255,255,.06);
    box-shadow: 0 20px 55px rgba(0,0,0,.28);
    text-decoration: none;
}
#gallery_section .galleryItem.is-large{
    grid-row: span 2;
}
#gallery_section .galleryItem.is-hidden{
    display: none;
}
#gallery_section .galleryItem img{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .35s ease, filter .35s ease;
}
#gallery_section .galleryItem::before{
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(5,0,72,.05), rgba(5,0,72,.48));
    opacity: .78;
    transition: opacity .25s ease;
}
#gallery_section .galleryItem::after{
    content: "+";
    position: absolute;
    left: 28px;
    bottom: 28px;
    z-index: 2;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    border: 2px solid var(--secondary);
    border-radius: 999px;
    font-family: var(--main_font);
    font-size: 28px;
    line-height: 1;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .25s ease, transform .25s ease;
}
#gallery_section .galleryItem:hover img{
    transform: scale(1.055);
    filter: saturate(1.08) contrast(1.05);
}
#gallery_section .galleryItem:hover::before{
    opacity: .95;
}
#gallery_section .galleryItem:hover::after,
#gallery_section .galleryItem:focus-visible::after{
    opacity: 1;
    transform: translateY(0);
}
#gallery_section .galleryActions{
    margin-top: 34px;
    text-align: center;
}
#gallery_section .galleryLoadMore{
    min-width: 300px;
    padding: 16px 38px;
    border: 3px solid var(--secondary);
    border-radius: 8px;
    background: transparent;
    color: var(--bgColor);
    font-family: var(--main_font);
    font-size: 18px;
    text-transform: uppercase;
    transition: background .25s ease, color .25s ease, transform .25s ease, box-shadow .25s ease;
}
#gallery_section .galleryLoadMore:hover{
    background: var(--secondary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(255,241,1,.18);
}
.galleryLightbox{
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 28px;
    background: rgba(5,0,72,.92);
}
.galleryLightbox.is-open{
    display: flex;
}
.galleryLightbox img{
    max-width: min(1120px, 92vw);
    max-height: 86vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 35px 100px rgba(0,0,0,.65);
}
.galleryLightbox button{
    position: absolute;
    top: 24px;
    right: 28px;
    width: 46px;
    height: 46px;
    border-radius: 999px;
    border: 2px solid var(--secondary);
    background: var(--primary);
    color: var(--bgColor);
    font-size: 30px;
    line-height: 1;
}
@media only screen and (max-width: 1199px){
    #gallery_section .galleryGrid{
        grid-template-columns: repeat(3, 1fr);
    }
}
@media only screen and (max-width: 991px){
    #gallery_section .galleryGrid{
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 220px;
    }
    #gallery_section::before,
    #gallery_section::after{
        display: none;
    }
}
@media only screen and (max-width: 575px){
    #gallery_section .sectionTitle h2{
        font-size: 46px;
    }
    #gallery_section .sectionTitle .lead{
        font-size: 18px;
        margin-bottom: 30px;
    }
    #gallery_section .galleryGrid{
        grid-template-columns: 1fr;
        grid-auto-rows: 260px;
    }
    #gallery_section .galleryItem.is-large{
        grid-row: span 1;
    }
    #gallery_section .galleryLoadMore{
        width: 100%;
        min-width: unset;
    }
}
/*=======================================================GALLERY======================================================*/

/*=======================================================CONTACT======================================================*/
#contact_intro_section{
    padding: var(--sectionPadding);
    background-image: url("../img/page_bg.svg");
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}
#contact_intro_section h3 {
    font-size: 38px;
    font-family: var(--main_font);
    color: var(--primary);
    padding-top: 25px;
    padding-bottom: 25px;
}
#contact_intro_section p{
    color: var(--primary);
    font-family: var(--main_font);
    font-size: 22px;
}
/*=======================================================CONTACT======================================================*/

/*=======================================================FOOTER=======================================================*/
#footer {
    padding: var(--sectionPadding);
    padding-bottom: 0;
    font-family: var(--main_font);
    position: relative;
    background: var(--primary);
    z-index: 992;
    border-top: 3px solid var(--secondary);
}
#footer .row{
    align-items: center;
}
#footer img {
    width: 300px;
    padding-bottom: 25px;
    text-align: center;
    display: block;
    left: 0;
    /* right: 0; */
    /* margin-left: auto; */
    margin-right: auto;
}
.footer_left{
    width: 80%;
    text-align: left;
    display: block;
}
.footer_left p {
    color: var(--bgColor);
    text-align: left;
    font-size: 18px;
    margin-bottom: 50px;
}
.footer_left .call_to_action_button{
    padding-top: 25px;
}
.contact_content h2{
    font-size: 22px;
    margin-bottom: 25px;
    font-weight: 600;
    color: var(--secondary);
}
.contact_content ul{
    padding: 0;
}
.contact_content ul li{
    list-style: none;
    margin-bottom: 15px;
}
.contact_content ul li a {
    text-decoration: none;
    color: var(--bgColor);
    font-size: 18px;
    font-family: var(--main_font);
    padding-top: 5px;
    padding-bottom: 5px;
    display: block;
}
.contact_content ul li a:hover{
    color: var(--secondary);
}
.final_footer{
    display: flex;
    align-items: center;
    padding-top: 15px;
    padding-bottom: 15px;
    color: var(--bgColor);
}
.final_footer .final_footer_left{
    margin-right: auto;
    text-align: left;
}
.final_footer .final_footer_right{
    margin-left: auto;
    text-align: right;
}
.footer_content{
    padding-bottom: 25px;
}
.final_footer a{
    color: var(--secondary);
    text-decoration: none;
}
#footer hr:not([size]) {
    height: 1px;
    color: var(--bgColor);
}
#footer .callToActionButton{
    margin-bottom: 50px;
}
#footer .callToActionButton a{
    background: var(--secondary);
    color: var(--primary);
}
.footer_soc_icon{
    padding-top: 25px;
}
.footer_soc_icon i{
    color: var(--bgColor);
    font-size: 42px;
}
.footer_soc_icon i:hover{
    color: var(--secondary);
}
@media only screen and (max-width: 1199px) {
    .footer_content h2{
        margin-top: 15px;
        margin-bottom: 15px;
    }
}
@media only screen and (max-width: 991px) {
    .footer_left{
        width: 100%;
        display: block;
        text-align: center;
    }
    #footer img{
        width: 100%;
    }
    .footer_soc_icon .col-xl{
        width: 50px;
    }
}
@media only screen and (max-width: 455px){
    .footer_left {
        width: 100%;
    }
    .final_footer {
        display: block;
        text-align: center;
    }
    .final_footer .final_footer_left {
        margin-right: auto;
        margin-left: auto;
        text-align: center;
    }
    .final_footer .final_footer_right {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }
    .footer_left .callToActionButton{
        padding-bottom: 25px;
    }
    .footer_left p{
        text-align: left;
    }
    #footer .callToActionButton a{
        display: block;
    }
}
/*=======================================================FOOTER=======================================================*/
#addToCartModal .btn-primary{
    border-radius: 0;
    background: #0b1154;
    color: #fff;
    padding: 14px 16px;
    font-weight: 700;
    letter-spacing: .06em;
    border: 0;
}
#addToCartModal .btn-outline-secondary {
    border-radius: 0;
    background: var(--bgColor);
    color: var(--primary);
    padding: 10px 16px;
    font-weight: 700;
    letter-spacing: .06em;
    border: 3px solid var(--primary);
}
#addToCartModal .modal-title{
    font-family: var(--main_font);
    font-size: 22px;
    color: var(--primary);
}
#addToCartModal .modal-body{
    font-family: var(--main_font);
    font-size: 1rem;
    margin-top: 25px;
    margin-bottom: 25px;
    opacity: 0.8;
    font-weight: 400;
    text-align: center;
}
.btn-outline-danger{
    border-radius: 0;
    padding: 10px 16px;
    font-weight: 700;
    letter-spacing: .06em;
    background: #dc3545;
    color: var(--bgColor);
}
.alert{
    font-family: var(--main_font);
    font-size: 1rem;
    margin-top: 25px;
    margin-bottom: 25px;
    opacity: 0.8;
    font-weight: 400;
}
.alert-warning {
    --bs-alert-bg: #ffc107bf;
    --bs-alert-border-color: #ffc107;
}

/*==========================================================CALL TO ACTION FORM=======================================*/
.form-popup {
    display: none;
    position: fixed;
    bottom: 0;
    right: 0;
    border: 2px solid var(--secondary);
    z-index: 999;
    box-shadow: 5px 5px 25px #00000078;
    border-bottom: none;
    border-right: none;
}
.form-container {
    max-width: 300px;
    padding: 15px;
    background-color: var(--primary);
}
.form-container label {
    color: var(--bgColor);
    font-family: var(--main_font);
}
.form-container input, .form-container textarea {
    width: 100%;
    padding: 15px;
    margin: 5px 0 22px 0;
    border: none;
    background: var(--bgColor);
    color: var(--secondary);
}
.form-container input[type=text]:focus, .form-container input[type=password]:focus {
    background-color: #ddd;
    outline: none;
}

.form-container .btn {
    outline: none;
    border: none;
    background: var(--secondary);
    color: var(--primary);
    padding: 15px 35px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: var(--main_font);
    margin-bottom: 25px;
}
.form-container .cancel {
    background-color: red;
}
.form-container .btn:hover, .open-button:hover {
    opacity: 1;
}
.closeForm{
    text-align: right;
}
.closeForm i {
    font-size: 22px;
    text-align: right;
    color: var(--bgColor);
    cursor: pointer;
}
.myFormBottom{
    display: flex;
    align-items: center;
}
.myFormBottom label{
    margin-left: 5px;
    margin-bottom: 0;
    padding-bottom: 0;
}
/*.myFormBottom .form-check-input:checked {
    background-color: var(--secondary);
    border-color: var(--secondary);
}*/
.custom-checkbox input {
    position: absolute;
    opacity: 0;
    /* hide native checkbox */
}

.custom-checkbox span {
    width: 20px;
    height: 20px;
    border: 2px solid #000;
    display: inline-block;
    border-radius: 4px;
    background-size: 14px;
    background-repeat: no-repeat;
    background-position: center;
}

/* when checked */
.custom-checkbox input:checked + span {
    background-image: url("../img/check-solid.svg");
}
@media only screen and (max-height:865px){
    .form-container input, .form-container textarea {
        padding: 5px;
    }
    .form-check input{
        padding: 10px;
    }
}
@media only screen and (max-height:745px){
    .form-popup {
        overflow: scroll;
        height: 420px;
    }
}
/*==========================================================CALL TO ACTION FORM=======================================*/


/*=================================================Temporary Section=================================================*/
.soc_box{
    margin-top: 50px;
    margin-bottom: 50px;
}
.soc_box img{
    height: unset!important;
}
.service-detail-image{
    max-height: unset!important;
}
.sc-brand {
    letter-spacing: unset;
    font-size: clamp(28px, 6vw, 52px);
    text-align: left;
}
.service-list li{
    font-family: var(--main_font);
    font-size: 1.4rem;
    margin-top: 25px;
    margin-bottom: 25px;
    opacity: 0.8;
    font-weight: 400;
}
/*=================================================Temporary Section=================================================*/
