@import "https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap";
@import "https: //fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&display=swap";
    : root {
    --h1size:  50px;
    --h2size:  35px;
    --h3size:  24px;
    --h4size:  20px;
    --h5size:  18px;
    --h6size:  15px;
    --bodysize:  18px;
    --rweight:  400;
    --mweight:  500;
    --sweight:  600;
    --bweight:  700;
    --eweight:  800;
    --bcweight:  900;
    --pfamily:  'Roboto',  sans-serif;
    --sfamily:  'Oswald',  sans-serif;
    --text:  #333;
    --dark:  #333;
    --white:  #ffffff;
    --border:  #e8e8e8;
    --heading:  #292b34;
    --light-white:  #f5f5f5;
    --deep-heading:  #220044;
}
* {
    margin: 0;
    padding: 0;
    outline: 0;
}

::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track-piece {
    background-color: #fff;

}
::-webkit-scrollbar-thumb:vertical,
::-webkit-scrollbar-thumb:horizontal {
    background-color: #ff0000;
    border-radius: 0.55rem;border: 3px solid #fff !important;
}
::-webkit-scrollbar-thumb:vertical:hover,
::-webkit-scrollbar-thumb:horizontal:hover {
    background-color: #333;
}

img {
    vertical-align: middle;
}
a {
    color: #ff0000;
    text-decoration: none;
    display: inline-block;
    font-weight:600;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}
a:hover {
    text-decoration: none;
    color: #333;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}
ul, ol {
    list-style: none;
    margin-bottom: 0;
    display: inline-block;
}
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
    font-size: 15px;
    letter-spacing: .3px;
}
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
    font-size: 15px;
    letter-spacing: .3px;
}
input::-ms-input-placeholder, textarea::-ms-input-placeholder {
    font-size: 15px;
    letter-spacing: .3px;
}
input::placeholder, textarea::placeholder {
    font-size: 15px;
    letter-spacing: .3px;
}
button:focus {
    outline: none;
}
html, body {
    scroll-behavior: smooth;
}
body {
    line-height: 28px;
    color: var(--text);
    font-size: var(--bodysize);
    font-weight: var(--rweight);
    font-family: var(--pfamily);
    background-color: #fff;
}
p {
    margin-bottom: 0;
}
h1, h2, h3, h4, h5, h6 {
    color: var(--heading);
    margin-bottom: 0;
}
h1 {
    line-height: 58px;
    color: #fff;
    font-size: var(--h1size);
    font-weight: var(--bcweight);
    text-shadow: var(--h1-tshadow);
}
h2 {
    font-size: var(--h2size);
    font-weight: var(--bweight);
    letter-spacing: -.8px;
    line-height: 43px;
}
h3 {
    font-size: var(--h3size);
    font-weight: var(--sweight);
    line-height: 32px;
}
h4 {
    font-size: var(--h4size);
    font-weight: var(--mweight);
    line-height: 30px;
}
h5 {
    color: var(--text);
    font-size: var(--h5size);
    font-weight: var(--mweight);
}
h6 {
    color: var(--light-white);
    font-size: var(--h6size);
    font-weight: var(--rweight);
}
.back2top-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 2;
    display: none;
    animation: fadeIn 5s;
}
.back2top-btn a i {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    font-size: 25px;
    cursor: pointer;
    color: #fff;
    background: #333;
    -webkit-animation: b2top 2.5s linear infinite;
    animation: b2top 2.5s linear infinite;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}
.back2top-btn a i:hover {
    background: #ff0000;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}
@-webkit-keyframes b2top {
    0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
}
50% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
}
100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
}
}@keyframes b2top {
    0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
}
50% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
}
100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
}
}.navbar-dropdown {
    position: relative;
}
.navbar-dropdown:hover .dropdown-list {
    visibility: visible;
    opacity: 1;
    top: 78px;
}
.navbar-fixed .navbar-dropdown:hover .dropdown-list {
    visibility: visible;
    opacity: 1;
    top: 84px;
}
.dropdown-list {
    position: absolute;
    top: 120px;
    left: 0;
    z-index: 2;
    width: 240px;
    opacity: 0;
    overflow: hidden;
    visibility: hidden;
    border-radius: 10px;
    background: #333;
    -webkit-box-shadow: 0 0 20px 0 rgb(0 0 0/50%);
    box-shadow: 0 0 20px 0 rgb(0 0 0/50%);
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}
.dropdown-list li {
    border-bottom: 1px solid #222;
}
.dropdown-list li:last-child {
    border-bottom: none;
}
.dropdown-link {
    width: 100%;
    font-size: 14px;
    font-weight: 500;
    padding: 12px 25px;
    color: #fff;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}
.dropdown-link:hover {
    color: #ff0000;
    background: #fbde25;
}
.dropdown-link.active {
    color: #ff0000;
    background: #fbde25;
}
@media(min-width:1270px) {
    .src-hide {
        display: none !important;
    }
}

@media(max-width:1440px) {
    .navbar-link {
        padding: 25px 10px !important;
    }
}



@media(max-width:1023px) {
    .navbar-dropdown {
        position: inherit;
    }
/*
@media(max-width:1270px) {
    .navbar-dropdown {
    position: inherit;
}
@media(max-width:1440px) {
    .navbar-link { border: 1px solid white;
        padding: 25px 10px !important;
    }
}
@media(max-width:1024px) {

    .navbar-link { border: 1px solid white;
        padding: 25px 10px !important;
    }
}*/

    .dropdown-list {
        position: inherit;
        visibility: visible;
        opacity: 1;
        width: 100%;
        display: none;
    }

}
.ouca {
    color:#333;
    font-weight:bold;
    float: left;
    margin-left: 10px;
    line-height:110%;
    margin-top: 18px;
}
.ouca span{
    color: #ff0000;
}
.playerna {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 5px solid #fff;
    float: left;
}

.player-btn-logo {
    border: none;
    outline: none;
    width: 100%;
    height: 100%;
}
.player-btn {
    border: none;
    outline: none;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #ff0000;
    -webkit-animation: btn-ani 2s linear infinite;
    animation: btn-ani 2s linear infinite;
}
.player-btn i {
    font-size: 30px;
    color: #fff;
    text-shadow: 5px 5px 0 rgba(0, 0, 0, .3);
}
@-webkit-keyframes btn-ani {
    0% {
    -webkit-box-shadow: 0 0 0 0 rgb(255, 0, 0, .7), 0 0 0 0 rgb(255, 0, 0, .7);
    box-shadow: 0 0 0 0 rgb(255, 0, 0, .7), 0 0 0 0 rgb(255, 0, 0, .7);
}
30% {
    -webkit-box-shadow: 0 0 0 20px transparent, 0 0 0 0 rgb(255, 0, 0, .7);
    box-shadow: 0 0 0 20px transparent, 0 0 0 0 rgb(255, 0, 0, .7);
}
60% {
    -webkit-box-shadow: 0 0 0 20px transparent, 0 0 0 15px transparent;
    box-shadow: 0 0 0 20px transparent, 0 0 0 15px transparent;
}
100% {
    -webkit-box-shadow: 0 0 0 0 transparent, 0 0 0 15px transparent;
    box-shadow: 0 0 0 0 transparent, 0 0 0 15px transparent;
}
}@keyframes btn-ani {
    0% {
    -webkit-box-shadow: 0 0 0 0 rgb(255, 0, 0, .7), 0 0 0 0 rgb(255, 0, 0, .7);
    box-shadow: 0 0 0 0 rgb(255, 0, 0, .7), 0 0 0 0 rgb(255, 0, 0, .7);
}
30% {
    -webkit-box-shadow: 0 0 0 20px transparent, 0 0 0 0 rgb(255, 0, 0, .7);
    box-shadow: 0 0 0 20px transparent, 0 0 0 0 rgb(255, 0, 0, .7);
}
60% {
    -webkit-box-shadow: 0 0 0 20px transparent, 0 0 0 15px transparent;
    box-shadow: 0 0 0 20px transparent, 0 0 0 15px transparent;
}
100% {
    -webkit-box-shadow: 0 0 0 0 transparent, 0 0 0 15px transparent;
    box-shadow: 0 0 0 0 transparent, 0 0 0 15px transparent;
}
}.btn {
    border: none;
    font-size: 16px;
    font-weight: 500;
    padding: 7px 35px;
    border-radius: 50px;
    text-shadow: 2px 3px 8px rgba(0, 0, 0, .1);
    -webkit-box-shadow: 0 8px 25px 0 rgba(72, 69, 90, .1);
    box-shadow: 0 8px 25px 0 rgba(72, 69, 90, .1);
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}
.btn:focus {
    -webkit-box-shadow: none!important;
    box-shadow: none!important;
}
.btn i {
    margin-right: 8px;
    margin-top: -1px;
    font-size: 16px;
}
.btn-inline {
    color: #fff;
    background: #ff0000;
    border: 2px solid #ff0000;
}
.btn-inline:hover {
    color: #fff;
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
    background: #16151a;
    border-color: #16151a;
    -webkit-box-shadow: 0 25px 60px 0 rgba(0, 0, 0, .1);
    box-shadow: 0 25px 60px 0 rgba(0, 0, 0, .1);
}
.btn-outline {
    color: #ff0000;
    border: 2px solid #ff0000;
}
.btn-outline:hover {
    color: #fff;
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
    background: #ff0000;
    border-color: #ff0000;
    -webkit-box-shadow: 0 25px 60px 0 rgba(0, 0, 0, .1);
    box-shadow: 0 25px 60px 0 rgba(0, 0, 0, .1);
}
.btn-outline2 {
    color: #333;
    border: 2px solid #333;
}
.btn-outline2:hover {
    color: #fff;
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
    background: #ff0000;
    border-color: #ff0000;
    -webkit-box-shadow: 0 25px 60px 0 rgba(0, 0, 0, .1);
    box-shadow: 0 25px 60px 0 rgba(0, 0, 0, .1);
}
.icon i {
    width: 50px;
    height: 50px;
    font-size: 16px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    text-shadow: 2px 3px 8px rgba(0, 0, 0, .1);
    -webkit-box-shadow: 0 10px 25px 0 rgba(0, 0, 0, .15);
    box-shadow: 0 10px 25px 0 rgba(0, 0, 0, .15);
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}
.icon-inline i {
    color: #ff0000;
    background: #fff;
}
.icon-inline i:hover {
    color: #fff;
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
    background: #ff0000;
    -webkit-box-shadow: 0 5px 15px 0 rgba(72, 69, 90, .3);
    box-shadow: 0 5px 15px 0 rgba(72, 69, 90, .3);
}
.section {
    padding: 80px 0 0;
}

.section-heading {
    text-align: center;
    margin-bottom: 60px;
}
.section-heading h2 {
    color: #ff0000;
    position: relative;
}
.section-heading h2::before {
    position: absolute;
    content: "";
    bottom: -8px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    border-radius: 30px;
    background: #ff0000;
}
.section-heading h2::after {
    position: absolute;
    content: "";
    bottom: -15px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 5px;
    height: 5px;
    border-radius: 50px;
    background: transparent;
}

@media(max-width:575px) {
    .header-src-btn {
        margin-left:50px;
    }
    .section {
    padding: 60px 0 0;
}
@media(max-width:481px) {
    .header-src-btn {
        margin-left:100px;
    }
}
.section-heading h2 {
    font-size: 30px;
    line-height: 38px;
}
}@media(min-width:576px) and (max-width:767px) {
    .header-src-btn {
        margin-left:180px !important;
    }
    
    .section {
    padding: 80px 0 0;
}
}.header-logo img {
    width: 200px;
}
.header-content {
    text-align: center;
    margin-top: 18px;
}
.header-content h3 {
    font-size: 28px;
}
.header-btn {
    text-align: right;
    margin-top: 6px;
}
.header-part {
    padding: 20px 0;
    background: #fbde25;
}
@media(max-width:991px) {
    .header-part {
    display: none;
}
}.header-top-part {
    background-color: #222227;
    padding: 8px 0;
}
.header-top-part .header-top-social a {
    color: #ff0000;
    margin-right: 10px;
    font-size: 16px;
}
.header-top-part .header-top-social a:hover {
    color: #fff;
}
.header-top-part .header-top-right a {
    color: #ff0000;
    margin-left: 10px;
    font-size: 16px;
}
.header-top-part .header-top-right a:hover {
    color: #fff;
}
.navbar-bg {
    background: #ff0000;
}
.navbar-logo, .navbar-toggle, .slide-head {
    display: none;
}
.navbar-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.navbar-link {
    font-weight: 700;
    padding: 25px 20px;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}
.navbar-link:hover {
    background-color: #e20000;
    color: #fff;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}
/*.navbar-link:hover i {
    -webkit-transform: rotate(20deg);
    transform: rotate(20deg);
}*/
.navbar-link i {
    margin-right: 5px;
    margin-top: -2px;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}
.navbar-link small {
    margin-left: 5px;
    font-size: 10px;
}
.navbar-item.active {
    z-index: 1;
}
.navbar-item.active .navbar-link {
    color: var(--dark);
}
.navbar-player {
    position: relative;
    margin: 0 150px;
}
.navbar-player .playerna {
    position: absolute;
    top: -110px;
    left: 50%;
    z-index: 1;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-box-shadow: 0 7px 13px 0 rgba(0, 0, 0, .15);
    box-shadow: 0 7px 13px 0 rgba(0, 0, 0, .15);
}
.navbar-player.home-3 .playerna {
    top: -70px;
    border: unset;
}
.navbar-player.home-3 .player-btn {
    border-radius: 20px;
}
.navbar-fixed .navbar-player.home-3 .playerna {
    top: -10px;
    width: 100px;
    height: 100px;
    border-radius: 20px;
}
.navbar-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 3;
    background: #fff;
    -webkit-box-shadow: 0 7px 13px 0 rgba(0, 0, 0, .15);
    box-shadow: 0 7px 13px 0 rgba(0, 0, 0, .15);
}
.navbar-fixed .navbar-link {
    padding: 28px 20px;
}
.navbar-fixed .playerna {
    top: -80px!important;
    width: 130px;
    height: 130px;
    margin-bottom: -100px;
    background-size:190px !important;
}
.navbar-fixed .playerna .player-btn i {
    font-size: 35px;
}
.navbar-btn {
    display: none;
}
@media(max-width:991px) {
    .navbar-content {
    padding: 0px 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.navbar-logo {
    display: block;
}
.navbar-logo img {
    width:120px;
}
.navbar-toggle {
    border: none;
    display: none;
    background: 0 0;
    display: block;
}
.navbar-toggle i {
    color: #fff;
    font-size: 18px;
    width: 38px;
    height: 38px;
    line-height: 38px;
    text-align: center;
    border-radius: 50%;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}
.navbar-toggle ii:hover {
    color: #fff;
    background: var(--secondary);
}
.slide-head {
    width: 100%;
    padding: 30px 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.slide-head a img {
    width: 150px;
}
.slide-head button {
    border: none;
    outline: none;
    background: 0 0;
}
.slide-head button i {
    width: 38px;
    height: 38px;
    line-height: 38px;
    text-align: center;
    border-radius: 50%;
    font-size: 16px;
    color: red;
    background: #fff;
    -webkit-box-shadow: 0 3px 5px 0 rgba(0, 0, 0, .2);
    box-shadow: 0 3px 5px 0 rgba(0, 0, 0, .2);
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}
.slide-head button i:hover {
    color: #fff;
    background: var(--primary-gdnt);
}
.navbar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    visibility: hidden;
    opacity: 0;
    background: rgba(0, 0, 0, .7);
    -webkit-transition: all linear .1s;
    transition: all linear .1s;
    z-index: 3;
}
.navbar-overlay.active {
    visibility: visible;
    opacity: 1;
}
.navbar-overlay.active .navbar-slide {
    left: 0;
}
.navbar-slide {
    position: fixed;
    top: 0;
    left: -270px;
    z-index: 3;
    width: 260px;
    height: 100vh;
    overflow-y: scroll;
    overflow-x: hidden;
    background: #ff0000;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-shadow: 8px 0 12px 0 rgba(0, 0, 0, .15);
    box-shadow: 8px 0 12px 0 rgba(0, 0, 0, .15);
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}
.navbar-list {
    width: 100%;
    display: block;
    margin-bottom: 30px;
}
.navbar-slide .navbar-item.active .navbar-link {
    color: #ff0000;
}
.navbar-slide .navbar-link:hover {
    color: #fbde25;
}
.navbar-list li {
    border-bottom: 1px dashed #e8e8e8;
}
.navbar-link {
    width: 100%;
    padding: 12px 15px;
    margin-right: 0;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.navbar-player {
    display: none;
}
.navbar-btn {
    display: block;
    text-align: center;
}
.navbar-fixed {
    border-radius: 0 0 10px 10px;
}
.navbar-fixed .navbar-link {
    padding: 12px 15px;
}
}@media(min-width:992px) and (max-width:1199px) {
    .navbar-player {
    margin: 0 120px;
}
}.footer-part {
    padding: 80px 0;
    background: #fbde25;
}
.footer-logo {
    text-align: center;
    margin-bottom: 35px;
}
.footer-logo a img {
    width: 220px;
    margin-bottom: 30px;
}
.footer-logo ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.footer-logo ul li {
    margin: 0 10px;
}
.footer-logo .icon-inline i {
    color: #ff0000;
    background: #fff;
    font-size: 18px;
}
.news-form {
    width: 650px;
    margin: 0 auto 80px;
    position: relative;
    -webkit-box-shadow: 0 15px 35px 0 rgba(0, 0, 0, .1);
    box-shadow: 0 15px 35px 0 rgba(0, 0, 0, .1);
}
.news-form input {
    border: none;
    outline: none;
    width: 100%;
    height: 60px;
    border-radius: 50px;
    background: #fff;
    padding: 0 195px 0 20px;
}
.news-form .btn {
    position: absolute;
    top: 5px;
    right: 5px;
    height: 50px;
    padding: 12px 35px;
}
.footer-heading h3::before {
    position: absolute;
    content: '';
    width: 40px;
    height: 3px;
    background-color: #ff0000;
    border-radius: 10px;
    top: 34px;
}
.footer-heading h3::after {
    position: absolute;
    content: '';
    width: 4px;
    height: 4px;
    background-color: #ff0000;
    border-radius: 50px;
    top: 33.2px;
    left: 48px;
}
.footer-heading h3 {
    font-size: 20px;
    font-weight: 700;
    position: relative;
    color: #ff0000;
    margin-bottom: 20px;
}
.footer-heading p {
    color: #333;
    margin-bottom: 10px;
}
.footer-address li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding: 10px 0;
}
.footer-address li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.footer-address li i {
    color: #333;
    font-size: 25px;
    margin-right: 15px;
}
.footer-address li p {
    color: #333;
}
.footer-address li a {
    color: #333 !important;
}
.footer-address li a:hover {
    color: #ff0000 !important;
}
.footer-link li {
    padding: 6px 0;
}
.footer-link li:first-child {
    padding-top: 0;
}
.footer-link li:last-child {
    padding-bottom: 0;
    border-bottom: none;
}
.footer-link li a {
    color: #333;
}
.footer-link li a:hover {
    color: #ff0000;
}
.footer-link li a i {
    margin-right: 10px;
}
.footer-link ul li a i {
    color: #fff;
    font-size: 16px;
    margin-right: 10px;
}
.footer-link ul li a:hover {
    text-decoration: underline;
}
.download-part {
    margin-top: 25px;
}
.download-part h5 {
    color: #333;
    margin-bottom: 10px;
}
.download-part img {
    width: 200px;
    margin: 8px 10px 8px 0;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}
.download-part a img:hover {
    opacity:0.7;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}
@media(max-width:767px) {
    .footer-gape {
    margin-top: 60px;
}
.footer-logo {
    margin-bottom: 50px;
}
.footer-logo ul li {
    margin: 0 8px;
}
.footer-logo .icon i {
    width: 45px;
    height: 45px;
    line-height: 45px;
    font-size: 16px;
}
.news-form {
    width: 100%}
.footer-address, .footer-link {
    margin-bottom: 50px;
}
.footer-heading, .footer-address, .footer-link, .download-part {
    margin-left: 25px;
}
}@media(min-width:768px) and (max-width:991px) {
    .footer-address, .footer-link {
    margin-bottom: 50px;
}
.download-part ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.download-part ul li {
    margin-right: 25px;
}
}.copy-part {
    background: #333;
    padding: 26px 0 16px 0;
}
.copy-part p {
    color: #fff !important;
    text-align: center;
}
.copy-part a {
    color: #999 !important;
    font-size: 14px !important;
}
.copy-part a:hover {
    color: #ff0000 !important;
}
.copy-part p i {
    color: #ff0000;
}
@media(max-width:575px) {
    .copy-part ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.copy-part ul li {
    border: none;
    padding: 6px 0;
}
}.bottom-player {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 150px;
    z-index: 2;
    display: block;
}
.bottom-player .playerna { 
    width: 82px;
    height: 82px;
    margin: -120px 10px 10px;
    border: 8px solid #fff;
}
.bottom-player .player-btn i {
    right: 0;
    font-size: 24px;
}
.bottom-player .ouca {
    font-size:14px;
    font-weight:normal;
    margin-left:5px;
}
.bottom-player .ouca span {
    font-size:20px;
    font-weight:bold;
}
div#d1 {
    display: none;
}
@media(max-width:991px) {
    .bottom-player {
    display: block;

}
}.nav {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: transparent;border-radius: 10px !important;
}
.nav-tabs ul {
    border: none !important;
  }
.nav-tabs li {
    width: 100%;
    background-color: #f7f7f7;
    
}
.nav-tabs li .nav-link {
    width: 100%;
    border: none;
    padding: 10px 0px;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: .5px;
    color: #ff0000;
}
.nav-tabs li .nav-link:hover {
    color: #fff;
    background-color: #333;
    border-radius: 10px !important;
}
.nav-tabs li .active {
    color: #fff!important;
    background: #ff0000!important;
    border-color: #ff0000!important;
    border-radius: 10px;
}
.nav-tabs {
    background: #fff;
    border-radius: 0px;
}
.tab-pane {
    padding: 30px 0 0;
    display: none;
}
.tab-pane.active {
    display: block;
}
.nextarrow, .prevarrow {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 16px;
    width: 48px;
    height: 48px;
    line-height: 48px;
    text-align: center;
    border-radius: 50%;
    color: #fff;
    background: #ff0000;
    text-shadow: 2px 3px 8px rgba(0, 0, 0, .1);
    -webkit-box-shadow: 0 10px 25px 0 rgba(0, 0, 0, .15);
    box-shadow: 0 10px 25px 0 rgba(0, 0, 0, .15);
    cursor: pointer;
    visibility: hidden;
    opacity: 0;
    z-index: 1;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}
.nextarrow {
    right: -15px;
}
.prevarrow {
    left: -15px;
}
.slider-arrow:hover .nextarrow, .slider-arrow:hover .prevarrow {
    visibility: visible;
    opacity: 1;
}
@media(min-width:576px) and (max-width:1199px) {
    .nextarrow {
    right: 0;
}
.prevarrow {
    left: 0;
}
}.show-card {
    margin-bottom: 30px;
    background-color: #fff;
    padding: 10px;
    border-radius: 10px;
    background: #f7f7f7;
}
/*.show-card:hover .show-overlay {
    background: rgba(0, 168, 107, .6);
}
.show-card:hover .show-bg img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}*/
.show-content {
    position: relative;
    margin-bottom: 38px;
}
.show-bg {
    width: 100%;
    height: 130px;
    overflow: hidden;
    border-radius: 10px;
    background: #fbde25;
}
.show-bg img {
    width: 100%;
    border-radius: 10px;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}
.show-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background: #fbde25;
    
}
.show-active {
    animation: piscar 1s infinite;
    position: absolute;
    top: -10px;
    left: -10px;
    width: 55px;
    padding: 5px;
    border-radius: 10px;
    overflow: hidden;
    background: #ff0000;
    color: #fff;
    font-weight: 700;
    font-size: 12px;
}
@keyframes piscar {
  0% {
    opacity: 1;
  }
  50% {
    background: #333;
  }
  100% {
    opacity: 1;
  }
}


.show-active img {

    width: 100%}
.show-time {
    position: absolute;
    top: 45%;
    left: 50%;
    width: 100%;
    text-align: center;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.show-time p {
    color: #333;
    font-size: 20px;
    margin-bottom: 7px;
    font-family: var(--sfamily);
}
.show-time h4 {
    color: #ff0000;
    font-weight: var(--mweight);
}
.show-host {
    position: absolute;
    bottom: -30px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.show-host li:nth-child(2), .show-host li:nth-child(3) {
    margin-left: -25px;
}
.show-host li img {
    width: 60px;
    border-radius: 50%;
    border: 5px solid #fff;
}
.show-meta {
    color: #333 !important;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.team-card:hover .team-overlay {
    opacity: 1;
    height: 100%;
    visibility: visible;
    background: rgba(251, 222, 37, .6);
}
.team-card:hover .team-icon {
    bottom: 30px;
}
.team-img {
    position: relative;
    margin-bottom: 15px;
}
.team-img img {
    width: 100%;
    border-radius: 10px;
}
.team-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    border-radius: 10px;
    visibility: hidden;
    opacity: 0;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}
.team-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}
.team-icon li {
    margin: 0 5px;
}
.team-icon .icon i {
    width: 45px;
    height: 45px;
    line-height: 45px;
}
.team-meta {
    text-align: center;
}
.team-meta h4 {
    color: #ff0000;
    font-weight: 600;
    font-size: 20px;
}
.team-part {
    
}
.team-gape {
    margin-bottom: 30px;
    background: #f7f7f7;
    padding: 10px;
    border-radius: 10px;
}
.team-btn {
    text-align: center;
    margin-top: 20px;
}
@media(max-width:575px) {
    .team-part .col-6 {
    padding: 0 5px;
}
.team-icon .icon i {
    width: 40px;
    height: 40px;
    line-height: 40px;
}
}@media(max-width:767px) {
    .team-part {
    padding: 60px 0;
}
}@media(min-width:768px) and (max-width:991px) {
    .team-part {
    padding: 80px 0;
}
}.video-img {
    position: relative;
    margin-bottom: 15px;
}
.video-img img {
    width: 100%;
    border-radius: 10px;
}
.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background: var(--video-oly);
}
.video-overlay .icon {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.video-overlay .icon i {
    font-size: 24px;
}
.video-overlay .icon-inline i {
    background: #ff0000;
    color: #fff;
}

.video-overlay2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background: var(--video-oly);
}
.video-overlay2 .icon {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.video-overlay2 .icon i {
    padding-top: 15px;
    padding-left: 5px;
    font-size: 30px;
}
.video-overlay2 .icon-inline i {
    width: 80px;
    height: 80px;
    background: #fbde25;
    color: #ff0000;
}
.video-overlay2 .icon-inline i:hover {
    width: 80px;
    height: 80px;
    background: #ff0000;
    color: #fbde25;
}


.video-content {
    padding: 10px 20px;
}
.video-content h5 {
    margin-bottom: 5px;
}
.video-content p {
    font-size: 15px;
    line-height: 24px;
}
.video-part {
    
}
.video-gape {
    margin-bottom: 30px;
    background: #f7f7f7;
    padding: 10px;
    border-radius: 10px;
}
.video-btn {
    text-align: center;
    margin-top: 20px;
}
@media(max-width:767px) {
    .video-part {
    padding: 60px 0;
}
}@media(min-width:768px) and (max-width:991px) {
    .video-part {
    padding: 80px 0;
}
}.blog-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}
.blog-card:hover img {
    -webkit-transform: scale(1.08);
    transform: scale(1.08);
}
.blog-card:hover .blog-overlay {
    background: rgba(251, 222, 37, .2);
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}
.blog-card:hover .blog-overlay .btn-outline {
    background: #fff;
    border-color: #fff;
    color: #16151a;
}
.blog-card img {
    width: 100%;
    border-radius: 10px;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}
.blog-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    padding: 30px;
    background: rgba(0, 0, 0, .3);
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}
.blog-overlay p {
    color: #fff !important;
    font-weight: 500;
    margin-bottom: 200px;
}
.blog-overlay h3 {
    position: absolute;
    bottom: 25px;
    left: 25px;
    right: 25px;
    color: #fff;
    font-weight: 600;
    line-height: 120%;
}
.blog-overlay .btn {
    font-size: 16px;
    font-weight: 500;
    padding: 8px 25px;
    position: absolute;
    bottom: 30px;
    left: 25px;
}
.blog-overlay .btn-outline {
    color: #ff0000;
    border-color: #fff;
    background-color: #fff;
}
.blog-src {
    position: relative;
    margin-bottom: 45px;
}
.blog-src input {
    width: 100%;
    height: 52px;
    border-radius: 10px;
    padding: 0 60px 0 20px;
    border: 2px solid #ff0000;
    background: 0 0;
    color: #ff0000;
}
.blog-src button {
    border: none;
    outline: none;
    background: 0 0;
    position: absolute;
    top: 6px;
    right: 6px;
}
.blog-src button i {
    width: 40px;
    height: 40px;
    font-size: 14px;
    line-height: 40px;
    text-align: center;
    border-radius: 10px;
    color: #fff;
    background: #ff0000;
    text-shadow: 2px 3px 8px rgba(0, 0, 0, .1);
    transition: all .5s ease-in-out;
}
.blog-src button i:hover {
    background: #16151a;
    color: #ff0000;
}
.blog-filter {
    margin-bottom: 50px;
    background: #f7f7f7;
    border-radius: 10px;
    padding: 20px;
}
.blog-filter h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 48px;
    position: relative;
    color: #ff0000;
}
.blog-filter h3::before {
    position: absolute;
    content: "";
    top: 45px;
    left: 0;
    width: 40px;
    height: 3px;
    border-radius: 30px;
    background: #ff0000;
}
.blog-filter h3::after {
    position: absolute;
    content: "";
    top: 44.5px;
    left: 45px;
    width: 4px;
    height: 4px;
    border-radius: 30px;
    background: #ff0000;
}
.blog-suggest {
    margin-bottom: 10px;
}
.blog-suggest li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #e5e5e5;
}
.blog-suggest li:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
}
.suggest-img {
    margin-right: 15px;
}
.suggest-img a img {
    width: 100px;
    border-radius: 8px;
}
.suggest-title {
    margin-bottom: 20px;
}
.suggest-title h4 {
    font-size: 16px;
    line-height: 20px;
}
.suggest-title h4 a {
    color: #ff0000;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}
.suggest-title h4 a:hover {
    color: #333;
}
.mpnumber {
    background: #fbde25;
    width: 30px;
    height: 30px;
    border-radius: 10px;
    color: #333;
    font-weight: 20px;
    font-weight: 700;
    text-align: center;
    position:absolute;
    margin-top: -10px;
    margin-left:80px;

}
.suggest-meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
.suggest-date {
    margin-right: 30px;
}
.suggest-date, .suggest-comment {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
.suggest-date i, .suggest-comment i {
    font-size: 16px;
    margin-right: 8px;
    margin-top: -1px;
    color: #333;
}
.suggest-date p, .suggest-comment p {
    font-size: 15px;
    line-height: 18px;
    color: #333;
}
.blog-cate {
    display: block;
}
.blog-cate li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-bottom: 2px dashed #555;
    margin-bottom: 10px;
    padding-bottom: 10px;
}
.blog-cate li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.blog-cate li:hover h5 a {
    color: #ff0000;
}
.blog-cate li:hover p {
    color: #ff0000;
}
.blog-cate li h5 {
    font-weight: 500;
}
.blog-cate li h5 a {
    color: #333;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}
.blog-cate li p {
    font-size: 14px;
    font-weight: 500;
    width: 35px;
    height: 35px;
    line-height: 37px;
    text-align: center;
    border-radius: 50%;
    color: #333;
    text-shadow: 2px 3px 8px rgba(0, 0, 0, .1);
}
.blog-tag li {
    display: inline-block;
    margin: 0 8px 12px 0;
}
.blog-tag li a {
    color: #333;
    font-size: 14px;
    padding: 2px 15px;
    border-radius: 30px;
    border: 1px solid #333;
    transition: all .5s ease-in-out;
}
.blog-tag li a:hover {
    color: #fff;
    background: #ff0000;
    border: 1px solid #ff0000;
}
.blog-icon {
    margin-bottom: 10px;
}
.blog-icon li {
    display: inline-block;
    margin-right: 8px;
}
.blog-icon li a i {
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    border-radius: 10px;
    color: #ff0000;
    background: #fff;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}
.blog-icon li a i:hover {
    color: #fff;
    background: #ff0000;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}
.blog-banner {
    width: 80%;
    margin: 0 auto;
}
.blog-banner .roundedban {
    border-radius: 10px;
}
.blog-banner-mega {
    width: 90%;
    margin: 0 auto;
    margin-top: 80px;
}
.blog-banner-mega .roundedban {
    border-radius: 10px;
}
.blog-banner-entre {
    width: 80%;
    margin: 0 auto;
    padding: 50px 0;
}
.linha {
    width: 100%;
    border-bottom: 1px solid #e5e5e5;
}
.blog-banner-entre .roundedban {
    border-radius: 10px;
}
.blog-part {
    
}
.blog-card {
    margin-bottom: 30px;
}
.pagination {
    margin-top: 30px;
}
/*@media(max-width:991px) {
    .content-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
}*/
.pagination {
    margin: 20px 0 50px;
}
}@media(max-width:767px) {
    .blog-part {
    padding: 60px 0;
}
}@media(min-width:380px) and (max-width:575px) {
    .blog-card {
    width: 380px;
    margin: 0 auto 30px;
}
}@media(min-width:576px) and (max-width:767px) {
    .content-reverse .col-sm-6 {
    padding: 0 8px;
}
.blog-overlay h3 {
    font-size: 21px;
    line-height: 27px;
}
}@media(min-width:768px) and (max-width:991px) {
    .blog-part {
    padding: 80px 0;
}
.blog-banner {
    text-align: center;
}
}@media(min-width:992px) and (max-width:1199px) {
    .suggest-img a img {
    width: 95px;
}
.blog-banner {
    display: none;
}
}.blog-det-part {
    padding-top: 120px;
}
.blog-det-part .container {
    max-width: 1000px;
}
.blog-det-banner {
    position: relative;
    border-radius: 10px;
    margin-bottom:25px;
}
.blog-det-banner img {
    width: 100%;
    border-radius: 10px;
}
.blog-det-content {
    padding: 0;
}
.blog-det-title {
    font-weight: 600;
    font-size: 30px;
    color: #ff0000;
    padding-bottom:10px;
}
.blog-det-title h2 a {
    font-weight: 600;
    font-size: 30px;
    color: #ff0000;
    padding-bottom:10px;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}
.blog-det-title h2 a:hover {
    color: #333;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}
.blog-det-meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
.blog-det-meta a {
    color: #333;
}
.blog-det-meta a:hover{
    color: #ff0000;
}
.blog-det-meta li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0 18px;
    border-right: 1px solid var(--text);
}
.blog-det-meta li:first-child {
    padding-left: 0;
}
.blog-det-meta li:last-child {
    padding-right: 0;
    border-right: none;
}
.blog-det-meta li i {
    font-size: 14px;
    margin-right: 8px;
    margin-top: -2px;
    color: var(--text);
}
.blog-det-meta li p {
    font-size: 14px;
    color: var(--light-white);
}
.blog-part p {
    color: #333;
}
.blog-det-descrip p {
    margin-bottom:25px;
    color: #333;
}
.blog-det-descrip p span {
    display: block;
    margin-top: 25px;
}
.blog-det-subtitle {
    margin-bottom: 35px;
}
.blog-det-subtitle h3 {
    margin-bottom: 15px;
    color: #333;
}
.blog-det-subtitle p {
    color: #333;
}

.blog-det-quote {
    padding: 50px;
    background: #f7f7f7;
    border-left: 5px solid #ff0000;
    margin-bottom: 45px;
    border-radius: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.blog-det-quote p {
    font-size: 22px;
    font-style: italic;
    line-height: 35px;
    margin-bottom: 35px;
    color: #333;
}
.blog-det-quote span {
    font-weight: 500;
    -ms-flex-item-align: start;
    align-self: flex-start;
    color: #ff0000;
    position: relative;
    margin-left: 40px;
}
.blog-det-quote span::before {
    position: absolute;
    content: '';
    width: 30px;
    height: 3px;
    left: -40px;
    top: 12px;
    border-radius: 30px;
    background: #ff0000;
}
.blog-det-list {
    list-style: disc;
    padding-bottom: 50px;
    border-bottom: 1px solid #555;
}
.blog-det-list li {
    margin-bottom: 30px;
}
.blog-det-list li:last-child {
    margin-bottom: 0;
}
.blog-det-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 25px 0;
}
.blog-det-footer li h4 {
    color: #999 !important;
}
.blog-det-share {
    position: relative;
    margin: 0 auto !important;
}
.blog-det-tag {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-top: 20px;
}
.blog-det-tag li {
    margin-right: 8px;
}
.blog-det-tag li h4 {
    font-weight: 700;
    margin-right: 5px;
    color: #333;
}
.blog-det-tag li a {
    color: #333;
    font-size: 14px;
    padding: 2px 16px;
    border-radius: 30px;
    border: 1px solid #333;
}
.blog-det-tag li a:hover {
    color: #fff;
    background: #ff0000;
    border-color: #ff0000;
}
.blog-det-share {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    
}
.blog-det-share li {
    margin: 25px 0 15px 0;
    margin-right: 8px;
}
.blog-det-share li h4 {
    font-weight: 700;
    margin-right: 5px;
    color: #333;
}
.blog-det-share li a i {
    width: 45px;
    height: 45px;
    font-size: 16px;
    line-height: 45px;
    text-align: center;
    border-radius: 50%;
    color: #ff0000;
    background: #f5f5f5;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}
.blog-det-share li a i:hover {
    color: #fff;
    background: #ff0000;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}
.blog-det-author {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    padding: 45px;
    margin-bottom: 50px;
    border-radius: 10px;
    background: #222227;
}
.author-img {
    margin-right: 30px;
}
.author-img a img {
    width: 100px;
    border-radius: 50%}
.author-social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 15px;
}
.author-social li {
    margin: 0 3px;
}
.author-social li a i {
    width: 30px;
    height: 30px;
    font-size: 12px;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
    color: #ff0000;
    background: #fff;
    text-shadow: 2px 3px 8px rgba(0, 0, 0, .1);
}
.author-social li a i:hover {
    color: #fff;
    background: #ff0000;
}
.author-content h4 {
    margin-bottom: 10px;
    color: #333;
}
.author-content h4 a {
    display: block;
    font-size: 14px;
    color: #ff0000;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}
.author-content h4 a:hover {
    color: #777;
}
.blog-det-navigate {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
    margin-bottom: 60px;
    position: relative;
}
.blog-det-author p {
    color: #333;
}

.navigate-post {
    width: 320px;
    border-radius: 10px;
    position: relative;
    -webkit-box-shadow: 0 15px 20px 0 rgba(0, 0, 0, .25);
    box-shadow: 0 15px 20px 0 rgba(0, 0, 0, .25);
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}
.navigate-post::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.1)), to(rgba(0, 0, 0, 0.8)));
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.8));
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;

}
.navigate-post img {
    width: 100%;
    border-radius: 10px;
=    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}
.navigate-post:hover img {
    width: 100%;
    border-radius: 10px;
    background: rgba(251, 222, 37, .2);
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}
.navigate-post h4 {
    position: absolute;
    bottom: 20px;
    left: 0;
    padding: 0 30px;
    line-height: 130% !important;
    color: var(--white) !important;
}
.navigate-post h4 a {
    line-height: 130% !important;
    color: var(--white) !important;
}
.prev-arrow, .next-arrow {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 22px;
    border-radius: 10px;
    padding: 9px 20px;
    color: var(--text);
    background: var(--white);
    -webkit-box-shadow: 0 10px 25px 0 rgba(0, 0, 0, .15);
    box-shadow: 0 10px 25px 0 rgba(0, 0, 0, .15);
}
.prev-arrow:hover, .next-arrow:hover {
    color: #fff;
    background: #ff0000;
}
.prev-arrow {
    left: 0;
}
.prev-arrow i {
    margin-right: 8px;
}
.next-arrow {
    right: 0;
}
.next-arrow i {
    margin-left: 8px;
}
.blog-det-comment {
    margin-bottom: 30px;
}
.blog-det-comment h3 {
    margin-bottom: 30px;
    color: #ff0000;
}
.comment-list li ul {
    margin-left: 100px;
}
.comment {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 20px;
    position: relative;
}
.comment-img {
    margin-right:15px;
}
.comment-img i {
    font-size: 30px;
}
.comment-img a img {
    width: 100px;
    border-radius: 50%}
.comment-content h4 {
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}
.comment-content h4 span {
    font-size: 14px;
    font-weight: 500;
    display: block;
    color: #333;
}
.comment-reply {
    position: absolute;
    top: 25px;
    right: 15px;
}
.comment-reply a {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}
.comment-reply a:hover {
    color: #ff0000;
}
.comment-reply a i {
    margin-right: 8px;
}
.blog-det-form  {
    background: #fff !important;
    border: 1px solid #e5e5e5;
}
.blog-det-form .form-group {
    margin: 0;
    margin-bottom: 30px;
}
.blog-det-form .form-btn {
    text-align: left;
}
.blog-det-form .form-btn  {
    background-color: #fff;
    color: #ff0000;
    border-color: #ff0000;
}
.blog-det-form .form-btn .btn:hover {
    background-color: #ff0000;
    color: #fff;
    border-color: #ff0000;
}
.blog-det-form h3 {
    margin-bottom: 30px;
    color: #ff0000;
}
@media(max-width:767px) {
    .blog-det-part {
    padding: 60px 0;
}
.blog-det-banner {
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 0;
}
.blog-det-banner::before {
    display: none;
}
.blog-det-banner img {
    margin-bottom: 30px;
    -webkit-box-shadow: 0 10px 15px 0 rgba(0, 0, 0, .25);
    box-shadow: 0 10px 15px 0 rgba(0, 0, 0, .25);
}
.blog-det-content {
    position: inherit;
    left: 0;
    bottom: 0;
    padding: 0;
}
.blog-det-title {
    margin-bottom: 15px;
}
.blog-det-title h2 {
    font-size: 28px;
    line-height: 36px;
}
.blog-det-title h2 a {
    color: var(--heading);
}
.blog-det-meta {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.blog-det-meta li {
    border: none;
    padding: 2px 7px;
}
.blog-det-meta li p, .blog-det-meta li i {
    color: var(--text);
    font-size: 13px;
}
.content-fluid {
    padding: 0;
}
.blog-det-quote {
    padding: 35px 30px;
}
.blog-det-quote p {
    font-size: 18px;
}
.blog-det-list {
    padding-bottom: 30px;
}
.blog-det-footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 35px 0;
}
.blog-det-tag {
    margin-bottom: 25px;
}
.blog-det-author {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 35px;
}
.author-img {
    margin: 0 0 15px;
}
.blog-det-navigate {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
}
.navigate-post {
    width: 100%;
    margin-bottom: 30px;
}
.navigate-post h4 {
    bottom: 20px;
    padding: 0 25px;
    line-height: 28px;
}
.next-arrow {
    top: 0;
}
.prev-arrow {
    top: inherit;
    bottom: -15px;
}
.comment {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 30px 0;
}
.comment-img {
    margin: 0 0 15px;
}
.comment-content h4 {
    margin-bottom: 5px;
}
.comment-reply {
    top: 45px;
}
.comment-list li ul {
    margin-left: 60px;
}
}@media(min-width:431px) and (max-width:767px) {
    .blog-det-navigate {
    width: 400px;
    margin: 0 auto 50px;
}
}@media(min-width:768px) and (max-width:991px) {
    .blog-det-part {
    padding: 80px 0;
}
.navigate-post {
    width: 320px;
}
.prev-arrow, .next-arrow {
    top: 0%}
}.pagination {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.page-item {
    margin: 0 6px;
}
.page-item:first-child .page-link, .page-item:last-child .page-link {
    border-radius: 10px;
}
.page-item .active {
    color: #fff;
    background: #ff0000;
}
.page-link {
    width: 40px;
    height: 40px;
    font-size: 18px;
    line-height: 40px;
    text-align: center;
    border-radius: 10px;
    border: none;
    padding: 0;
    color: #333;
    background: #fff;
}
.page-link:hover {
    background: #ff0000;
    color: #fff;
}
.page-link:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}
.banner-1 {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    overflow: hidden;
}
.banner-2 {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    overflow: hidden;
}
.banner-3 {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    overflow: hidden;
}
.banner-oly {
    padding: 180px 0;
    background: linear-gradient(to top, rgba(0, 168, 107, 0.2), rgba(0, 0, 0, 0.1));
}
.banner-content {
    text-align: center;
}
.banner-content h1 {
    margin-bottom: 12px;
}
.banner-content p {
    color: #fff;
    font-size: 18px;
    margin-bottom: 45px;
}
.banner-slider .slick-dots {
    position: absolute;
    bottom: 20px;
    left: 40px;
}
.banner-slider .slick-dots li {
    display: inline-block;
}
.banner-slider .slick-dots li button {
    font-size: 0;
    width: 30px;
    height: 6px;
    border-radius: 20px;
    border: 1px solid #fff;
    background: #fff;
    margin-left: 10px;
}
.banner-slider .slick-active button {
    background: #ff0000!important;
    border: 1px solid #ff0000!important;
}
.banner-slider .bannerprev {
    position: absolute;
    bottom: 31px;
    left: 210px;
    font-size: 20px;
    z-index: 1;
    color: #fff;
    cursor: pointer;
}
.banner-slider .bannernext {
    position: absolute;
    bottom: 31px;
    left: 180px;
    font-size: 20px;
    z-index: 1;
    color: #fff;
    cursor: pointer;
}
@media(max-width:991px) {
    .blog-banner-mega {
    width: 100%;
}
    .banner-content h1 {
    font-size: 42px;
    line-height: 46px;
}
}@media(max-width:767px) {
    .banner-oly {
    padding: 60px 0;
}
.banner-slider .slick-dots {
    bottom: 4px;
}
.banner-slider .bannerprev {
    bottom: 14px;
}
.banner-slider .bannernext {
    bottom: 14px;
}
}@media(min-width:768px) and (max-width:991px) {
    .banner-oly {
    padding: 80px 0;
}
}.about-img {
    width: ;
    position: relative;
}
.about-img img {
    max-width:100%;
    position: relative;
    border-radius: 50%;
    border: 10px solid #fff;
}
.about-1 img {
    width: 100%;
    border-radius: 20px;
    -webkit-box-shadow: 0 0 30px 20px rgba(0, 0, 0, .1);
    box-shadow: 0 0 30px 20px rgba(0, 0, 0, .1);
}
.about-2 {
    position: absolute;
    bottom: 0;
    right: 40px;
    border-radius: 50%;
    border: 10px solid #fff;
    -webkit-box-shadow: 0 0 30px 20px rgba(0, 0, 0, .1);
    box-shadow: 0 0 30px 20px rgba(0, 0, 0, .1);
    float: left;
}
.about-2::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(91, 68, 114, 0.2)), to(rgba(0, 168, 107, 0.3)));
    background: linear-gradient(rgba(91, 68, 114, 0.2), rgba(0, 168, 107, 0.3));
}
.about-2 img {
    width: 150px;
    height: 150px;
    border-radius: 50%}
.about-content {
    margin-left: 20px;
    margin-top: 20px;
}
.about-content h2 {
    margin-bottom: 20px;
    margin-top: 10px;
    font-size: 40px;
    font-weight: 700;
    color: #ff0000;
}
.about-content h5 {
    font-size: 20px;
    color: #333;
}
/*.about-content h5::after {
    position: absolute;
    content: "";
    left: 150px;
    top: 16px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 30px;
    height: 3px;
    border-radius: 30px;
    background: #ff0000;
}*/
.about-content p {
    margin-bottom: 25px;
    color: #333;
}
.about-content h3 {
    position: relative;
    margin-left: 50px;
    color: #ff0000;
}
.about-content h3::before {
    position: absolute;
    content: "";
    top: 50%;
    left: -50px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 30px;
    height: 3px;
    border-radius: 30px;
    background: #ff0000;
}
@media(max-width:1199px) {
    .about-2 {
    right: 0;
}
}@media(max-width:575px) {
    .about-img {
    width: 290px;
    margin: 0 auto 30px;
}
.about-1 img {
    width: 80%}
.about-2 {
    border: 6px solid #fff;
}
.about-2 img {
    width: 150px;
    height: 150px;
}
.about-content {
    margin-left: 0;
}
.about-content h2 {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 20px;
}
.about-content h2 span {
    font-size: 40px;
    line-height: 48px;
}
.about-content h3 {
    display: inline-block;
}
}@media(min-width:576px) and (max-width:991px) {
    .about-img {
    width: 500px;
    margin: 0 auto 30px;
}
.about-content {
    margin-left: 0;
}
}.show-btn {
    text-align: center;
    margin-top: 20px;
}
@media(max-width:991px) {

    #show-menu {
    overflow-x: scroll;
}
.nav {
    width: 800px;
}
.nav-tabs li .nav-link {
    padding: 8px 0;
}
#show-menu::-webkit-scrollbar {
    width: 12px;
    background-color: #fff;
}
#show-menu::-webkit-scrollbar-thumb {
    border-radius: 30px;
    background: #333;
    border: 5px solid var(--light-white);
}
}@media(min-width:351px) and (max-width:575px) {
    .show-part .container {
    max-width: 350px;
    }
    .show-menu {
        width:320px !important;

    }
    .nav {
    width: 320px !important;
    }
    .nav-tabs li .nav-link {
        padding: 8px 0;
    }
}
}@media(min-width:768px) and (max-width:1199px) {
    .show-host li a img {
    width: 55px;
}
}.team-slider .team-card {
    margin: 0 0px;
    background-color: #fff;
    padding: 0px;
    border-radius: 10px;
}
.team-slider .nextarrow, .team-slider .prevarrow {
    top: 50%}
.team-btn {
    text-align: center;
    margin-top: 50px;
}
@media(max-width:767px) {
    .team-slider .team-card {
    width: 240px;
    margin: 0 10px;
}
}.video-slider .video-card {
    margin: 0 15px;
    background-color: #f7f7f7 !important;
    padding: 10px;
    border-radius: 10px;
}
.video-slider .nextarrow {
    top: 33%}
.video-slider .prevarrow {
    top: 33%}
.video-btn {
    text-align: center;
    margin-top: 50px;
}
@media(max-width:575px) {
    .video-slider .video-card {
    width: 250px;
    margin: 0 10px;
}
}@media(min-width:576px) and (max-width:767px) {
    .video-slider .video-card {
    width: 300px;
    margin: 0 10px;
}
}@media(min-width:768px) and (max-width:991px) {
    .video-slider .video-card {
    width: 380px;
    margin: 0 10px;
}
}.gallery-content {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
    -ms-grid-rows: auto;
    grid-template-rows: auto;
}
.gallery-list {
    display: -ms-grid;
    display: grid;
    grid-gap: 25px;
    -ms-grid-columns: (minmax(150px, 1fr))[auto-fit];
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    -ms-grid-rows: 200px;
    grid-template-rows: 200px;
    grid-auto-flow: dense;
}
.gallery-list li {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}
.gallery-list li:hover img {
    -webkit-transform: scale(1.08);
    transform: scale(1.08);
}
.gallery-list li::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    border-radius: 10px;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(91, 68, 114, 0.2)), to(rgba(0, 168, 107, 0.3)));
    background: linear-gradient(rgba(91, 68, 114, 0.2), rgba(0, 168, 107, 0.3));
}
.gallery-list li img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}
.verti-img {
    grid-row: span 2;
}
.hori-img {
    grid-column: span 2;
}
.big-img {
    grid-row: span 2;
    grid-column: span 2;
}
.gallery-btn {
    text-align: center;
    margin-top: 50px;
}
@media(max-width:575px) {
    .gallery-list {
    grid-gap: 15px;
}
}.gallery-part {
    padding-top: 120px;
}
.gallery-pt {
    padding-top: 220px;
}
.gallery-img {
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
    border-radius: 10px;
}
.gallery-img:hover img {
    -webkit-transform: scale(1.08);
    transform: scale(1.08);
}
.gallery-img::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    border-radius: 10px;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(91, 68, 114, 0.2)), to(rgba(0, 168, 107, 0.3)));
    background: linear-gradient(rgba(91, 68, 114, 0.2), rgba(0, 168, 107, 0.3));
}
.gallery-img img {
    width: 100%;
    border-radius: 10px;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}
.gallery-gape {
    margin-top: -100px;
}
@media(max-width:767px) {
    .gallery-part {
    padding: 60px 0;
}
.gallery-gape {
    margin-top: 0;
}
.gallery-btn {
    margin-top: 20px;
}
}@media(min-width:351px) and (max-width:575px) {
    .gallery-img {
    width: 350px;
    margin: 0 auto 30px;
}
}@media(min-width:768px) and (max-width:991px) {
    .gallery-part {
    padding: 80px 0;
}
.gallery-gape {
    margin-top: 0;
}
.gallery-btn {
    margin-top: 20px;
}
}.blog-slider .blog-card {
    margin: 0 15px;
}
.blog-slider .nextarrow {
    top: 50%}
.blog-slider .prevarrow {
    top: 50%}
.blog-btn {
    text-align: center;
    margin-top: 50px;
}
@media(max-width:575px) {
    .blog-slider .blog-card {
    width: 250px;
    margin: 0 10px;
}
.blog-overlay h4 {
    left: 25px;
    right: 25px;
}
}@media(min-width:576px) and (max-width:767px) {
    .blog-slider .blog-card {
    width: 325px;
}
}.single-banner {
    background: url(../img/single-banner.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.single-banner-oly {
    background: #fbde25;
    padding: 80px 0;
}
.single-banner-oly-urg {
    background: #ff0000;
    padding: 80px 0;
}
.single-banner-oly-urg h2 {
    color: #fff;
}
.single-banner-oly-urg a {
    color: #fbde25;
}
.single-banner-oly-urg a:hover {
    color: #fff;
}

.single-banner-oly-vivo {
    background: #333;
    padding: 80px 0;
}
.single-banner-oly-vivo h2 {
    color: #fff;
}
.single-banner-oly-vivo a {
    color: #fbde25;
}
.single-banner-oly-vivo a:hover {
    color: #fff;
}

.aovivo {
    margin: 0 auto;
    max-width:300px;
    background: #fbde25;
    color: #ff0000;
    padding: 10px 0;
    border-radius: 10px;
    margin-bottom: -30px;
  animation: blinker 2.5s linear infinite;
}

@keyframes blinker {  
  50% { opacity: 0; }
}

.single-content {
    text-align: center;
}
.single-content h2 {
    font-size: 38px;
    margin-bottom: 10px;
    color: #fff;
    text-shadow: 2px 3px 8px rgba(0, 0, 0, .1);
}
@media(max-width:991px) {
    .single-content h2 {
    font-size: 38px;
}
}.breadcrumb {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0;
    margin-bottom: 0;
    background: 0 0;
    border-radius: 0;
}
.breadcrumb-item {
}
.breadcrumb-item a {
    color: #fff;
    text-shadow: 2px 3px 8px rgba(0, 0, 0, .1);
}
.breadcrumb-item.active {
    color: #ff0000;
    text-shadow: 2px 3px 8px rgba(0, 0, 0, .1);
}
.breadcrumb-item+.breadcrumb-item::before {
    color: #fff;
}
.counter-part {
    background: url(../img/counter-bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin: 110px 0 0;
}
.counter-oly {
    background: rgba(0, 0, 0, .6);
    padding: 40px 0;
}
.counter-div {
    text-align: center;
}
.counter-icon i {
    font-size: 60px;
    margin-bottom: 40px;
    color: #ff0000;
}
.counter-div h3 {
    font-size: 50px;
    font-weight: var(--bcweight);
    color: var(--white);
    letter-spacing: 1px;
    margin-bottom: 30px;
}
.counter-div p {
    font-size: 18px;
    line-height: 25px;
    color: var(--white);
    width: 180px;
    margin: 0 auto;
}
@media(max-width:991px) {
    .counter-part {
    margin: 60px 0 0;
}
.counter-oly {
    padding: 60px 0 10px;
}
.counter-div {
    margin-bottom: 50px;
}
}@media(min-width:768px) and (max-width:991px) {
    .counter-part {
    margin: 80px 0 0;
}
.counter-oly {
    padding: 80px 0 20px;
}
}.testi-card {
    background: var(--light-white);
    padding: 45px;
    border-radius: 10px;
    margin: 0 15px;
}
.testi-quote {
    padding: 0 6px 22px;
    margin-bottom: 22px;
    border-bottom: 6px solid #ff0000;
    border-radius: 0 0 30px 30px;
}
.testi-quote p {
    font-size: 20px;
}
.testi-meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
.testi-img {
    margin-right: 18px;
}
.testi-img a {
    border-radius: 50%;
    border: 2px solid #ff0000;
    -webkit-box-shadow: 0 10px 25px 0 rgba(0, 0, 0, .15);
    box-shadow: 0 10px 25px 0 rgba(0, 0, 0, .15);
}
.testi-img a img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #fff;
}
.testi-info h4 {
}
.testi-info p {
    font-size: 15px;
}
@media(max-width:1199px) {
    .testi-meta {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.testi-quote {
    text-align: center;
}
.testi-img {
    margin: 0;
}
.testi-info {
    text-align: center;
}
}@media(max-width:991px) {
    .testi-card {
    padding: 35px;
}
}@media(max-width:767px) {
    .testi-card {
    width: 260px;
    margin: 0 8px;
}
.testi-quote p {
    font-size: 18px;
}
}.sponsor-slider a {
    margin: 0 15px;
}
.sponsor-slider a img {
    width: 100%;
    border-radius: 10px;
    background-color: #fff;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}
.sponsor-slider a img:hover {
    opacity: .8;
}
@media(max-width:991px) {
    .sponsor-slider a {
    margin: 0 8px;
}
}.sponsor-part {
    padding-top: 120px;
}
.section-heading h2 {
    font-size: 50px;
}
.section-heading h2::before {
    bottom: -25px;
}
.section-heading h2::after {
    bottom: -32px;
}
@media(max-width:767px) {
    .sponsor-part {
    padding: 60px 0;
}
.section-heading h2 {
    font-size: 40px;
    line-height: 48px;
}
}@media(min-width:768px) and (max-width:991px) {
    .sponsor-part {
    padding: 80px 0;
}
}.form-group {
    margin: 0 50px 50px;
    position: relative;
}
.form-group:focus-within input, .form-group:focus-within textarea {
    border: 2px solid #ff0000;
}
.form-group:focus-within i {
    background: #ff0000;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.form-group input, .form-group textarea {
    width: 100%;
    border: none;
    outline: none;
    background: 0 0;
    border: 1px solid #f5f5f5;
}
.form-group input::-webkit-input-placeholder, .form-group textarea::-webkit-input-placeholder {
    font-size: 14px;
    font-weight: 500;
}
.form-group input:-ms-input-placeholder, .form-group textarea:-ms-input-placeholder {
    font-size: 14px;
    font-weight: 500;
}
.form-group input::-ms-input-placeholder, .form-group textarea::-ms-input-placeholder {
    font-size: 14px;
    font-weight: 500;
}
.form-group input::placeholder, .form-group textarea::placeholder {
    font-size: 14px;
    font-weight: 500;
}
.form-group input {
    height: 60px;
    padding-left: 20px;
    padding-right: 50px;
    border-radius: 10px;
    color: #ff0000;
}
.form-group textarea {
    height: 180px;
    padding-top: 14px;
    padding-left: 20px;
    padding-right: 50px;
    border-radius: 10px;
    color: #ff0000;
}
.form-group i {
    position: absolute;
    top: 21px;
    right: 20px;
    font-size: 18px;
    color: #777;
}
.form-btn {
    text-align: center;
}
@media(max-width:767px) {
    .form-group {
    margin: 0 0 30px;
}
}.intro-part {
    padding-top: 120px;
}
.intro-content {
    text-align: center;
    background-color: #ff0000;
    border-radius: 20px;
    margin: 0 14px;
    padding: 30px 0;
}
.intro-content h1 {
    color: #fff;
    text-shadow: none;
    margin-bottom: 12px;
}
.intro-content p {
    width: 500px;
    font-size: 18px;
    margin: 0 auto 30px;
    color: #fff;
}
.intro-content .btn-inline {
    background-color: #fff;
    color: #ff0000;
}
@media(max-width:767px) {
    .intro-part {
    padding: 60px 0;
}
.intro-content h1 {
    font-size: 38px;
    line-height: 46px;
}
.intro-content p {
    width: 100%}
}@media(min-width:768px) and (max-width:991px) {
    .intro-part {
    padding: 80px 0;
}
}.preloader {
    background: #fff;
    display: block;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100000;
}
.loader {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    display: inline-block;
    padding: 0;
    text-align: left;
    margin: -25px 0 0 -25px;
}
.loader span {
    position: absolute;
    display: inline-block;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    background: #ff0000;
    -webkit-animation: loader 1.5s linear infinite;
    animation: loader 1.5s linear infinite;
}
.loader span:last-child {
    animation-delay: -.9s;
    -webkit-animation-delay: -.9s;
}
@keyframes loader {
    0% {
    transform: scale(0, 0);
    opacity: .8;
}
100% {
    transform: scale(1, 1);
    opacity: 0;
}
}@-webkit-keyframes loader {
    0% {
    -webkit-transform: scale(0, 0);
    opacity: .8;
}
100% {
    -webkit-transform: scale(1, 1);
    opacity: 0;
}
}.faq-area {
    
}
.faq-area .btn-link {
    width: 100%;
    margin: 0;
    text-align: left;
    color: #151a33;
    padding: 18px;
    box-shadow: unset;
    text-decoration: none;
    font-weight: 700;
    font-size: 20px;
}
.faq-area .faq-ques i {
    font-size: 26px;
    margin: auto 20px;
}
.faq-area .card {
    border: 0;
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
    margin-bottom: 30px;
    border-left: 3px solid #ff0000;
    border-radius: 10px!important;
}
.faq-area .card:last-child {
    margin-bottom: 0;
}
.faq-area .card-body {
    border-top: 2px dashed #7e7d7d;
}
}.historic {
    
}
.historic .btn-link { 
    width: 100%;
    margin: 0;
    text-align: left;
    color: #333;
    padding: 18px;
    box-shadow: unset;
    text-decoration: none;
    font-weight: 700;
    font-size: 20px;
}
.historic .btn-link:hover {
    color: #999;
}
.historic .faq-ques i {
    font-size: 26px;
    margin: auto 20px;
}
.historic .card {
    border: 0;
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
    margin-bottom: 20px;
    border-left: 3px solid #ff0000;
    border-radius: 10px!important;
}
.historic .card:last-child {
    margin-bottom: 0;
}
.historic .card-body {
    line-height: 10px !important;
    padding: 15px 20px;
    border-top: 1px solid #f7f7f7;
}
.login {
    margin: 120px;
}
.login .form-group {
    margin: 0;
    margin-bottom: 20px;
    color: #777;
}
.login .login-box {
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
    padding: 20px 30px;
    border-top: 3px solid #ff0000;
    border-radius: 15px;
    background: #222227;
}
.login .login-box h3 {
    font-weight: 700;
    color: #ff0000;
}
.login .login-box p {
    color: #777;
}
.login .custom-control-label {
    color: #777;
}
.login .login-box .login-form {
    margin-top: 20px;
}
.login .login-box .login-form .form-control {
    height: 46px;
    border-radius: 10px;
}
.login .login-box .login-form a {
    font-size: 14px;
    color: #e22c2f;
}
.login .login-box .login-form a:hover {
    color: #d85040;
}
.login .custom-control-input:checked~.custom-control-label::before {
    color: #fff;
    border-color: #ff0000;
    background-color: #ff0000;
}
.login .login-btn {
    padding: 12px 20px;
    border: 2px solid #ff0000;
    background-color: #ff0000;
    color: #fff;
    margin-top: 16px;
    margin-bottom: 14px;
    border-radius: 10px;
    width: 100%;
    transition: all .5s ease-in-out;
}
.login .login-btn:hover {
    background: #16151a;
    border-color: #16151a;
}
.login p a {
    color: #e22c2f;
}
.login p a:hover {
    color: #d85040;
}
.login .social-login {
    margin-top: 20px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
}
.login .social-login a {
    color: #fff;
    padding: 6px 46px;
    font-size: 20px;
    border-radius: 10px;
    transition: all .5s ease-in-out;
}
.login .social-login a:nth-child(1) {
    background: #3b5998;
}
.login .social-login a:nth-child(2) {
    background: #d85040;
}
.login .social-login a:nth-child(3) {
    background: #007bff;
}
.login .social-login a:hover {
    background: #d32f2f;
}
.error-msg {
    padding-top: 200px;
}
.error-msg .error-box h1 {
    font-size: 262px;
    color: #777;
    font-weight: 700;
}
.error-msg .error-box h1 span {
    color: #e22c2f;
    margin: 0 10px;
}
.error-msg .error-box h3 {
    color: #777;
    font-weight: 600;
    margin-bottom: 25px;
    margin-top: 100px;
}
.error-msg .error-box p {
    font-size: 18px;
    color: #777;
    font-weight: 500;
    margin-bottom: 35px;
}
.error-msg .error-box a {
    font-size: 16px;
    color: #fff;
    background: #e22c2f;
    padding: 10px 30px;
    font-weight: 500;
    border: 1px solid #e22c2f;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    border-radius: 50px;
    display: inline-block;
    transition: all .5s ease-in-out;
}
.error-msg .error-box a i {
    margin-right: 8px;
}
.error-msg .error-box a:hover {
    background: #fff;
    color: #e22c2f;
}
.term-condition {
    padding-top: 120px;
    color: #777;
}
.term-condition h3 {
    color: #ff0000;
}
.term-condition ul li i {
    color: #ff0000;
    font-size: 12px;
    margin-right: 5px;
}
.contact-part {
    padding-top: 80px;
}
.contact-info {
    text-align: center;
    border-radius: 10px;
    margin-bottom: 30px;
    padding: 25px 10px;
    background: #fff;
    -webkit-box-shadow: 0 2px 48px 0 rgba(0, 0, 0, .08);
    box-shadow: 0 2px 48px 0 rgba(0, 0, 0, .08);
}
.contact-info i {
    font-size: 45px;
    margin-bottom: 25px;
    color: #ff0000;
}
.contact-info h3 {
    font-size: 28px;
    margin-bottom: 40px;
    position: relative;
}
.contact-info h3::before {
    position: absolute;
    content: "";
    bottom: -15px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    border-radius: 30px;
    background: #ff0000;
}
.contact-info p span {
    display: block;
}
.contact-info a {
    color: #333 !important;
}
.contact-info a:hover {
    color: #ff0000 !important;
}
.contact-form {
    border-radius: 10px;
    padding: 40px;
    background: var(--white);
    -webkit-box-shadow: 0 2px 48px 0 rgba(0, 0, 0, .08);
    box-shadow: 0 2px 48px 0 rgba(0, 0, 0, .08);
}
.contact-label {
    display: block;
    position: relative;
    margin-bottom: 25px;
}
.contact-label:focus-within input, .contact-label:focus-within textarea, .contact-label:focus-within select {
    border: 2px solid #ff0000;
}
.contact-label:focus-within i {
    color: #ff0000;
}
.contact-label input, .contact-label textarea, .contact-label select  {
    border: none;
    outline: none;
    width: 100%;
    height: 50px;
    display: block;
    padding: 0 20px 0 20px;
    border: 2px solid #777;
    border-radius: 10px;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}
.contact-label textarea {
    height: 150px;
    padding: 10px 20px 0 20px;
    resize: none;
}
.contact-label textarea.textarea2 {
    height: 100px;
    padding: 10px 20px 0 20px;
    resize: none;
}
.contact-label i {
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    font-size: 14px;
    line-height: 50px;
    text-align: center;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}
.contact-form .btn {
    width: 100%}
.contact-map {
    padding: 30px;
    border-radius: 10px;
    background: var(--white);
    -webkit-box-shadow: 0 2px 48px 0 rgba(0, 0, 0, .08);
    box-shadow: 0 2px 48px 0 rgba(0, 0, 0, .08);
}
.contact-map iframe {
    height: 528px;
}
@media(max-width:991px) {
    .contact-part {
    padding: 60px 0;
}
.contact-form {
    padding: 50px 15px 45px;
    margin-bottom: 30px;
}
.contact-map {
    padding: 15px;
}
.contact-map iframe {
    height: 300px;
}
}@media(min-width:768px) and (max-width:991px) {
    .contact-part {
    padding: 80px 0;
}
}

/*.about-2 {
    position: absolute;
    bottom: 0;
    right: 40px;
    border-radius: 50%;
    border: 10px solid #fff;
    -webkit-box-shadow: 0 0 30px 20px rgba(0, 0, 0, .1);
    box-shadow: 0 0 30px 20px rgba(0, 0, 0, .1);
    float: left;
}
.about-2::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(91, 68, 114, 0.2)), to(rgba(0, 168, 107, 0.3)));
    background: linear-gradient(rgba(91, 68, 114, 0.2), rgba(0, 168, 107, 0.3));
}
.about-2 img {
    width: 150px;
    height: 150px;
    border-radius: 50%}*/

.no-ar {
    width: 250px;
    display: block;
    float: right;
}
.borda-noar {
    float: left;
}
.no-ar img{
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 5px solid #fff;
}
.no-ar-txt {
    display: block;
    float: left;
    font-weight: bold;
    color: #ff0000;
    line-height:110%;
    margin: 10px 0 0 10px;

}
.no-ar-txt p { 
    max-width: 150px !important;
    

}
.no-ar span {
    max-width: 150px !important;
    color: #333;
}
.player-logo {
    width:200px!important;
    height:180px!important;
    border-radius:0!important;
    box-shadow:none!important;
    border:0!important;
    background:url(../bc-imagens/logo.svg);
    background-repeat: no-repeat!important;
    background-position:center!important;
    background-size:230px!important;
    margin-top:20px!important;
}

.search-popup{
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100%;
    z-index: 99999;
    margin-top: -540px;
    transform: translateY(-100%);
    background-color: rgba(0, 0, 0, 0.9);
    -webkit-transition: all 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition: all 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition: all 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition: all 1500ms cubic-bezier(0.860, 0.000, 0.070, 1.000); /* easeInOutQuint */
    -webkit-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000); /* easeInOutQuint */
}
.search-popup{
    width: 100%;
}
.search-active .search-popup{
    transform: translateY(0%);
    margin-top: 0;
}
.search-popup .close-search {
    position: absolute;
    left: 0;
    right: 0;
    top: 75%;
    margin: 0 auto;
    margin-top: -200px;
    border-radius: 50%;
    text-align: center;
    background-color: #ff0000;
    width: 70px;
    cursor: pointer;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    opacity: 0;
    visibility: hidden;
    height: 70px;
    line-height: 70px;
    text-align: center;
}
.search-popup .close-search i{
    position: relative;
    font-size: 30px;
    color: #ffffff;
}
.search-active .search-popup .close-search{
    visibility: visible;
    opacity: 1;
    top: 50%;
    -webkit-transition-delay: 1500ms;
    -moz-transition-delay: 1500ms;
    -ms-transition-delay: 1500ms;
    -o-transition-delay: 1500ms;
    transition-delay: 1500ms;
}
.search-popup form{
    position: absolute;
    max-width: 700px;
    top: 50%;
    left: 15px;
    right: 15px;
    margin:-35px auto 0;
    transform: scaleX(0);
    transform-origin: center;
    background-color: transparent;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}
.search-active .search-popup form{
    transform: scaleX(1);
    -webkit-transition-delay: 1200ms;
    -moz-transition-delay: 1200ms;
    -ms-transition-delay: 1200ms;
    -o-transition-delay: 1200ms;
    transition-delay: 1200ms;
}
.search-popup .form-group{
    position:relative;
    margin:0px; 
    overflow: hidden;
}
.search-popup .form-group input[type="text"],
.search-popup .form-group input[type="search"]{
    position:relative;
    display:block;
    font-size:18px;
    line-height: 50px;
    color:#333;
    height:70px;
    width:100%;
    padding: 10px 30px;
    background-color: #ffffff;
    -webkit-transition:all 500ms ease;
    -moz-transition:all 500ms ease;
    -ms-transition:all 500ms ease;
    -o-transition:all 500ms ease;
    transition:all 500ms ease;
    font-weight:500;
}
.search-popup .form-group input[type="submit"], .search-popup .form-group button {
    position: absolute;
    right: 30px;
    top: 0px;
    height: 70px;
    line-height: 70px;
    background: transparent;
    text-align: center;
    font-size: 24px;
    color: #333;
    padding: 0;
    cursor: pointer;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    border: none;
}
.search-popup .form-group input[type="submit"]:hover,
.search-popup .form-group button:hover{
    color: #333;
}
.search-popup input::placeholder,
.search-popup textarea::placeholder{
    color:#333;
}
.search-popup .close-search.style-two{
    position: absolute;
    right: 25px;
    left: auto;
    color:#ffffff;
    width:auto;
    height:auto;
    top:25px;
    margin:0px;
    border:none;
    background:none !important;
    box-shadow:none !important;
    -webkit-transition:all 500ms ease;
    -moz-transition:all 500ms ease;
    -ms-transition:all 500ms ease;
    -o-transition:all 500ms ease;
    transition:all 500ms ease;
}
.search-popup .close-search.style-two i{
    font-size:20px;
    color:#ffffff;
}
.header-src-btn {
    float: right;
    position: relative;
    margin-top: 0px;
}
.search-box-btn.search-box-outer { 
    margin-top: 0px;
}
.search-box-btn.search-box-outer i {
    font-size: 16px;
    display: inline-block;
    background: transparent;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 3px;
    color: #ff0000;
    cursor: pointer;
    border-radius: 100%;
}
.search-box-btn.search-box-outer i {
    background: #fff;
    -webkit-transition:all 500ms ease;
    -moz-transition:all 500ms ease;
    -ms-transition:all 500ms ease;
    -o-transition:all 500ms ease;
    transition:all 500ms ease;
}
.search-box-btn.search-box-outer i:hover {
    color: #fff;
    background: #333;
    -webkit-transition:all 500ms ease;
    -moz-transition:all 500ms ease;
    -ms-transition:all 500ms ease;
    -o-transition:all 500ms ease;
    transition:all 500ms ease;
}
.cencel {
    margin-left:180px;
}
.div-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px; height: 0; overflow: hidden;
}
.div-container iframe,
.div-container object,
.div-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.video-aovivo {
    background: #fbde25 url(../bc-imagens/bg_video.svg) repeat;
}
.video-aovivo-borda div {
    border-radius: 20px !important;
}

.blog-box {
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 15px;
    margin-bottom: 40px;
}
.blog-box-pub {
    border: 1px solid #e5e5e5;
    padding:30px;
    margin-bottom: 40px;
    border-radius: 10px;
}
.blog-box-pub a {
    color: #333 !important;
}
.blog-box-pub a:hover {
    color: #ff0000 !important;
}
.blog-box-pub-title {
    letter-spacing: .2rem;
    font-size: 12px;
    text-align: center;
    color: #333;
    background: #e5e5e5;
    padding:1px 0;
    border-radius:10px;
    margin-bottom:20px;
}
.blog-part blockquote {
    padding: 50px;
    background: #f7f7f7;
    border-left: 5px solid #ff0000;
    margin-bottom: 45px;
    border-radius: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.blog-part blockquote p {
    font-size: 22px;
    font-style: italic;
    line-height: 35px;
    color: #333;
}
.blog-part blockquote span {
    font-weight: 500;
    -ms-flex-item-align: start;
    align-self: flex-start;
    color: #ff0000;
    position: relative;
    margin-left: 40px;
}
.blog-part blockquote span::before {
    position: absolute;
    content: '';
    width: 30px;
    height: 3px;
    left: -40px;
    top: 12px;
    border-radius: 30px;
    background: #ff0000;
}
.leg {
    color:#999;
    font-size: 14px;
}

#progress-indicator {
  width: 0;
  height: 4px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1024;
  background-color: #fff; }


.logo-mb {
    display: inline-flex;
    position: absolute;
    top:0px;
}
.logo-mb img {
    min-width: 150px !important;
}
.search-mb {
    display: inline-flex;
    position: absolute;
    top:20px;
    float: right;
    right: 130px;
}

.menu-container { 
  width: 100%;
  margin: 0 auto;
  padding: 0 !important;
  padding-top: 30px !important;
}
.menu-mobile {
  display: none;
  color: #fff !important;
  padding: 20px;
  margin-top: -10px;
}
.menu-mobile:after {
  content: "\f394";
  font-family: "Ionicons";
  font-size: 2.5rem;
  padding: 0;
  float: right;
  position: relative;
  top: 50%;
  transform: translateY(-25%);
}
.menu-dropdown-icon:before {
  content: "\f489";
  font-family: "Ionicons";
  display: none;
  cursor: pointer;
  float: right;
  padding: 10px 2em;
  background: transparent;
  color: #fff;
}
.menu > ul {
  margin: 0 auto;
  width: 100%;
  list-style: none;
  padding: 0 !important;
  position: relative;
  /* IF .menu position=relative -> ul = container width, ELSE ul = 100% width */
  box-sizing: border-box;
  margin-top: 40px !important;
  padding-bottom: 20px !important;
}
.menu > ul:before,
.menu > ul:after {
  content: "";
  display: table;
}
.menu > ul:after {
  clear: both;
}
.menu > ul > li {
  float: left;
  background: transparent;
  padding: 0 !important;
  margin: 0 !important;
}
.menu > ul > li a {
    color: #fff !important;
  text-decoration: none;
  padding: 10px 20px !important;
  display: block;
}
.menu > ul > li:hover {
  background: #e20000;
  border-radius: 10px;
}
.menu > ul > li > ul {

  display: none;
  width: 100%;
  background: transparent;
  padding: 0px !important;
  position: absolute;
  z-index: 99;
  left: 0;
  margin: 0;
  list-style: none;
  box-sizing: border-box;
}
.menu > ul > li > ul:before,
.menu > ul > li > ul:after {
  content: "";
  display: table;
}
.menu > ul > li > ul:after {
  clear: both;
}

.menu > ul > li > ul > li {
  padding: 0 !important;
  margin: 0 !important;
  list-style: none;
  width: 25%;
  background: #333;
  float: left;
  border-top: 1px solid #222;
  -webkit-transition:all 500ms ease;
    -moz-transition:all 500ms ease;
    -ms-transition:all 500ms ease;
    -o-transition:all 500ms ease;
    transition:all 500ms ease;
}
.menu > ul > li > ul > li:hover {
color: #ff0000 !important;
  background: #fbde25;
  -webkit-transition:all 500ms ease;
    -moz-transition:all 500ms ease;
    -ms-transition:all 500ms ease;
    -o-transition:all 500ms ease;
    transition:all 500ms ease;
}
.menu > ul > li > ul > li a {
  color: #fff;
  padding: 0.2em 0;
  width: 95%;
  display: block;
  -webkit-transition:all 500ms ease;
    -moz-transition:all 500ms ease;
    -ms-transition:all 500ms ease;
    -o-transition:all 500ms ease;
    transition:all 500ms ease;
}
.menu > ul > li > ul > li a:hover {
  color: #ff0000 !important;
  padding: 0.2em 0;
  width: 95%;
  display: block;
  -webkit-transition:all 500ms ease;
    -moz-transition:all 500ms ease;
    -ms-transition:all 500ms ease;
    -o-transition:all 500ms ease;
    transition:all 500ms ease;
}
.menu > ul > li > ul > li > ul {
  display: block;
  padding: 0;
  margin: 10px 0 0;
  list-style: none;
  box-sizing: border-box;
}
.menu > ul > li > ul > li > ul:before,
.menu > ul > li > ul > li > ul:after {
  content: "";
  display: table;
}
.menu > ul > li > ul > li > ul:after {
  clear: both;
}
.menu > ul > li > ul > li > ul > li {
  float: left;
  width: 100%;
  padding: 10px 0;
  margin: 0;
  font-size: 0.8em;
}
.menu > ul > li > ul > li > ul > li a {
  border: 0;
}
.menu > ul > li > ul.normal-sub {
  width: 300px;
  left: auto;
  padding: 10px 20px;
}
.menu > ul > li > ul.normal-sub > li {
  width: 100%;
}
.menu > ul > li > ul.normal-sub > li a {
  border: 0;
  padding: 1em 0;
}
/* ––––––––––––––––––––––––––––––––––––––––––––––––––
Mobile style's
–––––––––––––––––––––––––––––––––––––––––––––––––– */
@media only screen and (max-width: 959px) {
  .menu-container {
    width: 100%;
  }
  .menu-mobile {
    display: block;
  }
  .menu-dropdown-icon:before {
    display: block;
  }
  .menu > ul {
    display: none;
  }
  .menu > ul > li {
    width: 100%;
    float: none;
    display: block;
  }
  .menu > ul > li a {
    padding: 1.5em;
    width: 100%;
    display: block;
  }
  .menu > ul > li > ul {
    position: relative;
  }
  .menu > ul > li > ul.normal-sub {
    width: 100%;
  }
  .menu > ul > li > ul > li {
    float: none;
    width: 100%;
    margin-top: 20px;
  }
  .menu > ul > li > ul > li:first-child {
    margin: 0;
  }
  .menu > ul > li > ul > li > ul {
    position: relative;
  }
  .menu > ul > li > ul > li > ul > li {
    float: none;
  }
  .menu .show-on-mobile {
    display: block;
  }
}
@media(max-width:580px) {
    .search-mb {
    right: 100px;
    }
}


/*#radios_lista label{
    display: block;
    border-radius: 50px;
    background-color:#fff;
    padding: 5px 20px !important;
    cursor: pointer;
    margin:0;
    padding:0;
}*/


[type="radio"]:checked,
[type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}
[type="radio"]:checked + label,
[type="radio"]:not(:checked) + label
{
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 25px;
    display: block;
}
[type="radio"]:checked + label:before,
[type="radio"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 3px;
    width: 18px;
    height: 18px;
    border: 1.5px solid #ff0000;
    border-radius: 100%;
    background: #fff;
}
[type="radio"]:checked + label:after,
[type="radio"]:not(:checked) + label:after {
    content: '';
    width: 12px;
    height: 12px;
    background: #ff0000;
    position: absolute;
    top: 6px;
    left: 3px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
[type="radio"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}
[type="radio"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}
.enquete span {
    display: block;
    width: 100%;
    line-height: 20px;
    background-color: #fff;
    padding:3px 15px;
    margin-bottom: 20px;
    margin-top: -5px;
    border-radius: 10px;
}
ul.enquete_result {
    list-style: none;
    margin-bottom: 0;
    display: block;
    width: 100%;
}
ul.enquete_result li{
    line-height: 20px;
    background-color: #fff;
    padding:15px;
    margin-bottom: 20px;
    border-radius: 10px;
}

.about-part {
    /*background: url(../bc-imagens/bg_pgm.svg) #fbde25 center no-repeat;*/
    background: #fbde25 center no-repeat;
}
.progress {
    background:#f7f7f7;
}
.progress-bar {
    background: #ff0000;
}

.carousel-item img {
    border-radius: 10px !important;
}

.tooltip-inner {
  background-color: #ff0000 !important;
  color: #fff !important;
}
.bs-tooltip-top .arrow::before, .bs-tooltip-auto[x-placement^="top"] .arrow::before {
  border-top-color: #ff0000 !important;
  margin-top: -2px !important;
}

.bs-tooltip-right .arrow::before, .bs-tooltip-auto[x-placement^="right"] .arrow::before {
  border-right-color: #ff0000 !important;
}


.bs-tooltip-bottom .arrow::before, .bs-tooltip-auto[x-placement^="bottom"] .arrow::before {
  border-bottom-color: #ff0000 !important;
}


.bs-tooltip-left .arrow::before, .bs-tooltip-auto[x-placement^="left"] .arrow::before {
  border-left-color: #ff0000 !important;
}

.carousel-control-next span {
    border: 1px solid red;
    padding: 20px;
}
.carousel-control-next-icon i {
    color: red !important;
    border: 1px solid red;
    padding: 20px;
}
.carousel-control .icon-prev, .carousel-control .icon-next {
    font-size: 100px; 
    margin-top: -50px;
    color: #fff;
}

noscript {
    display: block;
    min-width: 100%;
    background-color: #000;
    text-align: center;
    padding: 20px 0;
    color: #fff;
}
