@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&display=swap');
@import url(https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap);

.dark-background,
:root {
    --heading-color: #956d3f;
    --contrast-color: #ffffff
}

.php-email-form .error-message,
.php-email-form .loading,
.php-email-form .sent-message {
    display: none;
    padding: 15px;
    margin-bottom: 24px
}

.dark-background,
.header,
body {
    color: var(--default-color);
    background-color: var(--background-color)
}

.dark-background,
.footer,
.header,
body {
    background-color: var(--background-color)
}

.hero .btn-link,
a,
a:hover {
    text-decoration: none
}

:root {
    --default-font: "Montserrat", serif;
    --heading-font: "Merriweather", serif;
    --nav-font: "Montserrat", serif;
    --background-color: transparent;
    --default-color: #311907;
    --accent-color: #755848;
    --green-color: #5d3b29;
    --surface-color: #ffffffa3;
    /*--surface-color: #eadfd3eb;*/
    --surface-color-rgb: 234, 223, 211;
    --white-transp: #ffffffd9;
    --nav-color: #755848;
    --nav-hover-color: #8d6d5c;
    --nav-mobile-background-color: #ffffff;
    --nav-dropdown-background-color: #ffffff;
    --nav-dropdown-color: #212529;
    --nav-dropdown-hover-color: #5d3b29;

    scroll-behavior: auto;
    /*smooth*/
}

.light-background {
    --background-color: #ddd0be57;
    --surface-color: #ffffff
}

.dark-background {
    --background-color: #eadfd3eb;
    --default-color: #000000;
    --surface-color: #ffffff
}

body {
    font-family: var(--default-font)
}

/*
body::before {
    display: block;
    width: 556px;
    height: 791px;
    background: url(../img/image_01.webp) 0 0/contain no-repeat;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: -1;
    content: " "
}

@media screen and (min-width:768px) {
    body::after {
        display: block;
        width: 446px;
        height: 790px;
        background: url(../img/image_02.webp) right center/contain no-repeat;
        position: fixed;
        bottom: 15%;
        right: 0;
        z-index: -1;
        content: " "
    }
}
*/
.hero .hero-content,
main {
    position: relative;
    z-index: 1
}

a {
    color: var(--accent-color);
    transition: .3s
}

a:hover {
    color: color-mix(in srgb, var(--accent-color), transparent 25%)
}

h1,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-family: var(--heading-font)
}

h5 {
    font-size: 1.125rem;
    line-height: 1.45;
}

h2 {
    color: #755848d6;
    font-family: var(--default-font);
    text-transform: uppercase;
    font-size: 1.75rem;
}

p {
    margin-top: 0;
    font-size: 1.125rem;
    line-height: 1.255;
    margin-bottom: 1rem
}

.php-email-form .error-message {
    background: #df1529;
    color: #fff;
    text-align: left;
    font-weight: 600
}

.php-email-form .sent-message {
    color: #fff;
    background: #059652;
    text-align: center;
    font-weight: 600
}

.php-email-form .loading {
    background: var(--surface-color);
    text-align: center
}

.php-email-form .loading:before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid var(--accent-color);
    border-top-color: var(--surface-color);
    animation: 1s linear infinite php-email-form-loading
}

@keyframes php-email-form-loading {
    0% {
        transform: rotate(0)
    }

    100% {
        transform: rotate(360deg)
    }
}

.header {
    --background-color: rgba(255, 255, 255, 0);
    padding: 20px 0;
    transition: .5s;
    z-index: 997
}

.header .header-container {
    background: var(--surface-color);
    padding: 4px 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, .1)
}

.scrolled .header .header-container {
    background: color-mix(in srgb, var(--white-transp), transparent 5%)
}

.header .logo {
    line-height: 1;
    height: 52px;
    width: 200px;
}

.header .logo img {
    max-height: 38px;
    margin-right: 8px
}

.header .logo h1 {
    font-size: 24px;
    margin: 0;
    font-weight: 500;
    color: var(--heading-color)
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
    color: var(--contrast-color);
    background: var(--accent-color);
    font-size: 14px;
    padding: 8px 20px;
    margin: 0 10px 0 30px;
    transition: .3s;
    min-width: 8rem;
    text-align: center;
    font-weight: bold;
    letter-spacing: 1px;
}

.header .btn-getstarted:focus:hover,
.header .btn-getstarted:hover {
    color: var(--contrast-color);
    background: color-mix(in srgb, var(--accent-color), transparent 15%)
}

.navmenu ul>li>a:before {
    content: "";
    position: absolute;
    width: 86%;
    height: 2px;
    bottom: 11px;
    left: 5%;
    background-color: var(--nav-hover-color);
    visibility: hidden;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    z-index: 999
}

.navmenu ul>li>a:hover:before {
    visibility: visible;
    -webkit-transform: scaleX(1);
    transform: scaleX(1)
}

@media (max-width:1200px) {
    .header {
        padding-top: 10px
    }

    .header .header-container {
        padding: 10px 5px 10px 15px
    }

    .header .logo {
        order: 1
    }

    .header .btn-getstarted {
        order: 2;
        margin: 0 10px 0 0;
        padding: 6px 15px
    }

    .header .navmenu {
        order: 3
    }
}

@media (min-width:1200px) {
    .navmenu {
        padding: 0
    }

    .navmenu ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center
    }

    .navmenu li {
        position: relative
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-color);
        padding: .95rem;
        font-size: 1rem;
        font-family: var(--nav-font);
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: center;
        white-space: nowrap;
        transition: .3s;
        letter-spacing: .0375rem;
        text-transform: uppercase;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        transition: .3s
    }

    .navmenu .active,
    .navmenu .active:focus,
    .navmenu li:hover>a {
        color: var(--nav-hover-color)
    }

    .navmenu .dropdown ul {
        margin: 0;
        padding: 10px 0;
        background: var(--nav-dropdown-background-color);
        display: block;
        position: absolute;
        visibility: hidden;
        left: 14px;
        top: 130%;
        opacity: 0;
        transition: .3s;
        z-index: 99;
        box-shadow: 0 0 30px rgba(0, 0, 0, .1)
    }

    .navmenu .dropdown ul li {
        min-width: 200px
    }

    .navmenu .dropdown ul a {
        padding: 10px 20px;
        font-size: 15px;
        text-transform: none;
        color: var(--nav-dropdown-color)
    }

    .navmenu .dropdown ul a i {
        font-size: 12px
    }

    .navmenu .dropdown ul .active:hover,
    .navmenu .dropdown ul a:hover,
    .navmenu .dropdown ul li:hover>a {
        color: var(--nav-dropdown-hover-color)
    }

    .navmenu .dropdown:hover>ul {
        opacity: 1;
        top: 100%;
        visibility: visible
    }

    .navmenu .dropdown .dropdown ul {
        top: 0;
        left: -90%;
        visibility: hidden
    }

    .navmenu .dropdown .dropdown:hover>ul {
        opacity: 1;
        top: 0;
        left: -100%;
        visibility: visible
    }
}

.footer,
.section,
section {
    color: var(--default-color)
}

.footer {
    font-size: 14px;
    position: relative
}

.footer .footer-top {
    padding-top: 50px
}

.footer .footer-about .logo {
    line-height: 1;
    margin-bottom: 25px
}

.footer .footer-about .logo img {
    max-height: 40px;
    margin-right: 6px;
    min-width: 180px
}

.footer .footer-about .logo span {
    color: var(--heading-color);
    font-family: var(--heading-font);
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 1px
}

.footer .footer-about p {
    font-size: 15px;
    font-family: var(--default-font);
    font-weight: 600;
}

.footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
    font-size: 16px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-right: 10px;
    transition: .3s
}

.footer .social-links a:hover {
    color: var(--accent-color);
    border-color: var(--accent-color)
}

.footer h4 {
    font-size: 16px;
    font-weight: 700;
    position: relative;
    padding-bottom: 12px
}

.footer .footer-links {
    margin-bottom: 30px
}

.about .feature-list,
.footer .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0
}

.footer .footer-links ul i {
    padding-right: 2px;
    font-size: 12px;
    line-height: 0
}

.footer .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center
}

.footer .footer-links ul li:first-child {
    padding-top: 0
}

.footer .footer-links ul a {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    display: inline-block;
    line-height: 1
}

.faq .faq-arrow,
.faq .faq-container .faq-active h3,
.faq .faq-container .faq-item .faq-toggle:hover,
.faq .faq-container .faq-item h3:hover,
.features .nav-link:hover h4,
.footer .footer-links ul a:hover,
.hero .btn-link:hover,
.service-details .download-catalog a:hover {
    color: var(--accent-color)
}

.footer .footer-contact p {
    margin-bottom: 5px
}

.footer .copyright {
    padding: 25px 0;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%)
}

.hero .btn-primary:hover,
.hero .btn-secondary:hover {
    background-color: color-mix(in srgb, var(--accent-color), #000 20%);
    border-color: color-mix(in srgb, var(--accent-color), #000 20%);
    color: var(--surface-color);
}

.footer .copyright p {
    margin-bottom: 1.5rem;
    font-size: 13px;
    padding: 0 2rem
}

.footer .credits {
    margin-top: 8px;
    font-size: 13px;
    opacity: .5;
}

.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: -15px;
    z-index: 99999;
    background-color: var(--accent-color);
    width: 44px;
    height: 44px;
    transition: .4s
}

.back-domy {
    right: auto;
    left: 15px;
    bottom: 15px;
    color: white;
    width: auto;
    padding: .5rem .75rem;
    position: fixed;
    z-index: 1;
    background: #8d6d5c;
}

.back-domy a {
    color: white;
}

.back-domy:hover,
.back-domy a:hover {
    opacity: .9;
    color: white;
}

.hero,
.page-title,
.section-title,
.section-title h2 {
    position: relative
}

.scroll-top i {
    font-size: 24px;
    color: var(--contrast-color);
    line-height: 0
}

.scroll-top:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
    color: var(--contrast-color)
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
    bottom: 15px
}

@media screen and (max-width:768px) {
    [data-aos-delay] {
        transition-delay: 0 !important
    }
}

.page-title {
    background: url(/img/bg_title.webp) 0 0/contain no-repeat;
    padding: 170px 0 80px;
    text-align: center
}

.page-title h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px
}

.page-title .breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    justify-content: center;
    padding: 0;
    margin: 0;
    font-size: 16px;
    font-weight: 400
}

.page-title .breadcrumbs ol li+li {
    padding-left: 10px
}

.page-title .breadcrumbs ol li+li::before {
    content: "/";
    display: inline-block;
    padding-right: 10px;
    color: color-mix(in srgb, var(--default-color), transparent 70%)
}

.section,
section {
    background-color: var(--background-color);
    padding: 60px 0;
    scroll-margin-top: 90px;
    overflow: clip
}

@media (max-width:1199px) {
    .mobile-nav-toggle {
        color: var(--nav-color);
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color .3s
    }

    .navmenu {
        padding: 0;
        z-index: 9997
    }

    .navmenu ul {
        display: none;
        list-style: none;
        position: absolute;
        inset: 60px 20px 20px 20px;
        padding: 10px 0;
        margin: 0;

        background-color: var(--nav-mobile-background-color);
        overflow-y: auto;
        transition: .3s;
        z-index: 9998;
        box-shadow: 0 0 30px rgba(0, 0, 0, .1)
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-dropdown-color);
        padding: 10px 20px;
        font-family: var(--nav-font);
        font-size: 17px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: .3s
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: .3s;
        background-color: color-mix(in srgb, var(--accent-color), transparent 90%)
    }

    .navmenu a i:hover,
    .navmenu a:focus i:hover {
        background-color: var(--accent-color);
        color: var(--contrast-color)
    }

    .navmenu .active,
    .navmenu .active:focus,
    .navmenu a:hover {
        color: var(--nav-dropdown-hover-color)
    }

    .navmenu .active i,
    .navmenu .active:focus i {
        background-color: var(--accent-color);
        color: var(--contrast-color);
        transform: rotate(180deg)
    }

    .navmenu .dropdown ul {
        position: static;
        display: none;
        z-index: 99;
        padding: 10px 0;
        margin: 10px 20px;
        background-color: var(--nav-dropdown-background-color);
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        box-shadow: none;
        transition: .5s ease-in-out
    }

    .navmenu .dropdown ul ul {
        background-color: rgba(33, 37, 41, .1)
    }

    .navmenu .dropdown>.dropdown-active {
        display: block;
        background-color: rgba(33, 37, 41, .03)
    }

    .mobile-nav-active {
        overflow: hidden
    }

    .mobile-nav-active .mobile-nav-toggle {
        color: #fff;
        position: absolute;
        font-size: 32px;
        top: 15px;
        right: 15px;
        margin-right: 0;
        z-index: 9999
    }

    .mobile-nav-active .navmenu {
        position: fixed;
        overflow: hidden;
        inset: 0;
        background: rgba(33, 37, 41, .8);
        transition: .3s
    }

    .mobile-nav-active .navmenu>ul {
        display: block;
        max-height: fit-content
    }

    .section,
    section {
        scroll-margin-top: 66px
    }
}

.section-title {
    text-align: center;
    padding-bottom: 30px
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px
}

.section-title h2:after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto
}

.hero .company-badge,
.hero .hero-content h1,
.hero .hero-content h2,
.hero .hero-content ul,
.hero .hero-content p {
    /*background: var(--surface-color);*/
    border-radius: var(--border-radius)
}

.hero .hero-content ul {
    padding: 1rem 0;
    background: radial-gradient(ellipse at center, rgb(0 0 0 / 37%) 0%, rgba(0, 0, 0, 0.24) 40%, rgba(0, 0, 0, 0) 70%);


}

.hero .hero-content ul i {
    color: var(--accent-color);
    background: var(--nav-mobile-background-color);
    width: 23px;
    height: 23px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 2px 2px 2px 1rem;
    padding: 1px;
    border-radius: 50%;
    font-size: 15px;
}

.hero .hero-content ul li {
    color: var(--white-transp);
    text-align: right;
    margin: 1px 0;
    font-weight: 700;
}

.hero .hero-content ul li span {
    --shadow-color: #39190ab8;
    text-shadow: -4px -4px 6px var(--shadow-color), 4px -4px 6px var(--shadow-color), -4px 4px 6px var(--shadow-color), 4px 4px 6px var(--shadow-color);
    font-size: 1.25rem;
    letter-spacing: 0.045rem;
}


.contact .info-item .content p:last-child,
.contact .info-item:last-child,
.faq .faq-container .faq-item:last-child,
.features .tab-pane p:last-child,
.section-title p {
    margin-bottom: 0
}

.video-container {
    position: absolute;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    top: 0
}

@media (max-width: 768px) {
    .video-container {
        max-height: 560px;
    }

    .video-container video {
        max-height: 560px;
    }
}

.hero::before,
.overlay {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    left: 0
}

.video-container video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover
}

.overlay {
    background: rgba(0, 0, 0, 0)
}

.hero {
    min-height: 100vh;
    background: url(/img/hero-druzec.webp);
    background-size: cover;
    padding: 10vh 0;
}

.hero.druzec {
    padding-top: 10.5%;
    min-height: 100vh;
    background: url(/img/hero-druzec.webp);
    background-size: cover;
}

.hero .first-desc {
    margin-top: 6vh;
    margin-bottom: 4vh;
}

.hero .second-desc {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/*
.hero::before {
    display: none;
    content: "";
    pointer-events: none;
    background: #221e1bb5
}
*/
.hero-info-card {
    max-width: 16rem;
    padding: 1.5rem;
    background: var(--surface-color);
    position: relative;
}

.hero-info-card .hero-info-number,
.hero-info-card .hero-info-label {
    text-align: center;
    font-family: var(--heading-font);
    text-transform: uppercase;
    font-size: 1.25rem;
}

.hero-info-card .hero-info-number {
    font-size: 3.25rem;
}

.hero-info-card .icon-list li {
    display: flex;
    align-items: flex-start;
    gap: .5rem;
    margin-bottom: .35rem;
}

.hero-info-card .icon-list li i {
    flex: 0 0 1.25rem;
    width: 1.25rem;
    text-align: center;
    line-height: 1.4;
    color: #815c38;
    font-size: 17px;
}

.hero-info-card .icon-list li span {
    flex: 1;
    text-transform: uppercase;
}

.hero h1 {
    color: var(--white-transp)
}

.hero .hero-content {
    display: flex;
    align-items: end;
    flex-direction: column;
}

.hero .hero-content h1 {
    font-size: 8vh;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: .175rem;
    text-transform: uppercase;
    text-shadow: 0 0 30px #044f7d82;
    text-align: right;
}

.hero .hero-content h2 {
    text-align: right;
    color: #dfd7ba;
    margin-top: 2rem;
}

.hero .hero-content p {
    font-size: 1.35rem
}

.hero .hero-content h1 .accent-text {
    color: var(--white-transp);
    width: 100% !important;
    display: block;
    font-size: 4.4vh;
    font-weight: 600;
    margin-top: -15px;
}

@media (max-width:992px) {
    .hero {
        padding-top: 70vh;
        min-height: 104vh;
    }

    .hero .hero-content p {
        font-size: 1.15rem
    }

    .hero .hero-content {
        text-align: center;
        margin-bottom: 3rem
    }

    .hero .hero-content h1 {
        font-size: 2.5rem
    }

    .hero .hero-content .hero-buttons {
        justify-content: center
    }
}

.hero .company-badge {
    display: inline-flex;
    align-items: center;
    padding: 5px 16px;
    color: var(--accent-color);
    font-weight: 500
}

.contact .contact-form .btn i,
.hero .company-badge i {
    font-size: 1.25rem
}

.prvek {
    animation: moveSlow 1s ease-in-out infinite alternate;
}

@keyframes moveSlow {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(4px);
    }
}

.hero .btn-primary {
    background: var(--nav-mobile-background-color);
    border-color: var(--nav-mobile-background-color);
    color: var(--green-color);
    padding: .75rem 2.5rem;
    font-weight: 700;
    font-size: 1.45rem;
    transition: .3s;
    animation: moveSlow 1s ease-in-out infinite alternate;
}

@keyframes moveSlow {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(4px);
    }
}

.hero .btn-secondary {
    background: var(--accent-color);
    border-color: var(--accent-color);
    border-radius: 0;
    color: #fff;
    padding: .55rem 2.25rem;
    font-weight: 500;
    transition: .3s
}

.lokalita-detail .card-body,
.lokalita-detail .quote {
    --background-color: #ddd0be57;
    background: var(--background-color)
}

.card-body h4 {
    font-size: 1.65rem;
    line-height: 2rem;
}

.hero .btn-secondary:hover {
    color: #fff
}

.hero .btn-link {
    color: var(--heading-color);
    font-weight: 500;
    transition: .3s
}

.hero .btn-link i {
    font-size: 1.5rem;
    vertical-align: middle
}

.hero .hero-image {
    position: relative;
    text-align: center;
    z-index: 1
}

.hero .hero-image img {
    max-width: 100%;
    height: auto
}

.hero .customers-badge {
    position: absolute;
    bottom: 10px;
    right: 30px;
    background-color: var(--surface-color);
    padding: 1rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .1);
    max-width: 300px;
    animation: 3s ease-in-out infinite float-badge;
    will-change: transform
}

.hero .customers-badge .customer-avatars {
    display: flex;
    align-items: center;
    margin-bottom: .5rem
}

.hero .customers-badge .avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid var(--surface-color);
    margin-left: -8px
}

.hero .customers-badge .avatar:first-child {
    margin-left: 0
}

.hero .customers-badge .avatar.more {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    font-weight: 600
}

.hero .customers-badge p {
    font-size: .875rem;
    color: color-mix(in srgb, var(--default-color), transparent 40%)
}

.contact .info-box a,
.features .nav-link.active h4,
.pricing .pricing-card.popular .features-list li,
.pricing .pricing-card.popular .features-list li i,
.pricing .pricing-card.popular .price .amount,
.pricing .pricing-card.popular .price .currency,
.pricing .pricing-card.popular .price .period,
.pricing .pricing-card.popular h3,
.pricing .pricing-card.popular h4,
.service-details .help-box a,
.service-details .help-box h4,
.service-details .services-list a.active i,
.stat-item .stat-icon i,
.stat-item:hover .stat-icon i {
    color: var(--contrast-color)
}

.pricing .pricing-card:hover {
    box-shadow: inset 0 0 5em -1em #8d6d5c1f;
}

.stats-row {
    position: relative;
    z-index: 1;
    background-color: var(--white-transp);

    box-shadow: 0 5px 15px rgba(0, 0, 0, .05);
    padding-bottom: 2rem;
    margin-top: 0;
}

@media (min-width: 992px) {
    .stats-row {
        margin: 0 0 4rem;
    }
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.6rem
}

.stat-item .stat-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--accent-color);
    transition: .3s
}

.stat-item .stat-icon i {
    font-size: 1.65rem;
    line-height: .9
}

.stat-item .stat-content {
    flex-grow: 1
}

.stat-item .stat-content h4 {
    font-size: 1.25rem;
    margin-bottom: .25rem;
    font-weight: 600
}

.stat-item .stat-content p {
    font-size: .88rem;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin: 0
}

@keyframes float-badge {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-10px)
    }
}

.about .about-meta {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
    display: inline-block
}

.about .about-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 700
}

.about .about-description {
    font-family: var(--default-font);
    font-style: normal;
    margin-bottom: .75rem;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    text-align: justify;
}

.about .c-dark {
    background: var(--accent-color);
}

.about .c-dark .about-description {
    color: white;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: .5rem;
}

.about .feature-list-wrapper {
    margin-bottom: 2rem
}

.about .feature-list li {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: 1rem;
    font-size: 1rem
}

.about .feature-list li i {
    color: var(--accent-color);
    font-size: 1.25rem
}

.about .profile .profile-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover
}

.about .profile .profile-name {
    font-size: 1.125rem;
    margin: 0
}

.about .profile .profile-position {
    color: var(--accent-color);
    margin: 0;
    font-size: .875rem
}

.about .contact-info {
    padding: 1rem 1.5rem;
    background-color: var(--surface-color);
    border-radius: .5rem;
    box-shadow: 0 0 15px rgba(0, 0, 0, .06)
}

.features .nav-tabs,
.service-details .services-list a {
    background-color: color-mix(in srgb, var(--default-color), transparent 96%)
}

.about .contact-info i {
    color: var(--accent-color);
    font-size: 1.5rem
}

.about .contact-info .contact-label {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-size: .875rem;
    margin: 0
}

.about .contact-info .contact-number {
    font-weight: 600;
    margin: 0
}

.about .image-wrapper {
    position: relative
}

.about .image-wrapper .small-image {
    position: absolute;
    top: 20%;
    left: -10%;
    width: 45%;
    border: 8px solid rgba(var(--surface-color-rgb), .75);
    padding: 0
}

.about .image-wrapper .experience-badge {
    position: absolute;
    bottom: 5%;
    right: 5%;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    padding: 1.5rem;
    border-radius: .5rem;
    text-align: center;
    min-width: 200px;
    animation: 3s ease-in-out infinite experience-float
}

.about .image-wrapper .experience-badge h3 {
    color: var(--contrast-color);
    font-size: 2.5rem;
    margin: 0;
    line-height: .5
}

.about .image-wrapper .experience-badge h3 span {
    font-size: 1rem;
    display: inline-block;
    margin-left: .25rem
}

.about .image-wrapper .experience-badge p {
    margin: .5rem 0 0;
    font-size: .875rem
}

@keyframes experience-float {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-10px)
    }
}

.features .nav-tabs {
    border: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 6px;
    width: auto
}

.call-to-action .btn-cta,
.features .nav-link {

    transition: .3s
}

.features .nav-item {
    margin: 0;
    padding: 0 5px 0 0
}

.features .nav-item:last-child {
    padding-right: 0
}

.features .nav-link {
    background-color: none;
    color: var(--heading-color);
    padding: 10px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    height: 100%;
    border: 0;
    margin: 0
}

@media (max-width:468px) {
    .features .nav-link {
        padding: 8px 20px
    }
}

.features .nav-link i {
    padding-right: 15px;
    font-size: 48px
}

.features .nav-link h4 {
    font-size: 17px;
    font-weight: 500;
    margin: 0
}

.features .nav-link:hover {
    border-color: color-mix(in srgb, var(--default-color), transparent 80%)
}

.features .nav-link.active {
    background-color: var(--accent-color);
    border-color: var(--accent-color)
}

.features .tab-content,
.service-details .service-box+.service-box {
    margin-top: 30px
}

.features .tab-pane h3 {
    color: var(--heading-color);
    font-weight: 700;
    font-size: 32px;
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 20px;
    letter-spacing: .165rem
}

.features .tab-pane h3:after {
    content: "";
    position: absolute;
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    left: 0;
    bottom: 0
}

.features .tab-pane ul {
    list-style: none;
    padding: 0
}

.features .tab-pane ul li {
    padding-top: 10px
}

.features .tab-pane ul li span strong {
    letter-spacing: .135rem
}

.features .tab-pane ul i {
    font-size: 20px;
    padding-right: 4px;
    color: var(--accent-color)
}

.features-cards {
    --default-color: #555;
    --heading-color: #333
}

.features-cards .feature-box {
    height: 100%;
    padding: 40px 30px;
    border-radius: 10px
}

.features-cards .feature-box i {
    font-size: 44px;
    display: inline-block;
    line-height: 0;
    color: var(--accent-color);
    margin-bottom: 20px
}

.call-to-action .btn-cta,
.call-to-action .container,
.call-to-action .dots {
    color: var(--contrast-color)
}

.features-cards .feature-box h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 10px
}

.features-cards .feature-box p {
    font-size: 15px;
    margin-bottom: 0
}

.features-cards .feature-box.orange {
    background-color: #fff3e2
}

.features-cards .feature-box.orange i {
    color: #edb86e
}

.features-cards .feature-box.blue {
    background-color: #deedfd
}

.features-cards .feature-box.blue i {
    color: #20a5f8
}

.features-cards .feature-box.green {
    background-color: #d5f1e4
}

.features-cards .feature-box.green i {
    color: #48c88a
}

.features-cards .feature-box.red {
    background-color: #fdeded
}

.features-cards .feature-box.red i {
    color: #f28484
}

.features-2 .feature-item .feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: color-mix(in srgb, var(--accent-color), transparent 92%)
}

.features-2 .feature-item .feature-icon i {
    font-size: 24px;
    color: var(--accent-color)
}

.features-2 .feature-item .feature-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px
}

.features-2 .feature-item .feature-content p {
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    font-size: 15px;
    margin-bottom: 0
}

.features-2 .phone-mockup {
    position: relative;
    padding: 30px 0
}

.features-2 .phone-mockup img {
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, .1))
}

@media (max-width:991.98px) {
    .features-2 .feature-item {
        text-align: center !important;
        margin-bottom: 2rem
    }

    .features-2 .feature-item .d-flex {
        flex-direction: column;
        text-align: center;
        justify-content: center !important
    }

    .features-2 .phone-mockup {
        margin: 3rem 0
    }

    .about .about-description {
        text-align: left;
    }
}

.call-to-action .container {
    background: var(--accent-color);
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    padding: 4rem 2rem
}

.call-to-action .content h2,
.call-to-action .content p {
    color: var(--contrast-color);
    position: relative;
    z-index: 2
}

.call-to-action .btn-cta {
    background-color: color-mix(in srgb, var(--contrast-color) 15%, transparent);
    padding: 12px 40px;
    border: 2px solid var(--contrast-color);
    position: relative;
    z-index: 2
}

.call-to-action .dots,
.call-to-action .shape {
    position: absolute;
    pointer-events: none;
    z-index: 1
}

.call-to-action .btn-cta:hover {
    background-color: var(--contrast-color);
    color: var(--accent-color)
}

.call-to-action .dots svg,
.call-to-action .shape svg {
    width: 100%;
    height: 100%
}

.call-to-action .shape svg path {
    fill: color-mix(in srgb, var(--contrast-color) 50%, transparent)
}

.call-to-action .shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -50px;
    opacity: .1;
    transform: rotate(45deg);
    animation: 3s ease-in-out infinite shapes-float
}

.call-to-action .shape-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -50px;
    opacity: .15;
    transform: rotate(-15deg);
    animation: 4s ease-in-out infinite shapes-float
}

.call-to-action .shape-3 {
    width: 150px;
    height: 150px;
    top: 20%;
    right: 15%;
    opacity: .08;
    transform: rotate(15deg)
}

.call-to-action .dots-1 {
    width: 200px;
    height: 200px;
    top: -30px;
    left: 10%;
    opacity: .1;
    transform: rotate(15deg);
    animation: 4s ease-in-out infinite shapes-float
}

.call-to-action .dots-2 {
    width: 150px;
    height: 150px;
    bottom: 20px;
    right: 15%;
    opacity: .15;
    transform: rotate(-10deg)
}

@keyframes shapes-float {

    0%,
    100% {
        transform: scale(.8) rotate(45deg) translateY(0)
    }

    50% {
        transform: scale(.8) rotate(45deg) translateY(-20px)
    }
}

@media (max-width:575px) {
    .hero .hero-content h1 {
        font-size: 2rem
    }

    .stat-item {
        padding: 1.5rem
    }

    .call-to-action .container {
        border-radius: 0
    }
}

.clients .swiper-slide img {
    opacity: .5;
    transition: .3s;
    filter: grayscale(100)
}

.clients .swiper-slide img:hover {
    filter: none;
    opacity: 1
}

.clients .swiper-wrapper {
    height: auto
}

.clients .swiper-pagination {
    margin-top: 20px;
    position: relative
}

.clients .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    opacity: 1;
    background-color: color-mix(in srgb, var(--default-color), transparent 80%)
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--accent-color)
}

.testimonials .testimonial-item {
    background-color: var(--surface-color);
    box-shadow: 0 2px 30px rgba(0, 0, 0, .08);
    padding: 30px;
    position: relative;
    height: 100%
}

.testimonials .testimonial-item .testimonial-img {
    width: 90px;

    border: 6px solid var(--background-color);
    float: left;
    margin: 0 10px 0 0
}

.testimonials .testimonial-item h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 10px 0 5px
}

.testimonials .testimonial-item h4 {
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin: 0
}

.testimonials .testimonial-item .stars {
    margin: 10px 0
}

.testimonials .testimonial-item .stars i {
    color: #ffc107;
    margin: 0 1px
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
    color: color-mix(in srgb, var(--accent-color), transparent 50%);
    font-size: 26px;
    line-height: 0
}

.testimonials .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative
}

.testimonials .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
    transform: scale(-1, -1)
}

.testimonials .testimonial-item p {
    font-style: italic;
    margin: 15px 0 0;
    padding: 0
}

.stats .stats-item {
    padding: 30px;
    width: 100%
}

.stats .stats-item span {
    color: var(--heading-color);
    font-size: 48px;
    display: block;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative
}

.stats .stats-item span:after {
    content: "";
    position: absolute;
    display: block;
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto
}

.stats .stats-item p {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    padding: 0;
    margin: 0;
    font-family: var(--heading-font);
    font-weight: 500
}

.services .service-card {
    height: 100%;
    padding: 30px;
    background: var(--surface-color);
    border-radius: 2px;
    transition: .3s
}

.services .service-card:hover {
    box-shadow: 0 0 15px rgba(0, 0, 0, .08)
}

.pricing .pricing-card.popular,
.services .service-card:hover .icon {
    background: var(--accent-color);
    color: var(--contrast-color)
}

.services .service-card:hover .read-more {
    color: color-mix(in srgb, var(--accent-color), transparent 25%)
}

.services .service-card .icon {
    width: 60px;
    height: 60px;
    margin-right: 30px;
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: var(--accent-color);
    font-size: 28px;
    transition: .3s;
    line-height: 1
}

.pricing .pricing-card .popular-badge,
.pricing .pricing-card.popular .btn-light {
    background: var(--contrast-color);
    color: var(--accent-color)
}

.services .service-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px
}

.services .service-card p {
    margin-bottom: 25px;
    color: color-mix(in srgb, var(--default-color), transparent 15%);
    font-size: 1.15rem;
    line-height: 1.6
}

.faq .faq-title,
.pricing .pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem
}

.services .service-card .read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-color);
    font-weight: 500;
    transition: .3s
}

.services .service-card .read-more i {
    font-size: 14px;
    transition: transform .3s
}

.services .service-card .read-more:hover i {
    transform: translateX(5px)
}

.pricing .pricing-card {
    height: 100%;
    padding: .75rem 1.5rem;
    background: var(--surface-color);
    border-radius: 0;
    transition: .3s;
    position: relative
}

.pricing .pricing-card.popular .btn-light:hover {
    background: color-mix(in srgb, var(--contrast-color), transparent 10%)
}

.pricing .pricing-card .popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: .5rem 1rem;
    border-radius: 2rem;
    font-size: .875rem;
    font-weight: 600;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, .08)
}

.pricing .pricing-card .price {
    margin-bottom: .55rem
}

.pricing .pricing-card .price .currency {
    font-size: 1.5rem;
    font-weight: 600;
    vertical-align: top;
    line-height: 1
}

.pricing .pricing-card .price .amount {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1
}

.pricing .pricing-card .price .period {
    font-size: 1rem;
    color: color-mix(in srgb, var(--default-color), transparent 40%)
}

.pricing .pricing-card .description {
    margin-bottom: 2rem;
    font-size: .975rem
}

.pricing .pricing-card h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem
}

.pricing .pricing-card .features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem
}

.pricing .pricing-card .features-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem
}

.pricing .pricing-card .features-list li i {
    color: var(--accent-color);
    margin-right: .75rem;
    font-size: 1.25rem
}

.pricing .pricing-card .btn {
    width: 100%;
    padding: .75rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    font-weight: 500;
    border-radius: 26px
}

.btn-primary,
.pricing .pricing-card .btn.btn-primary,
.btn.active {
    background: var(--accent-color);
    border: none;
    color: var(--contrast-color);
    padding: .5rem 1rem;
    border-radius: 0;
}

.btn-primary h4 {
    color: var(--contrast-color);
    background: transparent;
    margin-bottom: 0;
    font-family: var(--default-font);
}


.btn-secondary {
    background: var(--accent-color);
}

.btn-secondary * {
    color: white !important
}

.btn-outline-primary {
    color: var(--accent-color);
    background-color: var(--contrast-color);
    border-color: var(--accent-color);
}

.btn:hover,
.btn-primary:hover,
.pricing .pricing-card .btn.btn-primary:hover,
.btn:first-child:active {
    background: color-mix(in srgb, var(--accent-color), transparent 15%);
    border-color: var(--accent-color);
}

.btn:focus-visible,
:not(.btn-check)+.btn:active {
    color: #fff;
    background-color: var(--green-color)
}

.faq .faq-title {
    font-weight: 700;
    color: var(--heading-color)
}

.call-to-action-2 h3,
.call-to-action-2 p,
.faq .faq-description {
    color: var(--default-color)
}

.faq .faq-description {
    font-size: 1rem;
    margin-bottom: 2rem
}

.faq .faq-container .faq-item {
    background-color: var(--surface-color);
    position: relative;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden
}

.faq .faq-container .faq-item h3 {
    font-weight: 600;
    font-size: 23px;
    line-height: 28px;
    margin: 0 30px 0 0;
    transition: .3s;
    cursor: pointer;
    display: flex;
    align-items: center
}

.faq .faq-container .faq-item h3 .num {
    color: var(--accent-color);
    padding-right: 5px
}

.faq .faq-container .faq-item .faq-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: .3s ease-in-out;
    visibility: hidden;
    opacity: 0
}

.faq .faq-container .faq-item .faq-content p {
    margin-bottom: 0;
    overflow: hidden
}

.faq .faq-container .faq-item .faq-toggle {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 16px;
    line-height: 0;
    transition: .3s;
    cursor: pointer
}

.faq .faq-container .faq-active .faq-content {
    grid-template-rows: 1fr;
    visibility: visible;
    opacity: 1;
    padding-top: 10px
}

.faq .faq-container .faq-active .faq-toggle {
    transform: rotate(90deg);
    color: var(--accent-color)
}

.call-to-action-2 {
    padding: 80px 0
}

.call-to-action-2 .container {
    position: relative;
    z-index: 3
}

.call-to-action-2 h3 {
    font-size: 28px;
    font-weight: 700
}

.call-to-action-2 .cta-btn {
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 40px;

    transition: .5s;
    margin: 10px;
    border: 2px solid color-mix(in srgb, var(--contrast-color), transparent 30%);
    color: var(--contrast-color)
}

.call-to-action-2 .cta-btn:hover {
    border-color: var(--contrast-color)
}

.contact .info-box {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    padding: 3rem;
    border-radius: 1rem;
    height: 100%
}

.contact .contact-form,
.service-details .service-box,
.service-details .services-list {
    background-color: var(--surface-color)
}

.contact .info-box h3 {
    color: var(--contrast-color);
    font-size: 2rem;
    margin-bottom: 1rem
}

@media (max-width:767.98px) {
    .contact .info-box h3 {
        font-size: 1.75rem
    }
}

.contact .info-box p {
    opacity: .8;
    margin-bottom: 2rem
}

.contact .info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem
}

.contact .info-item .icon-box {
    width: 3.5rem;
    height: 3.5rem;
    background-color: color-mix(in srgb, var(--contrast-color), transparent 85%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: .3s
}

.contact .info-item .icon-box i {
    font-size: 1.5rem;
    color: var(--contrast-color)
}

.contact .info-item:hover .icon-box {
    background-color: color-mix(in srgb, var(--contrast-color), transparent 70%)
}

.contact .info-item .content h4 {
    color: var(--contrast-color);
    font-size: 1.25rem;
    margin-bottom: .5rem;
    font-weight: 700
}

.contact .info-item .content p {
    margin-bottom: .25rem;
    font-size: .95rem
}

.contact .contact-form {
    padding: 3rem;
    border-radius: 1rem;
    height: 100%;
    box-shadow: 0 0 25px rgba(0, 0, 0, .05)
}

.contact .contact-form h3 {
    font-size: 2rem;
    margin-bottom: 1rem
}

.contact .contact-form p {
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    margin-bottom: 2rem
}

.contact .contact-form .form-control,
.contact .contact-form .form-select {
    padding: .875rem 1.25rem;
    border-color: color-mix(in srgb, var(--default-color), transparent 90%);
    border-radius: .5rem;
    background-color: color-mix(in srgb, var(--surface-color) 90%, #fff 5%);
    color: var(--default-color)
}

.contact .contact-form .form-control:focus,
.contact .contact-form .form-select:focus {
    box-shadow: none;
    border-color: var(--accent-color)
}

.contact .contact-form .form-control::placeholder,
.contact .contact-form .form-select::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 50%)
}

.contact .contact-form .btn {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    padding: 1rem 2rem;
    border-radius: 2rem;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    transition: .3s
}

.contact .contact-form .btn:hover {
    background-color: color-mix(in srgb, var(--accent-color), var(--contrast-color) 20%)
}

.service-details .service-box {
    padding: 20px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, .1)
}

.service-details .service-box h4 {
    font-size: 20px;
    font-weight: 700;
    border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
    padding-bottom: 15px;
    margin-bottom: 15px
}

.service-details .help-box,
.service-details .services-list a.active {
    background-color: var(--accent-color);
    color: var(--contrast-color)
}

.service-details .services-list a {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    display: flex;
    align-items: center;
    padding: 12px 15px;
    margin-top: 15px;
    transition: .3s
}

.service-details .services-list a:first-child {
    margin-top: 0
}

.service-details .services-list a i {
    font-size: 16px;
    margin-right: 8px;
    color: var(--accent-color)
}

.service-details .services-list a:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
    color: var(--accent-color)
}

.service-details .download-catalog a {
    color: var(--default-color);
    display: flex;
    align-items: center;
    padding: 10px 0;
    transition: .3s;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%)
}

.service-details .download-catalog a:first-child {
    border-top: 0;
    padding-top: 0
}

.service-details .download-catalog a:last-child {
    padding-bottom: 0
}

.service-details .download-catalog a i {
    font-size: 24px;
    margin-right: 8px;
    color: var(--accent-color)
}

.service-details .help-box {
    margin-top: 30px;
    padding: 30px 15px
}

.service-details .help-box .help-icon {
    font-size: 48px
}

.service-details .services-img {
    margin-bottom: 20px
}

.service-details h3 {
    font-size: 26px;
    font-weight: 700
}

.service-details p {
    font-size: 15px
}

.service-details ul {
    list-style: none;
    padding: 0;
    font-size: 15px
}

.service-details ul li {
    padding: 5px 0;
    display: flex;
    align-items: center
}

.service-details ul i {
    font-size: 20px;
    margin-right: 8px;
    color: var(--accent-color)
}

.swiper-pagination-progressbar {
    bottom: 0 !important;
    top: inherit !important
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: var(--nav-hover-color) !important
}

.swiper-button-next,
.swiper-button-prev {
    color: #fff !important
}

.img-thumbnail {
    padding: 0;
    background-color: transparent;
    border: 0;
    border-radius: 0;
    max-width: 100%;
    height: auto
}

.feature-item {
    background: var(--surface-color);
    padding: 1rem;
    min-height: 180px;
    display: flex;
    align-items: center
}

.feature-item.dand-dark {
    background: #5d3b29b3;
    color: #fff
}

@media (max-width:992px) {
    .hero .customers-badge {
        position: static;
        margin: 1rem auto;
        max-width: 250px
    }

    .about .about-title {
        font-size: 2rem
    }

    .about .image-wrapper {
        padding-left: 0;
        margin-top: 3rem;
        display: flex;
        flex-direction: column;
        gap: 2rem
    }

    .about .image-wrapper .images {
        display: flex;
        flex-direction: column;
        gap: 1.5rem
    }

    .about .image-wrapper .main-image {
        margin-left: 0
    }

    .about .image-wrapper .small-image {
        position: static;
        margin: .5rem auto;
        border: 0
    }

    .about .image-wrapper .experience-badge {
        position: static;
        width: fit-content;
        margin: 0 auto
    }

    .call-to-action .container {
        padding: 3rem 1.5rem
    }

    .call-to-action .shape-1 {
        width: 200px;
        height: 200px
    }

    .call-to-action .dots-1,
    .call-to-action .shape-2 {
        width: 150px;
        height: 150px
    }

    .call-to-action .shape-3 {
        width: 100px;
        height: 100px
    }

    .call-to-action .dots-2 {
        width: 120px;
        height: 120px
    }

    .call-to-action .dots-3 {
        width: 80px;
        height: 80px
    }

    .contact .contact-form,
    .contact .info-box {
        padding: 1.5rem
    }

    .feature-item {
        min-height: 190px
    }
}

.feature-item p {
    margin: 0;
    font-size: 1.25rem;
    text-align: center
}

.glightbox img {
    transition: transform .15s ease-in-out
}

.glightbox img:hover {
    transform: scale(1.01)
}

#technicke-parametry .img-thumbnail {
    max-height: 196px
}

.toggle-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    cursor: pointer
}

.toggle-icon {
    font-size: 1.5rem;
    transition: transform .3s ease-in-out
}

.toggle-container:hover .toggle-icon {
    color: var(--surface-color)
}

.toggle-icon.collapsed {
    transform: rotate(0)
}

.toggle-icon:not(.collapsed) {
    transform: rotate(180deg)
}

@media (max-width:768px) {
    .contact .contact-form h3 {
        font-size: 1.75rem
    }

    .header .logo {
        min-height: 32px;
        width: max-content !important
    }

    .header .logo img {
        max-height: 52px;
        display: block;
        width: 100%;
        max-width: 130px
    }
}

.swiper-3d .swiper-slide-shadow {
    background: 0 0 !important
}

.table-striped>tbody>tr:nth-of-type(odd)>* {
    --bs-table-color-type: var(--bs-table-striped-color);
    --bs-table-bg-type: #ddd0be57;
}

.table>:not(caption)>*>* {
    padding: .75rem .75rem;
}

tfoot.table-light tr td {
    background-color: #ddd0be57;
}

tr {
    border-color: #fff;
}

tfoot.table-light tr:first-child {
    padding: 0;
}

tfoot.table-light tr:first-child td {
    background-color: #fff;
}

.table-same-first table {
    table-layout: fixed;
    width: 100%;
}

.table-same-first table td:nth-child(1),
.table-same-first table th:nth-child(1) {
    width: 10%;
}

.table-same-first table td:nth-child(2),
.table-same-first table th:nth-child(2) {
    width: 70%;
}

.table-same-first table td:nth-child(3),
.table-same-first table th:nth-child(3) {
    width: 20%;
}

.table-same-first table.celkem td:nth-child(1) {
    width: 80%;
}

.table-same-first table.celkem td:nth-child(2) {
    width: 20%;
}

.video-preview {
    width: 80%;
    aspect-ratio: 16 / 9;
    border-radius: 6px;
    margin: .2rem auto 1rem;
    display: block;
    border: 6px solid #ece2d6;
}

.alert a {
    text-decoration: underline
}


/* =========================================================
   Pozemky Doksy - unified content sections
   ========================================================= */
.section-kicker,
.lokalita-detail .section-kicker,
.financovani-section .section-kicker,
.projekt-detail-section .section-kicker,
.pozemky-vyber-section .section-kicker {
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: .08em;
    font-size: .85rem;
    color: var(--default-color);
}

.about .section-subtitle,
.projekt-detail-section .section-subtitle {
    font-size: 1.65rem;
    line-height: 1.35;
    font-weight: 600;
    color: var(--default-color);
}

.image-placeholder-card,
.projekt-gallery-box,
.pozemky-map-card,
.pozemek-detail-card,
.pozemky-legend-box {
    border: 1px solid rgba(0, 0, 0, .12);
    background: rgba(255, 255, 255, .35);
}

.image-placeholder-card,
.projekt-gallery-box,
.pozemky-map-card {
    padding: 16px;
}

.image-placeholder-card img,
.projekt-gallery-box img,
.pozemky-map-card img {
    display: block;
    object-fit: cover;
}

.projekt-main-image {
    aspect-ratio: 16 / 8;
}

.projekt-small-image {
    aspect-ratio: 16 / 9;
}

/* Universal icon point component */
.icon-points {
    border: 1px solid rgba(0, 0, 0, .12);
    background: rgba(255, 255, 255, .35);
}

.icon-point-item {
    padding: 22px 16px;
    border-right: 1px solid rgba(0, 0, 0, .12);
}

.icon-points .row>[class*="col-"]:last-child .icon-point-item {
    border-right: 0;
}

.icon-point-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    margin-bottom: 12px;
    font-size: 2rem;
    line-height: 1;
    color: var(--accent-color);
}

.icon-down .icon-point-icon {
    font-size: 2.2rem;
}

.icon-point-item h4 {
    margin: 0 0 4px;
    font-family: var(--default-font);
    font-size: .9rem;
    font-weight: 700;
    line-height: 1.25;
    text-transform: uppercase;
    color: var(--default-color);
}

.icon-point-item p {
    margin: 0;
    font-size: .75rem;
    font-weight: 600;
    line-height: 1.35;
    text-transform: uppercase;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.icon-point-item a:hover h4,
.icon-point-item a:hover p {
    text-decoration: none;
}

.icon-point-description {
    margin: 16px auto 0;
    padding: 12px;
    font-size: .875rem;
    line-height: 1.45;
    color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.icon-point-description::before {
    content: "";
    display: block;
    width: 38px;
    height: 1px;
    margin: 0 auto 16px;
    background: currentColor;
    opacity: .35;
}

.icon-points-large .icon-point-item {
    padding: 34px 22px;
}

.icon-points-large .icon-point-icon {
    font-size: 2.4rem;
    margin-bottom: 16px;
}

.icon-points-large .icon-point-item h4 {
    font-size: 1rem;
}

.kontakt-section .icon-points {
    max-width: 100%;
}

.kontakt-section .icon-point-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.kontakt-section .icon-point-description {
    max-width: 15.5rem;
}

.kontakt-section .contact-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .35rem;
    width: 100%;
    max-width: 11.25rem;
    min-height: 2.5rem;
    padding: .55rem .9rem;
    line-height: 1.2;
    text-align: center;
    white-space: normal;
}

.kontakt-section .contact-action-btn i {
    flex: 0 0 auto;
}

.kontakt-section .icon-point-item hr {
    width: 100%;
    max-width: 11.25rem;
    margin: 1rem auto .85rem;
}

.kontakt-section .icon-point-item h5 {
    margin-bottom: 0;
    color: var(--heading-color);
}

/* Quotes */
.quote {
    align-items: center;
    display: flex;
    gap: 18px;
    padding: 1.35rem;
    background: rgba(255, 255, 255, .55);
}

.quote p {
    margin: 0;
    font-style: italic;
    font-weight: 600;
    font-family: var(--heading-font);
}

.quote-icon {
    flex: 0 0 auto;
    font-size: 1.6rem;
}

.quote-icon .bi-leaf {
    background: url(/img/leaves.svg) left center no-repeat;
    background-size: 40px 40px;
    width: 40px;
    height: 40px;
    display: block;
}


.projekt-dark-content .quote-icon .bi-leaf,
.projekt-dark-gallery .quote-icon .bi-leaf {
    background: url(/img/leaves-white.svg) left center no-repeat;
}

/* Lokalita map overlays */
.lokalita-map-card,
.lokalita-photo-card {
    position: relative;
    overflow: hidden;
}

.lokalita-map-card img,
.lokalita-photo-card img {
    display: block;
}

.map-label,
.map-distance {
    position: absolute;
    z-index: 2;
    padding: 8px 14px;
    font-weight: 700;
    text-transform: uppercase;
    background: rgba(255, 255, 255, .85);
}

.map-label span {
    font-size: .75rem;
}

.map-label-kladno {
    top: 8%;
    left: 72%;
}

.map-label-doksy {
    top: 15%;
    left: 11%;
}

.map-label-praha {
    right: 0%;
    bottom: 18%;
}

.map-distance {
    font-size: .8rem;
    text-transform: none;
}

.map-distance-kladno {
    top: 22%;
    left: 70%;
}

.map-distance-praha {
    right: 0%;
    bottom: 6%;
}

.sec .map-label-kladno {
    display: none;
}

.sec .map-label-doksy {
    top: 53%;
    left: 0%;
}

.sec .map-label-praha {
    right: 0%;
    bottom: 79%;
}

.sec .map-distance {
    font-size: .8rem;
    text-transform: none;
}

.sec .map-distance-kladno {
    top: 28%;
    left: 13%;
}

.sec .map-distance-praha {
    right: 0%;
    bottom: 66%;
}

/* Pozemky section */
.pozemky-map-card img {
    width: 100%;
    min-height: 520px;
}

.pozemky-panel {
    height: 100%;
}

.pozemky-filter {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.pozemky-filter .btn {
    border-radius: 999px;
    padding-left: 28px;
    padding-right: 28px;
    text-transform: uppercase;
    font-size: .8rem;
    font-weight: 700;
}

.pozemky-table {
    border: 1px solid rgba(0, 0, 0, .10);
    background: rgba(255, 255, 255, .35);
}

.pozemky-table th {
    text-transform: uppercase;
    font-size: .75rem;
    font-weight: 700;
    padding: 16px 18px;
}

.pozemky-table td {
    padding: 15px 18px;
    font-weight: 600;
    font-size: .9rem;
}

.pozemky-table tr.active td {
    background: rgba(0, 0, 0, .06);
}

.pozemky-table tr.active td:first-child {
    border-left: 3px solid currentColor;
}

.pozemky-table a {
    text-decoration: none;
    font-weight: 600;
}

.status-dot {
    width: 9px;
    height: 9px;
    display: inline-block;
    border-radius: 50%;
    margin-right: 8px;
}

.legend-free,
.status-free {
    background: #173f25;
}

.legend-reserved,
.status-reserved {
    background: #c79545;
}

.legend-sold,
.status-sold {
    background: #b8b0a8;
}

.pozemek-detail-card {
    padding: 24px;
}

.pozemky-legend-box {
    padding: 24px;
}

.pozemky-legend-status {
    padding-right: 22px;
    border-right: 1px solid rgba(0, 0, 0, .12);
}

.legend-item,
.legend-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 34px;
    font-size: .85rem;
    font-weight: 600;
    text-transform: uppercase;
}

.legend-feature {
    text-transform: none;
    font-weight: 500;
}

.legend-square {
    width: 22px;
    height: 22px;
    display: inline-block;
    flex: 0 0 auto;
}

/* Responsive icon separators */
@media (max-width: 1199.98px) and (min-width: 992px) {
    .kontakt-section .icon-points-large .icon-point-item {
        padding-left: 28px;
        padding-right: 28px;
    }

    .kontakt-section .icon-point-description {
        max-width: 13.5rem;
    }
}

@media (max-width: 991.98px) {
    .icon-points .row>[class*="col-"]:nth-child(2n) .icon-point-item {
        border-right: 0;
    }

    .icon-points .row>[class*="col-"]:nth-child(-n+2) .icon-point-item {
        border-bottom: 1px solid rgba(0, 0, 0, .12);
    }

    .kontakt-section .icon-points .row>.col-12 .icon-point-item {
        border-right: 0;
        border-bottom: 1px solid rgba(0, 0, 0, .12);
    }

    .kontakt-section .icon-points .row>.col-12:last-child .icon-point-item {
        border-bottom: 0;
    }

    .kontakt-section .icon-points-large .icon-point-item {
        padding: 30px 26px;
    }

    .kontakt-section .icon-point-description {
        max-width: 24rem;
    }

    .kontakt-section .contact-action-btn {
        max-width: 13rem;
    }

    .map-label,
    .map-distance {
        display: none;
    }

    .pozemky-map-card img {
        min-height: auto;
    }
}

@media (max-width: 767.98px) {
    .icon-points .row>.col-12 .icon-point-item {
        border-right: 0;
        border-bottom: 1px solid rgba(0, 0, 0, .12);
    }

    .icon-points .row>.col-12:last-child .icon-point-item {
        border-bottom: 0;
    }

    .pozemky-legend-status {
        border-right: 0;
        padding-right: 0;
        margin-bottom: 18px;
    }

    .pozemky-legend-features {
        padding-top: 18px;
        border-top: 1px solid rgba(0, 0, 0, .12);
    }

    .pozemky-filter .btn {
        width: 100%;
    }
}

.lokalita-okoli-item {
    padding: 16px;
    border: 1px solid rgba(0, 0, 0, .12);
    background: rgba(255, 255, 255, .35);
}

.lokalita-okoli {
    width: 100%;
}

.lokalita-okoli-panel {
    width: 100%;
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, .12);
    background: rgba(255, 255, 255, .35);
}

.lokalita-okoli-item {
    width: 100%;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 0, 0, .12);
    background: rgba(255, 255, 255, .35);
}

.lokalita-okoli-item:last-child {
    margin-bottom: 0;
}

.lokalita-okoli-item img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.lokalita-okoli-content {
    padding: 1.75rem 2rem;
}

.lokalita-okoli-content h4 {
    margin-bottom: .75rem;
    font-family: var(--default-font);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--default-color);
}

.lokalita-okoli-content p {
    margin-bottom: .65rem;
}

.lokalita-okoli-content p:last-child {
    margin-bottom: 0;
}

@media (max-width: 991.98px) {
    .lokalita-okoli-panel {
        padding: 1rem;
    }

    .lokalita-okoli-content {
        padding: 1.25rem;
    }
}

.dark-project-section {
    background: #a48f84;
    color: #f7efe6;
    padding: 0;
}

.dark-project-section .projekt-dark-content {
    padding: 5rem 6vw;
}

.dark-project-section .section-kicker,
.dark-project-section .about-title,
.dark-project-section .section-subtitle,
.dark-project-section .about-description,
.dark-project-section .quote p {
    color: #f7efe6;
}

.dark-project-section .about-description {
    color: #5c3a27;
    font-weight: 600;
}

.dark-project-section hr {
    border-color: rgba(247, 239, 230, .25);
}

.projekt-dark-gallery img {
    display: block;
    width: 100%;
    object-fit: cover;
}

.projekt-dark-gallery-main img {
    aspect-ratio: 16 / 9;
}

.projekt-dark-gallery-small {
    aspect-ratio: 16 / 9;
}

.dark-project-section .quote {
    background: #755848
}

.dark-project-section .icon-points {
    border-color: rgba(247, 239, 230, .18);
    background: rgba(255, 255, 255, .06);
}

.dark-project-section .icon-point-item {
    border-color: rgba(247, 239, 230, .18);
}

.dark-project-section .icon-point-icon,
.dark-project-section .icon-point-item h4,
.dark-project-section .icon-point-item p {
    color: #f7efe6;
}

@media (max-width: 991.98px) {
    .dark-project-section .projekt-dark-content {
        padding: 3rem 1.5rem;
    }
}

.pozemky-table-scroll {
    max-height: 950px;
    overflow-y: auto;
    overflow-x: hidden;
}

.pozemky-table {
    table-layout: fixed;
    width: 100%;
}

.pozemky-table thead th {
    position: sticky;
    top: 0;
    z-index: 2;
    background: var(--surface-color);
    padding: 12px 18px !important
}

.pozemky-table th,
.pozemky-table td {
    white-space: nowrap;
}

.pozemky-table th:nth-child(1),
.pozemky-table td:nth-child(1) {
    width: 11%;
    padding-left: 10px;
    padding-right: 8px;
}

.pozemky-table th:nth-child(2),
.pozemky-table td:nth-child(2) {
    width: 22%;
}

.pozemky-table th:nth-child(3),
.pozemky-table td:nth-child(3) {
    width: 18%;
}

.pozemky-table th:nth-child(4),
.pozemky-table td:nth-child(4) {
    width: 25%;
}

.pozemky-table th:nth-child(5),
.pozemky-table td:nth-child(5) {
    width: 26%;
}

.pozemky-table.table-sm th,
.pozemky-table.table-sm td {
    padding-top: .24rem;
    padding-bottom: .24rem;
}

.info-card {
    background: #f3efe9;
    padding: 28px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    width: 100%;
}

.info-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
}

.info-icon {
    width: 32px;
    height: 32px;
    border-radius: 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 32px;
    font-size: 15px;
}

.icon-green {
    background: #dff2ec;
    color: #00835e;
}

.icon-gold {
    background: #f6efdf;
    color: #755848;
}

.icon-cof {
    background: #f6efdf;
    color: #ab5525;
}

.info-card h3 {
    margin: 0;
    font-size: 19px;
    font-weight: 700;
    text-transform: uppercase;
    color: #111;
    letter-spacing: 0.02em;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 11px;
    color: #5f5f5f;
    font-size: 15px;
    line-height: 1.35;
}

.info-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 600;
}

.list-green li::before {
    color: #00835e;
}

.list-gold li::before {
    color: #755848;
}

.info-card-footer {
    margin-top: auto;
    padding-top: 26px;
}

.info-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    max-width: 100%;
    background: #dff2ec;
    color: #00835e;
    border-radius: 999px;
    padding: 10px 16px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.info-badge i {
    font-size: 13px;
    flex: 0 0 auto;
}

.distance-table {
    margin-top: 2px;
}

.distance-row {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 14px;
    align-items: center;
    padding: 11px 0;
    border-bottom: 1px solid #a48f844f;
    font-size: 14px;
}

.distance-row span:first-child {
    color: #555;
}

.distance-row span:first-child i {
    margin-right: 6px;
    color: #755848;
    font-size: 14px;
}

.distance-row span:nth-child(2) {
    color: #ad9c80;
    font-size: 13px;
}

.distance-row strong {
    color: #000;
    font-weight: 700;
    white-space: nowrap;
    text-align: right;
}

@media (max-width: 991.98px) {
    .info-card {
        padding: 24px;
    }
}

@media (max-width: 575.98px) {
    .info-card {
        padding: 22px;
    }

    .distance-row {
        grid-template-columns: 1fr auto;
        gap: 6px 12px;
    }

    .distance-row strong {
        grid-column: 2;
    }
}

.dark-tabs .info-card {

    background: #a48f84;
}

.dark-tabs .info-card h3,
.dark-tabs .info-list li,
.dark-tabs .distance-row span:first-child i,
.dark-tabs .distance-row span:first-child,
.dark-tabs .distance-row strong,
.dark-tabs .distance-row strong a {
    color: white;
}

.distance-row strong a {
    text-decoration: underline;
}

.distance-row strong a:hover {
    text-decoration: none;
}

.dark-tabs .distance-row span:nth-child(2) {
    color: #ffffffb8;
}

.dark-tabs .list-green li::before {
    color: #92e7cc;
}

.dark-tabs .list-gold li::before {
    color: #f6efdf;
}


.dark-tabs {}

.small-card-text {
    font-size: 15px;
}

.video-tile {
    overflow: hidden;
    position: relative;
}

.video-tile-player {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;

}

.pozemky-hero {
    min-height: 100svh;
    padding: 0 0 3rem;
    background-position: left top;
}

.pozemky-hero .hero-title-container {
    position: absolute;
    inset: clamp(7rem, 16vh, 11rem) 0 auto;
    z-index: 2;
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.pozemky-hero .hero-actions-container {
    position: relative;
    z-index: 2;
    margin-top: clamp(23rem, 50vh, 34rem) !important;
}

.pozemky-hero .hero-content h1 {
    text-shadow: 0 2px 18px rgba(17, 60, 82, .52), 0 0 2px rgba(0, 0, 0, .28);
}

@media (max-width: 767.98px) {
    .pozemky-hero {
        min-height: 100svh;
        background-position: 10% top;
    }

    .pozemky-hero .hero-title-container {
        inset: clamp(7.8rem, 16vh, 9.5rem) 0 auto;
    }

    .pozemky-hero .hero-actions-container {
        margin-top: clamp(20rem, 20vh, 20rem) !important;
    }

    .pozemky-hero .hero-content h1 {
        font-size: clamp(2.25rem, 10vw, 2.85rem);
        line-height: 1.08;
        margin-bottom: 0;
    }

    .pozemky-hero .hero-content h1 .accent-text {
        font-size: clamp(1.65rem, 7.6vw, 2.15rem);
        line-height: 1.12;
        margin-top: .15rem;
    }

    .hero-buttons {
        align-items: stretch !important;
    }

    .hero-buttons .btn {
        width: 100%;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .lokalita-detail .card h4 {
        font-size: 1.15rem;
    }

    .lokalita-okoli .btn h4 {
        font-size: 1rem;
        margin-bottom: 0;
    }

    .pozemky-table {
        min-width: 680px;
    }

    .pozemky-table-scroll {
        overflow-x: auto;
    }
}

.google-cookie-bar {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 99999;
    width: min(420px, calc(100% - 32px));
    padding: 14px 16px;
    background: #fff;
    color: #222;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .16);
    font-size: 14px;
    line-height: 1.4;
}

.google-cookie-actions {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin-top: 12px;
}

.google-cookie-actions button {
    padding: 7px 12px;
    border: 1px solid #222;
    border-radius: 6px;
    background: #fff;
    cursor: pointer;
}

#google-cookie-accept {
    background: #222;
    color: #fff;
}

.google-cookie-settings {
    position: fixed;
    left: 10px;
    bottom: 10px;
    z-index: 99998;
    padding: 5px 8px;
    border: 0;
    background: transparent;
    font-size: 12px;
    text-decoration: underline;
    cursor: pointer;
}