#load-more{
    margin-top: 10px;
    display: inline-block;
    padding: 10px 30px;
    border: 1px solid #334;
    border-radius: 5px;
    color: #fff;
    font-size: 16px;
    margin-left: 50%;
    display: inline-block;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    border-radius: .8rem;
    background: linear-gradient(to right, #dd8237 0%, #043fbd 100%);
}

#load-more:hover{
    background: linear-gradient(to right, #043fbd 0%, #dd8237 100%);
}

.contact .btn:hover{
    background: linear-gradient(to right, #043fbd 0%, #dd8237 100%);
}

.btn-primary { 
    background: linear-gradient(to right, #dd8237 0%, #043fbd 100%);
  }

.btn-primary:hover{
    background: linear-gradient(to right, #043fbd 0%, #dd8237 100%);
    border-radius: 10px;
}

.btn_s{
    background: linear-gradient(to right, #dd8237 0%, #043fbd 100%);
}


.main-timer {
    display: flex;
    /*justify-content: center;*/
    align-items: center;
    margin-left: 10px;
    width: 100%;
    height: 110px;
    /*background: url(./files/background.png);*/
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
}

.time{
    display: flex;
    justify-content: center;
    align-items: center;

}

.boxs{
    width: 85px;
    height: 97px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #00021d;
    box-shadow: 0px 0px 30px var(--shadow);
    border-radius: 10px;
    font-size: 24px;
    /*font-family: 'Damion', cursive;
    /*margin: 0px 15px;*/
    position: relative;
}

.colen{
    font-size: 20px;
    color: #fff;
    margin-left: 10px;
    margin-right: 10px;

}

.boxs::before{
    position: absolute;
    font-size: 10px;
    bottom: 15px;
}
.days, 
.hours,
.minutes,
.seconds {
    color: #ba6622;
}

.days::before{
    content: "Days";
}

.hours::before{
    content: "Hours";
}

.minutes::before{
    content: "Minutes";
}

.seconds::before{
    content: "Seconds";
}

.h2-timer{
    color: #fff;
    /*font-family: 'Damion', cursive;*/
    transform: rotate(-5deg)skewX(-5deg);
    text-transform: capitalize;
    justify-content: center;
    margin-top: 5%;
    font-size: 30px;
}
.link{
    margin-left: 10%;
}
.link-edt{
    margin-left: 12%;
}
.link-btn{
    margin-top: 10px;
    display: inline-block;
    padding: 10px 30px;
    border: 1px solid #334;
    border-radius: 5px;
    color: #fff;
    font-size: 16px;
    /*font-family: 'Damion', cursive;*/
    margin-left: 0;
    display: inline-block;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    border-radius: .8rem;
    background: linear-gradient(to right, #dd8237 0%, #043fbd 100%);
}

@media screen and (max-width: 500px) {

    .main-timer{
        margin-left: -35px;
        height: 90px;
    }
    .boxs {
        width: 50px;
        height: 70px;
        font-size: 13px;
    }
    
    .colen {
        font-size: 16px;
        margin: 0 3px;
    }
    
    .h2-timer {
        font-size: 12px;
    }
    
    .link-btn {
        padding: 6px 15px;
        font-size: 12px;
        margin-left: -35px;
    }
}




/* Pop-out Ad Styles */
        .popup-ad {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 300px;
            background: rgb(34, 76, 226);
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            overflow: hidden;
            z-index: 1000;
            transform: translateY(100px);
            opacity: 0;
            transition: transform 0.5s, opacity 0.5s;
        }
        
        .popup-ad.show {
            transform: translateY(0);
            opacity: 1;
        }
        
        .popup-ad img {
            width:100%;
            height: 270px;
            object-fit:fill;
        }
        
        .ad-content {
            padding: 15px;
            color: #333;
        }
        
        .ad-content h3 {
            margin-bottom: 10px;
            font-size: 1.3rem;
            color: #f77d19;
        }
        
        .ad-content p {
            font-size: 0.9rem;
            margin-bottom: 15px;
            color: #f1f1f1;
        }
        
        .ad-button {
            display: inline-block;
            background: #ff8502ee;
            color: white;
            padding: 8px 20px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            transition: background 0.3s;
        }
        
        .ad-button:hover {
            background: #905522;
            border-radius: 10px;
        }
        
        .close-btn {
            position: absolute;
            top: 10px;
            right: 10px;
            background: rgba(0, 0, 0, 0.5);
            color: white;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }
        
        .close-btn:hover {
            background: rgba(0, 0, 0, 0.7);
        }
        
        .overlay11 {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 999;
            display: none;
        }
        
        .overlay11.show {
            display: block;
        }
        
        @media (max-width: 768px) {
            .popup-ad {
                width: 70%;
                right: 15%;
                bottom: 10px;
            }
        }
        
        
        
        