/**
 * Theme Name:     Prime security
 * Author:         Novot
 * Template:       hello-elementor
 * Text Domain:	   primesec
 * Description:    -
 */




/* .archivo-<uniquifier> {
  font-family: "Archivo", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
} */
/* .zen-dots-regular {
  font-family: "Zen Dots", sans-serif;
  font-weight: 400;
  font-style: normal;
} */



@media (prefers-reduced-motion: no-preference) {
    :root {
        scroll-behavior: smooth;
    }
}
:root {
    --main: #323189;
    --white: #FFFFFF;
    --lightblue: #B2DDDF;
    --fontsize: 1.8rem;
    --side-padding: 4.8rem;
    --font-zentots: "Zen Dots", sans-serif;
}
html {
    scroll-behavior: smooth;
    background-color: var(--main);
    /* 62.5% of 16px base font size is 10px */
    font-size: 62.5%;
}
body {
    font-size: var(--fontsize);
    font-family: "Archivo", sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.3;
    color: var(--white);
    background-color: transparent;
}
a,
a:hover {
    text-decoration: none;
    color: var(--lightblue);
}
a {
    color: var(--white);
}
b,
strong {
    font-weight: 500;
}
/**
   * Restore the focus styles unset by the previous rule.
   */
button,
[type="submit"],
[type="button"] {
    color: var(--white);
}
button:focus:not(:focus-visible),
[type="submit"]:focus:not(:focus-visible),
[type="button"]:focus:not(:focus-visible) {
    outline: none;
}
button:hover,
button:focus,
[type="submit"]:hover,
[type="submit"]:focus,
[type="button"]:hover,
[type="button"]:focus {
    color: var(--main);
    background-color: transparent;
}
.width-l {
    max-width: 201.6rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 4.8rem;
    padding-right: 4.8rem;
}
.width-m {
    max-width: 165.6rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 4.8rem;
    padding-right: 4.8rem;
}
.width-s {
    max-width: 129.6rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 4.8rem;
    padding-right: 4.8rem;
}
h1,
.h1 {
    font-family: var(--font-zentots);
    font-size: 4rem;
    font-weight: 400;
    line-height: 1;
    margin: 0;
    margin-bottom: 4rem;
    color: var(--lightblue);
}
h2,
.h2 {
    font-family: var(--font-zentots);
    font-size: 2.4rem;
    font-weight: 400;
    line-height: 1;

    margin: 0;
    color: var(--lightblue);
    margin-bottom: 4rem;
}
h3,
.h3 {
    font-family: var(--font-zentots);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--lightblue);
    line-height: 1;
    font-weight: 200;
    margin: 0;
}
h4,
.h4 {
    font-size: 2rem;
    line-height: 1;
    font-weight: 400;
    margin: 0;
}
h5 {
    font-size: 1.4rem;
    font-weight: 300;
    margin-bottom: 1.6rem;
    color: #041E42;
}
ul {
    padding: 0;
}
ul li {
    list-style: none;
}
.content p,
.content ul,
.content ol {
    margin-bottom: 2rem;
}
.content ol {
    padding-left: 1.5rem;
}
.content ol li {
    margin-bottom: 2rem;
}
.content {
    overflow: hidden;
}
.logged-in header {
    top: 32px;
}
/* Reset default list styles */
.menu,
.menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
/* Main menu styling */
.menu {
    display: flex;
    background-color: ;
    align-items: flex-end;
    gap: 4rem;
}
.menu>li {
    position: relative;
    /* Required for submenu positioning */
}
.menu>li:after,
a.account-link:after {
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 4px;
    position: absolute;
    top: 100%;
    left: 50%;
    z-index: -1;
    background: var(--main);
    opacity: 0;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}
li.menu-item:hover:after,
li.current-menu-item:hover:after,
a.account-link:hover:after,
li.current-menu-item:after {
    opacity: 1;
}
a.account-link:after {
    top: unset;
    bottom: 100%;
}
a.account-link {
    position: relative;
}
.menu>li>a {
    display: block;
    line-height: 1.4;
    text-decoration: none;
    position: relative;
    font-size: 1.4rem;
    text-transform: uppercase;
}
.wpml-ls-legacy-list-horizontal a {}
/* .menu>li:not(.buttonstyle)>a:before,
.menu>li.current_page_item>a:before {
    content: "";
    width: 0%;
    height: 1px;
    background: white;
    position: absolute;
    top: calc(100% + 1rem);
    transform: translateX(0);
    transition: all .5s;
    opacity: 0;
}
.menu>li:not(.buttonstyle)>a:hover:before,
.menu>li.current_page_item>a:before {
    width: 50%;
    transform: translateX(calc(100% - 3rem));
    opacity: 1;
} */
.menu>li>a:hover,
.menu>li.current-menu-item>a {
    background-color: ;
    /* Hover and active menu item background */
}
/* Submenu styling with transitions */
.menu .sub-menu {
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    z-index: 1000;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    background: #fff;
    padding: .5rem 1.2rem;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}
/* Submenu links */
.menu .sub-menu li a {
    padding: 1rem 2rem;
    display: block;
    text-decoration: none;
}
.menu .sub-menu li a:hover,
.menu .sub-menu li.current-menu-item a {
    background-color: ;
    /* Hover and active submenu item background */
}
/* Show submenu on hover */
.menu>li:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(30px);
    /*Movesubmenutooriginalposition*/
    -webkit-transform: translateY(30px);
    -moz-transform: translateY(30px);
    -ms-transform: translateY(30px);
    -o-transform: translateY(30px);
}
/* Optional: Add arrow indicator for items with submenu */
.menu>li.menu-item-has-children>a::before {
    content: '';
    background: url(images/menu-item-arrow.svg) no-repeat center / contain;
    width: 1rem;
    height: 1rem;
    /*background: red;
    */
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(180deg);
    -webkit-transform: translateY(-50%) rotate(180deg);
    -moz-transform: translateY(-50%) rotate(180deg);
    -ms-transform: translateY(-50%) rotate(180deg);
    -o-transform: translateY(-50%) rotate(180deg);
    right: 0;
}
/* Responsive adjustments (optional) */
@media (max-width: 768px) {
    .menu {
        flex-direction: column;
    }
    .menu .sub-menu {
        position: static;
        transform: none;
    }
}
.menu>li.menu-item.wpml-ls-menu-item {}
.menu>li.menu-item.wpml-ls-menu-item span {
    padding-left: 2rem;
}

[type=button],
[type=submit],
button {
    background-color: transparent;
    border: unset;
    border-radius: 0;
    color: var(--main);
    display: inline-block;
    font-size: 1rem;
    font-weight: 400;
    padding: .5rem 1rem;
}
button.search-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
}
input {
    background-color: transparent;
}
input:focus-visible {
    outline: none;
}




header {
    display: flex;
    align-items: flex-end;
    gap: 4rem;
    justify-content: flex-end;
    padding-left: 40%;
    padding-top: 4rem;
    padding-right: 9.5rem;
    position: absolute;
    width: 100%;
}
.header-logo {
    margin-right: auto;
}
.header-top-links {
    font-weight: 600;
    display: flex;
    align-items: flex-end;
    gap: 4rem;
}
.header-top-links a {
    display: flex;
    gap: 1rem;
    align-items: center;
}
.content {
    display: flex;
    justify-content: flex-end;
    min-height: 100vh;
    align-items: center;
    padding: 20rem 0;
}
.content .inner {
    max-width: 47%;
    right: 0;
    padding: 0 8.8rem;
}
.wrap {
    position: relative;
}

.coverimg,
.novideo {
    position: relative;
}
.coverimg img,
.novideo>img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.bg-element {
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    z-index: -1;
}
.bg-element.coverimg img {
    transform: translateX(-15rem);
}
/* 
.bg-element {
    -webkit-mask-image: url(images/prime-image-masking-element.svg);
    mask-image: url(images/prime-image-masking-element.svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: auto;
    mask-size: auto;
    mask-position: 0 0;
    position: absolute;
    height: 100%;
} */


footer#kontakt {
    padding-left: 40%;
    position: absolute;
    bottom: 0;
    display: flex;
    gap: 8rem;
    justify-content: flex-end;
    width: 100%;
    padding-right: 8.8rem;
    align-items: center;
    font-size: 1.4rem;
    text-transform: uppercase;
    padding-bottom: 4rem;
}
footer#kontakt h3 {
    margin-right: auto;
    text-transform: capitalize;
}


ul {
    list-style-type: square;
    /* Square bullets */
    padding-left: 3rem;
    /* Adjust left spacing */
}

ul li {
    list-style: square;
    padding-bottom: 2rem;
    padding-left: 2rem;
    /* Gap between bullet and text */
    list-style-position: outside;
    /* Ensures bullet stays outside */
}

ul li::marker {
    color: #B2DDDF;
    /* Bullet color */
    font-size: 2.5rem;
}


svg#dropsvg {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}
.dropsvg-wrap {
    position: relative;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}


.bg-element-mob {
    display: none;
}

@media all and (max-width: 1366px) {


    header {
        width: 100%;
        background: var(--main);
        padding: 2rem;
    }
    .bg-element-mob {
        display: block;
        position: absolute;
        z-index: -1;
        top: 0;
    }
    .bg-element {
        display: none;
    }


    .content {
        display: flex;
        min-height: unset;
        align-items: flex-start;
        flex-direction: column;
    }
    .content .inner {
        max-width: 80rem;
    }
    footer#kontakt {
        width: 100%;
        padding: 2.5rem 8rem;
    }

}

@media all and (max-width: 992px) {

    .header-logo img {
        max-width: 14rem;
    }
    .header-top-links {
        font-size: 1.4rem;
    }


}
@media all and (max-width: 768px) {


    .content .inner {
        padding: 0 2.5rem;
    }
    footer#kontakt {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }

}


@media all and (max-width: 600px) {

    .bg-element-mob {
        display: block;
        position: relative;
        z-index: 0;
        top: 0;
    }
    .content {
        padding: 0;
    }
    footer#kontakt {
        position: relative;
        padding: 2.5rem;
    }
    .content .inner {
        padding: 2.5rem;
    }
    .bg-element-mob {
        position: relative;
        min-height: 40vh;
        width: 100%;
        z-index: -1;
        margin-top: 8rem;
    }

    .bg-element-mob img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .header-top-links a span {
        display: none;
    }
    .header-top-links {
        gap: 3rem;
    }
    h1,
    .h1 {
        font-size: 2.4rem;
    }
    h2,
    .h2 {
        font-size: 1.6rem;
    }
    body {
        font-size: 1.4rem;
    }
    footer#kontakt h3 {
        margin-bottom: 3rem;
    }
    header {
        align-items: center;
    }

}