:root {
    --primary-color: #243B81;
    --white-color: #ffffff;
    --lightBlue-color: #49aefe;
    --title-color: #555555;
    --text-color: #344054;
    --gray-color: #e6e6e6;
    --text-error: #f02f2f;
    --bg-error: #ffc2c2;
}

#hero {
    padding: 100px 0;
    margin-bottom: 10px;
    overflow: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}
.bg__primary {
    background-color: var(--primary-color);
}
#heroHeader {
    padding: 0 100px;
}
.hero__heading {
    overflow: hidden;
    position: relative;
}
span.color__primary {
    color: var(--primary-color);
    position: absolute;
    transition: transform 0.5s;
}

span.span2,
span.span3,
span.span1 {
    transform: translateY(100px);
}
.active {
    display: inline-block;
    transform: translateY(0) !important;
}
.hide {
    display: none;
}

.btn__primary {
    background-color: var(--primary-color) !important;
    color: white;
    font-weight: 600;
    font-size: 18px;
    padding: 10px 24px 10px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}
.btn__secondary,
.btn__secondary:hover {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 18px;
    background: transparent;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

#right_section > h1 {
    width: 95%;
}
#right_section > p {
    width: 73%;
}
#right_section,#left_section {
    bottom: 20px;
}
#right_section,
#left_section,
#coloredLines {
    position: relative;
}

#blueShadow {
    position: absolute;
    top: 20%;
    left: 5%;
    box-shadow: 0 0 120px 30px #49aefe;
    width: 200px;
    border-radius: 50%;
    z-index: -1;
    animation: shadow_move linear 3s infinite;
}

[dir="ltr"] #blueShadow {
    left: 85%;
}

#purpleShadow {
    position: absolute;
    right: -10%;
    top: 35%;
    box-shadow: 0 0 120px 30px var(--primary-color);
    width: 150px;
    border-radius: 50%;
    z-index: -1;
    animation: shadow_move linear 3s infinite;
}

[dir="ltr"] #purpleShadow {
    box-shadow: 0 0 120px 30px red;
    left: 10px !important;
}

#leftLines {
    transform: rotate(-190deg) translateX(-50%);
    width: 100%;
}

.left__purple__color {
    background-color: var(--primary-color);
    height: 50px;
    transform: skew(-10deg);
}
.left__blue__color {
    background-color: var(--lightBlue-color);
    height: 50px;
    width: 65%;
    margin-right: auto;
    transform: skew(-10deg);
    animation: left__blue__color_move ease-in-out 5s infinite;
}

#rightLines {
    transform: rotate(-190deg) translateX(50%);
    width: 100%;
}
.right__purple__color {
    background-color: var(--primary-color);
    height: 50px;
    margin-left: auto;
    transform: skew(-10deg);
}
.right__blue__color {
    background-color: var(--lightBlue-color);
    height: 50px;
    width: 65%;
    transform: skew(-10deg);
    animation: right__blue__color_move ease-in-out 5s infinite;
}

#left_section {
    animation: up_down_move linear 4s infinite;
}

@media (width <= 1300px) {
    #right_section,
    #left_section {
        width: 100% !important;
    }

    #right_section > h1 {
        width: 95%;
        font-weight: 600;
        font-size: 38px;
    }
}

@media (width <= 1000px) {
    #heroHeader {
        padding: 0 20px;
    }
    #left_section {
        scale: 0.7;
    }
    #right_section > h1,
    #right_section > p {
        width: 95%;
    }
    #right_section > h1 {
        font-weight: 600;
        font-size: 30px;
    }
}

/* animation */

@keyframes left__blue__color_move {
    0% {
        width: 65%;
    }
    50% {
        width: 50%;
    }
    100% {
        width: 65%;
    }
}
@keyframes right__blue__color_move {
    0% {
        width: 65%;
    }
    50% {
        width: 50%;
    }
    100% {
        width: 65%;
    }
}
@keyframes shadow_move {
    0% {
        transform: translate(-50%, -50%) rotate(0deg) translate(40px)
            rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg) translate(40px)
            rotate(-360deg);
    }
}
@keyframes up_down_move {
    0% {
        transform: translateY(0%);
    }
    50% {
        transform: translateY(5%);
    }
    100% {
        transform: translateY(0%);
    }
}

@media (width <= 1000px) {
    .btn__primary,
    .btn__secondary {
        font-size: 14px !important;
        text-wrap: nowrap;
    }
}
