* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #000;
    background: #f8f9fa
}

.category-first-container {
    max-width: 1450px;
    margin: 0 auto;
    padding: 0 20px
}

.category-first-hero {
    background: transparent;
    color: #fff;
    padding: 100px 0;
    overflow: hidden;
    position: relative
}

.category-first-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden
}

.category-first-hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0
}

.category-first-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(18, 37, 56, .4) 0%, rgba(0, 0, 0, .5) 100%);
    z-index: 1
}

.category-first-hero-content {
    display: grid;
    grid-template-columns:1fr;
    gap: 60px;
    align-items: center;
    justify-items: center;
    position: relative;
    z-index: 2
}

.category-first-hero-text {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center
}

.category-first-hero-title {
    margin-bottom: 25px;
    color: #fff;
    font-weight: bold;
    line-height: 1.2;
    text-align: center
}

.category-reveal, .category-reveal::after {
    animation-delay: var(--animation-delay, 0s);
    animation-iteration-count: var(--iterations, infinite);
    animation-duration: var(--duration, 3s);
    animation-fill-mode: both;
    animation-timing-function: cubic-bezier(0, 0, .2, 1)
}

.category-reveal {
    position: relative;
    white-space: nowrap;
    cursor: default;
    text-transform: uppercase;
    animation-name: text
}

.category-reveal::after {
    content: "";
    position: absolute;
    z-index: 999;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    transform: scaleX(0);
    transform-origin: 0 50%;
    pointer-events: none;
    animation-name: revealer
}

@keyframes text {
    0% {
        clip-path: inset(0 100% 0 0)
    }
    26.67%, 100% {
        clip-path: inset(0 0 0 0)
    }
}

@keyframes revealer {
    0% {
        transform-origin: 0 50%;
        transform: scaleX(0)
    }
    13.33% {
        transform-origin: 0 50%;
        transform: scaleX(1)
    }
    20% {
        transform-origin: 100% 50%;
        transform: scaleX(1)
    }
    26.67%, 100% {
        transform-origin: 100% 50%;
        transform: scaleX(0)
    }
}

.category-first-hero-subtitle {
    margin-bottom: 35px;
    color: #F5F5F5;
    font-weight: 300;
    text-align: center
}

.category-first-hero-btn {
    display: inline-block
}

.category-first-btn {
    display: inline-block;
    padding: 15px 40px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    transition: all .3s ease;
    text-align: center
}

.category-first-btn-primary {
    background: #fff;
    color: #122538
}

.category-first-btn-primary:hover {
    background: #F5F5F5;
    color: #122538;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, .3)
}

.category-first-about, .category-first-features, .category-first-advantages, .category-first-testimonials {
    padding: 90px 0
}

.category-first-section-title {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 70px;
    color: #122538;
    position: relative;
    font-weight: bold
}

.category-first-section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 5px;
    background: #122538;
    border-radius: 3px
}

.category-first-about {
    background: #F5F5F5
}

.category-home-hero {
    display: grid;
    grid-gap: 1px;
    grid-auto-rows: minmax(150px, auto);
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    background: #fff
}

.category-home-hero > * {
    padding: 20px;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #122538;
    color: #fff
}

.category-home-hero h3 {
    margin: 0 0 10px;
    font-weight: bold;
    color: #fff
}

.category-home-hero p {
    margin: 0;
    line-height: 1.6;
    color: #fff
}

.category-special, .category-amazing {
    background-position: center;
    color: #fff;
    display: flex;
    flex-direction: column
}

.category-special h3, .category-amazing h3 {
    margin-top: auto
}

.category-cta {
    background: #122538;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.category-additional-info {
    margin-top: 50px;
    border-left: 5px solid #122538;
    background: #F5F5F5;
    font-size: 14px !important
}

.category-additional-info-text {
    line-height: 1.8;
    color: #000;
    text-align: justify;
    margin: 0;
    padding: 15px
}

@media (min-width: 500px) {
    .category-home-hero {
        grid-template-columns:1fr 1fr
    }

    .category-feature {
        grid-column: 1/3;
        grid-row: 1/3
    }

    .category-special {
        grid-column: 1;
        grid-row: 3/6
    }

    .category-amazing {
        grid-column: 1;
        grid-row: 6
    }

    .category-cta {
        grid-column: 2;
        grid-row: 5/7
    }
}

@media (min-width: 800px) {
    .category-home-hero {
        grid-template-columns:1fr 1fr 1fr;
        grid-template-rows:minmax(150px, auto) minmax(150px, auto);
        grid-auto-rows: minmax(100px, auto)
    }

    .category-feature {
        grid-column: 1;
        grid-row: 1/6
    }

    .category-special {
        grid-column: 2;
        grid-row: 1/4
    }

    .category-amazing {
        grid-column: 2;
        grid-row: 4/6
    }

    .category-cta {
        grid-column: 3;
        grid-row: 3/6
    }
}

.category-first-features {
    background: #F5F5F5
}

.category-cards {
    display: flex;
    min-height: 28rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem
}

.category-border-outer, .category-border-inner {
    clip-path: polygon(var(--corner-size) 0%, calc(100% - var(--corner-size)) 0%, 100% var(--corner-size), 100% calc(100% - var(--corner-size)), calc(100% - var(--corner-size)) 100%, var(--corner-size) 100%, 0% calc(100% - var(--corner-size)), 0% var(--corner-size))
}

.category-border-outer {
    background: #122538;
    padding: var(--border-width);
    display: flex;
    flex-direction: column
}

.category-border-inner {
    flex-grow: 1;
    background: #F5F5F5
}

.category-card {
    --corner-size: 2.75rem;
    --border-width: 1px;
    --image-column-width: 10rem;
    --content-width: 22rem;
    display: grid;
    position: relative;
    grid-template-columns:var(--image-column-width) calc(2 * var(--corner-size));
    transition: grid-template-columns 450ms ease 50ms;
    height: 35rem;
    overflow: clip
}

.category-card > * {
    min-width: 0;
    grid-row: 1
}

.category-card-background {
    grid-column: 1/-1
}

.category-card-background img {
    height: 100%;
    object-fit: cover;
    width: calc(var(--image-column-width) + var(--corner-size));
    display: block
}

.category-card-content {
    grid-column: 2;
    position: relative
}

.category-card-content-layout {
    display: flex;
    gap: 2rem;
    position: absolute;
    top: var(--corner-size);
    left: var(--corner-size);
    height: calc(100% - 7rem);
    width: var(--content-width);
    translate: -1rem 0;
    transition: translate 450ms;
    overflow: hidden
}

.category-card-copy {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: .5rem
}

.category-card-copy::-webkit-scrollbar {
    width: 4px
}

.category-card-copy::-webkit-scrollbar-track {
    background: rgba(18, 37, 56, .1);
    border-radius: 2px
}

.category-card-copy::-webkit-scrollbar-thumb {
    background: rgba(18, 37, 56, .3);
    border-radius: 2px
}

.category-card-copy::-webkit-scrollbar-thumb:hover {
    background: rgba(18, 37, 56, .5)
}

.category-card-copy h2, h2.category-vertical-title {
    line-height: 1.2;
    text-transform: uppercase;
    font-weight: 800;
    color: #122538;
    margin: 0
}

h2.category-vertical-title {
    writing-mode: vertical-lr;
    text-orientation: mixed;
    flex-shrink: 0;
    white-space: nowrap
}

.category-card-copy h3 {
    font-weight: 400;
    color: #000;
    opacity: .8;
    margin: 0
}

.category-card-copy-subtitle {
    font-size: 16px
}

.category-card-copy p {
    line-height: 1.6;
    color: #000;
    margin: 0
}

.category-toggle {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 1rem;
    cursor: pointer;
    color: #122538
}

.category-toggle input {
    display: none
}

.category-toggle svg {
    transition: rotate 250ms;
    width: 24px;
    height: 24px
}

.category-card:has(input:checked) {
    grid-template-columns:var(--image-column-width) var(--content-width)
}

.category-card:has(input:checked) .category-card-content-layout {
    translate: -5rem 0
}

.category-toggle input:checked + svg {
    rotate: 45deg
}

.category-first-advantages {
    background: #F5F5F5;
    position: relative;
    overflow: hidden
}

.category-first-advantages .category-first-container {
    position: relative;
    margin: 0 auto;
    min-height: 100%
}

.category-first-wrapper {
    max-width: 100%;
    margin: 0 10%;
    padding: 0;
    display: flex;
    flex-flow: column wrap
}

.category-first-advantages-container {
    padding: 2em;
    margin: auto
}

.category-first-card {
    text-align: left;
    padding: 1em;
    margin: 1em;
    border: 2px solid #122538;
    border-radius: .5em;
    background: #fff
}

.category-first-card .category-first-advantages-container {
    padding: 0;
    min-width: 300px
}

.category-first-split-content {
    justify-content: space-between;
    min-width: 50%
}

.category-first-col {
    flex: 1 2 0;
    max-width: 100%
}

.category-first-col.category-first-col-auto {
    position: relative;
    padding: 0 15px
}

.category-first-row {
    display: flex;
    flex-flow: row wrap;
    margin: 0 -15px
}

.category-first-card-sect {
    align-content: center;
    justify-content: center;
    margin: 10px;
    min-width: 180px;
    display: flex;
    flex-wrap: wrap
}

.category-first-item > .category-first-head {
    text-align: center;
    margin-bottom: 5px
}

.category-first-item > .category-first-head .category-first-title {
    font-weight: bold;
    margin-bottom: 10px;
    color: #122538
}

.category-first-item .category-first-content {
    color: #000
}

@media (max-width: 991.98px) {
    .category-first-title {
        text-align: center
    }

    .category-first-card-sect {
        justify-content: center;
        min-height: 100px
    }

    #first-divider-wrap {
        flex-basis: 0;
        flex-grow: 1;
        min-width: 90%
    }

    .category-first-item {
        display: block;
        min-width: 300px
    }

    .category-first-content-divider {
        margin: 15px 0
    }

    .category-first-content-divider .category-first-divided-text {
        display: flex;
        width: 100%;
        justify-content: center;
        align-items: center;
        text-align: center
    }

    .category-first-content-divider .category-first-divided-text:before, .category-first-content-divider .category-first-divided-text:after {
        content: '';
        border-top: 2px solid #122538;
        margin: 0 20px 0 0;
        flex: 1 0 20px
    }

    .category-first-content-divider .category-first-divided-text:after {
        margin: 0 0 0 20px
    }
}

@media (min-width: 992px) {
    #first-divider-wrap {
        flex-basis: 0;
        flex-grow: 1;
        max-width: 20px;
        justify-content: center
    }

    .category-first-split {
        justify-content: center
    }

    .category-first-content-divider {
        position: relative;
        display: flex;
        flex-flow: row wrap;
        justify-content: center;
        align-content: center;
        justify-self: center;
        height: 100%;
        min-width: 100%
    }

    .category-first-content-divider .category-first-divided-text:before, .category-first-content-divider .category-first-divided-text:after {
        position: absolute;
        content: "";
        width: 1px;
        left: 50%;
        border-left: 2px solid #122538
    }

    .category-first-content-divider .category-first-divided-text:before {
        bottom: 50%;
        top: 0;
        margin-bottom: 20px
    }

    .category-first-content-divider .category-first-divided-text:after {
        top: 50%;
        bottom: 0;
        margin-top: 20px
    }
}

.category-first-testimonials {
    background: #F5F5F5;
    position: relative
}

.category-first-testimonials-wrapper {
    position: relative
}

.category-first-testimonials input[type="radio"] {
    position: absolute;
    left: -9999px
}

.category-first-accordion {
    position: relative;
    width: calc(100% - 20px);
    max-width: 1000px;
    min-height: 380px;
    margin: 0 auto;
    background: #122538;
    color: #fff;
    display: flex
}

.category-first-accordion label {
    cursor: pointer;
    text-align: center
}

.category-first-accordion, .category-first-accordion li, .category-first-accordion .category-first-accordion-title {
    display: flex
}

.category-first-accordion li:not(:last-child) {
    border: 1px solid rgba(255, 255, 255, .1)
}

.category-first-accordion .category-first-accordion-title {
    flex-direction: column;
    justify-content: space-between;
    width: 70px;
    font-weight: bold;
    line-height: normal;
    padding: 20px 10px;
    background: #000;
    transition: color .1s;
    color: #fff
}

.category-first-accordion .category-first-accordion-heading {
    display: inline-block;
    white-space: nowrap;
    transform-origin: bottom;
    transform: rotate(-90deg) translate(50%, 50%)
}

.category-first-accordion .category-first-accordion-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(18, 37, 56, .7);
    z-index: -1
}

.category-first-testimonials-wrapper [value="Testimonial1"]:checked ~ .category-first-accordion [data-radio="first-testimonial-1"], .category-first-testimonials-wrapper [value="Testimonial2"]:checked ~ .category-first-accordion [data-radio="first-testimonial-2"], .category-first-testimonials-wrapper [value="Testimonial3"]:checked ~ .category-first-accordion [data-radio="first-testimonial-3"], .category-first-testimonials-wrapper [value="Testimonial4"]:checked ~ .category-first-accordion [data-radio="first-testimonial-4"], .category-first-testimonials-wrapper [value="Testimonial5"]:checked ~ .category-first-accordion [data-radio="first-testimonial-5"], .category-first-testimonials-wrapper [value="Testimonial6"]:checked ~ .category-first-accordion [data-radio="first-testimonial-6"], .category-first-testimonials-wrapper [value="Testimonial7"]:checked ~ .category-first-accordion [data-radio="first-testimonial-7"] {
    flex-grow: 1
}

.category-first-testimonials-wrapper [value="Testimonial1"]:checked ~ .category-first-accordion [for="first-testimonial-1"] + .category-first-accordion-content, .category-first-testimonials-wrapper [value="Testimonial2"]:checked ~ .category-first-accordion [for="first-testimonial-2"] + .category-first-accordion-content, .category-first-testimonials-wrapper [value="Testimonial3"]:checked ~ .category-first-accordion [for="first-testimonial-3"] + .category-first-accordion-content, .category-first-testimonials-wrapper [value="Testimonial4"]:checked ~ .category-first-accordion [for="first-testimonial-4"] + .category-first-accordion-content, .category-first-testimonials-wrapper [value="Testimonial5"]:checked ~ .category-first-accordion [for="first-testimonial-5"] + .category-first-accordion-content, .category-first-testimonials-wrapper [value="Testimonial6"]:checked ~ .category-first-accordion [for="first-testimonial-6"] + .category-first-accordion-content, .category-first-testimonials-wrapper [value="Testimonial7"]:checked ~ .category-first-accordion [for="first-testimonial-7"] + .category-first-accordion-content {
    display: flex
}

.category-first-testimonials-wrapper [value="Testimonial1"]:checked ~ .category-first-accordion [for="first-testimonial-1"], .category-first-testimonials-wrapper [value="Testimonial2"]:checked ~ .category-first-accordion [for="first-testimonial-2"], .category-first-testimonials-wrapper [value="Testimonial3"]:checked ~ .category-first-accordion [for="first-testimonial-3"], .category-first-testimonials-wrapper [value="Testimonial4"]:checked ~ .category-first-accordion [for="first-testimonial-4"], .category-first-testimonials-wrapper [value="Testimonial5"]:checked ~ .category-first-accordion [for="first-testimonial-5"], .category-first-testimonials-wrapper [value="Testimonial6"]:checked ~ .category-first-accordion [for="first-testimonial-6"], .category-first-testimonials-wrapper [value="Testimonial7"]:checked ~ .category-first-accordion [for="first-testimonial-7"] {
    color: #fff;
    background: #122538
}

.category-first-testimonials-wrapper [value="Testimonial7"]:checked ~ .category-first-accordion [data-radio="first-testimonial-7"] {
    flex-grow: 2
}

.category-first-ext-title {
    margin-top: 0;
    margin-bottom: 2rem
}

.category-first-ext-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 1.5rem
}

.category-first-ext-card {
    display: flex;
    flex-direction: column;
    min-height: 200px;
    padding: 1.25rem;
    flex-shrink: 0
}

.category-first-ext-card-title {
    margin-bottom: .5rem;
    font-weight: bold;
    color: #122538;
    flex-shrink: 0
}

.category-first-ext-card-desc {
    flex: 1;
    margin: 0 0 1rem;
    color: #333;
    line-height: 1.5
}

.category-first-ext-btn {
    margin-top: auto;
    display: inline-block;
    padding: .5rem 1.25rem;
    text-align: center;
    text-decoration: none;
    border-radius: 6px;
    flex-shrink: 0
}

.category-first-see-also, .category-first-additionally, .category-first-social {
    padding: 90px 0
}

.category-first-see-also {
    background: #fff
}

.category-first-see-also-card {
    background: #f8f9fa;
    border-left: 4px solid #122538;
    border-radius: 0 8px 8px 0
}

.category-first-see-also-btn {
    background: #122538;
    color: #fff;
    transition: opacity .2s
}

.category-first-see-also-btn:hover {
    opacity: .9
}

.category-first-additionally {
    background: #f0f2f5
}

.category-first-additionally-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .06)
}

.category-first-additionally-btn {
    background: transparent;
    color: #122538;
    border: 2px solid #122538;
    transition: background .2s, color .2s
}

.category-first-additionally-btn:hover {
    background: #122538;
    color: #fff
}

.category-first-social {
    background: #F5F5F5
}

.category-first-social-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 30px
}

.category-first-social-card {
    position: relative;
    border-radius: 10px;
    flex: 1
}

.category-first-social-card .category-first-social-icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #122538;
    transition: .7s;
    z-index: 1;
    border-radius: 10px
}

.category-first-social-card .category-first-social-icon i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 60px;
    transition: .7s;
    color: #fff
}

.category-first-social-card .category-first-social-face {
    width: 100%;
    height: 200px;
    transition: .5s
}

.category-first-social-card .category-first-social-face.category-first-social-face1 {
    position: relative;
    background: #122538;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    transform: translateY(100px);
    border-radius: 10px
}

.category-first-social-card:hover .category-first-social-face.category-first-social-face1 {
    transform: translateY(0)
}

.category-first-social-card .category-first-social-face.category-first-social-face1 .category-first-social-content {
    opacity: 1;
    transition: .5s
}

.category-first-social-card .category-first-social-face.category-first-social-face2 {
    position: relative;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .1);
    transform: translateY(-100px);
    border-radius: 10px
}

.category-first-social-card:hover .category-first-social-face.category-first-social-face2 {
    transform: translateY(0)
}

.category-first-social-card .category-first-social-face.category-first-social-face2 .category-first-social-content p {
    margin: 0;
    padding: 0;
    text-align: center;
    color: #000;
    line-height: 1.6
}

.category-first-social-card .category-first-social-face.category-first-social-face2 .category-first-social-content h3 {
    margin: 0 0 10px;
    padding: 0;
    color: #122538;
    text-align: center
}

.category-first-social-card .category-first-social-face.category-first-social-face2 .category-first-social-content a {
    text-decoration: none;
    color: #122538;
    transition: color .3s
}

.category-first-social-card .category-first-social-face.category-first-social-face2 .category-first-social-content a:hover {
    opacity: .8
}

@media (max-width: 768px) {
    .category-first-social-container {
        flex-direction: column;
        align-items: center
    }

    .category-first-social-card {
        width: 100%;
        max-width: 300px
    }
}

@media (max-width: 1200px) {
    .category-first-hero-content {
        grid-template-columns:1fr
    }

    .category-cards {
        flex-direction: column;
        align-items: stretch
    }

    .category-card {
        width: 100%;
        max-width: 600px
    }

    .category-first-accordion {
        min-height: 0
    }

    .category-first-accordion, .category-first-accordion li {
        flex-direction: column
    }

    .category-first-accordion .category-first-accordion-title {
        flex-direction: row;
        width: auto
    }

    .category-first-accordion .category-first-accordion-heading {
        transform: none
    }

    .category-first-accordion .category-first-accordion-title, .category-first-accordion .category-first-accordion-content {
        padding: 20px
    }
}

@media (max-width: 768px) {
    .category-first-ext-grid {
        grid-template-columns:1fr
    }

    .category-first-see-also, .category-first-additionally {
        padding: 60px 0
    }

    .category-cards {
        flex-direction: column;
        align-items: stretch
    }

    .category-card {
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: 20rem
    }

    .category-first-hero {
        padding: 60px 0
    }

    .category-first-about, .category-first-features, .category-first-advantages, .category-first-testimonials {
        padding: 60px 0
    }
}