.commonsec {
    padding: 100px 0;
    position: relative;
}

.sub-title {
    font-family: 'Exima Geometric';
    color: #EA2128;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 10px;
}

.title-one {
    font-family: 'Michroma';
    font-size: 25px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.05em;
}

.icon {
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: center;
    width: 20px;
    min-width: 20px;
    aspect-ratio: 1/1;
    display: block;
    position: relative;
    background-color: #606161;
    transition: all .4s ease-in-out;
}

.icon-facebook2 {
    mask-image: url(../img/svg/facebook-new.svg);
}

.icon-discord {
    mask-image: url(../img/svg/discord.svg);
}

.icon-youtube2 {
    mask-image: url(../img/svg/youtube2.svg);
}

.icon-linkdin2 {
    mask-image: url(../img/svg/linkdin2.svg);
}

.icon-insagram2 {
    mask-image: url(../img/svg/instagram2.svg);
}

.icon-twitter2 {
    mask-image: url(../img/svg/twitter2.svg);
}

.icon-twitch2 {
    mask-image: url(../img/svg/twitch2.svg);
}

.icon-person {
    mask-image: url(../img/svg/person.svg);
}

.social-media {
    display: flex;
    align-items: center;
    column-gap: 25px;
}

.social-media a:hover .icon {
    background-color: #fff;
    box-shadow: 0px 0px 5px 0px #606161;
}

/* footer-sec */
.footer-main {
    background-color: #161616;
}

.footer-logo {
    margin-top: -110px;
}

.footer-logo img {
    object-fit: cover;
}

.footer-con .sec-head {
    position: relative;
    z-index: 2;
}

.f-con {
    max-width: 32.5%;
    flex: 0 0 32.5%;
}

.footer-links {
    max-width: 70%;
    flex: 0 0 70%;
}

.f-con span {
    font-size: 19px;
    font-weight: 500;
    line-height: 1.1;
    /* border-right: 1px solid #d9d9d9; */
    /* padding-right: 20px; */
}

.footer-links-wrapper {
    margin-top: -50px;
}

.footer-copy-right .cms-con p {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 0.02em;
    text-align: left;
}

.copy-right-con span a {
    transition: all .4s ease-in-out;
}

.copy-right-con span a:hover {
    color: #EA2128;
}

.copy-right-con span {
    font-family: 'Rubik', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 14px;
    color: rgb(255 255 255 / 20%);
}

.footer-copy-right {
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* news-sec */
.news-boxs {
    margin: -10px;
}

.news-box {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 10px 10px;
    transition: all .4s ease-in-out;
}

.news-box-con {
    padding: 40px;
    background: rgb(112 112 112 / 20%);
    clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 10%, 100% 100%, 100% 100%, 0 100%, 0% 100%, 0% 30px);
}

/*.news-box-con::before {

    position: absolute;

    content: '';

    width: 200%;

    height: auto;

    aspect-ratio: 1;

    left: -50%;

    top: 0%;

    bottom: 20%;

    margin: auto;

    transform-origin: center;

    background-image: conic-gradient(from 90deg, rgba(255, 255, 255, 0) 70%, rgba(234, 33, 40, 0.4) 80%, rgba(234, 33, 40, 1));

    animation: rotate 4s infinite linear;

    opacity: 0;

    transition: all .4s ease-in-out;

}*/
.news-box-con::after {
    position: absolute;
    content: '';
    left: 2px;
    top: 2px;
    right: 2px;
    bottom: 2px;
    background: #111;
    z-index: 1;
    clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 10%, 100% 100%, 100% 100%, 0 100%, 0% 100%, 0% 30px);
}

.news-desc {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
}

.news-box-img {
    min-width: 180px;
    max-width: 180px;
}

.news-box-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.news-desc::before {
    position: absolute;
    content: "";
    top: -40px;
    left: -40px;
    background-color: #292929;
    width: 20px;
    height: 7px;
    transition: all .4s ease-in-out;
}

.news-sec .sec-head {
    margin-top: 90px;
}

.news-box .date {
    color: #707070;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 25px;
    display: block;
}

.news-box .box-title {
    color: #fff;
    font-family: Michroma;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.8px;
    margin-bottom: 10px;
    transition: all .4s ease-in-out;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    overflow: hidden;
    word-break: break-all;
}

.news-box-con .title-one {
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    word-break: break-all;
}

.news-box-con .cms-con {
    margin-bottom: 35px;
}

.news-box-con .cms-con p {
    text-align: start;
}

.news-box-con-inner {
    padding-right: 20px;
}

.news-sec .sub-title {
    margin-bottom: 11px;
}

.news-shap {
    margin-top: 50px;
}

.news-shap img {
    object-fit: cover;
    max-width: 53px;
    animation-duration: 2s;
    animation-name: animateIn;
    animation-delay: calc(var(--animation-stagger)*1s);
    animation-fill-mode: both;
    animation-iteration-count: infinite;
}

.news-sec .read-more {
    position: absolute;
    bottom: 6%;
    transform: translateY(-6%);
    left: 0;
}

.news-sec .read-more a {
    display: inline-block;
    vertical-align: middle;
    color: #EA2128;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 0.32px;
    text-transform: uppercase;
}

.news-sec .read-more a:hover,
.news-sec .read-more a:hover i {
    color: #fff;
}

.news-sec .read-more a i {
    display: block;
    margin-top: 10px;
    margin-left: 0;
    color: #606161;
    transition: all 0.6s ease-in-out;
}

.news-box-con .title-one a {
    color: #606161;
}

.news-box .line-animation:hover:before {
    opacity: 1;
}

.news-box:hover .news-desc::before {
    background-color: #EA2128;
}

.news-box:hover .news-box-con a {
    color: #EA2128;
}

.footer-content p {
    max-width: 380px;
    color: #707070;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    display: block;
    letter-spacing: 0.32px;

}

.news-btn {
    display: flex;
}

.news-box-con .read-more-link {
    color: #606161;
    width: 122px;
    overflow: hidden;
    display: flex;
}

.news-box-con-inner .read-more-inner {
    font-weight: 400;
    line-height: 1;
    color: #EA2128;
    font-family: Michroma;
    text-transform: uppercase;
    transition: all .6s ease-in-out;
    white-space: nowrap;
    font-size: 14px;
    transform: translateX(-100%);
}

.news-box-con-inner i {
    transform: translateX(-120px);
    transition: all .6s ease-in-out;
}

.news-box:hover .news-box-con-inner i {
    transform: translateX(100%);
}

.news-box:hover .news-box-con-inner .read-more-inner {
    transform: translateX(0);
}

.unlock-btn .top-icon::before,
.unlock-btn .bottom-icon::before {
    top: -43px;
}

.unlock-btn .btn:hover .top-icon::before,
.unlock-btn .btn:hover .bottom-icon::before {
    top: -36px;
}

.unlock-btn .btn:hover .top-icon::after {
    bottom: -36px;
    left: -7px;
}

.unlock-btn .btn:hover .bottom-icon::after {
    bottom: -36px;
    right: -7px;
}

.unlock-btn a {
    display: flex;
    align-items: center;
}

.unlock-btn a img {
    margin-right: 10px;
}

/* Join-sec */
.Join-sec .Join-con .Join-con-inner {
    padding: 55px 30px 24px 65px;
    clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 10%, 100% 100%, 100% 100%, 0 100%, 0% 100%, 0% 30px);
    background: rgb(112 112 112 / 20%);
}

.Join-sec .Join-con::before,
.Join-sec .Join-con::after {
    position: absolute;
    content: "";
    top: -84px;
    left: 80px;
    background-image: url(../img/join-sec.svg);
    min-width: 413px;
    min-height: 364px;
    background-repeat: no-repeat;
    z-index: 1;
}

.Join-sec .Join-con::after {
    background-image: url(../img/join-sec-red.svg);
    opacity: 0.8;
    animation: animationLine 4s infinite ease-in-out;
}

.Join-con .cms-con {
    max-width: 44%;
    margin-left: auto;
    text-align: right;
}

.Join-con .cms-con p {
    text-align: right;
}

.Join-con-inner::before {
    position: absolute;
    content: '';
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 1px;
    -webkit-clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 10%, 100% 100%, 100% 100%, 0 100%, 0% 100%, 0% 30px);
    clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 10%, 100% 100%, 100% 100%, 0 100%, 0% 100%, 0% 30px);
    background: #111;
    z-index: -1;
}

.join-shap {
    position: absolute;
    top: 30px;
    right: 40px;
}

.join-shap img {
    max-width: 175px;
    object-fit: cover;
    animation-duration: 2s;
    animation-name: animateIn;
    animation-delay: calc(var(--animation-stagger)*1s);
    animation-fill-mode: both;
    animation-iteration-count: infinite;
}

/* token-sec */
.tocken-box {
    border: 1px solid #292929;
    background: #161616;
    padding: 8px 20px;
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;
}

.tocken-box::before {
    content: '';
    position: absolute;
    background-image: linear-gradient(349deg, #EA2128 1.46%, #161616 82.68%);
    background-position: 100% 0;
    background-size: 200% 100%;
    width: 0;
    height: 100%;
    left: 0;
    top: 0;
    transition: all .6s ease-in-out;
}

.tocken-box:hover::before {
    width: 100%;
}

.tocken-box:hover p {
    color: #E7E7E7;
}

.tocken-left-box {
    position: relative;
}

.tocken-left-box .sec-head {
    position: absolute;
    top: 50px;
    left: 0;
}

.tocken-banner {
    margin-top: 0;
    max-width: 95%;
}

.tocken-banner video {
    width: 100%;
    height: 100%;
    mix-blend-mode: lighten;
}

.roadmap-mob-title {
    display: none;
}

.tocken-box .box-title {
    color: #E7E7E7;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: 0.32px;
    font-family: 'Michroma';
    margin-bottom: 5px;
}

.tocken-box .box-title span {
    font-family: 'Montserrat';
}

.tocken-box p {
    color: #707070;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 0.32px;
    transition: all .4s ease-in-out;
}

.box-con-left {
    max-width: 80%;
    flex: 0 0 80%;
    position: relative;
    z-index: 1;
}

.box-con-right {
    max-width: 20%;
    flex: 0 0 20%;
    text-align: right;
    position: relative;
    z-index: 1;
}

.box-con-right .percentage {
    color: #E7E7E7;
    font-family: Montserrat;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 0.32px;
}

.box-con-right .price {
    color: #707070;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 0.32px;
    transition: all .4s ease-in-out;
}

.tocken-box:hover .box-con-right .price {
    color: #E7E7E7;
}

/* how-work-sec */

.how-wrok-sec {
    padding-top: 215px;
    padding-bottom: 62px;
}

.how-wrok-sec .sec-head {
    margin-bottom: 48px;
}

.how-wrok-con ul li {
    margin-bottom: 50px;
    display: block;
}

.how-wrok-con ul li:last-child {
    margin-bottom: 0;
}

.how-wrok-sec .step-box {
    display: flex;
    align-items: center;
}

.how-wrok-sec .step-box .img-box {
    position: relative;
    background: #EA2128;
    width: 285px;
    flex: 0 0 285px;
    padding: 18px 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10%, 100% 100%, 100% 100%, 0 100%, 0% 100%, 0% 30px);
}

.how-wrok-sec .step-box .img-box img {
    position: relative;
    z-index: 1;
    width: 46px;
    aspect-ratio: 1/1;
    object-fit: contain;
}

.step-img-title {
    position: relative;
    z-index: 1;
    color: #fff;
    font-family: 'Michroma';
    font-size: 28px;
    font-weight: 400;
    line-height: 1;
    display: block;
}

.how-wrok-sec .step-box .content-box {
    max-width: 440px;
    margin-left: 40px;
}

.how-wrok-sec .step-box .content-box .step-title {
    color: #B8B8B8;
    font-size: 19px;
    font-weight: 500;
    line-height: 1.1;
    display: block;
    margin-bottom: 7px;
}

.how-wrok-sec .step-box .content-box p {
    color: #707070;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    display: block;
}

.how-wrok-con ul li:nth-child(2) {
    margin-left: 140px;
}

.how-wrok-con ul li:nth-child(3) {
    margin-left: 280px;
}

.how-wrok-con ul li:nth-child(4) {
    margin-left: 420px;
}

/* how-work-sec */

.Join-sec {
    margin-top: 90px;
    margin-bottom: 308px;
}

.join-innner-main .title-one {
    max-width: 70%;
    line-height: 1.2;
}

.join-now-btn {
    text-align: end;
    width: 100%;
    padding-bottom: 10px;
}

.Join-sec .Join-con .Join-con-inner {
    padding: 62px 30px 24px 65px;
}

.join-now-btn .btn {
    margin-right: 20px;
}

.Join-sec .sub-title {
    margin-bottom: 3px;
}

.success-stories-sec {
    padding-bottom: 100px;
}

.success-stories-sec .sec-head {
    margin-bottom: 60px;
}

.success-stories-container {
    padding: 0 84px;
}

.success-stories-silder {
    margin: 0 -21px;
}

.success-stories-silde {
    padding: 0 21px;
}

.success-stories-silder .slick-track {
    display: flex !important;
}

.success-stories-silder .slick-slide {
    height: inherit !important;
}

.success-stories-silder .slick-track>*,
.success-stories-box {
    height: 100%;
}

.success-stories-silde.slick-center .line-animation::before {
    opacity: 1;
}

.success-stories-silde.slick-center .success-stories-box::after {
    box-shadow: 0px 2px 15px 0px #292929 inset;
}

.success-stories-box {
    background: rgba(41, 41, 41, 0.2);
    padding: 40px;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 10%, 100% 100%, 100% 100%, 0 100%, 0% 100%, 0% 30px);
}

.success-stories-box::after {
    position: absolute;
    content: '';
    left: 2px;
    top: 2px;
    right: 2px;
    bottom: 2px;
    background: #111;
    z-index: 1;
    clip-path: polygon(0 0, 100% 0, 100% 10%, 100% 100%, 100% 100%, 0 100%, 0% 100%, 0% 30px);
}

.success-stories-box-title {
    color: #E7E7E7;
    font-size: 25px;
    font-weight: 400;
    line-height: 1.3;
    display: block;
    margin-bottom: 40px;
    font-family: 'Michroma';
    position: relative;
    z-index: 2;
}

.success-stories-box-content p {
    color: #707070;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    display: block;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.success-stories-details {
    position: absolute;
    right: 40px;
    bottom: 40px;
    top: inherit;
    z-index: 2;
}

.success-stories-details .cilent-name {
    font-size: 19px;
    font-weight: 500;
    line-height: 1;
    color: #fff;
    display: block;
    margin-bottom: 10px;
    text-align: end;
}

.success-stories-details span {
    color: #707070;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    display: block;
    text-align: end;
}

.slick-dots {
    display: block;
    text-align: center;
    margin-top: 50px;
}

.slick-dots li {
    width: auto;
    list-style: none;
    padding: 0 5px;
    display: inline-block;
}

.slick-dots li button {
    font-size: 0;
    border: none;
    background: #292929;
    width: 10px;
    height: 10px;
    -moz-transition: .4s ease-in-out;
    -webkit-transition: .4s ease-in-out;
    transition: all .4s ease-in-out;
    cursor: pointer;
    outline: 0;
}

.slick-dots li.slick-active button {
    background-color: #EA2128;
}



@media screen and (max-width: 1600px) {}

@media screen and (max-width: 1460px) {
    .Join-con .cms-con {
        max-width: 50%;
    }

    .Join-con .title-one {
        margin-bottom: 10px;
    }

    .success-stories-container {
        padding: 0 30px;
    }

    .success-stories-silder {
        margin: 0 -15px;
    }

    .success-stories-silde {
        padding: 0 15px;
    }

    .success-stories-box {
        padding: 25px;
    }
}

@media screen and (max-width: 1399px) {
    .f-con {
        max-width: 35.5%;
        flex: 0 0 35.5%;
    }

    .footer-links {
        max-width: 70%;
        flex: 0 0 70%;
    }
}

@media screen and (max-width: 1299px) {
    .footer-links {
        padding-left: 10px;
    }

    /* Join-sec */
    .Join-con .cms-con {
        max-width: 60%;
    }

    .step-img-title {
        font-size: 24px;
    }

    .how-wrok-sec .step-box .img-box {
        width: 265px;
        flex: 0 0 265px;
    }

    .success-stories-box-title {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .success-stories-sec .sec-head {
        margin-bottom: 40px;
    }

    .news-box-con .title-one {
        font-size: 22px;
    }

    .f-con span {
        font-size: 18px;
    }
}

@media screen and (max-width: 1199px) {
    .f-con span {
        font-size: 16px;
    }

    .footer-links {
        padding-left: 0;
    }

    .f-con {
        max-width: 35%;
        flex: 0 0 35%;
    }

    .footer-logo {
        margin-top: -90px;
    }

    .footer-copy-right {
        margin-top: 40px;
    }

    .how-wrok-sec {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .how-wrok-sec .step-box .img-box {
        width: 225px;
        flex: 0 0 225px;
        padding: 12px 25px;
    }

    .how-wrok-sec .step-box .img-box img {
        width: 40px;
    }

    .step-img-title {
        font-size: 22px;
    }

    .how-wrok-con ul li {
        margin-bottom: 30px;
    }

    .how-wrok-con ul li:nth-child(2) {
        margin-left: 100px;
    }

    .how-wrok-con ul li:nth-child(3) {
        margin-left: 220px;
    }

    .how-wrok-con ul li:nth-child(4) {
        margin-left: 340px;
    }

    .how-wrok-sec .step-box .content-box .step-title {
        font-size: 16px;
    }

    .how-wrok-sec .step-box .content-box p {
        font-size: 14px;
    }

    .how-wrok-sec .step-box .content-box {
        margin-left: 20px;
    }

    .social-media {
        column-gap: 18px;
    }

    .f-con {
        max-width: 39%;
        flex: 0 0 39%;
    }

    .footer-links-wrapper {
        margin-top: -30px;
    }

    .success-stories-sec {
        padding-bottom: 80px;
    }

}

@media screen and (max-width: 1024px) {
    .Join-con .cms-con {
        max-width: 70%;
    }
}

@media screen and (max-width: 992px) {

    .f-con,
    .footer-links {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .f-con {
        margin-bottom: 20px;
    }

    .footer-links-wrapper {
        flex-wrap: wrap;
    }

    .footer-logo {
        margin-top: -60px;
    }

    .footer-links-wrapper {
        margin-top: -20px;
    }

    .footer-copy-right {
        display: block;
    }

    .footer-content p {
        max-width: 100%;
        margin-bottom: 15px;
    }

    .footer-copy-right {
        margin-top: 20px;
    }

    .copy-right-con {
        justify-content: space-between;
    }

    .f-con span {
        border: 0;
    }

    /* news-sec */
    .news-box-con {
        flex-wrap: wrap-reverse;
        padding: 20px;
    }

    .news-box .date {
        margin-bottom: 6px;
    }

    .news-box-con-inner .title-one {
        font-size: 18px;
    }

    .news-box .news-box-con {
        height: 100%;
    }

    .news-boxs {
        height: 100%;
    }

    .how-wrok-con ul li:nth-child(2),
    .how-wrok-con ul li:nth-child(3),
    .how-wrok-con ul li:nth-child(4) {
        margin-left: 0;
    }

    .how-wrok-sec .step-box .img-box img {
        width: 34px;
    }

    .step-img-title {
        font-size: 20px;
    }

    .how-wrok-sec .step-box .img-box {
        width: 190px;
        flex: 0 0 190px;
        padding: 12px 15px;
    }

    .how-wrok-sec .step-box .content-box {
        max-width: 100%;
    }

    .how-wrok-sec {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .how-wrok-sec .sec-head {
        margin-bottom: 35px;
    }

    .success-stories-sec {
        padding-bottom: 80px;
    }

    .success-stories-box-content p {
        font-size: 14px;
    }

    .success-stories-details .cilent-name {
        font-size: 16px;
    }

    .success-stories-details span {
        font-size: 14px;
    }

    .success-stories-details {
        right: 30px;
        bottom: 30px;
    }

}

@media screen and (max-width: 767px) {
    .footer-copy-right .cms-con p br {
        display: none;
    }

    .copy-right-con {
        flex-wrap: wrap;
    }

    .footer-copy-right .cms-con p {
        font-size: 14px;
    }

    .footer-copy-right {
        margin-top: 15px;
    }

    .success-stories-sec {
        padding-bottom: 50px;
    }
}

@media screen and (max-width: 568px) {
    .title-one {
        font-size: 20px;
    }

    .footer-logo {
        margin-top: -10px;
    }

    .footer-links-wrapper {
        margin-top: 5px;
    }

    .footer-copy-right {
        flex-wrap: wrap;
    }

    .footer-copy-right .cms-con,
    .copy-right-con {
        max-width: 100%;
        flex: 0 0 100%;
        text-align: start;
    }

    .powerd-by {
        margin-top: 0;
    }

    .footer-copy-right .cms-con {
        margin-bottom: 20px;
    }

    .copy-right-con a img {
        max-width: 50px;
        object-fit: cover;
    }

    .f-con {
        margin-bottom: 15px;
    }

    /* news-sec */
    .news-box {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .news-shap {
        display: none;
    }

    .news-sec .read-more {
        left: auto;
        right: 15px;
        bottom: 13px;
    }

    .news-sec .sec-head {
        margin-bottom: 20px;
    }

    .copy-right-con {
        justify-content: center;
    }

    .how-wrok-sec .step-box .img-box {
        clip-path: polygon(0 0, 94% 0, 108% 50%, 100% 100%, 100% 100%, 0 100%, 0% 100%, 0% 0);
    }

    .how-wrok-sec .step-box .img-box img {
        width: 23px;
    }

    .step-img-title {
        font-size: 12px;
    }

    .how-wrok-sec .step-box .img-box {
        width: 108px;
        padding: 7px 10px;
    }

    .how-wrok-sec .step-box {
        display: block;
    }

    .how-wrok-sec .step-box .content-box {
        margin-left: 0;
        margin-top: 15px;
    }

    .how-wrok-con ul li {
        margin-bottom: 20px;
    }

    .success-stories-container {
        padding: 0 15px;
    }

    .success-stories-silder {
        margin: 0 -10px;
    }

    .success-stories-silde {
        padding: 0 10px;
    }

    .success-stories-box-title {
        font-size: 18px;
    }

    .slick-dots {
        margin-top: 20px;
    }

    .footer-content p {
        font-size: 14px;
        text-align: center;
        margin-bottom: 5px;
    }

    .social-media {
        justify-content: center;
    }

    .f-con span {
        padding-right: 0;
    }

    .icon {
        width: 18px;
        min-width: 18px;
    }

    .news-box-con-inner .read-more-inner {
        font-size: 10px;
    }
}

@media screen and (max-width: 390px) {}