/*===============*/
/* Root          */
/*===============*/
:root {
    /* Primary Colors */
    --color-main: #0c0c1d;
    --color-submain: #181839;
    --color-accent: #5857d5;
    --color-accent-light: #6a6ae9;
    --color-body: #181839;
    /* Neutral Colors */
    --color-white: #ffffff;
    --color-light-gray: #f2f2f2;

    --bg-1: #f3f4f6; /* Soft Gray  header footer parts of bage */
    --accent-1: #8b2036; /*Rich Burgundy color for button */
    --color-1: #111827; /*color of text */

    --bg-2: #2c7f92; /* Teal Blue */
    --accent-2: #f2d3a2; /* Warm Beige */
    --color-2: #fff; /*white color of text*/

    --bg-3: #f2748a; /* Coral */
    --accent-3: #fff; /* white */
    --color-3: #111827; /*color of text*/

    --bg-4: #742635; /*Rich Burgundy*/
    --accent-4: #4ac0c7; /* Light Aqua */
    --color-4: #fff; /*color of text*/

    --bg-5: #2887c8;
    --accent-5: #46bda3;
    --color-5: #2887c8;
    --sec-color-5: #2f2f2f;
    /* https://colorhunt.co/palette/f9f3ec63aabced383360204b */

    font-family: "Mitr", sans-serif;
    --animate-delay: 0.2s;
}

/*===============*/
/* Helper class  */
/*===============*/
.accent-color-1 {
    color: var(--accent-1);
}

.accent-color-2 {
    color: var(--accent-2);
}

.accent-color-3 {
    color: var(--accent-3);
}

.accent-color-4 {
    color: var(--accent-4);
}

.accent-color-5 {
    color: var(--accent-5);
}
.color-4 {
    color: var(--color-4);
}
.color-5 {
    color: var(--color-5);
}
.sec-color-5 {
    color: var(--sec-color-5);
}
.bg-1 {
    background-color: var(--bg-1);
}
.bg-5 {
    background-color: var(--bg-5);
}
.block {
    display: block;
}

.cta-button {
    text-decoration: none;
    color: white;
    display: block;
    width: fit-content;
    position: relative;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 500;
    margin-top: 25px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    transition: all 0.5s ease;
}

.cta-button::before,
.cta-button::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-color: var(--color-5);
    transition: all 0.9s ease;
    -webkit-transition: all 0.9s ease;
    -moz-transition: all 0.9s ease;
    -ms-transition: all 0.9s ease;
    -o-transition: all 0.9s ease;
}

/* Top-left and bottom-right corner before hover */
.cta-button::before {
    top: 0;
    left: 0;
    border-top: 2px solid var(--color-5);
    border-left: 2px solid var(--color-5);
    width: 25%;
    height: 50%;
}

.cta-button::after {
    bottom: 0;
    right: 0;
    border-bottom: 2px solid var(--color-5);
    border-right: 2px solid var(--color-5);
    width: 25%;
    height: 50%;
}

/* Full border when hovering */
.cta-button:hover::before {
    width: 100%;
    height: 100%;
}

.cta-button:hover::after {
    width: 100%;
    height: 100%;
}

section {
    padding: 90px 144px;
}
@media (max-width: 900px) {
    section {
        padding: 48px 25px;
    }
}

.section-title {
    font-size: clamp(30px, 4vw + 0.5rem, 48px);
}
.section-sub-title {
    font-size: clamp(14px, 1vw + 5px, 18px);
}

.sec-title {
    font-size: clamp(24px, 3vw + 0.5rem, 32px);
}
.highlight,
.highlight-l {
    font-weight: 700;
    position: relative;
    display: inline-block;
    font-style: italic;
    text-transform: capitalize;
}

.highlight::after {
    content: "";
    position: absolute;
    top: 8px;
    left: 2px;
    width: 100%;
    height: 80%;
    background-color: var(--accent-5);
    z-index: -12;
    transform: skewX(-10deg);
    -webkit-transform: skewX(-10deg);
    -moz-transform: skewX(-10deg);
    -ms-transform: skewX(-10deg);
    -o-transform: skewX(-10deg);
}
@media (max-width: 1024px) {
    .highlight-l::after {
        content: "";
        position: absolute;
        top: 0px;
        left: 0px;
        width: 100%;
        height: 50%;
        background-color: var(--accent-1);
        z-index: -12;
    }
}
.fw-500 {
    font-weight: 500;
}
.fw-600 {
    font-weight: 600;
}
.fw-700 {
    font-weight: 700;
}

.reversed {
    transform: rotate(180deg) translateY(-10px);
    -webkit-transform: rotate(180deg) translateY(-10px);
    -moz-transform: rotate(180deg) translateY(-10px);
    -ms-transform: rotate(180deg) translateY(-10px);
    -o-transform: rotate(180deg) translateY(-10px);
}
