.carousel {
    position: relative;
    width: 100%;
    -height: 700px;
    max-height:1000px;
    overflow: hidden;
}

.carousel-inner {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    font-size: 24px;
    padding: 15px 20px;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.3s;
}

.carousel-button:hover {
    background-color: rgba(255, 255, 255, 1);
}

.carousel-button.prev {
    left: 20px;
}

.carousel-button.next {
    right: 20px;
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s;
}

.indicator.active {
    background-color: rgba(255, 255, 255, 1);
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding: 60px 80px;
    max-width: 1100px;
    margin: 0 auto;
}

.info-cards .card {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid #ddd;
    position: relative;
}

.info-cards .card:nth-child(odd) .card-icon {
    order: -1;
    left: -65px;
}

.info-cards .card:nth-child(even) .card-icon {
    order: 1;
    right: -65px;
}

.info-cards .card-icon {
    background-color: #1E3A5F;
    width: 130px;
    min-width: 130px;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    z-index: 10;
}

.info-cards .card-content {
    padding: 30px;
    flex: 1;
    width: 100%;
}

.info-cards .card:nth-child(odd) .card-content {
    padding-left: 95px;
}

.info-cards .card:nth-child(even) .card-content {
    padding-right: 95px;
}

.info-cards .card-content h2 {
    color: #1E3A5F;
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 800;
    font-family: Montserrat, sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.info-cards .card-content p {
    color: #1E3A5F;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    font-family: Montserrat, sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 500;
}

.info-cards .learn-more {
    color: #fdc516;
    font-weight: bold;
    text-decoration: none;
    font-size: 20px;
    display: inline-block;
    transition: color 0.3s;
}

.info-cards .learn-more:hover {
    color: #E5A00D;
}

.testimonials-section {
    background-color: #1C3B4F;
    padding: 80px 40px;
    color: white;
}

.testimonials-title {
    text-align: center;
    font-size: 48px;
    color: #fdc516;
    margin-bottom: 60px;
    font-weight: bold;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.testimonials-container input[type="radio"] {
    display: none;
}

.testimonial-slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
    min-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
    position: relative;
}

.testimonial-content {
    flex: 1;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    text-align: center;
}

.testimonial-author {
    text-align: center;
    margin-bottom: 20px;
}

.testimonial-author h3 {
    font-size: 24px;
    margin-bottom: 5px;
    font-weight: bold;
}

.testimonial-author p {
    font-size: 16px;
    opacity: 0.9;
}

.company-logo {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    letter-spacing: 2px;
}

/*.arrow-nav {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    z-index: 10;
}

.arrow-nav:hover {
    transform: translateY(-50%) scale(1.1);
}

.arrow-right {
    right: 20px;
}

.arrow-left {
    left: 20px;
}

.arrow {
    position: relative;
    display: block;
    width: 40px;
    height: 4px;
    background-color: #FDB913;
}

.arrow::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
}

.arrow-right .arrow::before {
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 8px 0 8px 20px;
    border-color: transparent transparent transparent #fdc516;
}

.arrow-left .arrow::before {
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 8px 20px 8px 0;
    border-color: transparent #fdc516 transparent transparent;
}*/

.arrow-nav {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
    position: absolute;
    top: 30%;
    transform: translateY(-50%);
    z-index: 10;
}

    .arrow-nav:hover {
        transform: translateY(-50%) scale(1.1);
    }

.arrow-right {
    right: 20px;
}

.arrow-left {
    left: 20px;
}

.arrow {
    position: relative;
    display: block;
    width: 40px;
    height: 4px;
    background-color: #FDB913;
}

    .arrow::before,
    .arrow::after {
        content: '';
        position: absolute;
        width: 20px;
        height: 4px;
        background-color: #FDB913;
    }

.arrow-right .arrow::before {
    right: 0;
    top: -1px;
    transform-origin: right center;
    transform: rotate(-40deg);
}

.arrow-right .arrow::after {
    right: 0;
    bottom: -1px;
    transform-origin: right center;
    transform: rotate(40deg);
}

.arrow-left .arrow::before {
    left: 0;
    top: -1px;
    transform-origin: left center;
    transform: rotate(40deg);
}

.arrow-left .arrow::after {
    left: 0;
    bottom: -1px;
    transform-origin: left center;
    transform: rotate(-40deg);
}


#testimonial1:checked ~ .testimonial-slides {
    transform: translateX(0);
}

#testimonial2:checked ~ .testimonial-slides {
    transform: translateX(-100%);
}

.integrations-section {
    background-color: #E8E8E8;
    padding: 80px 40px;
}

.integrations-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.integrations-text h2 {
    color: #1E3A5F;
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: bold;
    font-family: Montserrat, sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.integrations-text p {
    color: #1E3A5F;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 15px;
    font-family: Montserrat, sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.integrations-text strong {
    font-weight: bold;
}

.integrations-highlight {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.highlight-line {
    color: #fdc516;
    font-size: 40px;
    font-weight: bold;
    line-height: 1.3;
    margin: 0;
    font-style: italic;
    font-family: Montserrat, sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.highlight-line.emphasis {
    font-style: italic;
}

.logos-holder {
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
}

.contact-section {
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-container {
    display: flex;
    max-width: 1400px;
    width: 100%;
    gap: 0;
}

.contact-form-wrapper {
    flex: 1;
    padding: 60px;
    background-color: white;
}

.contact-form-wrapper h2 {
    color: #1E3A5F;
    font-size: 48px;
    margin-bottom: 40px;
    font-weight: bold;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: #1E3A5F;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    font-size: 14px;
    font-family: Arial, sans-serif;
}

.form-group input::placeholder {
    color: #999;
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    background-color: #1E3A5F;
    color: white;
    padding: 15px 40px;
    border: none;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    letter-spacing: 1px;
    transition: background-color 0.3s;
    font-family: Montserrat, sans-serif;
    font-optical-sizing: auto;
}

.submit-btn:hover {
    background-color: #2B4C70;
}

.contact-image {
    -flex: 1;
    -background-color: #f0f0f0;
}

.desk-slide {
    display: block;
}

.mob-slide {
    display: none;
}

@media (max-width: 968px) {
    
    .desk-slide {
        display: none;
    }

    .mob-slide {
        display: block;
    }

    .carousel {
        height: 300px;
    }

    .brand-text h1 {
        font-size: 24px;
    }

    .carousel-button {
        padding: 10px 15px;
        font-size: 18px;
    }

    .info-cards {
        grid-template-columns: 1fr;
        padding: 40px 20px;
        gap: 30px;
    }

    .card {
        flex-direction: column;
    }

    .card-icon {
        width: 100%;
        left: 0 !important;
        right: 0 !important;
        position: relative;
        display: none!important;
    }

    .card-content {
        padding: 20px !important;
    }

    .card-content h2 {
        font-size: 24px;
    }

    .testimonials-section {
        padding: 80px 0;
    }

    .testimonials-title {
        font-size: 36px;
        margin-bottom:0;
    }

    .testimonial-slide {
        padding: 0 40px;
    }

    .testimonial-text {
        font-size: 16px;
    }

    .company-logo {
        font-size: 24px;
    }

    .arrow-nav {
        top: 85%;
    }

    .arrow {
        width: 30px;
        height: 3px;
    }

        .arrow::before,
        .arrow::after {
            content: '';
            position: absolute;
            width: 16px;
            height: 3px;
            background-color: #FDB913;
        }

/*    .arrow-right .arrow::before {
        border-width: 5px 0 5px 15px;
        right: -8px;
    }

    .arrow-left .arrow::before {
        border-width: 5px 15px 5px  0;
        left: -8px;
    }*/

    .integrations-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .integrations-text h2 {
        font-size: 36px;
    }

    .highlight-line {
        font-size: 30px;
    }

   .contact-container {
        flex-direction: column;
    }

    .contact-form-wrapper {
        padding: 40px 20px;
    }

    .contact-form-wrapper h2 {
        font-size: 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    #ln-spc {
        display: none;
    }

    #fn-brd {
        margin-bottom: 0px;
    }

}