/*Navbar for Offers*/
.offernav a {
    background-image: linear-gradient(to right, yellow, orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: offeranimation 35s linear infinite;
}

@keyframes offeranimation {
  to {
        background-position: 300vh;
    }
}
/*Navbar for Offers*/


/* Offer section */
#offersection {
    background-image: url('../images/offerbg1.webp');
    background-color: rgba(255,255,255,0.6);
    background-blend-mode: lighten;
    border: 1px solid grey;
    margin-top: 20px;
    margin-bottom: 10px;
}

#offersection h1 {
    background-image: linear-gradient(to bottom right, purple, lightblue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: colorheader 65s linear infinite;
}

@keyframes colorheader {
    to {
        background-position: 1000vh;
    }
}

#offerrow {
    margin-bottom: 20px;
}

.image-cover {
    height: 300px;
}

.text-custom-info {
    background-image: linear-gradient(to top right, brown, green, blue);
    font-size: 30px;
    font-weight: bold;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: offername 35s linear infinite;
}

@keyframes offername {
  to {
        background-position: 1000vh;
    }
}

#offerpagelink {
    margin-top: 70px;
    margin-bottom: 30px;
}

#offerpagelink a {
    color: darkblue;
    font-weight: bold;
    border: none;
    font-size: 19px;
    background-image: linear-gradient(to top right, seagreen, yellow);
    animation: buttonoffer 100s linear infinite;
}

@keyframes buttonoffer {
  to {
        background-position: 1000vh;
    }
}

@media screen and (max-width: 992px) {
    .image-cover {
        margin-bottom: 90px;
    }
    #offerpagelink {
        margin-top: 5px;
    }
}
/* Offer section */


/* Offer Page */
.customoffrbtn {
    animation-name: btnanimate;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

.topic {
    margin-left: 13px;
}

@keyframes btnanimate {
  0%   { background-image: linear-gradient(to right, lightgreen, lightblue); }
  100% { background-image: linear-gradient(to right, lightblue, lightgreen); }
}

#offerModal input, label, #offerform {
    text-align: center;
}

#offerModal .row [class*="col-"] {
    margin-top: 15px;
}

#offerform {
    border: none;
}

#offrtitle {
    font-size: 20px;
    color: green;
}

#customprice #orig {
    text-decoration: line-through;
    color: red;
    font-size: 45px;
    font-family: 'Freestyle Script', Cursive;
    margin-right: 10px;
}

#customprice #curr {
    font-size: 45px;
    font-family: 'Freestyle Script', Cursive;
    animation-name: priceanimate;
    animation-duration: 1s;
    animation-iteration-count: infinite;
}

.t-info {
    color: yellow !important;
}

@keyframes priceanimate {
  0%   { color: blue; }
  100% { color: green; }
}

.custom-container {
    height: 100px;
    margin-top: 10%;
    margin-bottom: 8%;
    margin-left: 40%;
}

.custom-heading {
    color: #72767d !important;
    font-weight: bold;
    font-size: 25px;
}

@media screen and (max-width: 992px) {
    #offerhead {
        margin-top: 220px;
    }

    #offrtitle {
        font-size: 18px;
    }

    #orig {
        font-size: 20px;
    }

    #curr {
        font-size: 20px;
    }

    #offerModal .row [class*="col-"] {
        margin-top: 20px;
    }

    .custom-container {
        margin-left: 3%;
        margin-bottom: 50%;
    }

    .custom-heading {
        font-size: 30px;
    }
}

/* Offer Page */
