﻿/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
    padding-block: 96px;
    position: relative;
    clip-path: inset(0);
}

    .call-to-action img {
        position: fixed;
        top: 0;
        left: 0;
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
    }

    .call-to-action:before {
        content: "";
        background: color-mix(in srgb, var(--background-color), transparent 50%);
        position: absolute;
        inset: 0;
        z-index: 2;
    }

    .call-to-action .container {
        position: relative;
        z-index: 3;
    }

    .call-to-action .text-3 {
        color: var(--default-color);
        margin-bottom: 32px;
    }

    .call-to-action .underline {
        width: 128px;
        height: 1px;
        background-color: var(--default-color);
        margin-inline: auto;
    }

    .call-to-action .text-p {
        color: var(--default-color);
        margin-bottom: 48px;
        line-height: 1.4;
    }

   
