:root {
    --yellow-color: #ff8800; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

.sitename {
    display: none;
}

.hidden {
    display: none;
}

.small-hero {
    width: 100%;
    position: relative;
    padding: 180px 0 40px 0;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.search-form {
    margin-bottom: 15px;
    padding: 6px 8px;
    position: relative;
    border-radius: 50px;
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
    display: flex;
    background-color: var(--surface-color);
    transition: 0.3s;
}

.search-form:focus-within {
    border-color: var(--accent-color);
}

.search-form .icon {
    border: 0;
    font-size: 16px;
    padding: 0 20px;
    margin: -7px 7px -7px -8px;
    background: var(--accent-color);
    color: var(--contrast-color);
    transition: 0.3s;
    border-radius: 50px;
    line-height: 0;
    display: flex;
    align-items: center;
}

.search-form input[type=search] {
    border: 0;
    padding: 4px 10px;
    width: 100%;
    background-color: var(--contrast-color);
    color: var(--default-color);
}

.search-form input[type=search]:focus-visible {
    outline: none;
}

.search-result {
    position: absolute;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
}

.search-result .search-result-list {
    background-color: var(--contrast-color);
    padding: 20px 20px;
    height: 100%;
    border-radius: 15px;
    box-shadow: 0 2px 25px rgba(0, 0, 0, 0.1);
}

.search-result .search-result-list h3 {
    text-align: left;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 20px;
}

.search-result .search-result-list ul {
    list-style: none;
    padding: 0;
}

.search-result .search-result-list ul li a {
    padding-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: left;
    color: var(--default-color);
}

.search-result .search-result-list ul li a img {
    line-height: 0;
    height: auto;
    max-width: 75px;
    margin-right: 5px;
}

.search-result .search-result-list ul li a:link {
    text-decoration: none;
}

.search-result .search-result-list ul li a:hover {
    color: var(--accent-color);
}

.searching {
    text-align: center;
}

.searching:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    border: 3px solid var(--accent-color);
    border-top-color: var(--contrast-color);
    animation: animate-searching 1s linear infinite;
}

@keyframes animate-searching {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}



.client-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.client-logo img {
    padding: 20px 40px;
    max-width: 90%;
    transition: 0.3s;
    opacity: 0.5;
    filter: grayscale(100);
}

.client-logo img:hover {
    filter: none;
    opacity: 1;
}

@media (max-width: 640px) {
    .client-logo img {
        padding: 20px;
    }
}



.newsletter-form {
    margin-top: 30px;
    margin-bottom: 15px;
    padding: 6px 8px;
    position: relative;
    border-radius: 50px;
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
    display: flex;
    background-color: var(--surface-color);
    transition: 0.3s;
}

.modal-header i {
    font-size: 1.25rem;
    margin-right: 10px;
    color: var(--accent-color);
}

.newsletter-form:focus-within {
    border-color: var(--accent-color);
}

.newsletter-form input[type=email] {
    border: 0;
    padding: 4px 10px;
    width: 100%;
    background-color: var(--contrast-color);
    color: var(--default-color);
}

.newsletter-form input[type=email]:focus-visible {
    outline: none;
}

.newsletter-form button[type=submit] {
    border: 0;
    font-size: 16px;
    padding: 0 20px;
    margin: -7px -9px -7px 0;
    background: var(--accent-color);
    color: var(--contrast-color);
    transition: 0.3s;
    border-radius: 50px;
}

.newsletter-form button[type=submit]:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.newsletter-form button[type=submit]:disabled {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
}




.navmenu .dropdown ul li.icons {
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.navmenu .dropdown ul li:hover {
    color: var(--nav-dropdown-hover-color);
}




.services .service-item {
    background-color: var(--surface-color);
    border: 1px dashed color-mix(in srgb, var(--yellow-color), transparent 45%);
    height: 100%;
    padding: 30px;
    transition: 0.3s;
    border-radius: 10px;
    display: flex;
    min-height: 180px;
}

.services .service-item .client-logo {
    display: flex;
    justify-content: left;
    align-items: center;
    overflow: hidden;
    width: 50%;
}

.services .service-item .client-logo img {
    padding: 20px 20px;
    max-width: 90%;
    transition: 0.3s;
    filter: none;
    opacity: 1;
}

.services .service-item .service-item-content {
    justify-content: space-between;
    flex-direction: column;
    display: flex;
    width: 80%;
}

.services .service-item .service-item-content .info {
    justify-content: space-between;
    flex-direction: row;
    display: flex;
    align-items: center;
    margin-top: 15px;
}

.services .service-item .service-item-content .validity {
    justify-content: flex-start;
    display: flex;
}

.services .service-item .service-item-content .btn-holder {
    justify-content: flex-end;
    display: flex;
}

.services .service-item .btn-getstarted,
.services .service-item .btn-getstarted:focus {
    color: var(--contrast-color);
    background: var(--yellow-color);
    font-size: 14px;
    padding: 8px 25px;
    margin: 0 0 0 30px;
    border-radius: 50px;
    transition: 0.3s;
}

.services .service-item .btn-getstarted:hover,
.services .service-item.btn-getstarted:focus:hover {
    color: var(--contrast-color);
    background: color-mix(in srgb, var(--yellow-color), transparent 15%);
}

.services .service-item i {
    margin-bottom: 0;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    transition: 0.3s;
    margin-right: 5px;
}

.services .service-item:hover {
    border: 1px dashed color-mix(in srgb, var(--yellow-color), transparent 0%);
}

.services .read-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.services .read-more i {
    margin-left: 5px;
}

@media (max-width: 1200px) {
    .services .service-item .btn-getstarted {
        order: 2;
        margin: 0 15px 0 0;
        padding: 6px 15px;
    }
}

@media (max-width: 767px) {
    .services .service-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .services .service-item .service-item-content {
        width: 100%;
    }

    .services .service-item .service-item-content .info {
        flex-direction: column;
        align-items: center;
    }
    .services .service-item .service-item-content .btn-holder{
        justify-content: center;
        margin-top: 10px;
    }
}



.banners {
    margin: 45px 0 45px 0;
}

.banners .banners-item {
    overflow: hidden;
    padding: 10px;
    background-color: white;
    border-radius: 10px;
    border: 1px dashed color-mix(in srgb, var(--yellow-color), transparent 45%);
}

.banners .banners-item img {
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius: 10px;
}

.banners .banners-item:hover {
    box-shadow: 0 2px 25px rgba(0, 0, 0, 0.1);
    border: 1px dashed color-mix(in srgb, var(--yellow-color), transparent 0%);
}



.counter .title {
    font-weight: 700;
    font-size: 18px;
}

.counter .count {
    font-weight: 700;
    font-size: 32px;
}



.promotion {
    display: flex;
    align-items: center;
    flex-direction: column;
    height: 100%;
    padding: 30px;
    transition: 0.3s;
    border-radius: 10px;
    min-height: 180px;
    border: 1px dashed color-mix(in srgb, var(--accent-color), transparent 0%);
}

.promotion .promotion-header {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.promotion .promotion-header .promotion-logo {
    margin-bottom: 10px;
}

.promotion .promotion-content {
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.promotion .promotion-content .promotion-validity {
    justify-content: flex-start;
    display: flex;
}

.promotion .promotion-content .promotion-validity i {
    margin-right: 5px;
}

.promotion .promotion-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.promotion .promotion-footer .promotion-code-box {
    display: flex;
    flex-direction: row;
    border-radius: 5px;
    border: 1px solid
    color-mix(in srgb, var(--yellow-color), transparent 0%);
}

.promotion .promotion-footer .promotion-code-box input {
    font-size: 24px;
    letter-spacing: 3px;
    border: 0;
    text-align: center;
    background: none;
}

.promotion .promotion-footer .promotion-code-box input:focus{
    outline: none;
}

.promotion .promotion-footer .promotion-code-box i {
    line-height: 1;
    padding: 15px;
    cursor: pointer;
    background: var(--yellow-color);
    color: var(--contrast-color);
}

.promotion .promotion-footer .promotion-code-box i:hover {
    color: color-mix(in srgb, var(--contrast-color), transparent 15%);
    background: color-mix(in srgb, var(--yellow-color), transparent 15%);
}

.promotion .promotion-footer .btn-holder {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.promotion .promotion-footer .btn-holder .btn-getstarted {
    color: var(--contrast-color);
    background: var(--yellow-color);
    font-size: 14px;
    padding: 8px 25px;
    border-radius: 50px;
    transition: 0.3s;
    cursor: pointer;
}

.promotion .promotion-footer .btn-holder .btn-getstarted:hover {
    color: var(--contrast-color);
    background: color-mix(in srgb, var(--yellow-color), transparent 15%);
}

@media (max-width: 767px) {
    .promotion .promotion-header {
        flex-direction: column;
        align-items: center;
    }

    .promotion .promotion-footer .promotion-code-box {
        flex-direction: column;
        align-items: center;
        max-width: 80%;
    }

    .promotion .promotion-footer .promotion-code-box i {
        display: none;
    }
}

.redirect h1 {
    margin: 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
}

.redirect h1 span {
    color: var(--accent-color);
}

.section .section-title .read-more {
    color: var(--contrast-color);
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-color);
    padding: 12px 24px;
    border-radius: 5px;
    transition: 0.3s;
    margin-top: 1rem;
}

.section .section-title .read-more i {
    font-size: 18px;
    margin-left: 5px;
    line-height: 0;
    transition: 0.3s;
}

.section .section-title .read-more:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
    padding-right: 19px;
}

.section .section-title .read-more:hover i {
    margin-left: 10px;
}

.section.more-features {
    padding: 0 0 60px 0;
}

.section.more-features .not-found {
    background-color: var(--surface-color);
    border: 1px dashed color-mix(in srgb, var(--yellow-color), transparent 45%);
    border-radius: 10px;
    padding: 10px;
}

.section.more-features p {
    text-align: center;
    margin-bottom: 0;
}

.cookies-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
}

.cookies-form .mb-3 {
    display: flex;
    flex-direction: column;
}

.cookies-form .cookies-confirm.btn {
    color: var(--contrast-color);
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-color);
    padding: 12px 24px;
    border-radius: 5px;
    transition: 0.3s;
    margin-top: 1rem;
}

.cookies-form .cookies-confirm.btn:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
}
