.hero-wrapper{
    background-color: var(--redias-bg-light-color, #f5f3ef);
    padding: 100px 0;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-inner{
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-gap: 30px;
    align-items: center;
}
.hero-content .sub-heading{
    font-size: 18px;
    font-weight: 500;
    color: var(--redias-dark-color, #111521);
    line-height: 1.1;
}

.hero-content .sub-heading i{
    font-size: 20px;
    color: var(--redias-primary-color, #ff6a32);
}

.hero-content .heading {
    font-size: 54px;
    line-height: 54px;
    letter-spacing: -1px;
    font-weight: 600;
    color: var(--redias-dark-color, #111521);
    padding-right: 30px;
}

.rtl .hero-content .heading{
    padding-right: 0;
    padding-left: 30px;
}

.hero-content .desc{
    color: var(--redias-grey-color, #747475);
    font-size: 16px;
    line-height: 1.7;
}

.hero-content .btn-holder {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    position: relative;
}

.hero-content .btn-holder .dl-el-btn-wrap{ width: auto; }


.play-btn {
    display: flex;
    align-items: center;
    column-gap: 15px;
}

.play-btn .play-icon {
    width: 55px;
    height: 55px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--redias-secondary-color, #089fac);
    color: #fff;
    -webkit-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    -webkit-animation: ripple_anim 2s linear infinite;
    animation: ripple_anim 2s linear infinite;
}

.play-btn .play-icon svg {
    width: 12px;
}

.play-btn:hover .play-icon{
    background-color: var(--redias-primary-color, #ff6a32);
}

.play-btn .play-btn-txt {
    font-family: var(--redias-primary-font, "Syne", sans-serif);
    font-size: 14px;
    font-weight: 600;
    color: var(--redias-grey-color, #747475);
    transition: color 0.4s ease-in-out;
}

.play-btn:hover .play-btn-txt{
    color: var(--redias-primary-color, #ff6a32);
}

@-webkit-keyframes ripple_anim {
    0% {
        -webkit-box-shadow: 0px 0px 0px 0px rgba(73, 82, 232, 0.08), 0px 0px 0px 5px rgba(73, 82, 232, 0.08), 0px 0px 0px 12px rgba(73, 82, 232, 0.08);
        box-shadow: 0px 0px 0px 0px rgba(73, 82, 232, 0.08), 0px 0px 0px 5px rgba(73, 82, 232, 0.08), 0px 0px 0px 12px rgba(73, 82, 232, 0.08);
    }

    100% {
        -webkit-box-shadow: 0px 0px 0px 5px rgba(73, 82, 232, 0.08), 0px 0px 0px 12px rgba(73, 82, 232, 0.08), 0px 0px 0px 18px rgba(73, 82, 232, 0);
        box-shadow: 0px 0px 0px 5px rgba(73, 82, 232, 0.08), 0px 0px 0px 12px rgba(73, 82, 232, 0.08), 0px 0px 0px 18px rgba(73, 82, 232, 0);
    }
}

@keyframes ripple_anim {
    0% {
        -webkit-box-shadow: 0px 0px 0px 0px rgba(73, 82, 232, 0.08), 0px 0px 0px 5px rgba(73, 82, 232, 0.08), 0px 0px 0px 12px rgba(73, 82, 232, 0.08);
        box-shadow: 0px 0px 0px 0px rgba(73, 82, 232, 0.08), 0px 0px 0px 5px rgba(73, 82, 232, 0.08), 0px 0px 0px 12px rgba(73, 82, 232, 0.08);
    }

    100% {
        -webkit-box-shadow: 0px 0px 0px 5px rgba(73, 82, 232, 0.08), 0px 0px 0px 12px rgba(73, 82, 232, 0.08), 0px 0px 0px 18px rgba(73, 82, 232, 0);
        box-shadow: 0px 0px 0px 5px rgba(73, 82, 232, 0.08), 0px 0px 0px 12px rgba(73, 82, 232, 0.08), 0px 0px 0px 18px rgba(73, 82, 232, 0);
    }
}

.brands-circle {
    --brands-circle-color: #747475;
    background-color: transparent;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    border: 1.5px dashed var(--brands-circle-color);
    position: relative;
    margin: 0 auto;
}

.brands-circle:before {
    border: 1.5px dashed var(--brands-circle-color);
    content: "";
    position: absolute;
    left: 50px;
    right: 50px;
    top: 50px;
    bottom: 50px;
    border-radius: 50%;
}

.brands-circle:after {
    border: 1.5px dashed var(--brands-circle-color);
    content: "";
    position: absolute;
    left: 100px;
    right: 100px;
    top: 100px;
    bottom: 100px;
    border-radius: 50%;
}

.brands-circle>div:not(.center-icon)>i {
    background-color: var(--redias-primary-color, #ff6a32);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 25px;
    color: var(--redias-white-color, #fff);
    position: absolute;
    left: 50%;
    top: 50%;
    box-shadow: 0px 1px 40px 0px rgb(0 0 0 / 10%);
}

.brands-circle>div.inner-icon,
.brands-circle>div.outer-icon {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    -webkit-animation: rotate-center 25s linear infinite;
    animation: rotate-center 25s linear infinite;
}

.brands-circle>div.outer-icon i:nth-child(1) {
    left: auto;
    right: -25px;
}

.brands-circle>div.outer-icon i:nth-child(2) {
    left: auto;
    right: 75px;
    top: 0;
}

.brands-circle>div.outer-icon i:nth-child(3) {
    left: 12%;
    top: 5%;
}

.brands-circle>div.outer-icon i:nth-child(4) {
    left: 20%;
    top: auto;
    bottom: 0px;
}

.brands-circle>div.inner-icon {
    left: 50px;
    right: 50px;
    top: 50px;
    bottom: 50px;
    -webkit-animation: rotate-center 25s linear infinite reverse;
    animation: rotate-center 25s linear infinite reverse;
    animation-duration: 30s;
    animation-delay: 200ms;
}

.brands-circle>div.inner-icon i:nth-child(1) {
    left: -10px;
    top: 60%;
}

.brands-circle>div.inner-icon i:nth-child(2) {
    left: auto;
    right: 50px;
    top: 85%;
}

.brands-circle .center-icon {
    background-color: #0abf53;
    border-radius: 50%;
    color: var(--redias-white-color, #fff);
    font-size: 30px;
    position: absolute;
    width: 60px;
    height: 60px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 1px 40px 0px rgb(0 0 0 / 10%);
}

.brands-circle .inner-icon .la-hubspot {
    background-color: #ff9d2a;
}

.brands-circle .inner-icon .la-dribbble {
    background-color: #ea4c89;
}

.brands-circle .outer-icon .la-behance {
    background-color: #053eff;
}

.brands-circle .outer-icon .la-gitlab {
    background-color: #e24329;
}

.brands-circle .outer-icon .la-itunes-note {
    background-color: #ea4cc0;
}

.brands-circle .outer-icon .slack {
    background-color: #ECB22E;
}

@-webkit-keyframes rotate-center {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotate-center {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@media (max-width: 992px) {

    .brands-circle {
        width: 280px;
        height: 280px;
    }

    .hero-content .heading {
        font-size: 42px;
        line-height: 48px;
    }

    .hero-content .hero-arrow {
        display: none;
    }
}

@media (max-width: 767px) {
    .hero-inner{ grid-template-columns: 1fr; }
    .hero-content .heading {
        font-size: 28px;
        line-height: 32px;
    }
}