header {
    position: relative;
    overflow: hidden;
}




header .top-header {
    padding: 10px 0;
background-color: #970008;
    position: relative;
}

header .top-header::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    opacity: .03;
    background: repeating-linear-gradient(45deg, #ffdf8b, #ffdf8b 1px, transparent 1px, transparent 10px), repeating-linear-gradient(-45deg, #ffdf8b, #ffdf8b 1px, transparent 1px, transparent 10px);
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
}

header .top-header .left-content a {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-right: 10px;
}

header .top-header .left-content a svg {
    animation: vibrateBtn .2s infinite alternate;
}

header .top-header .left-content span {
    padding: 10px 20px;
    background-color: #ffdf8b;
    border-radius: 50px;
    font-weight: 700;
    animation: animeBtn1 1s infinite alternate;
    display: inline-block;
}

@keyframes animeBtn1 {
    0% {
        transform: scale(.9);
    }

    100% {
        transform: scale(100%);
    }
}



header .top-header .right-content {
    position: relative;
}


.positivity {
    position: relative;
    right: 0;
    margin: 0 auto;
    left: 0%;
    width: 100%;
    height: 42px;
    line-height: 41px;
    overflow: hidden;
}

.positivity__alone {
    display: inline-block;
    font-size: 2rem;
    font-family: serif;
    color: #fff;
}

.positivity__words .change {
    display: block;
    position: absolute;
    top: 0;
    left: 0%;
    right: 0;
    margin: 0 auto;
    height: 100%;
    opacity: 0;
    animation: changeword 8s linear infinite;
    font-size: 21px;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
}

.positivity__words .change i {
    color: #ffbb06;
    font-style: normal;
    font-weight: 700;
    text-transform: uppercase;
}

.change:nth-child(1) {
    animation-delay: 0s;
}

.change:nth-child(2) {
    animation-delay: 2s;
}

.change:nth-child(3) {
    animation-delay: 4s;
}

.change:nth-child(4) {
    animation-delay: 6s;
}

@keyframes changeword {
    0% {
        transform: translateY(-30px);
        opacity: 0;
    }

    5% {
        opacity: 1;
        transform: translateY(0);
    }

    20% {
        opacity: 1;
        transform: translateY(0);
    }

    30% {
        opacity: 0;
        transform: translateY(30px);
    }

    80% {
        opacity: 0;
        transform: translateY(30px);
    }
}


@media (min-width:992px) and (max-width:1200px) {
    header .top-header .left-content a {
        font-size: 18px;
        margin-right: 5px;
    }

    header .top-header .left-content span {
        padding: 5px 10px;
    }

    .positivity__words .change {

        font-size: 16px;

    }
}

@media (max-width:992px) {
    header .top-header .left-content {
        text-align: center;
        margin-bottom: 10px;
    }

    header .top-header .left-content a {
        font-size: 18px;
        margin-right: 5px;
    }

    header .top-header .left-content span {
        padding: 5px 10px;
    }

    .positivity__words .change {
        font-size: 16px;
    }
}

@media (max-width:768px) {
   .positivity {
    position: relative;
    right: 0;
    margin: 0 auto;
    left: 0%;
    width: 100%;
    height: 60px;
    line-height: 24px;
    overflow: hidden;
}
}

/* 

header .top-header .left-content a {
    margin-right: 6px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 17px;
    color: #fff;
    font-weight: 700;
    transition: all 0.4s;
}

header .top-header .left-content a svg {
    width: 18px;
    height: 18px;
    padding: 7px;
    background-color: #fff;
    color: #000;
    border-radius: 5px;
}

header .top-header p {
    margin: 0;
    text-align: center;
    background-color: #fff;
    border-radius: 1px;
    transform: skewX(15deg);
    padding: 6px 0;
}

header .top-header p span {
    display: block;
    transform: skewX(-15deg);
    font-weight: 700;
    text-transform: capitalize;
    font-size: 17px;
    animation: textAnime 2s infinite alternate;
}

@keyframes textAnime {

    0%,
    100% {
        transform: skewX(-15deg) scale(1);
    }

    50% {
        transform: skewX(-15deg) scale(1.2);

    }
} */

header .main-navbar {
    padding: 14px 0;
}

header .main-navbar .img-box {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

header .main-navbar .img-box img {
    width: 100%;
    height: 100%;

}

header .main-navbar .contact-box {
    text-align: center;
}

header .main-navbar .contact-box span.tagline {
    padding: 7px 20px;
   background-color: #970008;
    display: block;
    border-radius: 50px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    font-size: 16px;
}

header .main-navbar .contact-box marquee {
    color: #970008;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 10px;
}

header .main-navbar .contact-box .tag span {
    padding: 6px 10px;
    border: 2px solid #970008;
    color: #970008;
    font-weight: 700;

}

@media (max-width:992px) {
    header .main-navbar .img-box {
        margin-bottom: 20px;
    }

    header .main-navbar .contact-box {
        margin-bottom: 20px;
    }

}

@media (max-width:568px) {
    header .main-navbar .img-box {
        margin-bottom: 0;
    }

    header .main-navbar .contact-box {
        margin-bottom: 0;
    }

}