/*!
Theme Name: tsecareto
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: tsecareto
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

tsecareto is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments


/* Font */
/* Inter Font - Regular */
@font-face {
    font-family: 'Inter';
    src: url('fonts/Inter-VariableFont_opsz,wght.ttf') format('truetype');
    font-weight: 100 900; /* Define the weight range */
    font-style: normal;
}

/* Inter Font - Italic */
@font-face {
    font-family: 'Inter';
    src: url('fonts/Inter-Italic-VariableFont_opsz,wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: italic;
}

--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* Normalize
--------------------------------------------- */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
	 ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
}

/* Sections
	 ========================================================================== */

/**
 * Remove the margin in all browsers.
 */
body {
    margin: 0;
    font-family: 'Inter', sans-serif !important;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
    display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

/* Grouping content
	 ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
    font-family: monospace, monospace;
    font-size: 1em;
}

/* Text-level semantics
	 ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */
a {
    background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
    font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

/**
 * Add the correct font size in all browsers.
 */
small {
    font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

/* Embedded content
	 ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */
img {
    border-style: none;
}

/* Forms
	 ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
    overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
    text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type='button'],
[type='reset'],
[type='submit'] {
    -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type='button']::-moz-focus-inner,
[type='reset']::-moz-focus-inner,
[type='submit']::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type='button']:-moz-focusring,
[type='reset']:-moz-focusring,
[type='submit']:-moz-focusring {
    outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
    padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *		`fieldset` elements in all browsers.
 */
legend {
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
    vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
    overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type='checkbox'],
[type='radio'] {
    box-sizing: border-box;
    padding: 0;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type='number']::-webkit-inner-spin-button,
[type='number']::-webkit-outer-spin-button {
    height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type='search'] {
    -webkit-appearance: textfield;
    outline-offset: -2px;
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type='search']::-webkit-search-decoration {
    -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}

/* Interactive
	 ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
    display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
    display: list-item;
}

/* Misc
	 ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */
template {
    display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
    display: none;
}

/* Box sizing
--------------------------------------------- */

/* Inherit box-sizing to more easily change it's value on a component level.
@link http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
*,
*::before,
*::after {
    box-sizing: inherit;
}

html {
    box-sizing: border-box;
}

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/

/* Typography
--------------------------------------------- */
body,
button,
input,
select,
optgroup,
textarea {
    color: #404040;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu,
        Cantarell, 'Helvetica Neue', sans-serif;
    font-size: 1rem;
    line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    clear: both;
}

p {
    margin-bottom: 1.5em;
}

dfn,
cite,
em,
i {
    font-style: italic;
}

blockquote {
    margin: 0 1.5em;
}

address {
    margin: 0 0 1.5em;
}

pre {
    background: #eee;
    font-family: 'Courier 10 Pitch', courier, monospace;
    line-height: 1.6;
    margin-bottom: 1.6em;
    max-width: 100%;
    overflow: auto;
    padding: 1.6em;
}

code,
kbd,
tt,
var {
    font-family: monaco, consolas, 'Andale Mono', 'DejaVu Sans Mono', monospace;
}

abbr,
acronym {
    border-bottom: 1px dotted #666;
    cursor: help;
}

mark,
ins {
    background: #fff9c0;
    text-decoration: none;
}

big {
    font-size: 125%;
}

/* Elements
--------------------------------------------- */
body {
    background: #fff;
}

hr {
    background-color: #ccc;
    border: 0;
    height: 1px;
    margin-bottom: 1.5em;
}

ul,
ol {
    margin: 0 0 1.5em 3em;
}

ul {
    list-style: disc;
}

ol {
    list-style: decimal;
}

li > ul,
li > ol {
    margin-bottom: 0;
    margin-left: 1.5em;
}

dt {
    font-weight: 700;
}

dd {
    margin: 0 1.5em 1.5em;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
    max-width: 100%;
}

img {
    height: auto;
    max-width: 100%;
}

figure {
    margin: 1em 0;
}

table {
    margin: 0 0 1.5em;
    width: 100%;
}

/* Links
--------------------------------------------- */
a {
    color: #4169e1;
}

a:visited {
    color: #800080;
}

a:hover,
a:focus,
a:active {
    color: #191970;
}

a:focus {
    outline: thin dotted;
}

a:hover,
a:active {
    outline: 0;
}

/* Forms
--------------------------------------------- */
button,
input[type='button'],
input[type='reset'],
input[type='submit'] {
    border: 1px solid;
    border-color: #ccc #ccc #bbb;
    border-radius: 3px;
    background: #e6e6e6;
    color: rgba(0, 0, 0, 0.8);
    line-height: 1;
    padding: 0.6em 1em 0.4em;
}

button:hover,
input[type='button']:hover,
input[type='reset']:hover,
input[type='submit']:hover {
    border-color: #ccc #bbb #aaa;
}

button:active,
button:focus,
input[type='button']:active,
input[type='button']:focus,
input[type='reset']:active,
input[type='reset']:focus,
input[type='submit']:active,
input[type='submit']:focus {
    border-color: #aaa #bbb #bbb;
}

input[type='text'],
input[type='email'],
input[type='url'],
input[type='password'],
input[type='search'],
input[type='number'],
input[type='tel'],
input[type='range'],
input[type='date'],
input[type='month'],
input[type='week'],
input[type='time'],
input[type='datetime'],
input[type='datetime-local'],
input[type='color'],
textarea {
    color: #666;
    border: 1px solid #ccc;
    border-radius: 3px;
    padding: 3px;
}

input[type='text']:focus,
input[type='email']:focus,
input[type='url']:focus,
input[type='password']:focus,
input[type='search']:focus,
input[type='number']:focus,
input[type='tel']:focus,
input[type='range']:focus,
input[type='date']:focus,
input[type='month']:focus,
input[type='week']:focus,
input[type='time']:focus,
input[type='datetime']:focus,
input[type='datetime-local']:focus,
input[type='color']:focus,
textarea:focus {
    color: #111;
}

select {
    border: 1px solid #ccc;
}

textarea {
    width: 100%;
}

/*--------------------------------------------------------------
# Layouts
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/

/* Navigation
--------------------------------------------- */
.main-navigation {
    display: block;
    width: 100%;
}

.main-navigation ul {
    display: none;
    list-style: none;
    margin: 0;
    padding-left: 0;
}

.main-navigation ul ul {
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
    float: left;
    position: absolute;
    top: 100%;
    left: -999em;
    z-index: 99999;
}

.main-navigation ul ul ul {
    left: -999em;
    top: 0;
}

.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
    display: block;
    left: auto;
}

.main-navigation ul ul a {
    width: 200px;
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
    left: auto;
}

.main-navigation li {
    position: relative;
}

.main-navigation a {
    display: block;
    text-decoration: none;
}

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
    display: block;
}

@media screen and (min-width: 37.5em) {
    .menu-toggle {
        display: none;
    }

    .main-navigation ul {
        display: flex;
    }
}

.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
    margin: 0 0 1.5em;
}

.comment-navigation .nav-links,
.posts-navigation .nav-links,
.post-navigation .nav-links {
    display: flex;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
    flex: 1 0 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
    text-align: end;
    flex: 1 0 50%;
}

/* Posts and pages
--------------------------------------------- */
.sticky {
    display: block;
}

.post,
.page {
    margin: 0 0 1.5em;
}

.updated:not(.published) {
    display: none;
}

.page-content,
.entry-content,
.entry-summary {
    margin: 1.5em 0 0;
}

.page-links {
    clear: both;
    margin: 0 0 1.5em;
}

/* Comments
--------------------------------------------- */
.comment-content a {
    word-wrap: break-word;
}

.bypostauthor {
    display: block;
}

/* Widgets
--------------------------------------------- */
.widget {
    margin: 0 0 1.5em;
}

.widget select {
    max-width: 100%;
}

/* Media
--------------------------------------------- */
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
    border: none;
    margin-bottom: 0;
    margin-top: 0;
    padding: 0;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
    display: inline-block;
}

/* Captions
--------------------------------------------- */
.wp-caption {
    margin-bottom: 1.5em;
    max-width: 100%;
}

.wp-caption img[class*='wp-image-'] {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption .wp-caption-text {
    margin: 0.8075em 0;
}

.wp-caption-text {
    text-align: center;
}

/* Galleries
--------------------------------------------- */
.gallery {
    margin-bottom: 1.5em;
    display: grid;
    grid-gap: 1.5em;
}

.gallery-item {
    display: inline-block;
    text-align: center;
    width: 100%;
}

.gallery-columns-2 {
    grid-template-columns: repeat(2, 1fr);
}

.gallery-columns-3 {
    grid-template-columns: repeat(3, 1fr);
}

.gallery-columns-4 {
    grid-template-columns: repeat(4, 1fr);
}

.gallery-columns-5 {
    grid-template-columns: repeat(5, 1fr);
}

.gallery-columns-6 {
    grid-template-columns: repeat(6, 1fr);
}

.gallery-columns-7 {
    grid-template-columns: repeat(7, 1fr);
}

.gallery-columns-8 {
    grid-template-columns: repeat(8, 1fr);
}

.gallery-columns-9 {
    grid-template-columns: repeat(9, 1fr);
}

.gallery-caption {
    display: block;
}

/*--------------------------------------------------------------
# Plugins
--------------------------------------------------------------*/

/* Jetpack infinite scroll
--------------------------------------------- */

/* Hide the Posts Navigation and the Footer when Infinite Scroll is in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
    display: none;
}

/* Re-display the Theme Footer when Infinite Scroll has reached its end. */
.infinity-end.neverending .site-footer {
    display: block;
}

/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/

/* Accessibility
--------------------------------------------- */

/* Text meant only for screen readers. */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    clip-path: none;
    color: #21759b;
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

/* Do not show the outline on the skip link target. */
#primary[tabindex='-1']:focus {
    outline: 0;
}

/* Alignments
--------------------------------------------- */
.alignleft {
    /*rtl:ignore*/
    float: left;

    /*rtl:ignore*/
    margin-right: 1.5em;
    margin-bottom: 1.5em;
}

.alignright {
    /*rtl:ignore*/
    float: right;

    /*rtl:ignore*/
    margin-left: 1.5em;
    margin-bottom: 1.5em;
}

.aligncenter {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5em;
}

/* Front page - haeder - footer */
/* Basic reset */
html,
body {
    height: 100%;
    margin: 0;
    min-height: 100vh;
    padding: 0;
}

header,
footer {
    flex-shrink: 0; /* Ensures the header and footer don't shrink */
}

main {
    flex-grow: 1; /* Ensures the main content takes up the remaining space */
    overflow-y: auto; /* Enables scrolling for the main content */
}

/* Header styling */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    height: 80px; /* Adjust this height as needed */
    background-color: var(--c-white);
}
header.scrolled {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
main {
    margin-top: 80px; /* Same as the header height */
    padding-bottom: 100px; /* Adjust for footer overlap */
}

/* Footer styling */
footer {
    width: 100%;
    z-index: 1000;
    height: 100px; /* Adjust this height as needed */
}

.content-section {
    padding-bottom: 100px; /* Space for the footer */
}

/* Additional styles for content */
.logo {
    height: 40px; /* Adjust logo height */
}

.info-box {
    margin-bottom: 20px;
}

.blank-section {
    min-height: 200px; /* Blank section can be any height */
}

/* Custom classes */

/* Colors */

:root {
    --c-purple-100: #2c00cd;
    --c-purple-5: rgb(44, 0, 205, 0.05);
    --c-white: #fff;
    --c-default: #28303F;
    --c-default-50: rgb(40, 48, 63, 0.5);
    --c-grey: #DEDEDE;
}
button {
    border: none;
}

/* Colors */
.default-50-fg{
    color: var(--c-default-50);
}

/* Buttons */
a.cbtn {
    text-decoration: none;
    display: inline-block;
}
.cbtn {
    cursor: pointer;
    transition: 0.3s;
}
.cbtn.standard {
    padding: 24px 32px;
    font-size: 18px;
    border-radius: 100px;
}
.cbtn.small {
    padding: 16px 24px;
    font-size: 16px;
    border-radius: 8px;
}

.cbtn.primary.fill {
    background: var(--c-purple-100);
    color: var(--c-white);
}
.cbtn.blurred.fill {
    color: white;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
}
.cbtn.blurred.fill:hover {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.3);
}
.cbtn.shadow {
    box-shadow: 0px 2px 16px 0px rgba(3, 0, 39, 0.32);
}
.cbtn.icon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
.cbtn.icon img {width: 24px;height: 24px;}
.cbtn.secondary {
    background: var(--c-default);
    border-color: var(--c-default);
    color: var(--c-white);
}
.cbtn.outlined {
    border: 1px solid;
    background: transparent;
    color: var(--c-default);
}
.cbtn.outlined:hover {
    background-color:rgba(40, 48, 63, 0.05);
}

/* Override bootstrap defaults */

html,
body {
    font-size: 16px;
}

/* Typography */
.font14 {
    font-size: 14px;
}
.font16 {
    font-size: 16px;
}
.font20 {
    font-size: 20px;
}
.font22 {
    font-size: 22px;
}
.font24 {
    font-size: 24px;
}
.font25 {
    font-size: 25px;
}
.font48 {
    font-size: 48px;
}

.lh-64 {
    line-height: 64px;
}
.lh-32 {
    line-height: 32px;
}
.lh-24 {
    line-height: 24px;
}
.font-w-5{
    font-weight: 500;
}

/* colors */
.default-50-fg{
    color: var(--c-default-50);
}

/* Containers */
.gap32 {
    gap: 32px;
}
.gap48 {
    gap: 48px;
}
.gap160 {
    gap: 160px;
}

.radius-16 {
    border-radius: 16px;
}
.radius-100 {
    border-radius: 100px;
}

.flex-space-between {
    display: flex;
    justify-content: space-between;
}

.mb12 {
    margin-bottom: 12px;
}
.mb16 {
    margin-bottom: 16px;
}
.mb24 {
    margin-bottom: 24px;
}
.mb48 {
    margin-bottom: 48px;
}
/* Front page */

.hero-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: auto;
    border-radius: 24px;
    padding: 110px;
    min-height: 540px;
    width: calc(100vw - 64px);
    max-width: 1440px;
}

.form-modal-cta {
    background: white;
    max-width: 650px;
    padding: 16px 16px 16px 32px;
    position: absolute;
    bottom: -53px;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0px 2px 16px 0px rgba(3, 0, 39, 0.16);
    flex-direction: row;
}

.service-box {
    border-radius: 16px;
    height: 300px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    flex: 0 0 calc(50% - 16px);
    padding: 64px 24px 24px 24px;
}

.service-box .action_box_cta {
    position: absolute;
    bottom: 24px;
    left: 24px;
}


/* Form */
#plate-form-modal .modal-content {
    border:1px solid #FFF;
    border-radius:20px;
    box-shadow: 0px 0px 20px 0px rgba(74, 74, 89, 0.15);
} 
#plate-form-modal .modal-title {
    font-weight:600;
    font-size:20px;
    color:var(--c-default);
} 


/* Certification of compliance section */
.compliance-cert-inner {
    background-position: left center, right center;
    background-repeat: no-repeat, no-repeat;
    background-size: auto, auto; /* Adjust as needed */
    padding: 64px 24px 64px 24px;
    display: flex;
    flex-direction: column;
    gap: 48px;
    justify-content: center;
    align-items: center;
    border-radius: 16px;
    background-color: rgba(244, 242, 252, 0.5);
}

.compliance-cert-section {
    overflow: hidden;
    padding: 160px 0 !important;
}


/* Highlights section */

.highlights-section {
    gap:32px;
}
.highlight-container {
    flex: 1;
    padding: 40px 32px;
    border: 1px solid var(--c-grey);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 8px 12px 0px 0px #2c00cd;
}
.hl-icon {
    background: var(--c-purple-5);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
}


/* Navbar */
/* Navbar */
.menu-container.tsc-menu {
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    overflow: hidden;
    position: fixed; /* Ensures it covers the whole screen */
    background: rgba(40, 48, 63, 0.8);
    width: 100vw;
    height: 100vh; /* Fills the whole screen */
    left: 0;
    top: 76px;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.menu-container.tsc-menu.open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.header-items-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hamburger {
    cursor: pointer;
}

.bar {
    display: block;
    background-color: #000;
    width: 24px;
    /* The following 2 properties are essential in creating the "X" when the hamburger is clicked. If you change just 1 of the 2, then you need to find the proper combination for the other one */
    height: 2px;
    margin: 6px auto;

    -webkit-transition: all 300ms ease; 
    transition: all 300ms ease-in-out;
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.menu-wrap {
    padding: 10px 0 ;
    background: var(--c-white);
    border-radius: 0 0 4px 4px;
    transform: translateY(-10px);
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.menu-container.tsc-menu.open .menu-wrap {
    opacity: 1;
    transform: translateY(0);
}

ul.menu {
    list-style: none;
    margin: 0;
    padding: 0;
}
ul.menu li {
    padding: 12px;
    transition: .3s;
}
ul.menu a {
    text-decoration: none;
    color: var(--c-default);
}
.hero-wrapper {
    gap: 160px;
}

/* FOOTER */
.logo-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
footer.footer-wrapper .container {
    display: flex;
    flex-direction: column;
    gap: 64px;
    padding-top: 64px;
    border-top: 1px solid #DEDEDE;
}
footer.footer-wrapper ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 64px;
    justify-content: center;
}
footer.footer-wrapper ul a {
    text-decoration: none;
    color: #28303F;
}
.copyright-text {
    font-size: 14px;
    opacity: .5;
    text-align: center;
    padding-bottom: 32px;
    margin-top: 96px;
}

/* Form styling  */
.form-wrap .forminator-label {
    font-size: 16px !important;
    font-weight: 400 !important;
    margin-bottom: 8px !important;
    color: #28303F !important;
}

.form-wrap button.forminator-button {
    width: 100% !important;
    border-radius:50px !important;
    padding:16px !important;
    background:#2C00CD !important;
    color:var(--c-white) !important;
    font-size: 16px !important;
    font-weight:400 !important;
}

/* GENERIC PAGE */
.generic-page.container {
    margin-top: 100px;
}

.generic-page .page-layout {
    display: flex;
    justify-content: space-between;
}

.generic-page .info-section {
    flex: 0 0 calc(50% - 40px);
}

.generic-page .form-section {
    flex: 0 0 calc(50% - 40px);
}
.generic-page .form-container {
    box-shadow: 0px 0px 20px 0px rgba(74, 74, 89, 0.15);
    border-radius: 20px;
    padding: 32px;
}
.generic-page h1 {
    font-size: 48px;
    line-height: 64px;
    max-width: 350px;
    font-weight: 600;
    margin-bottom: 16px;
}

.generic-page .description-1 {
    font-size: 16px;
    line-height: 24px;
    padding-bottom: 32px;
    margin-bottom: 32px;
    border-bottom: 1px solid #DEDEDE;
}

.generic-page .description-2 {
    font-size: 16px;
    line-height: 24px;
    padding-top: 32px;
    margin-top: 32px;
    border-top: 1px solid #DEDEDE;
}
.generic-page ul {
    list-style-type: none; /* Remove default bullets */
    padding-left: 0; /* Optional: To remove extra space on the left */
    margin: 0;
}

.generic-page ul li {
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 16px 16px; /* Adjust size as needed */
    padding-left: 24px; /* Adjust to give space for the bullet */
    font-size: 16px;
    margin-bottom: 20px;
    padding-left: 0px;
}
.text-shadow {
    text-shadow: 1px 1px 2px black;
}
.generic-page ul li:before {
    display: inline-block;
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%232C00CD' class='bi bi-check-circle' viewBox='0 0 16 16'%3E%3Cpath d='M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14m0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16'/%3E%3Cpath d='m10.97 4.97-.02.022-3.473 4.425-2.093-2.094a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-1.071-1.05'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    height: 16px;
    width: 16px;
    margin-bottom: -2px;
    margin-right: 12px;
}
.form-image-upload .forminator-field .forminator-file-upload .forminator-button-upload {
    background: transparent!important;
    border: 1px solid #ccc !important;
    border-radius: 2px !important;
    color: #28303F !important;
    padding: 9px !important;
    width: 50% !important;
}
.form-section-seperator {
    width: 100% !important;
    height: 1px;
    background: #DEDEDE;
}
.vin_input {
    border: none !important;
    padding: 10px !important;
    border-radius: 5px !important;
}
#autodna_submit{
    background: var(--c-purple-100);
    border-radius: 4px;
    border: none;
    color: white;
}
.coc_btn, .no_decoration {
    text-decoration: none;
}
input#autodna_submit {
    padding: 14px 22px !important;
    border-radius: 5px !important;
}
.hero-content-container{
    max-width: 800px;
}
.cs-form-select .select2-selection--single
 {
    border-radius: 3px !important;
    background: white !important;
    border-color: #ccc !important;
}
.forminator-select-dropdown{
    background:white !important;
}

.desktop-menu .menu-primary-container ul#primary-menu {
    display: flex;
}

/* contact form btn style */
.forminator-ui#forminator-module-55.forminator-design--default .forminator-button-submit{
	background:var(--c-purple-100);
	color:var(--c-white);
	border-radius:4px;
}

span#select2-forminator-form-41__field--select-1_68ee8b7f5991d-container {
    background: var(--c-white);
}

span.select2-selection.select2-selection--single {
    background: var(--c-white);
    border-radius: 2px;
    border: 1px solid #ccc !important;
}

li#select2-forminator-form-41__field--select-1_68ee8b7f5991d-result-4tua-one {
    background-color: var(--c-purple-100);
}

span.forminator-select-dropdown.forminator-custom-form-41.forminator-dropdown--default.forminator-select-dropdown--below {
    border-color: var(--c-purple-100);
}

.why-us-row {
    padding-top: 160px;
}

/* COLLABORATORS */
.collabs-content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.collabs-content .single-box-info {
    display: flex;
    justify-content: space-between;
    background-repeat: no-repeat;
    max-width: 780px;
    background-color: var(--c-purple-100);
    border-radius: 16px;
    width: 100%;
    padding: 40px;
}
.collabs-content .points-list {gap: 24px;display: flex;flex-direction: column;}

.collabs-content .points-list .list-item {
    display: flex;
    gap: 12px;
    align-items: center;
    color: white;
    font-size: 18px;
}

.collabs-content .points-list .list-item span {
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    background: var(--c-white);
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    color: var(--c-purple-100);
}
.collabs-content .left-part {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.collabs-content .left-part a {
    color: var(--c-white);
    opacity: 60%;
    transition: .3s;
}
.collabs-content .left-part a:hover {
    opacity: 100%;
}

/* MAP ROW */
.map-row{
    padding-top: 160px;
}
.map-row .map-row-content {
  display: flex;
  gap: 80px;
  align-items:center;
}

.map-row .left-part,
.map-row .right-part {
  width: 50%;
}

.map-row .left-part-desc {
  display: flex;
  flex-direction: column;
  gap: 24px; /* spacing between texts */
  margin-bottom: 40px; /* gap before the <a> */
}


/* Form checkbox colors */
.forminator-ui.forminator-custom-form[data-design=default] .forminator-checkbox .forminator-checkbox-box:before {
    color:var(--c-purple-100) !important;
}
.forminator-ui#forminator-module-32.forminator-design--default .forminator-checkbox input:checked + .forminator-checkbox-box, .forminator-select-dropdown-container--open .forminator-custom-form-32.forminator-dropdown--default .forminator-checkbox input:checked + .forminator-checkbox-box {
    border-color: var(--c-purple-100) !important;
    background-color: var(--c-white) !important;
}


/* ################################################# Media queries  ################################################# */
@media (max-width: 1096px) {
    .generic-page .info-section {
        flex: 1;
    }
    
    .generic-page .form-section {
        flex: 1;
    }
    
    .generic-page .page-layout {
        flex-direction: column;
    }
    
    .generic-page h1 {
        max-width: 100%;
    }
    
    .form-section {
        margin-top: 64px;
    }
}
@media (min-width: 769px) {

    .hamburger {
        display: none;
    }
    .desktop-menu{
        display: block;
    }
}
@media (min-width: 768px) {
    .form-page-content { flex: 0 0 40% !important; }
    .form-page-form { flex: 0 0 60% !important; }
}

/* MOBILE */
@media (max-width: 768px){
    .desktop-menu{
        display: none;
    }
    .container.content-wrapper {
        max-width: calc(100vw - 48px);
    }
    .hero-wrapper {
        gap: 64px;
    }
    .hero-section {
        background-position: -390px !important;
        max-height: 450px;
        width: 100%;
        border-radius: 0;
        padding: 24px;
        display: flex;
        align-items: center;
    }
    .form-modal-cta {
        flex-direction: column !important;
        border-radius: 24px;
        position: relative;
        max-width: calc(100vw - 48px);
        bottom: 0;
        margin-top: 40px;
    }    
    .form-modal-cta .cta-title {
        font-size: 16px;
        align-self: stretch;
        padding-bottom: 12px;
        margin-bottom: 24px;
        border-bottom: 1px solid #DEDEDE;
        color: #9E9E9E;
    }    
    .form-modal-cta .cta-btn {
        width: 100%;
        text-align: center;
        padding: 16px;
    }
    .hero-title {
        font-size: 32px;
        line-height: 42px;
    }
    .hero-subtitle {
        font-size: 16px;
        line-height: 24px;
    }
    .services-container {
        flex-direction: column !important;
        gap: 32px;
    }
    .service-box{
        min-height: 350px;
        height: 350px;
    }
    .service-box button.cbtn {
        position: relative !important;
        bottom: 0;
        left: 0;
        width: 100%;
        margin-top: 32px;
    }
    .compliance-cert-inner{
        background-image: none !important;
    }
    .compliance-cert-section{
        padding-top:64px !important;
        margin-top:64px !important;
        border-top: 1px solid #DEDEDE;
        padding-bottom: 128px !important;
    }
    .highlights-section {
        flex-direction: column !important;
    }
    footer.footer-wrapper ul{
        flex-direction: column;
        gap: 16px;
    }

    /* COLLABORATORS */
    .collabs-content .single-box-info {
        display: grid;
        grid-template-areas:
            "logo"
            "points"
            "link";
        gap: 32px;
    }

    .collabs-content .left-part {
        display: contents; /* allows grid to target children directly */
    }
    .collabs-content .right-part {
        display: contents;
    }

    .collabs-content .left-part .logo {
        grid-area: logo;
    }

    .collabs-content .right-part .points-list {
        grid-area: points;
    }

    .collabs-content .left-part a {
        grid-area: link;
    }

    .map-row .map-row-content {
        flex-direction: column;
        gap: 80px;
    }

    .map-row .left-part,
    .map-row .right-part {
        width: 100%;
    }
}

@media (max-width: 420px){
    .service-box{
        min-height: 420px;
        height: 420px;
    }
    input#autodna_submit {
        margin-top: 5px;
        width: 218px;
    }
}
