


* {
	border-radius: 0;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
 line-height: 1.6;
    color: #555;
    background-color: #fff;
}


.header {
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 10px 0;
}

.logo img {
    max-height: 50px;
}

.navbar-nav > li > a {
    padding: 15px 20px;
    color: #555;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
}

.navbar-nav > li.active > a,
.navbar-nav > li > a:hover {
    color: #72c02c;
}


.slider-inner {
    background: #f8f8f8;
    padding: 60px 0;
    position: relative;
}

.da-slider {
    position: relative;
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
}

.da-slide {
    text-align: center;
    padding: 40px 20px;
    display: none;
}

.da-slide:first-child {
    display: block;
}

.da-slide h2 {
    font-size: 36px;
    font-weight: 300;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.2;
}

.da-slide p {
    font-size: 18px;
    color: #777;
    margin-bottom: 30px;
}

.da-img iframe,
.da-img img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

.da-arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    z-index: 10;
}

.da-arrows-prev,
.da-arrows-next {
    position: absolute;
    top: -20px;
    width: 40px;
    height: 40px;
    background: rgba(114, 192, 44, 0.8);
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: background 0.3s;
}

.da-arrows-prev:hover,
.da-arrows-next:hover {
    background: rgba(114, 192, 44, 1);
}

.da-arrows-prev {
    left: 20px;
}

.da-arrows-next {
    right: 20px;
}


.purchase {
    background: #72c02c;
    color: #fff;
    padding: 30px 0;
}

.purchase .btn-u {
    background: #fff;
    color: #72c02c;
    padding: 12px 30px;
    border-radius: 3px;
    text-decoration: none;
    font-weight: 600;
}

.purchase .btn-u:hover {
    background: #f8f8f8;
    color: #72c02c;
}


.content-sm {
    padding: 60px 0;
}

.service {
    text-align: center;
    margin-bottom: 40px;
}

.service-icon {
    font-size: 48px;
    color: #72c02c;
    margin-bottom: 20px;
}

.service h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
 color: #555;
}

.service p {
    color: #777;
    line-height: 1.8;
}


.headline {
    margin: 40px 0 30px 0;
    text-align: center;
}

.headline h2 {
    font-size: 24px;
    font-weight: 600;
    color: #555;
    margin-bottom: 10px;
}


.owl-clients-v1,
.owl-clients-v2 {
    margin: 30px 0;
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
    padding: 0 50px;
}

.owl-clients-v1 .item,
.owl-clients-v2 .item {
    text-align: center;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    min-width: 200px;
    flex-shrink: 0;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(20px);
}

.owl-clients-v1 .item.show,
.owl-clients-v2 .item.show {
    opacity: 1;
    transform: translateX(0);
}

.owl-clients-v1 .item img,
.owl-clients-v2 .item img {
    max-width: 150px;
    max-height: 80px;
    opacity: 0.7;
    transition: all 0.3s ease;
    filter: grayscale(100%);
}

.owl-clients-v1 .item img:hover,
.owl-clients-v2 .item img:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.05);
}


.owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
}

.owl-prev,
.owl-next {
    position: absolute;
    top: 0;
    width: 40px;
    height: 40px;
    background: rgba(114, 192, 44, 0.8);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    outline: none;
    pointer-events: auto;
}

.owl-prev:before {
    content: "‹";
    font-weight: bold;
}

.owl-next:before {
    content: "›";
    font-weight: bold;
}

.owl-prev:hover,
.owl-next:hover {
    background: rgba(114, 192, 44, 1);
    transform: scale(1.1);
}

.owl-prev {
    left: 10px;
}

.owl-next {
    right: 10px;
}

.owl-dots {
    text-align: center;
    margin-top: 20px;
    padding: 0 50px;
}

.owl-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: #ddd;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.owl-dot.active,
.owl-dot:hover {
    background: #72c02c;
    transform: scale(1.2);
}


.footer {
    background: #f8f8f8;
    padding: 40px 0;
    border-top: 1px solid #eee;
}

.copyright {
    background: #555;
    color: #fff;
    padding: 20px 0;
    font-size: 12px;
}


@media (max-width: 768px) {
    .da-slide h2 {
        font-size: 24px;
    }
    
    .da-slide p {
        font-size: 16px;
    }
    
    .service {
        margin-bottom: 30px;
    }
    
    
    .owl-clients-v1,
    .owl-clients-v2 {
        padding: 0 40px;
    }
    
    .owl-clients-v1 .item,
    .owl-clients-v2 .item {
        height: 100px;
        padding: 15px;
        min-width: 150px;
    }
    
    .owl-clients-v1 .item img,
    .owl-clients-v2 .item img {
        max-width: 120px;
        max-height: 60px;
    }
    
    .owl-prev,
    .owl-next {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .owl-prev {
        left: 5px;
    }
    
    .owl-next {
        right: 5px;
    }
    
    .owl-dots {
        padding: 0 40px;
    }
}

@media (max-width: 480px) {
    .owl-clients-v1,
    .owl-clients-v2 {
        padding: 0 35px;
    }
    
    .owl-clients-v1 .item,
    .owl-clients-v2 .item {
        height: 80px;
        padding: 10px;
        min-width: 120px;
    }
    
    .owl-clients-v1 .item img,
    .owl-clients-v2 .item img {
        max-width: 100px;
        max-height: 50px;
    }
    
    .owl-prev,
    .owl-next {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
    
    .owl-prev {
        left: 2px;
    }
    
    .owl-next {
        right: 2px;
    }
    
    .owl-dots {
        padding: 0 35px;
    }
}


.margin-bottom-30 {
    margin-bottom: 30px;
}

.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.fadeInLeft {
    animation-name: fadeInLeft;
}

.fadeInRight {
    animation-name: fadeInRight;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translate3d(-100%, 0, 0);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translate3d(100%, 0, 0);
    }
    to {
        opacity: 1;
        transform: none;
    }
}


.link-feed {
    background: #f8f9fa;
    padding: 20px 0;
    border-top: 1px solid #dee2e6;
    border-bottom: 1px solid #dee2e6;
}

.link-feed .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.link-feed .row {
    margin: 0;
}

.link-feed .col-md-12 {
    padding: 0;
}

.link-feed a {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
    margin-right: 20px;
    display: inline-block;
    margin-bottom: 10px;
}

.link-feed a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.link-feed p {
    margin: 0;
    line-height: 1.6;
}

.link-feed .link-item {
    display: inline-block;
    margin-right: 20px;
    margin-bottom: 10px;
}

.link-feed .link-item:last-child {
    margin-right: 0;
}