/* Header */
.header{
    background-color: var(--LIGHT-BLUE);
}
.header__wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 0;
}
.header__wrapper .header__menu .header__menu-list li a:hover:before {
    transform-origin: left;
    transform: scaleX(1);
}
.header__wrapper .header__menu .header__menu-list li a:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: var(--DARK-BLUE);
    bottom: -3px;
    left: 0;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform .3s ease-in-out;
}
.header__wrapper .header__menu .header__menu-list li a{
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--DARK-BLUE);
    position: relative;
}
.header__wrapper .header__menu .header__menu-list{
    list-style: none;
    display: flex;
    gap: 45px;
}
.header {
    width: 100%;
    z-index: 999;
    transition:
            background-color 0.3s ease,
            box-shadow 0.3s ease,
            transform 0.3s ease,
            padding 0.3s ease;
}

.header.is-fixed {
    position: fixed;
    top: 0;
    left: 0;
    background-color: var(--LIGHT-BLUE);
    box-shadow: 0 8px 24px rgba(7, 18, 74, 0.12);
    animation: headerSlideDown 0.3s ease forwards;
}
.header.is-fixed .header__wrapper {
    padding: 25px 0;
}
.header.is-fixed .header__logo-image {
    max-height: 44px;
}
.header-mob__actions {
	display: flex;
    align-items: center;
    gap: 20px;
}
.header__languages {
    position: relative;
    background-color: var(--DARK-BLUE);
    padding: 10px;
    min-width: 67px;
    text-align: center;
}
.header__languages-current {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--LIGHT-BLUE);
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
}

.header__languages-arrow {
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--LIGHT-BLUE);
    border-bottom: 2px solid var(--LIGHT-BLUE);
    transform: rotate(45deg);
    margin-top: -4px;
    transition: transform 0.2s ease;
}
.header__languages::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 8px;
}
.header__languages-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 1000;
    min-width: 67px;
    margin: 0;
    padding: 2px 0;
    list-style: none;
    background: var(--WHITE);
    border-radius: 0;
    box-shadow: 0 8px 24px rgba(7, 18, 74, 0.14);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px);
    transition: 0.2s ease;
}

.header__languages-dropdown a {
    display: block;
    padding: 8px 14px;
    color: var(--DARK-BLUE);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}
.header__languages:hover .header__languages-dropdown,
.header__languages:focus-within .header__languages-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}
.header__languages:hover .header__languages-arrow,
.header__languages:focus-within .header__languages-arrow {
    transform: rotate(225deg);
    margin-top: 4px;
}
.header__menu{
    display: flex;
    gap: 45px;
    align-items: center;
}
@keyframes headerSlideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}
body.has-fixed-header {
    padding-top: var(--header-height);
}
/* Hero */
.hero {
    position: relative;
    overflow: hidden;
    background-color: var(--LIGHT-BLUE);
}
.hero__slider,
.hero__wrapper,
.hero__slide {
    width: 100%;
}
.hero__slide {
    position: relative;
    min-height: 630px;
    overflow: hidden;
}
.hero__image-wrap {
    position: absolute;
    top: 0px;
    right: 0;
    bottom: 0;
    width: 68vw;
    z-index: 1;
    overflow: hidden;

    border-top-left-radius: 120px;
    transform: skewX(-28deg);
    transform-origin: bottom left;
}

.hero__image {
    width: 115%;
    height: 100%;
    display: block;
    object-fit: cover;
    transform: skewX(28deg);
    transform-origin: bottom left;
}

.hero__container {
    position: relative;
    z-index: 3;
    min-height: 595px;
    display: flex;
    align-items: center;
}
.hero__content {
    width: 38%;
    padding: 80px 0;
}
.hero__title {
    margin: 0 0 24px;
    font-size: 60px;
    line-height: 72px;
    font-weight: 800;
    color: var(--DARK-BLUE);
}

.hero__description {
    max-width: 370px;
    margin-bottom: 36px;
    font-size: 17px;
    line-height: 22px;
    color: var(--DARK-BLUE);
}

.hero__description p {
    margin: 0;
}
/* Produkcija */

.products {
    padding: 75px 0;
    background-color: var(--WHITE);
}
.products__top {
    max-width: 650px;
    margin-bottom: 48px;
}

.products__title {
    margin: 0 0 12px;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 800;
    color: var(--DARK-BLUE);
}

.products__description {
    font-size: 15px;
    line-height: 20px;
    color: var(--DARK-BLUE);
}

.products__description p {
    margin: 0;
}

.products__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 52px;
}

.products-card {
    position: relative;
    min-height: 424px;
    overflow: hidden;
    border-radius: 18px;
}

.products-card__image {
    width: 100%;
    height: 100%;
    min-height: 424px;
    display: block;
    object-fit: cover;
}

.products-card__content {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 110px;
    z-index: 2;

    min-height: 192px;
    padding: 34px 48px 28px 28px;

    background-color: var(--LIGHT-BLUE);
    border-top-left-radius: 54px;
    border-bottom-right-radius: 18px;

    overflow: visible;
}
.products-card__content::before {
    content: "";
    position: absolute;
    left: -128px;
    top: 0px;
    bottom: 0;
    width: 140px;
    background-color: var(--LIGHT-BLUE);
    transform: skewX(-30deg);
    transform-origin: bottom left;
    border-top-left-radius: 58px;
    border-bottom-left-radius: 18px;
    z-index: -1;
}

.products-card__title {
    margin: 0 0 14px;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 800;
    color: var(--DARK-BLUE);
}

.products-card__description {
    max-width: 520px;
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.45;
    color: var(--DARK-BLUE);
}

.products-card__description p {
    margin: 0;
}

/* Apie mus */
section.about {
    background-image: url("../assets/img/fronord_logo_vector.svg");
    background-repeat: no-repeat;
    background-position: left;
    background-size: contain;
}
section.about .about__grid .about__content p{
    margin-bottom: 15px;
}
section.about .about__grid .about__content{
    font-size: 15px;
    line-height: 20px;
    color: var(--WHITE);
}
section.about .about__grid .about__title{
    margin: 0 0 12px;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 800;
    color: var(--WHITE);
}
section.about .about__grid .about__images img{
    border-radius: 18px;
    height: 443px;
    object-fit: cover;
    width: 100%;
}
section.about .about__grid .about__images{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
section.about .about__grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px;
    align-items: center;
}
section.about{
    background-color: var(--DARK-BLUE);
    padding: 75px 0;
}
/* Naujienos */
.news-section {
    padding: 75px 0;
    background-color: var(--WHITE);
    overflow: hidden;
}

.news-section__top {
    max-width: 650px;
    margin-bottom: 48px;
}

.news-section__title {
    margin: 0 0 12px;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 800;
    color: var(--DARK-BLUE);
}

.news-section__description {
    font-size: 15px;
    line-height: 1.45;
    color: var(--DARK-BLUE);
}

.news-section__description p {
    margin: 0;
}

.news-slider-wrap {
    position: relative;
}

.news-slider {
    overflow: hidden;
}

.news-card {
    display: block;
    color: #07124a;
    text-decoration: none;
}

.news-card__image-wrap {
    width: 100%;
    height: 170px;
    margin-bottom: 18px;
    overflow: hidden;
    border-radius: 18px;
    background-color: #eef2f8;
}

.news-card__image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.news-card:hover .news-card__image {
    transform: scale(1.05);
}

.news-card__date {
    display: block;
    margin-bottom: 12px;
    font-size: 13px;
    color: var(--DARK-BLUE);
}

.news-card__title {
    margin: 0 0 12px;
    font-size: 18px;
    line-height: 20px;
    font-weight: 800;
    color: var(--DARK-BLUE);
}

.news-card__excerpt {
    font-size: 15px;
    line-height: 1.35;
    color: var(--DARK-BLUE);
}

.news-card__excerpt p {
    margin: 0;
}

/* Rodyklės šonuose per vidurį */
.news-slider__arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    transform: translateY(-50%);
}

.news-slider__arrow--prev {
    left: -58px;
}

.news-slider__arrow--next {
    right: -58px;
}

.news-slider__arrow span {
    position: relative;
    display: block;
    width: 18px;
    height: 18px;
    margin: 0 auto;
    border-top: 3px solid var(--DARK-BLUE);
    border-right: 3px solid var(--DARK-BLUE);
}

.news-slider__arrow--prev span {
    transform: rotate(-135deg);
}

.news-slider__arrow--next span {
    transform: rotate(45deg);
}

.news-slider__arrow:hover {
    opacity: 0.7;
}
/*CTA */
section.cta .cta__description a{
    color: var(--WHITE);
    border-bottom: 1px solid;
}
section.cta .cta__description p{
    margin-bottom: 15px;
}
section.cta .cta__description{
    font-size: 15px;
    line-height: 20px;
    color: var(--WHITE);
    max-width: 50%;
}
section.cta .cta__title{
    margin: 0 0 12px;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 800;
    color: var(--WHITE);
}
section.cta {
    background-color: var(--DARK-BLUE);
    padding: 75px 0;
    background-image: url(../assets/img/fronord_logo_vector.svg);
    background-position: center right;
    background-repeat: no-repeat;
    background-size: 50%;
	margin: 2px 0;
}
/* Social Linkedin */
section.social .social__title{
    margin: 0 0 12px;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 800;
    color: var(--DARK-BLUE);
}
section.social{
    padding: 75px 0;
    background-color: var(--WHITE);
}
/* Woocommerce */
.woocommerce-ordering,
.woocommerce-result-count {
    display: none !important;
}
.woocommerce-page ul.products.columns-4 li .fronord-product-category-after-title{
    color: var(--DARK-BLUE);
    text-transform: uppercase;
    font-size: 12px;
    font-weight: bold;
}
.woocommerce-page ul.products.columns-4 li .fronord-product-line-above-title {
    position: absolute;
    top: 0px;
    left: 0;
    background-color: var(--LIGHT-BLUE);
    color: var(--WHITE);
    font-size: 12px;
    font-weight: bold;
    padding: 3px 15px;
}
.woocommerce-page ul.products.columns-4 li .woocommerce-loop-product__title{
    font-size: 18px;
    line-height: 20px;
    font-weight: 800;
    color: var(--DARK-BLUE);
    padding-bottom: 0px;
}
.woocommerce-page ul.products.columns-4 li img{
    height: 300px !important;
    object-fit: contain;
    margin-bottom: 0 !important;
}
.woocommerce-page.woocommerce ul.products::before {
    display: none;
}
.woocommerce-page.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px
}
.woocommerce-page ul.products.columns-4 li:hover{
    border: 1px solid var(--LIGHT-BLUE);
}
.woocommerce-page ul.products.columns-4 li{
    width: 100%;
    text-align: center;
    margin: 0;
    padding: 25px 15px 15px;
    border: 1px solid #e9e9e9;
    border-radius: 5px;
    transition: border 0.2s;
}
.woocommerce-page .default-content .page-title{
    margin: 0 0 35px;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 800;
    color: var(--DARK-BLUE);
    text-align: center;
}
.woocommerce-page main{
    padding: 75px 0;
    background-color: var(--WHITE);
}
.single-product .fronord-product-content tr td:first-child span {
  font-weight: bold !important;
}
.single-product .fronord-product-content td{
	padding-right: 15px;
	padding-bottom: 5px;
}
.single-product .fronord-product-section-content td{
    padding: 5px;
    border: 1px solid #e5e5e5;
}
.single-product .attachment-woocommerce_single {
    max-height: 600px;
    object-fit: contain!important;
}
.contact-page__content .contact-page__right .wpcf7-submit:hover,
.single-product .fronord-contact-section .wpcf7-submit:hover{
    background-color: var(--DARK-BLUE);
    color: var(--WHITE);
    border: 2px solid var(--WHITE);
}
.single-product .fronord-contact-section {
    max-width: 50%;
}
.contact-page__content .contact-page__right .wpcf7-submit,
.single-product .fronord-contact-section .wpcf7-submit{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 171px;
    min-height: 41px;
    padding: 10px 28px;
    background-color: var(--WHITE);
    color: var(--DARK-BLUE);
    border: 2px solid var(--WHITE);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
}
.contact-page__content .contact-page__right form label textarea::placeholder,
.contact-page__content .contact-page__right form label input::placeholder,
.single-product .fronord-contact-section form  label textarea::placeholder,
.single-product .fronord-contact-section form label input::placeholder{
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--DARK-BLUE);
    opacity: 0.7;
}
.contact-page__content .contact-page__right form label textarea,
.single-product .fronord-contact-section form  label textarea{
    width: 100%;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--DARK-BLUE);
    padding: 10px 15px;
    border: none;
}
.contact-page__content .contact-page__right form label input,
.single-product .fronord-contact-section form label input{
    width: 100%;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--DARK-BLUE);
    padding: 9px 15px;
    border: none;
}
.contact-page__content .contact-page__right form label,
.single-product .fronord-contact-section form label{
    display: block;
    position: relative;
    margin-bottom: 15px;
}
.contact-page__content .contact-page__right form .grid-2,
.single-product .fronord-contact-section form .grid-2{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
.contact-page__content .contact-page__right form,
.single-product .fronord-contact-section form{
    background-color: var(--DARK-BLUE);
    padding: 30px;
}
.contact-page__content .contact-page__right  .wpcf7-form-control-wrap,
.single-product .fronord-contact-section .wpcf7-form-control-wrap {
    position: relative;
    width: 100%;
    display: block;
}
.single-product .product-brand-above-title-mobile,
.single-product .entry-summary .product-brand-above-title{
    color: var(--LIGHT-BLUE);
    font-weight: 800;
    font-size: 20px;
    line-height: 1;
}
.single-product .product-category-after-title-mobile,
.single-product .entry-summary .product-category-after-title{
    color: var(--DARK-BLUE);
    padding-bottom: 15px;
    text-transform: uppercase;
    font-weight: 800;

}
.single-product .product_title.fronord-mobile-product-title,
.single-product .entry-summary .product_title{
    font-size: 32px;
    line-height: 1.2;
    font-weight: 800;
    color: var(--DARK-BLUE);
    margin: 5px 0 !important;
}
.single-product main {
    background-color: var(--WHITE);
    padding: 75px 0;
}
.single-product .nickx-slider-nav .nswiper-slide {
    margin-bottom: 20px !important;
}
.single-product .product_meta {
    display: none !important;
}
.fronord-product-sections section strong,
.fronord-product-sections section b,
.fronord-product-content b,
.fronord-product-content strong{
    font-weight: bold;
}
.fronord-product-sections section p,
.fronord-product-content p{
    margin-bottom: 15px;
}
.fronord-product-sections section,
.fronord-product-content {
    font-size: 15px;
    line-height: 1.45;
    color: var(--DARK-BLUE);
}
.fronord-product-sections .fronord-product-section-content ul li:before,
.fronord-product-content li:before{
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    width: 16px;
    height: 16px;
    background-image: url("/wp-content/themes/puslapiaiverslui/assets/icons/fronord-list-icon.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.fronord-product-sections .fronord-product-section-content ul li{
    position: relative;
    padding-left: 30px;
}
.fronord-product-content li{
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
}
.fronord-product-sections .fronord-product-section-content ul,
.fronord-product-content ul{
    list-style: none;
}
.fronord-no-price-cta {
    margin-top: 22px;
    padding-top: 18px;
}
.fronord-contact-scroll {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 170px;
    height: 42px;
    background: #101044;
    color: #ffffff;
    border-radius: 0;
    font-weight: 700;
    text-decoration: none;
}
.fronord-product-extra .fronord-product-sections{
    padding: 30px;
}
.fronord-product-extra {
    clear: both;
    width: 100%;
}
.fronord-product-tabs a.fronord-product-tab.is-active::after{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -3.5px;
    height: 7px;
    background-color: var(--DARK-BLUE);
    width: 100%;
}
.fronord-product-tabs a.fronord-product-tab{
    font-size: 16px;
    line-height: 20px;
    font-weight: 800;
    color: var(--DARK-BLUE);
    padding: 16px;
    position: relative;
}
.fronord-product-sections .tab__title{
    font-size: 24px;
    line-height: 1.2;
    font-weight: 800;
    color: var(--DARK-BLUE);
    margin-bottom: 15px;
}
.fronord-product-tabs {
    display: flex;
    align-items: center;
    gap: 0;
    background: var(--LIGHT-BLUE);
    padding: 0 15px;
}

.fronord-product-section {
    display: none;
}
.fronord-product-section.is-active {
    display: block;
}
/* Contacts */
.page-template main .page-title{
	    margin: 0 0 35px;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 800;
    color: var(--DARK-BLUE);
}
.contact-page__content .contact-page__right .contact-page__form-text{
	
}
.contact-page__content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
}
.contact-page__content .contact-page__text a{
	color: var(--DARK-BLUE);
	border-bottom: 1px solid;
}
.contact-page__content .contact-page__text strong,
.contact-page__content .contact-page__text b{
	font-weight: bold;
}
.contact-page__content .contact-page__right .contact-page__form-text h2{
	font-size: 25px;
    line-height: 1.2;
    font-weight: 800;
    color: var(--DARK-BLUE);
	margin-bottom: 5px;
}
.contact-page__content form .wpcf7-response-output {
    color: var(--WHITE);
}
.contact-page__content .contact-page__right .contact-page__form-text,
.contact-page__content .contact-page__text p{
	margin-bottom: 15px; 
	color: var(--DARK-BLUE);
}
.contact-page__content .contact-page__text{
	
}
.page-template:not(.home) main {
    padding: 75px 0;
    background-color: var(--WHITE);
}

/* Footer */
footer{
    background-color: var(--DARK-BLUE);
    padding: 35px 0;
    background-image: url(../assets/img/fronord_logo_vector.svg);
    background-position: center left;
    background-repeat: no-repeat;
    background-size: 50%;
}
footer .footer__wrapper .footer__col--logo img{
    filter: brightness(0) invert(1);
}
footer .footer__wrapper .footer__col--logo a{
    border: unset!important;
}
footer .footer__wrapper .footer__col a{
    color: var(--WHITE);
    border-bottom: 1px solid;
}
footer .footer__wrapper .footer__col p:last-child{
	margin-bottom: 0px;
}
footer .footer__wrapper .footer__col p{
    color: var(--WHITE);
    margin-bottom: 15px;
}
footer .footer__wrapper .footer__col h2{
    margin: 0 0 12px;
    font-size: 18px;
    line-height: 20px;
    font-weight: 800;
    color: var(--WHITE);
}
footer .footer__wrapper{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}
/* ==================================================
   Apie mus puslapis
   ================================================== */

body.page-template-page-about .about-page {
    padding: 0;
    color: var(--DARK-BLUE);
    background-color: var(--WHITE);
}

/* Bendri elementai */

.about-page__label {
    margin-bottom: 14px;
    color: var(--DARK-BLUE);
    font-size: 13px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.about-page__text {
    color: var(--DARK-BLUE);
    font-size: 16px;
    line-height: 1.65;
}

.about-page__text p {
    margin-bottom: 18px;
}

.about-page__text p:last-child {
    margin-bottom: 0;
}

.about-page__text strong,
.about-page__text b {
    font-weight: 800;
}

.about-page__text ul {
    margin: 20px 0;
    padding: 0;
    list-style: none;
}

.about-page__text ul li {
    position: relative;
    margin-bottom: 12px;
    padding-left: 30px;
}

.about-page__text ul li::before {
    content: "";
    position: absolute;
    top: 4px;
    left: 0;
    width: 16px;
    height: 16px;
    background-image: url("../assets/icons/fronord-list-icon.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}


/* ==================================================
   Hero
   ================================================== */

.about-hero {
    position: relative;
    overflow: hidden;
    padding: 0px 0 75px;
    background-color: var(--LIGHT-BLUE);
}

.about-hero::before {
    content: "";
    position: absolute;
    right: -170px;
    bottom: -290px;
    width: 650px;
    height: 650px;
    background-image: url("../assets/img/fronord_logo_vector.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.1;
    pointer-events: none;
}

.about-hero__container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(500px, 1.15fr);
    gap: 80px;
    align-items: center;
}

.about-hero__content {
    max-width: 650px;
}

.about-hero__title {
    margin: 0 0 26px;
    color: var(--DARK-BLUE);
    font-size: 60px;
    line-height: 1.08;
    font-weight: 800;
}

.about-hero__description {
    max-width: 600px;
    font-size: 17px;
    line-height: 1.6;
}

.about-hero__media {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    border-radius: 18px 18px 18px 110px;
}

.about-hero__media::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(13, 13, 59, 0.08);
    border-radius: inherit;
    pointer-events: none;
}

.about-hero__image {
    width: 100%;
    height: 520px;
    display: block;
    object-fit: cover;
}


/* ==================================================
   Turinio sekcijos
   ================================================== */

.about-content {
    position: relative;
    overflow: hidden;
    padding: 75px 0;
}

.about-content--white {
    background-color: var(--WHITE);
}

.about-content--light {
    background-color: #eef4ff;
}

.about-content--dark {
    background-color: var(--DARK-BLUE);
    background-image: url("../assets/img/fronord_logo_vector.svg");
    background-repeat: no-repeat;
    background-position: right -130px center;
    background-size: 42%;
}

.about-content__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 75px;
    align-items: center;
}

.about-content--text-only .about-content__grid {
    grid-template-columns: minmax(0, 900px);
}

.about-content--image-right .about-content__media {
    order: 2;
}

.about-content__media {
    min-height: 470px;
    overflow: hidden;
    border-radius: 18px;
}

.about-content--image-left .about-content__media {
    border-bottom-right-radius: 90px;
}

.about-content--image-right .about-content__media {
    border-bottom-left-radius: 90px;
}

.about-content__image {
    width: 100%;
    height: 470px;
    display: block;
    object-fit: cover;
}

.about-content__body {
    position: relative;
    z-index: 1;
    max-width: 680px;
}

.about-content__title {
    margin: 0 0 22px;
    color: var(--DARK-BLUE);
    font-size: 32px;
    line-height: 1.2;
    font-weight: 800;   
}

/* Tamsios sekcijos tekstai */

.about-content--dark .about-page__label,
.about-content--dark .about-content__title,
.about-content--dark .about-content__text {
    color: var(--WHITE);
}

.about-content--dark .about-content__text a {
    color: var(--LIGHT-BLUE);
    border-bottom: 1px solid currentColor;
}


/* ==================================================
   Veiklos sritys
   ================================================== */

.about-areas {
    padding: 75px 0;
    background-color: var(--WHITE);
}

.about-areas__heading {
    max-width: 760px;
    margin-bottom: 48px;
}

.about-areas__title {
    margin: 0 0 16px;
    color: var(--DARK-BLUE);
    font-size: 32px;
    line-height: 1.2;
    font-weight: 800;
}

.about-areas__description {
    color: var(--DARK-BLUE);
    font-size: 16px;
    line-height: 1.6;
}

.about-areas__description p {
    margin-bottom: 15px;
}

.about-areas__description p:last-child {
    margin-bottom: 0;
}

.about-areas__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.about-area-card {
    position: relative;
    min-height: 290px;
    display: flex;
    flex-direction: column;
    padding: 32px;
    overflow: hidden;
    background-color: #eef4ff;
    border: 1px solid rgba(13, 13, 59, 0.08);
    border-radius: 18px;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background-color 0.25s ease;
}

.about-area-card:hover {
    transform: translateY(-5px);
    background-color: var(--LIGHT-BLUE);
    box-shadow: 0 18px 40px rgba(13, 13, 59, 0.1);
}

.about-area-card__number {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 45px;
    color: var(--LIGHT-BLUE);
    background-color: var(--DARK-BLUE);
    border-radius: 50%;
    font-size: 14px;
    line-height: 1;
    font-weight: 800;
}

.about-area-card__title {
    margin: auto 0 12px;
    color: var(--DARK-BLUE);
    font-size: 22px;
    line-height: 1.2;
    font-weight: 800;
}

.about-area-card__text {
    color: var(--DARK-BLUE);
    font-size: 15px;
    line-height: 1.5;
}

.about-area-card__text p {
    margin: 0;
}


/* ==================================================
   Apatinis CTA
   ================================================== */

.about-cta {
    position: relative;
    overflow: hidden;
    padding: 75px 0;
    background-color: var(--DARK-BLUE);
}

.about-cta::after {
    content: "";
    position: absolute;
    right: 3%;
    bottom: -260px;
    width: 520px;
    height: 520px;
    background-image: url("../assets/img/fronord_logo_vector.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    filter: brightness(0) invert(1);
    opacity: 0.07;
    pointer-events: none;
}

.about-cta__container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
}

.about-cta__content {
    max-width: 820px;
}

.about-cta__title {
    margin: 0 0 16px;
    color: var(--WHITE);
    font-size: 40px;
    line-height: 1.15;
    font-weight: 800;
}

.about-cta__text {
    color: var(--WHITE);
    font-size: 16px;
    line-height: 1.6;
}

.about-cta__text p {
    margin-bottom: 15px;
}

.about-cta__text p:last-child {
    margin-bottom: 0;
}

.about-cta__button {
    min-width: 190px;
    min-height: 48px;
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    color: var(--DARK-BLUE);
    background-color: var(--LIGHT-BLUE);
    border: 2px solid var(--LIGHT-BLUE);
    font-weight: 800;
    text-align: center;
    transition:
        color 0.2s ease,
        background-color 0.2s ease;
}

.about-cta__button:hover {
    color: var(--WHITE);
    background-color: transparent;
}

/* ==================================================
   Pagalbos puslapis
   ================================================== */

body.page-template-page-help .help-page {
    padding: 0;
    color: var(--DARK-BLUE);
    background-color: var(--WHITE);
}

.help-page__label {
    margin-bottom: 14px;
    color: var(--DARK-BLUE);
    font-size: 13px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.help-page__text {
    color: var(--DARK-BLUE);
    font-size: 16px;
    line-height: 1.65;
}

.help-page__text p {
    margin-bottom: 18px;
}

.help-page__text p:last-child {
    margin-bottom: 0;
}


/* Hero */

.help-hero {
    position: relative;
    overflow: hidden;
    padding: 0px 0 75px;
    background-color: var(--LIGHT-BLUE);
}

.help-hero::before {
    content: "";
    position: absolute;
    right: -180px;
    bottom: -300px;
    width: 680px;
    height: 680px;
    background-image: url("../assets/img/fronord_logo_vector.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.1;
    pointer-events: none;
}

.help-hero__container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(500px, 1.15fr);
    gap: 80px;
    align-items: center;
}

.help-hero--without-image .help-hero__container {
    grid-template-columns: minmax(0, 850px);
}

.help-hero__content {
    max-width: 680px;
}

.help-hero__title {
    margin: 0 0 26px;
    color: var(--DARK-BLUE);
    font-size: 60px;
    line-height: 72px;
    font-weight: 800;
}

.help-hero__description {
    max-width: 640px;
    font-size: 17px;
    line-height: 22px;
}

.help-hero__media {
    min-height: 500px;
    overflow: hidden;
    border-radius: 18px 18px 18px 110px;
}

.help-hero__image {
    width: 100%;
    height: 500px;
    display: block;
    object-fit: cover;
}


/* Bendros sekcijų antraštės */

.help-section-heading {
    max-width: 760px;
    margin-bottom: 48px;
}

.help-section-heading__title,
.help-faq__title {
    margin: 0 0 16px;
    color: var(--DARK-BLUE);
    font-size: 32px;
    line-height: 1.2;
    font-weight: 800;
}

.help-section-heading__description,
.help-faq__description {
    color: var(--DARK-BLUE);
    font-size: 16px;
    line-height: 1.6;
}

.help-section-heading__description p,
.help-faq__description p {
    margin-bottom: 15px;
}

.help-section-heading__description p:last-child,
.help-faq__description p:last-child {
    margin-bottom: 0;
}


/* Pagalbos temos */

.help-topics {
    padding: 75px 0;
    background-color: var(--WHITE);
}

.help-topics__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.help-topic-card {
    min-height: 330px;
    display: flex;
    flex-direction: column;
    padding: 30px;
    color: var(--WHITE);
    background-color: var(--DARK-BLUE);
    border-radius: 18px;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.help-topic-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(13, 13, 59, 0.18);
}

.help-topic-card__number {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 45px;
    color: var(--DARK-BLUE);
    background-color: var(--LIGHT-BLUE);
    border-radius: 50%;
    font-size: 14px;
    line-height: 1;
    font-weight: 800;
}

.help-topic-card__title {
    margin: auto 0 13px;
    color: var(--WHITE);
    font-size: 22px;
    line-height: 1.2;
    font-weight: 800;
}

.help-topic-card__text {
    color: var(--WHITE);
    font-size: 15px;
    line-height: 1.5;
}

.help-topic-card__text p {
    margin-bottom: 14px;
}

.help-topic-card__text p:last-child {
    margin-bottom: 0;
}

.help-topic-card__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 24px;
    padding-top: 18px;
    color: var(--LIGHT-BLUE);
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    font-weight: 800;
}

.help-topic-card__arrow {
    font-size: 22px;
    line-height: 1;
    transition: transform 0.2s ease;
}

.help-topic-card__link:hover .help-topic-card__arrow {
    transform: translateX(5px);
}


/* Pagalbos procesas */

.help-process {
    padding: 75px 0;
    background-color: #eef4ff;
}

.help-process__steps {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 45px;
}

.help-process__steps::before {
    content: "";
    position: absolute;
    top: 29px;
    right: 0%;
    left: 0%;
    height: 2px;
    background-color: rgba(13, 13, 59, 0.18);
	width: 100%;
}

.help-process-step {
    position: relative;
    z-index: 1;
}

.help-process-step__number {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 26px;
    color: var(--LIGHT-BLUE);
    background-color: var(--DARK-BLUE);
    border: 6px solid #eef4ff;
    border-radius: 50%;
    font-size: 17px;
    font-weight: 800;
}

.help-process-step__title {
    margin: 0 0 12px;
    color: var(--DARK-BLUE);
    font-size: 22px;
    line-height: 1.25;
    font-weight: 800;
}

.help-process-step__text {
    max-width: 380px;
    color: var(--DARK-BLUE);
    font-size: 15px;
    line-height: 1.55;
}

.help-process-step__text p {
    margin-bottom: 14px;
}

.help-process-step__text p:last-child {
    margin-bottom: 0;
}


/* DUK */

.help-faq {
    padding: 75px 0;
    background-color: var(--WHITE);
}

.help-faq__container {
    display: grid;
    grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
    gap: 90px;
    align-items: start;
}

.help-faq__heading {
    position: sticky;
    top: 130px;
}

.help-faq__items {
    border-top: 1px solid rgba(13, 13, 59, 0.18);
}

.help-faq-item {
    border-bottom: 1px solid rgba(13, 13, 59, 0.18);
}

.help-faq-item__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 25px 4px;
    color: var(--DARK-BLUE);
    font-size: 18px;
    line-height: 1.4;
    font-weight: 800;
    list-style: none;
    cursor: pointer;
}

.help-faq-item__question::-webkit-details-marker {
    display: none;
}

.help-faq-item__icon {
    position: relative;
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
}

.help-faq-item__icon::before,
.help-faq-item__icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 2px;
    background-color: var(--DARK-BLUE);
    transform: translate(-50%, -50%);
}

.help-faq-item__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    transition: transform 0.2s ease;
}

.help-faq-item[open] .help-faq-item__icon::after {
    transform: translate(-50%, -50%) rotate(0);
}

.help-faq-item__answer {
    padding: 0 55px 26px 4px;
}


/* Apatinis CTA */

.help-cta {
    position: relative;
    overflow: hidden;
    padding: 75px 0;
    background-color: var(--DARK-BLUE);
}

.help-cta::after {
    content: "";
    position: absolute;
    right: 3%;
    bottom: -270px;
    width: 540px;
    height: 540px;
    background-image: url("../assets/img/fronord_logo_vector.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    filter: brightness(0) invert(1);
    opacity: 0.07;
    pointer-events: none;
}

.help-cta__container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
}

.help-cta__content {
    max-width: 800px;
}

.help-cta__title {
    margin: 0 0 16px;
    color: var(--WHITE);
    font-size: 40px;
    line-height: 1.15;
    font-weight: 800;
}

.help-cta__text {
    color: var(--WHITE);
    font-size: 16px;
    line-height: 1.6;
}

.help-cta__text p {
    margin-bottom: 15px;
}

.help-cta__text p:last-child {
    margin-bottom: 0;
}

.help-cta__button {
    min-width: 190px;
    min-height: 48px;
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    color: var(--DARK-BLUE);
    background-color: var(--LIGHT-BLUE);
    border: 2px solid var(--LIGHT-BLUE);
    font-weight: 800;
    text-align: center;
    transition:
        color 0.2s ease,
        background-color 0.2s ease;
}

.help-cta__button:hover {
    color: var(--WHITE);
    background-color: transparent;
}