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

body,
html {
    height: 100%;
    font-family: Arial, sans-serif;
}

.font-family-nunito {
    font-family: "Nunito Sans", Arial, Helvetica, sans-serif;
}

.font-family-inter {
    font-family: "Inter";
}

.extra-big-title {
    font-size: 4rem;
}

.big-title {
    font-size: 3.52rem;
}

.medium-title {
    font-size: 3.125rem;
}

.small-title {
    font-size: 2.4rem;
}

.font-size-20 {
    font-size: 1.25rem;
}

.font-size-22 {
    font-size: 1.35rem;
}

.font-size-24 {
    font-size: 1.5rem;
}

.font-size-35 {
    font-size: 2.2rem;
}

.extra-small-title {
    font-size: 1.25rem !important;
}

.shifted-center-title {
    max-width: 64rem;
    margin-left: auto;
    margin-right: auto;
}

.big-parag {
    font-size: 1.5rem;
}

.medium-parag {
    font-size: 1.6rem;
}

.small-parag {
    font-size: 1.22rem;
}

.extra-small-parag {
    font-size: 1.1rem;
}

.text-white {
    color: white;
}

.text-blue {
    color: #0b1a65;
}

.text-blue-light {
    color: #A459FF;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-uppercase {
    text-transform: uppercase !important;
}

.m-left-auto {
    margin-left: auto;
}

.m-b0 {
    margin-bottom: 0;
}

.m-b16 {
    margin-bottom: 1rem;
}

.m-b30 {
    margin-bottom: 1.875rem;
}

.m-b48 {
    margin-bottom: 3rem;
}

.m-b60 {
    margin-bottom: 3.75rem;
}

.m-b64 {
    margin-bottom: 4rem;
}

.m-b100 {
    margin-bottom: 6.25rem;
}

.m-b120 {
    margin-bottom: 7.5rem;
}

.m-b180 {
    margin-bottom: 11.25rem;
}

.m-b288 {
    margin-bottom: 18rem;
}

.p-tb-70 {
    padding: 4.375rem 0;
}

.ptb-40 {
    padding: 2.5rem 0;
}

.p-t100 {
    padding-top: 6.25rem;
}

.p-t50 {
    padding-top: 3.125rem;
}

.p-b100 {
    padding-bottom: 6.25rem;
}

.p-b50 {
    padding-bottom: 3.125rem;
}

.font-weight-400 {
    font-weight: 400;
}

.font-weight-600 {
    font-weight: 600;
}

.font-weight-700 {
    font-weight: 700;
}

ul li {
    padding-left: 1em;
    position: relative;
    margin-bottom: 17px;
}

ul li:before {
    content: "• ";
    color: #0b1a65;
    font-size: 20px;
    position: absolute;
    top: 12px;
    left: 0;
    transform: translateY(-50%);
}

.text-white ul li:before {
    color: white;
}

img.check_icon {
    width: 25px;
    margin-top: -7px;
}

.img-rounded {
    border-radius: 30px;
}

.box-shadow {
    box-shadow: 0px 6px 10px 2px rgb(10 26 101 / 23%);
}

.background-cover-center {
    background-size: cover;
    background-position: center;
}

.grid-section-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.grid-section-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: start;
}

.grid-section-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.grid-section-7-5 .container {
    display: grid;
    grid-template-columns: 7fr 5fr;
    gap: 1rem;
    align-items: center;
}

.grid-section-5-7 .container {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 1rem;
    align-items: center;
}

.grid-section-4-8 {
    display: grid;
    grid-template-columns: 4fr 8fr;
    gap: 1rem;
}

.grid-section-9-3 .container {
    display: grid;
    grid-template-columns: 9fr 3fr;
    gap: 1rem;
    align-items: center;
}

.align-center {
    align-items: center;
}

.btn-with-border-no-bg {
    display: inline-block;
    color: #0d2e8f;
    font-weight: 800;
    font-size: 1.5rem;
    padding: 0.5em 1em;
    transition: 300ms ease;
    border: 1px solid #0d2e8f;
    border-radius: 5px;
}

.l-spacing {
    letter-spacing: 3px;
}

.grid-align-center {
    justify-content: center;
    align-items: center;
}

.main-paragraph {
    max-width: 1090px;
    margin-left: auto;
    margin-right: auto;
}

.main-paragraph p {
    margin-bottom: 30px;
}

.main-paragraph p:last-child {
    margin-bottom: 0;
}

.main-paragraph strong {
    font-weight: bold;
}

.dflex-space-between-section {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}

/* Common Media Queries for Responsive Design */
@media (max-width: 1400px) {
    .extra-big-title {
        font-size: 3rem;
    }

    .big-title {
        font-size: 3rem;
    }

    .medium-parag {
        font-size: 1.4rem;
    }
}

@media (max-width: 1300px) {
    .font-size-22 {
        font-size: 1.2rem;
    }
}

@media (max-width: 1200px) {


    .medium-title {
        font-size: 2.5rem;
    }

    .small-title {
        font-size: 2rem;
    }

    .big-parag {
        font-size: 1.3rem;
    }

    .small-parag {
        font-size: 1.1rem;
    }

    .font-size-35 {
        font-size: 1.9rem;
    }

    .m-b288 {
        margin-bottom: 8rem;
    }

    .m-b180 {
        margin-bottom: 8rem;
    }
}

@media (max-width: 1100px) {

    .grid-section-7-5 .container,
    .grid-section-5-7 .container {
        gap: 1rem;
    }

    .btn-with-border-no-bg {
        font-size: 1.3rem;
    }

    .extra-big-title {
        font-size: 2.5rem;
    }

    .big-title {
        font-size: 2.5rem;
    }

    .medium-title {
        font-size: 2.125rem;
    }

    .small-title {
        font-size: 1.75rem;
    }

    .font-size-35 {
        font-size: 1.8rem !important;
        !i;
        !;
    }

    .grid-section-2,
    .grid-section-3,
    .grid-section-4 {
        grid-template-columns: repeat(1, 1fr);
    }

    .grid-section-7-5 .container,
    .grid-section-5-7 .container,
    .grid-section-4-8 {
        grid-template-columns: 1fr;
    }

    .m-b180 {
        margin-bottom: 5.25rem;
    }

    .m-b120 {
        margin-bottom: 4rem;
    }

    .m-b48 {
        margin-bottom: 2rem;
    }
}

@media (max-width: 992px) {
    .m-b100 {
        margin-bottom: 4.25rem;
    }

    .extra-big-title {
        font-size: 2.2rem;
    }

    .p-t100 {
        padding-top: 2rem;
    }

    .dflex-space-between-section {
        gap: 2rem;
    }

    .font-size-20 {
        font-size: 1.18rem;
    }

    .cta-v3-blue {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .extra-small-title {
        font-size: 1.2rem !important;
    }

    .responsive-title {
        font-size: 2.5rem;
    }

    .responsive-description {
        font-size: 1rem;
    }

    .big-title {
        font-size: 2rem;
    }

    .medium-title {
        font-size: 2rem;
    }

    .small-title {
        font-size: 1.75rem;
    }

    .big-parag {
        font-size: 1.25rem;
    }

    .medium-parag {
        font-size: 1.1rem;
    }

    .small-parag {
        font-size: 1rem;
    }

    .grid-section-4,
    .grid-section-3,
    .grid-section-9-3 .container {
        grid-template-columns: 1fr;
    }

    .font-size-35 {
        font-size: 1.4rem !important;
    }

    .font-size-24 {
        font-size: 1.2rem;
    }

    .font-size-22 {
        font-size: 1.15rem;
    }

    img.check_icon {
        width: 25px;
    }
}

@media (max-width: 480px) {
    .big-title {
        font-size: 1.75rem;
    }

    .medium-title {
        font-size: 1.5rem;
    }

    .medium-parag {
        font-size: 1rem;
    }

    .small-parag {
        font-size: 1rem;
    }

    .check_icon {
        width: 25px;
        margin-top: -5px;
    }

    .medium-title {
        font-size: 2rem !important;
        line-height: 2.5rem;
    }

    .p-b100,
    .p-t100 {
        padding: 4rem 0;
    }

    .p-b50 {
        padding-bottom: 2.5rem;
    }
}

/* ===== HERO SECTION ===== */
.hero-section {
    display: flex;
    min-height: 1070px;
    align-items: center;
    background-image: url('/wp-content/themes/heimdal/img/redesign-v3/agent-fatigue/Hero Section-min.jpg'), linear-gradient(108deg, #081241 0.56%, #0A1A65 99.19%);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.hero-section .hero-content {
    max-width: 60rem;
}

.hero-section .hero-content.has-form {
    max-width: 100%;
    display: flex;
    gap: 12rem;
    width: 100%;
    align-items: center;
}

.lef-hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    flex: 1;
}

.right-hero-content {
    border-radius: 30px;
    background: #FFF;
    padding: 2rem;
    max-width: 550px;
    /* Fixed width */
    flex-shrink: 0;
    font-family: "Nunito Sans", Arial, Helvetica, sans-serif;
}

.hero-pre-title {
    letter-spacing: 3px;
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
}

h1.hero-title {
    color: #FFF;
    font-family: Inter;
    /* font-size: 4.0rem; */
    font-style: normal;
    font-weight: 700;
    line-height: 1.076em;
    margin-bottom: 0.65em;
}

.hero-footer {
    color: #FFF;
    font-family: "Nunito Sans";
    font-size: 2.1875rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1.4em;
}

.hero-description {
    font-size: 1.25rem;
}

.hero-section .iti__country:before {
    content: unset;
}

.hero-footer h2 {
    color: #FFF;
    font-family: Inter;
    font-size: 2.1rem;
    font-style: normal;
    font-weight: 600;
    line-height: 2.8rem;
    margin-bottom: 2.8rem;
}

.hero-footer img {
    max-width: 540px;
}

h2.form-title {
    color: #0A1A65;
    text-align: center;
    font-family: Inter;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 400;
    /* 187.5% */
}

label {
    color: #0A1A65;
    font-family: "Nunito Sans";
    font-size: 0.9rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.field {
    border-radius: 5px;
    border: 1px solid #D9DBE9;
    background: #FFF;
}

h2.form-title {
    margin: 0 0 2rem 0;
}


@media only screen and (max-width: 1600px) {
    .hero-section .hero-content {
        padding-top: 6rem;
    }

    .hero-section .hero-content.has-form {
        margin-top: 10rem;
        padding-bottom: 6rem;
    }

    a.cta-v3,
    .hero-section .explore-platform,
    .cta-v3-secondary {
        font-size: 1.2rem;
    }

    .hero-section {
        min-height: 900px;
    }
}

@media only screen and (max-width: 1400px) {
    .hero-section .cta-btn {
        padding: 0.8em 2.5em;
        padding-left: 25px;
        max-width: 7.875rem;
    }

    .hero-section .btn-arrow {
        max-width: 1.3rem;
        right: 25px;
    }

    .hero-section .m-b30 {
        margin-bottom: 1.5rem;
    }

    .hero-section .hero-content.has-form {
        margin-top: 6rem;
        gap: 2rem;
    }
}

@media only screen and (max-width: 1199px) {
    .right-hero-content {
        padding: 1rem;
        max-width: 420px;
    }
}

@media only screen and (max-width: 1000px) {
    .hero-section .hero-content.has-form {
        flex-direction: column;
    }

    .right-hero-content {
        max-width: max-content;
    }

    .hero-section {
        padding: 8rem;
        min-height: auto;
    }

    .hero-section .hero-content {
        max-width: 100%;
    }

    .hero-section .cta-btn,
    .hero-section .explore-platform {
        font-size: 1.2rem;
    }

    .hero-section .cta-container {
        flex-direction: row;
        gap: 1rem;
        align-items: center;
    }

    .hero-section .hero-content {
        padding-top: 4rem;
    }

    .hero-section .hero-content.has-form {
        margin-top: 0;
        grid-template-columns: 1fr;
    }

    .hero-section .form-container {
        margin: 0 auto;
        margin-top: 3rem;
    }

    .hero-section .hero-content.has-form {
        padding-bottom: 0;
    }

    .hero-footer h2 {
        font-size: 1.8rem;
        line-height: 1.8rem;
    }
}

@media only screen and (max-width: 992px) {
    .hero-section {
        padding: 3rem 0rem 5rem;
    }

    h1.hero-title {
        line-height: initial;
    }
}

@media only screen and (max-width: 768px) {

    a.cta-v3,
    .hero-section .explore-platform {
        font-size: 1rem;
    }

    .hero-section {
        background: linear-gradient(#0b0b2c, #423188) !important;
    }

    .hero-footer h2 {
        font-size: 1.6rem;
    }
}

@media only screen and (max-width: 480px) {
    .hero-section .cta-container {
        flex-direction: column;
        gap: 1rem;
        justify-content: center;
        align-content: center;
    }

    .hero-section .cta-btn {
        margin: 0 auto;
    }

    .hero-section .explore-platform,
    a.cta-v3 {
        font-size: 1rem;
    }

    .hero-section .explore-platform .double-arrow-down {
        max-width: 14px;
        margin-left: 10px;
    }

    .hero-section .form-container {
        margin-top: 2rem;
    }

    .hero-footer h2 {
        font-size: 1.4rem;
    }

    .hero-section .hero-content.has-form h2.form-title {
        font-size: 1.6rem;
    }
}

/* Features Section Styles */
.video-section {
    background-image: url("/wp-content/themes/heimdal/img/redesign-v3/product-page/video-section.jpg");
    background-position: top center;
}

.video-section .video-player,
.video-section .video-player-btn {
    width: 100%;
}

.video-section a#playButtonText {
    cursor: pointer;
}

.video-section .video-iframe-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.video-section .video-iframe-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}

.video-iframe-container iframe {
    width: 100%;
    min-height: 420px;
}

.video-wrap video {
    width: 100%;
}

.video-selector {
    margin-top: 1.5rem;
}

.video-selector p {
    cursor: pointer;
    position: relative;
    margin-bottom: 0.7rem;
    color: #000266;
    font-weight: 600;
    margin-left: 1.75rem;
    font-size: 1.2rem;
    transition: all 300ms ease;
    font-family: "Nunito Sans", Arial, Helvetica, sans-serif;
}

.video-selector p::before {
    content: "";
    display: block;
    width: 18px;
    height: 18px;
    background-color: #000266;
    border-radius: 50%;
    /* Makes it circular */
    position: absolute;
    left: -30px;
    /* Adjusts the position relative to text */
    top: 50%;
    transform: translateY(-50%);
}

.video-selector p::after {
    content: "";
    position: absolute;
    top: 50%;
    left: -24px;
    /* Positions the triangle inside the circle */
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 0 5px 8px;
    /* Creates the triangle */
    border-color: transparent transparent transparent white;
    /* White play triangle */
}


.video-selector p.active {
    color: #EE2767;
    font-weight: 700;
}

.video-selector p.active::before {
    background-color: #EE2767;
}

.key-benefits-section {
    background-image: url("/wp-content/themes/heimdal/img/redesign-v3/product-page/key-benefits.jpg");
    background-position: top center;
}

.presentation-section .grid-section-2 {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.presentation-section .video-title {
    line-height: 1.2em;
    padding-right: 30px;
}



#videoButton img {
    border-radius: 15px;
}

.presentation-section .info-box {
    min-height: 38rem;
    padding: 70px 20px 70px 20px;
    width: 100%;
    box-shadow: 12px 5px 15px #00000030;
}

.presentation-section .gradient1 {
    background: rgb(185, 15, 112);
    background: linear-gradient(43deg, rgba(185, 15, 112, 1) 0%, rgba(4, 68, 188, 1) 54%, rgba(0, 101, 254, 1) 100%);
}

.presentation-section .gradient2 {
    background: linear-gradient(43deg, rgba(9, 29, 181, 1) 0%, rgba(0, 101, 254, 1) 54%, rgba(57, 156, 156, 1) 100%);
}

@media only screen and (max-width: 1200px) {
    .presentation-section .info-box {
        min-height: 42rem;
        padding: 70px 20px 70px 20px;
        box-shadow: 12px 5px 15px #00000030;
        margin: 0 auto;
        border-radius: 20px;
    }
}

@media only screen and (max-width: 1100px) {
    .presentation-section .info-box {
        min-height: auto;
    }

    .presentation-section .video-title {
        max-width: 100%;
        line-height: 1.2;
    }

    .info-box .big-parag {
        font-size: 1.6rem;
    }

    .presentation-section .grid-section-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media only screen and (max-width: 999px) {
    .presentation-section .card-container>.card-bottom-part {
        padding: 1.5em 1em 2.5em;
    }

    .presentation-section .card-title {
        font-size: 19px;
        line-height: 1.3em;
    }

    .presentation-section .card-bottom-part .text-dkblue {
        font-size: 18px;
    }
}

@media only screen and (max-width: 991px) {
    .presentation-section .grid-section-2 {
        grid-template-columns: 100%;
        gap: 4rem;
    }

    .presentation-section .video-title {
        margin-bottom: 1rem;
        text-align: left;
        line-height: 45px;
        padding: 0;
    }

    .presentation-section .grid-section-3 {
        grid-template-columns: repeat(1, 1fr);
        max-width: 85%;
        margin: 0 auto;
    }

    .presentation-section .card-container.card-3 {
        width: 100%;
        max-width: 310px;
        margin: 0 auto;
    }

    .presentation-section .card-row-3 {
        gap: 1rem;
    }

    .presentation-section .card-container .card-top-part img {
        height: 240px;
    }
}

@media only screen and (max-width: 768px) {
    .presentation-section .card-container.card-3 {
        max-width: 400px;
    }

    .presentation-section .card-row-3 {
        gap: 2rem;
    }

    .presentation-section .info-box {
        margin-bottom: 1rem;
    }

    .video-iframe-container iframe {
        width: 100%;
        min-height: 300px;
    }
}

@media only screen and (max-width: 480px) {
    .presentation-section .video-title {
        line-height: 1.5;
    }

    .presentation-section .info-box {
        padding: 30px 15px;
    }

    .video-iframe-container iframe {
        width: 100%;
        min-height: 250px;
    }

    .key-benefits-section {
        padding-bottom: 0;
    }

}


/* <!-- ============ C2A Section ========================== --> */

#c2a-hp-section {
    background-image: url("/wp-content/themes/heimdal/img/redesign-v2/comparison/crowdstrike/Home Page - C2A Section.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    color: #fff;
}

#c2a-hp-section h2 {
    font-family: Inter;
    font-size: 50px;
    font-weight: 600;
    line-height: 1.2em;
}

#c2a-hp-section .cta-description {
    padding: 1.5rem 0 2rem;
    font-family: 'Nunito Sans';
}

#c2a-hp-section .cta-dashboard-container {
    position: relative;
    min-width: 680px;
}

#c2a-hp-section .cta-dashboard-container img {
    position: absolute;
}

@media screen and (max-width:1400px) {
    #c2a-hp-section h2 {
        font-size: 45px;
    }

    #c2a-hp-section .cta-dashboard-container {
        min-width: 520px;
    }

    #c2a-hp-section .c2a-text-container {
        padding-right: 2rem;
    }
}

@media screen and (max-width:1250px) {
    #c2a-hp-section .cta-dashboard-container {
        min-width: 450px;
    }

    #c2a-hp-section h2,
    #c2a-hp-section .cta-description {
        max-width: 31rem;
    }

    #c2a-hp-section .container {
        justify-content: space-evenly;
    }
}

@media screen and (max-width:1100px) {

    #c2a-hp-section h2,
    #c2a-hp-section .cta-description {
        max-width: 24rem;
    }

    #c2a-hp-section .cta-description {
        padding: 1rem 0 1.5rem;
    }

    #c2a-hp-section .cta-dashboard-container {
        min-width: 420px;
    }

    #c2a-hp-section h2 {
        font-size: 36px;
    }
}

@media screen and (max-width:990px) {
    #c2a-hp-section .cta-dashboard-container {
        min-width: 320px;
    }

    #c2a-hp-section .container {
        flex-direction: column;
    }

    #c2a-hp-section {
        padding-bottom: 0;
    }

    #c2a-hp-section .cta-dashboard-container {
        margin-top: 3rem;
    }

    #c2a-hp-section .cta-dashboard-container img {
        position: relative;
    }

    #c2a-hp-section h2,
    #c2a-hp-section .cta-description {
        max-width: 33rem;
    }

    #c2a-hp-section .c2a-text-container {
        text-align: center;
        padding-right: 0;
        display: flex;
        flex-direction: column;
        /* justify-content: center; */
        align-items: center;
    }
}


@media screen and (max-width:570px) {
    #c2a-hp-section .c2a-text-container {
        padding-right: 0;
    }

    #c2a-hp-section>.container.section-space-sm {
        padding: 5rem 50px 3rem 50px;
    }


}

/* <!-- ============ End C2A Section ========================== --> */

/* ======================= 2 Cards section ========================= */

.related-section h2 {
    margin-bottom: 5rem;
}

.related-section .card-container.card-3 {
    width: 48%;
}

.related-section .card-container .card-top-part {
    max-height: 330px;
}

.related-section .card-description {
    min-height: 150px;
}

.related-section .card-bottom-part-equal a img {
    margin-left: 0.8rem;
    transition: all 0.3s;
}

.card-bottom-part-equal a.button-text:hover {
    color: #0b1a65;
}

.related-section .card-bottom-part-equal a:hover img {
    margin-left: 1.5rem;
}

@media screen and (max-width: 1200px) {
    .related-section .card-description {
        min-height: 190px;
    }
}

@media screen and (max-width: 991px) {
    .related-section .card-container.card-3 {
        width: 100%;
        margin-bottom: 2rem;
    }

    .related-section .card-description {
        min-height: auto;
        margin-bottom: 2rem;
    }

    .related-section h2 {
        margin-bottom: 3rem;
    }
}

/* ======================= End 2 Cards section ===================== */


/* ================== table section ============================ */

.table-comparison {
    margin-top: 5rem;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    flex-grow: 1;
}

.row-comp {
    min-width: 100%;
    display: flex;
    border-bottom: 1px solid #C7CBE1;
}

.row-comp.last-row {
    border-bottom: none;
}

.c1 {
    min-width: 50%;
    width: 50%;
}

.cHeimdal {
    background: #E5F0FF;
    min-width: 25%;
    width: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cCrowdstrike {
    min-width: 25%;
    width: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-row>.cHeimdal {
    border-radius: 20px 20px 0 0;
    padding: 3.3125rem 2.6875rem;
}


.header-row>.cCrowdstrike {
    border-radius: 20px 20px 0 0;
    padding: 3.3125rem 2.6875rem;
}

.last-row>.cHeimdal {
    border-radius: 0 0 20px 20px;
    padding: 3.3125rem 2.6875rem;
}

.HeimdalLogoTable,
.CrowdstrikeLogoTable {
    text-align: center;
}

.HeimdalLogoTable>img {
    width: 10.5625rem;
    height: 2.375rem;
}

.CrowdstrikeLogoTable>img {
    width: 9rem;
    height: 1.5rem;
}

.check-mark {
    width: 3.75rem;
    height: 3.75rem;
}

.c1Header {
    margin: 2.5rem 8.5rem 2.5rem 0;
}

.c1Header>.mb-20 {
    font-size: 1.5rem;
}

@media screen and (max-width:975px) {
    .header-row {
        display: none;
    }


    .row-comp {
        flex-wrap: wrap;
        border-bottom: none;
    }

    .c1 {
        width: 100%;
    }

    .c1Header {
        margin: 4.5rem 6.5rem 2.5rem 0;
    }

    .cHeimdal,
    .cCrowdstrike,
    .last-row>.cHeimdal,
    .last-row>.cCrowdstrike {
        min-width: 50%;
        width: 50%;
        border: 1px solid #C7CBE1;
        padding: 10px 0;
    }

    .cHeimdal,
    .last-row>.cHeimdal {
        border-radius: 5px 0 0 5px;
    }

    .cCrowdstrike,
    .last-row>.cCrowdstrike {
        border-radius: 0 5px 5px 0;
    }

    .mob-c-titles {
        width: 100%;
        display: flex;
        justify-content: space-around;
        padding: 2.5rem 0;
    }

    .mob-only.mob-cTitleHeimdal,
    .mob-only.mob-cTitleCrowdstrike {
        display: flex;

        color: #0A1A65;
        text-align: center;
        font-family: "Nunito Sans";
        font-size: 18px;
        font-style: normal;
        font-weight: 700;
        line-height: 26px;
        /* 144.444% */
        letter-spacing: -0.36px;
    }

}

@media screen and (max-width: 768px) {
    .table-comparison {
        margin-top: 1rem;
    }
}

@media screen and (max-width:576px) {
    .table-section {
        padding: 0 1.125rem;
    }

    .card-unified-box-container {
        width: 100%;
    }

    .text-card-box {
        min-height: auto;
    }
}

/* ================== end table section ============================ */


/* ================== Table section v2 ============================ */
.flex-3-col {
    display: flex;
}

.flex-3-col .col {
    flex: 1;
}

.col.compare-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

section.compare-table {
    margin: 6.25rem 0;
    color: #0A1A65;
}

.compare-table-header {
    text-align: center;
}

.compare-table-header p {
    text-transform: uppercase;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    font-family: 'Inter';
    margin-bottom: 1rem;
    letter-spacing: 3px;
}

.compare-table-header h2 {
    margin-bottom: 2rem;
}

.compare-table-header h3 {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 4rem;
}

.compare-table p.description {
    text-align: center;
    max-width: 928px;
    margin: 0 auto;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    font-family: 'Inter';
    margin-bottom: 5.5rem;
}

.compare-table-main {
    text-align: left;
    width: 100%;
}

.compare-table-header-table {
    font-family: "Nunito Sans";
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 700;
    margin-bottom: 0rem;
    position: sticky;
    top: 124px;
    background: white;
    z-index: 9;
}

.compare-table-item .category {
    color: rgba(10, 26, 102, 0.60);
    font-family: Inter;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
}

.compare-table-item .product-name {
    font-family: Inter;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 700;
}

.compare-table-item {
    align-items: center;
    border-bottom: 2px solid #D9DBE9;
    padding: 2rem 0;
}

.compare-table-item .compare-info {
    font-family: Inter;
    font-size: 1.25rem;
    font-style: normal;
    line-height: normal;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.compare-table-item img.check-icon {
    width: 27px;
    display: none;
}

@media only screen and (max-width: 1365px) {
    .compare-table-header-table {
        font-size: 1.3rem;
    }
}

@media only screen and (max-width: 1000px) {
    .compare-table-header h3 {
        font-size: 1.9rem;
    }

    .compare-table-header-table {
        top: 85px;
    }
}

@media only screen and (max-width: 992px) {
    .compare-table-header p {
        font-size: 16px;
    }

    .compare-table p.description {
        margin-bottom: 2.25rem;
    }

    .compare-table-item {
        align-items: start;
    }

    .compare-table-item .compare-info {
        align-items: start;
    }
}

@media only screen and (max-width: 768px) {
    .compare-table-header-table {
        display: none;
    }

    .compare-table-item {
        align-items: center;
        border-bottom: 2px solid #D9DBE9;
        padding: 2rem 0;
        flex-direction: column;
    }

    .compare-table-item .compare-info span {
        display: block;
        color: #6C76A3;
        font-family: Inter;
        font-size: 0.85rem;
        font-weight: 700;
    }

    .compare-table-item .compare-info {
        font-size: 1rem;
        font-family: Inter;
        font-style: normal;
        font-weight: 700;
        margin-top: 0.8rem;
    }

    .compare-table-item .product-name {
        font-size: 1.4rem;
        font-weight: 400;
    }

    .compare-table-item img.check-icon {
        display: block;
    }
}

@media only screen and (max-width: 480px) {

    .compare-table-header h3 {
        margin-bottom: 0rem;
    }

    section.compare-table {
        margin: 3.25rem 0;
    }

    .compare-table-header h2 {
        margin-bottom: 2rem;
        font-size: 2rem !important;
    }

    #final-cta-section .pre-title-v2 {
        font-size: 2.5rem;
    }

    .compare-table-item .compare-info {
        align-items: center;
    }

}

@media only screen and (max-width: 395px) {
    .compare-table-header h3 {
        font-size: 1.6rem;
    }

}

/* ================== End Table section v2 ============================ */

/* ================== faq section ============================ */

.faq-section {
    margin-bottom: 2rem;
}

.faq-section .subheading {
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.accordion .accordion-item {
    background-color: var(--background-color);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    border-bottom: 1px solid #C7CBE1;
}

.accordion .accordion-item .accordion-item-description-wrapper hr {
    border: none;
    border-top: 1px solid var(--border-color);
    visibility: visible;
}

.accordion .accordion-item.open .accordion-item-description-wrapper hr {

    visibility: visible;
}

.accordion .accordion-item .accordion-item-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 10px;
    cursor: pointer;
}


.accordion .accordion-item .accordion-item-header .accordion-item-header-title {
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.416em;
    letter-spacing: -0.48px;
    font-family: "Nunito Sans", Arial, Helvetica, sans-serif;
}

.accordion .accordion-item .accordion-item-header .accordion-item-header-icon {
    transition: all 0.2s ease;
}

.accordion .accordion-item.open .accordion-item-header .accordion-item-header-icon {
    transform: rotate(-180deg);
}

.accordion .accordion-item .accordion-item-description-wrapper {
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    transition: all 0.2s ease;
}

.accordion .accordion-item.open .accordion-item-description-wrapper {
    grid-template-rows: 1fr;
    margin-bottom: 1.25rem;
}

.accordion .accordion-item .accordion-item-description-wrapper .accordion-item-description {
    min-height: 0;
}

.accordion .accordion-item .accordion-item-description-wrapper .accordion-item-description p {
    padding: 10px;
    line-height: 1.5;
    font-family: "Nunito Sans";
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: -0.4px;
}

.accordion .accordion-item .accordion-item-header svg {
    transition: 0.3s all;
}

.accordion .accordion-item.open .accordion-item-header svg {
    transform: rotate(180deg);
}

.p-default>a {
    color: #0A1A65;
    text-decoration: underline;
}

.accordion .accordion-item:last-child {
    border: none;
}

@media screen and (max-width:993px) {

    .accordion {
        border: 1px solid #C7CBE1;
        border-radius: 20px;
    }

    .accordion .accordion-item .accordion-item-header {
        padding: 20px 10px;
    }

    .accordion .accordion-item .accordion-item-header svg {
        width: 20px;
    }

}


@media screen and (max-width:576px) {
    .faq-section {
        padding: 3rem 0;
    }

}