header .hero .hero-box .content-box {
    align-items: start;
    text-align: right;
}
header .hero .hero-box .item {
    align-items: start;
    padding-inline:100px
}
header .hero .hero-box .item .overlay {
    background: black;
}
header .hero .hero-box .owl-nav {
    width: 98%;
}
header .hero .hero-box .content-box a {
    background: white;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap:10px;
    font-weight: 500;
}
header .hero .hero-box .content-box a i {
     animation: pulse 0.5s infinite;
}
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.3);
    }
    100% {
        transform: scale(1);
    }
}
.hvr-sweep-to-left:before {
    border-radius: 12px;
    background: var(--primary-color) !important;
    opacity: 0.3;
}
.hvr-sweep-to-left.read-more:before {
    background: #DEF6FD !important;
     border-radius: 8px;
}
header .hero .hero-box .owl-nav.disabled {
    display: none;
}
header .hero .hero-box .owl-dots {
    bottom:20px
}
@media (max-width: 575.98px) {
    header .hero .hero-box .content-box {
        zoom: 1;
    }
    header .hero .hero-box .item {
        height: 100vh;
    }
    header .hero .hero-box .content-box {
        width: 100%;
  
    }
    header .hero .hero-box .item {
        padding: 50px 35px;
    }
    header .hero .hero-box .content-box .title {
        font-size: 24px;
    }
    header .hero .hero-box .content-box .description {
        font-size: 14px;
    }
    header .hero .hero-box .content-box a {
        font-size: 14px;
    }
}