﻿

.news-card {
    border: none !important;
    font-family: 'Satoshi-Medium';
}

    .news-card .card-title, .news-card .card-text {
        font-weight: 400;
        letter-spacing:0px;
    }

    .news-card .card-text {
        font-size: 1.1rem;
    }
    .news-card .card-desc {
        font-size: 16px;
    }

    .news-card .card-sub-info {
        font-size: 1.1rem;
        font-family: 'Satoshi-Medium';
    }

/*Read More btn*/
.readmore-circle-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 10px;
    font-weight: 500;
    color: #111;
    cursor: pointer;
    text-decoration: none;
    /*letter-spacing: 8px;*/
}

.readmore-circle {
    width: 70px;
    height: 70px;
    border: 1px solid #111;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

/*.readmore-circle-btn:hover .circle {
    transform: scale(1.1);
}*/

.readmore-circle-btn:hover {
    color: #555;
}

.readmore-btn-label {
    /* padding: 20px; */
    position: relative;
    left: -20px;
    padding: 5px 10px;
    background-color: #ffffff !important;
    font-family: Satoshi-Medium;
}

@media (max-width: 768px) {
    .readmore-circle {
        width: 70px;
        height: 70px;
    }
}
/* Read More btn  end  */
/*View More btn*/
.viewall-circle-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 500;
    color: #111;
    cursor: pointer;
    text-decoration: none;
    letter-spacing: 8px;
}

.viewall-circle {
    width: 90px;
    height: 90px;
    border: 1px solid #111;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.viewall-circle-btn:hover .circle {
    transform: scale(1.1);
}

.viewall-circle-btn:hover {
    color: #555;
}

.viewall-btn-label {
    /* padding: 20px; */
    position: relative;
    left: -35px;
    padding: 5px 10px;
    background-color: #ffffff !important;
    font-family: Satoshi-Medium;
}

@media (max-width: 768px) {
    .viewall-circle {
        width: 70px;
        height: 70px;
    }
}
/* view btn  end  */


.news-carousel-nav .owl-prev, .news-carousel-nav .owl-next {
    width: 60px;
    height: 60px;
    margin: 0 5px;
    display: inline-flex;
    background: none;
    border: none;
}



.press-card {
    border: none !important;
    background-color: transparent;
    font-family: 'Satoshi-Medium';
}

    .press-card .card-body {
        /*background: #C0934E;*/
    }

    .press-card img {
        border-radius: 0 !important;
    }

.press-date {
    /*color: white;*/
    font-size: 1rem;
}

.press-title {
    font-size: 1.4rem;
    color: black;
    
}



.press-desc {
    font-size: 1.1rem;
}





.circle-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    background: none;
    border: none;
    font-family: 'Satoshi-Regular';
}
svg {
    width: 70px;
    height: 70px;
    transform: rotate(30deg); /* start from top */
}

circle {
    fill: none;
    stroke: #A37228; /* gold color */
    stroke-width: 1;
    stroke-dasharray: 220; /* full circumference ~ 2πr */
    stroke-dashoffset: 40; /* creates the cut */
}

.arrow {
    font-size: 1.4rem;
    font-weight: 100;
    margin-left: -50px;
    color: black;
}

span.btn-txt {
    font-size: 1rem;
    font-weight: 400;
    color: black;
}

@media(min-width:501px){

    .circle-btn:hover circle {
        fill: #A37228;
        stroke: #A37228; /* gold color */
    }

    .circle-btn:hover .arrow {
        color: #ffffff;
        z-index: 2;
        margin-left: -60px;
        transition: 0.3s ease-in-out;
    }

    .circle-btn:hover {
        gap: 20px;
        transition: 0.3s ease-in-out;
    }

        .circle-btn:hover svg {
            width: 65px;
            height: 65px;
            transition: 0.3s ease-in-out;
        }

}


    @media(max-width:500px){
        .news-card .card-sub-info{
            font-size:1rem;
        }
        .news-card .card-text {
            font-size: 0.9rem;
        }
        .circle-btn svg {
            width: 50px;
            height: 50px;
        }
        .circle-btn .arrow {
            font-size:1rem;
            margin-left:-40px;
        }
        span.btn-txt{
            font-size:0.8rem;
        }
        .press-title{
            font-size:1.3rem;
        }
        .press-date{
            font-size:0.8rem;
        }
        .press-desc {
            font-size: 1.1rem;
        }
    }