/* call to action start */

#cta {
    overflow: hidden;
    max-width: 1920px;
}

.cta-rounded {
    background: radial-gradient(circle, var(--clr-secondary) 40%, var(--clr-primary) 40%);
    height: 100%;
    width: 100%;
    border-radius: 50%;
    aspect-ratio: 1/1;
    position: relative;
    transform: translateX(-70%) translateY(2%) scale(1.1);
    outline: 1px solid var(--clr-com-w);
}


.cta-sm {
    position: absolute;
    background: var(--clr-secondary);
    width: 15%;
    height: 15%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    scale: 1;
    transition: 0.5s;
}


#circle-container a {

    color: var(--clr-light) !important;
}

#circle-container a.cta-sm:hover {
    color: var(--clr-secondary) !important;
}

.cta-sm.one {
    top: 15%;
    right: 15%;
}

.cta-sm.two {
    top: 33%;
    right: 5%;
}

.cta-sm.three {
    top: 53%;
    right: 5%;
}

.cta-sm.four {
    top: 70%;
    right: 15%;
}

.cta-sm:hover {
    scale: 1.1;
    background: var(--clr-light);
}



.bg-image {
    background: linear-gradient(to right, var(--clr-secondary), transparent), url(../images/cta-bg-img.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    color: var(--clr-light-text);
    border-bottom: 8px solid var(--clr-secondary);
    border-right: 8px solid var(--clr-secondary);
    overflow: hidden;
    height: auto;
}




@media (width < 992px) {
    .cta-rounded {
        rotate: -90deg;
        transform: translateX(-25%) scale(1.1);
    }

    .bg-image {
        background: linear-gradient(to bottom, var(--clr-primary), transparent), url(../images/cta-bg-img.jpg);
        height: 500px;
    }

    .cta-sm {
        margin-left: 50px;
    }

    .cta-sm svg {
        rotate: 90deg;
    }
}

@media (width < 792px) {
    .bg-image {
        height: 750px;
    }
}

@media (width < 500px) {
    .bg-image {
        height: 500px;
    }
}


#inner-cta {
    background-color: var(--clr-primary);
    color: var(--clr-light-text);
}

#inner-cta a {
    color: var(--clr-light-text);
}

.cta-icon-bg {
    background-color: var(--clr-light);
    width: 35px;
    height: 35px;
    aspect-ratio: 1/1;
    border-radius: 50%;
}

/* call to action end */

/* footer start */

/* heading line */
.under-line {
    position: relative;
}

.under-line::after {
    position: absolute;
    content: "";
    width: 75%;
    height: 3px;
    background-color: var(--clr-primary);
    top: 125%;
    left: 0;
}

footer {
    background-color: var(--clr-primary);
    overflow: hidden;
}

#bg-border {
    background-color: var(--clr-secondary);
    border-radius: 50px 50px 0px 0px;
    color: var(--clr-light-text);
}

footer a {
    color: var(--clr-light-text);
}

.footer-link a {
    position: relative;
}

.footer-link a::after {
    position: absolute;
    content: "";
    width: 50px;
    height: 20px;
    background-image: url(../images/footer-arrow.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    top: 50%;
    transform: translateY(-50%) translateX(-10px) scale(0);
    transition: .5s;
}

.footer-link a:hover::after {
    transform: translateY(-50%) translateX(0px) scale(1);
}

#pwr-by {
    background-color: var(--clr-primary);
    color: var(--clr-light-text);
}