/* Fonts
================================================== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

/* Global styles
================================================== */
body,
html {
    background: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
}

.body-wrapper {
    position: relative;
    overflow: hidden;
}

/* Links / Buttons */
a:link,
a:visited {
    text-decoration: none;
}

:focus {
    outline: none;
    box-shadow: none;
}

a {
    color: #000;
    text-decoration: none;
    -webkit-transition: 400ms;
    -moz-transition: 400ms;
    -o-transition: 400ms;
    transition: 400ms;
}

a:hover {
    color: #CE1432;
    text-decoration: underline;
}

a.read-more {
    color: #000;
    font-weight: 700;
    text-decoration: underline;
}

a.read-more:hover {
    color: #CE1432;
}

.btn {
    font-weight: 500;
}

.btn-lg {
    font-size: 15px;
    padding: 15px 20px;
}

.btn-white {
    background: #fff;
    color: #CE1432;
}

.btn-white:hover {
    color: #000;
    text-decoration: none;
}

.btn-red {
    background: #CE1432;
    color: #fff;
}

.btn-red:hover {
    background: #000;
    color: #fff;
}

.btn-outline-white {
    border-color: #fff;
    color: #fff;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 1);
    color: #CE1432;
    text-decoration: none;
}

/* Typography */
h1 {
    font-size: 70px;
    margin-bottom: 15px;
}

h2 {
    font-size: 48px;
    margin-bottom: 15px;
}

h3 {
    font-size: 30px;
    margin-bottom: 15px;
}

h4 {
    font-size: 22px;
    margin-bottom: 15px;
}

h5 {
    font-size: 16px;
    margin-bottom: 15px;
}

/* Font Weight */
.fw-500 {
    font-weight: 500;
}

.fw-600 {
    font-weight: 600;
}

/* Bg Colors */
.bg-grey {
    background: #3F3F3F;
    color: #fff;
}

.bg-red {
    background: #CE1432;
    color: #fff;
}

/* Topbar
================================================== */
.top-bar {
    font-size: 14px;
    padding: 10px 0;
}

/* Top Social Icons */
.top-social ul {
    display: inline-flex;
}

.top-social ul>li {
    margin: 0 7px;
}

.top-social ul>li:last-child {
    margin-right: 0;
}

.top-social ul>li a {
    color: #C4C4C4;
    font-size: 16px;
}

.top-social ul>li a:hover {
    color: #fff;
}

/* Header
================================================== */
.header-top {
    padding: 20px 0;
}

.header .logo img {
    width: 157px;
}

/* Header Action Items */
ul.header-action-item>li {
    position: relative;
    margin-right: 20px;
}

ul.header-action-item li>a {
    display: inline-block;
    padding: 5px;
}

ul.header-action-item li.hamburger-menu:hover .dropdown-menu {
    display: block;
}

/* Hamburger Menu */
.dropdown-item {
    font-size: 14px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 7px 0;
}

.dropdown-item:hover {
    background: transparent;
    color: #CE1432;
    text-decoration: none;
}

.dropdown-item:last-child {
    border: 0;
}

/* Filter List */
.filter-list .dropdown-menu {
    width: 100%;
}

.filter-list .filter-title {
    font-size: 12px;
    font-weight: 500;
    color: #929292;
    padding-bottom: 10px;
}

.filter-list .filter-title a.close-btn {
    float: right;
}

.filter-list .form-check {
    margin-bottom: 10px;
}

.filter-list label.form-check-label {
    font-size: 14px;
    font-weight: 500;
    color: #929292;
}

/* Search Bar */
.search-bar>a {
    position: relative;
    z-index: 10;
}

.search-bar .search-display {
    position: absolute;
    display: none;
    left: -5px;
    top: 1px;
    width: 300px;
    border-radius: 50px;
    box-shadow: 10px 14px 24px rgba(0, 0, 0, 0.12);
    padding-left: 30px;
    padding-right: 10px;
    z-index: 8;
}

.search-bar .search-display.show {
    display: block;
}

.search-bar .search-display input {
    font-size: 13px;
    border: 0;
    height: 33px;
}

.search-bar .search-display input:focus {
    box-shadow: none;
}

/* Account Links */
ul.account-links {
    border-bottom: 1px solid #C4C4C4;
}

ul.account-links li a {
    display: inline-block;
    border-bottom: 3px solid transparent;
    color: #C4C4C4;
    font-size: 14px;
    font-weight: 500;
    padding: 2px 10px;
}

ul.account-links li.active a,
ul.account-links li a:hover {
    color: #000;
    border-color: #000;
    text-decoration: none;
}

/* Mobile Avatar */
.mobile-avatar .dropdown-toggle:after {
    content: none;
}

.mobile-avatar a.dropdown-toggle {
    font-size: 20px;
    color: #c4c4c4;
}

/* Dropdown Menu */
.dropdown-menu {
    border-radius: 16px;
    box-shadow: 10px 14px 24px rgb(0 0 0 / 12%);
    padding: 15px 20px;
}

/* Navbar
================================================== */
.navbar {
    background: #CE1432;
    padding: 0;
}

.navbar-nav .nav-link {
    color: #fff;
}

.navbar-nav .nav-link:hover {
    text-decoration: none;
}

.navbar-nav .nav-link:hover,
.navbar-nav .active .nav-link {
    border-color: #C4C4C4;
}

/* Navbar Dropdown Menu */
.navbar .dropdown-menu li form {
    position: relative;
    border-bottom: 1px solid #ccc;
}

.navbar .dropdown-menu li form .form-control {
    border: 0;
    padding: 12px 28px 12px 12px;
}

.navbar .dropdown-menu li form .btn {
    position: absolute;
    top: 50%;
    right: 3px;
    padding: 4px;
    transform: translateY(-50%);
}

.navbar .dropdown-menu li a {
    display: block;
    padding: 10px;
    border-bottom: 1px solid #C4C4C4;
}

.navbar .dropdown-menu li a:hover,
.navbar .dropdown-menu li.active a {
    text-decoration: none;
}

.navbar .dropdown-menu li:last-child a {
    border: 0;
}

.navbar .dropdown-toggle:after {
    content: none;
    float: right;
    margin-top: 10px;
}

.navbar-nav .nav-item a.toggleBtn {
    display: none;
}

/* Navbar Filter */
.navbar .filter-list>a {
    display: inline-block;
    width: 25px;
    line-height: 35px;
    margin-right: 15px;
}

.navbar .filter-list svg path {
    fill: #fff;
}

/* Navbar Search Form */
.navbar .search-bar {
    position: relative;
    flex-grow: 1;
}

.navbar .search-bar .form-control {
    font-size: 13px;
    border: 0;
    height: 34px;
    background: #fff;
    border-radius: 50px;
    padding-left: 40px;
    box-shadow: 30px 24px 64px rgba(0, 0, 0, 0.07);
}

.navbar .search-bar button {
    position: absolute;
    top: 4px;
    left: 4px;
    border: 0;
    background: transparent;
}

/* Navbar Toggle Menu */
.navbar-toggler {
    position: relative;
    padding: 0;
}

.navbar-toggler svg {
    position: relative;
}

.navbar-toggler.collapsed svg path {
    fill: #000;
}

.navbar-toggler svg path {
    fill: #fff;
}

.navbar-toggler.collapsed {
    background: #fff;
    color: #000;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler.collapsed:before {
    content: none;
}

.navbar-toggler:before {
    content: '';
    position: absolute;
    top: -10px;
    left: -160px;
    background: #CE1432;
    color: #fff;
    border-top-right-radius: 10px;
    width: 200px;
    height: 60px;
}

/* Mobile Nav */
.mobile-nav a.dropdown-toggle {
    display: block;
    font-size: 22px;
    font-weight: 500;
    color: #fff;
}

.mobile-nav .dropdown-toggle:after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
}

.mobile-nav a.dropdown-toggle:hover {
    text-decoration: none;
}

.mobile-nav .dropdown .dropdown-menu {
    position: relative;
    background: transparent;
    border: 0;
    padding: 0;
    box-shadow: none;
}

.mobile-nav .dropdown .dropdown-menu .dropdown-item {
    font-size: 15px;
    color: #fff;
    border: 0;
    padding: 6px 0;
}

.mobile-nav .dropdown .dropdown-menu .dropdown-item:hover {
    text-decoration: underline;
}

/* Content Section
================================================== */
/* Title */
.title {
    margin-bottom: 30px;
}

/* Topics */
.topics h5.block-title {
    font-weight: 600;
    color: #929292;
    margin: 20px 0;
}

.topics .list-post-item {
    margin-bottom: 50px;
}

/* Post Content Style */
.post-content .post-meta {
    font-size: 13px;
    color: #929292;
    margin-bottom: 8px;
}

.post-content .post-meta a {
    color: #929292;
    font-weight: 500;
    text-decoration: underline;
}

.post-content .post-meta a:hover {
    color: #000;
}

.post-content h2 {
    font-size: 35px;
}

.post-content h3 {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
}

.post-content p {
    color: #929292;
    margin-bottom: 0;
}

.post-content a.read-more {
    font-size: 14px;
}

/* Post Block Style */
.post-block-style {
    margin-bottom: 50px;
}

.post-block-style .post-thumb img {
    width: 100%;
    border-radius: 5px;
}

.post-block-style .post-content {
    padding-top: 10px;
}

/* List Post Item */
.list-post-item .post-block-style {
    border-bottom: 1px solid #C4C4C4;
    margin: 0;
    padding: 14px 0;
    overflow: hidden;
}

.list-post-item .post-block-style:first-child {
    padding-top: 0;
}

.list-post-item .post-block-style:last-child {
    border-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.list-post-item .post-thumb {
    float: left;
    width: 70px;
}

.list-post-item .post-thumb img {
    border-radius: 0;
}

.list-post-item .post-content {
    margin-top: -2px;
    padding: 0 0 0 85px;
}

.list-post-item .post-content .post-meta {
    margin-bottom: 2px;
}

.list-post-item .post-content h3 {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0;
}

/* Image Scale Animation */
.img-scale-animate {
    overflow: hidden;
}

.img-scale-animate img {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 1.5s ease-out;
    -moz-transition: all 1.5s ease-out;
    -ms-transition: all 1.5s ease-out;
    -o-transition: all 1.5s ease-out;
    transition: all 1.5s ease-out;
}

.img-scale-animate:hover img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

/* Image Overlay Post */
.img-overlay-post {
    position: relative;
    border-radius: 5px;
}

.img-overlay-post:before,
.featuredPostSlider .carousel-item:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 80%;
    border-radius: 5px;
    background: rgb(0, 0, 0);
    background: -moz-linear-gradient(358.04deg, rgba(0, 0, 0, 1) 2%, rgba(0, 0, 0, 0) 72%);
    background: -webkit-linear-gradient(358.04deg, rgba(0, 0, 0, 1) 2%, rgba(0, 0, 0, 0) 72%);
    background: linear-gradient(358.04deg, rgba(0, 0, 0, 1) 2%, rgba(0, 0, 0, 0) 72%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#000000", GradientType=1);
    z-index: 1;
}

.img-overlay-post .post-content {
    color: #fff;
    position: absolute;
    bottom: 0;
    padding: 30px;
    z-index: 10;
}

.img-overlay-post .post-meta,
.featuredPostSlider .post-meta {
    color: #fff;
}

.img-overlay-post .post-content h2,
.img-overlay-post .post-content h2 a,
.featuredPostSlider .post-content h2 a,
.featuredPostSlider .post-content a.read-more,
.img-overlay-post .post-content a.read-more {
    color: #fff;
}

.img-overlay-post .post-content h2 a:hover,
.featuredPostSlider .post-content h2 a:hover {
    opacity: 0.9;
}

.img-overlay-post .post-content a.read-more:hover,
.featuredPostSlider .post-content a.read-more:hover {
    color: #CE1432;
}

/* Featured Post */
.featuredPostSlider {
    color: #fff;
    margin-bottom: 40px;
}

.featuredPostSlider .carousel-inner {
    border-radius: 5px;
}

.featuredPostSlider .carousel-item img {
    height: 280px;
}

.featuredPostSlider .carousel-caption {
    left: 0;
    right: 0;
    padding: 30px;
    text-align: left;
    z-index: 10;
}

.featuredPostSlider .post-content p {
    color: #fff;
}

.featuredPostSlider .carousel-indicators {
    align-items: center;
    z-index: 11;
}

.featuredPostSlider .carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 50%;
}

.featuredPostSlider .carousel-indicators .active {
    width: 14px;
    height: 14px;
}


/* Single Post
================================================== */
.single-post-details {
    padding: 25px 0;
}

.single-post-area-end {
    padding-top: 60px;
}

/* Banner Single Post */
.banner-single-post img {
    border-radius: 5px;
}

.figure-caption {
    background: #fff;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    padding: 20px 15px 5px;
}

.figure-caption span {
    display: block;
    padding-bottom: 5px;
}

.figure-caption h2 {
    font-size: 28px;
    line-height: 1.3;
    color: #000;
    margin-bottom: 0;
}

/* Article */
.entry-content p {
    color: #3F3F3F;
    margin-bottom: 20px;
}

/* Post Print */
.post-print {
    font-size: 14px;
    font-weight: 600;
    color: #000;
    margin-bottom: 10px;
}

.post-print a {
    display: inline-block;
    color: #000;
    margin: 0 30px 15px 0;
    text-decoration: none;
}

.post-print a:hover {
    color: #CE1432;
    text-decoration: underline;
}

/* Share Social */
.share-items {
    font-size: 13px;
    color: #929292;
}

.share-items span.share-title {
    display: inline-block;
    margin-right: 15px;
}

.share-items span.share-social a {
    display: inline-block;
    font-size: 15px;
    color: #C4C4C4;
    margin: 0 4px;
}

.share-items span.share-social a:hover {
    color: #000;
}

/* Sidebar
================================================== */
.sidebar .widget {
    margin-bottom: 35px;
}

.sidebar .widget h5.widget-title {
    color: #929292;
    margin-bottom: 25px;
}

.sidebar .widget.border-top {
    border-color: #C4C4C4 !important;
    padding-top: 20px;
}

/* Newsletter Widget */
.sidebar .newsletter-inner {
    padding: 25px 40px;
}

.sidebar .newsletter .title {
    margin-bottom: 18px;
}

.sidebar .newsletter .title h3 {
    margin-bottom: 5px !important;
}

/* Overlay Post Widget */
.sidebar .img-overlay-post .post-content {
    padding: 0 20px 25px;
}

.sidebar .img-overlay-post .post-content h2 {
    font-size: 20px;
}

/* Top News */
.sidebar .post-block-style {
    margin-bottom: 25px;
}

.sidebar .list-post-item .post-block-style {
    border: 0;
    margin: 0;
    padding: 0 0 25px;
}

/* Features Slide Widget */
.sidebar .features-slide-widget {
	margin-bottom: 70px;
}
.features-slide-widget .carousel-inner {
    border-radius: 5px;
}

.features-slide-widget .carousel-item:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 60%;
/*     background: rgb(206, 20, 50);
    background: -moz-linear-gradient(19.28deg, rgba(206, 20, 50, 1) 13%, rgba(206, 20, 50, 0) 77%);
    background: -webkit-linear-gradient(19.28deg, rgba(206, 20, 50, 1) 13%, rgba(206, 20, 50, 0) 77%);
    background: linear-gradient(19.28deg, rgba(206, 20, 50, 1) 13%, rgba(206, 20, 50, 0) 77%); */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#CE1432", endColorstr="#CE1432", GradientType=1);
    z-index: 1;
}

.features-slide-widget .carousel-caption {
    left: 20%;
    right: 20%;
    margin-bottom: 25px;
    z-index: 10;
}

.features-slide-widget .carousel-caption h3 {
    font-size: 24px;
    font-weight: 500;
}

.features-slide-widget .carousel-control-next,
.features-slide-widget .carousel-control-prev {
    width: 20%;
    height: 20px;
    top: inherit;
    bottom: -30px;
    opacity: 1;
}

.features-slide-widget .carousel-control-next-icon,
.features-slide-widget .carousel-control-prev-icon {
    width: 20px;
    height: 20px;
}

.features-slide-widget .carousel-indicators {
    margin-bottom: -26px;
}
.sidebar .features-slide-widget .carousel-indicators button {
	border: 0 !important;
}
.features-slide-widget .carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
	background: #ccc;
    border: 0;
    border-radius: 10px;
}
.features-slide-widget .carousel-indicators button.active {
	background: #CE1432;
}
.features-slide-widget .carousel-control-next-icon, 
.features-slide-widget .carousel-control-prev-icon {
	background: transparent;
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23CE1432'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e")
}
.features-slide-widget .carousel-control-next-icon {
	transform: rotate(180deg);
}

/* Categories Widget */
.tags-widget ul.tag-list li {
    display: inline-block;
    margin: 0 2px 10px 0;
}

.tags-widget ul.tag-list li a {
    display: inline-block;
    border: 1px solid #E4E4E4;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    color: #929292;
    padding: 4px 12px;
}

.tags-widget ul.tag-list li a:hover {
    background: #CE1432;
    border-color: #CE1432;
    color: #fff;
    text-decoration: none;
}

/* Support Reader Widget */
.support-reader a {
    display: block;
    position: relative;
    border: 1px solid #CE1432;
    border-radius: 5px;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    color: #929292;
    padding: 12px 75px 12px 20px;
}

.support-reader a:after {
    content: '';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: url('../images/arow-btn-red.svg') no-repeat 0 0;
    background-size: contain;
    width: 24px;
    height: 18px;
    transition: 400ms;
}

.support-reader a:hover:after {
    right: 25px;
}

.support-reader a:hover {
    color: #CE1432;
    text-decoration: none;
}

/* Convesion Page
================================================== */
body.conversion .content-inner-wrapper {
    padding-top: 35px;
}

/* Conversion Header */
.conversion-header {
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.conversion-header:before,
.thank-you-card:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgb(206, 20, 50);
    background: -moz-linear-gradient(350.97deg, rgba(206, 20, 50, 1) 14%, rgba(206, 20, 50, 0) 82%);
    background: -webkit-linear-gradient(350.97deg, rgba(206, 20, 50, 1) 14%, rgba(206, 20, 50, 0) 82%);
    background: linear-gradient(350.97deg, rgba(206, 20, 50, 1) 14%, rgba(206, 20, 50, 0) 82%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#CE1432", endColorstr="#CE1432", GradientType=1);
    z-index: 1;
}

.conversion-header .title {
    position: relative;
    padding: 180px 0;
    z-index: 10;
}

.conversion-header .title h1,
.conversion-header .title h2 {
    color: #fff;
}

.conversion-header .title h2 {
    font-size: 40px;
}

/* Packages */
.packages .col-left,
.packages .col-right {
    width: 100%;
}

.packages .col-left {
    display: flex;
    border-bottom: 1px solid #929292;
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.packages .card:first-child {
    margin-top: 40px;
}

.packages .card {
    border-color: #CE1432;
    border-radius: 5px;
    padding: 20px;
    margin-bottom: 25px;
}

.packages .count {
    font-size: 100px;
    font-weight: 700;
    line-height: 85px;
    color: #C4C4C4;
    margin-right: 20px;
}

.packages .price h3 {
    color: #CE1432;
    font-size: 25px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 2px;
}

.packages .price p {
    color: #929292;
    font-size: 15px;
    font-style: italic;
    line-height: 24px;
    margin-bottom: 0;
}

.packages .price p span {
    position: relative;
    display: inline-block;
}

.packages .price p span:last-child {
    padding-left: 10px;
    margin-left: 5px;
}

.packages .price p span:last-child:before {
    content: 'l';
    position: absolute;
    left: 0;
}

/* Payment Details */
.payment-details {
    background: #EAEAEA;
    border-radius: 5px;
    padding: 40px 25px;
    margin-bottom: 25px;
}

.payment-details .title h3,
.payment-details .title p {
    color: #4E4E4E;
}

.payment-details .title h3 {
    font-size: 30px !important;
    margin-bottom: 5px;
}

.master-card img {
    width: 163px;
    margin-left: 10px;
}

.paypal-btn img {
    width: 73px;
    margin-left: 5px;
}

.terms {
    color: #4E4E4E;
    font-size: 13px;
}

.terms a {
    color: #4E4E4E;
    font-weight: 700;
    text-decoration: underline;
}

.terms a:hover {
    color: #000;
}

/* Form Control */
.form-style1 .form-group {
    margin-bottom: 10px;
}

.form-style1 .form-control {
    background: transparent;
    border-color: #929292;
    border-radius: 5px;
    color: #4E4E4E;
    padding: 8px 20px;
    resize: none;
}

.form-style1 .form-check {
    margin: 30px 0 25px;
}

.form-style1 .form-label,
.form-style1 .form-check-label {
    color: #4E4E4E;
}

.form-style1 .form-check-label {
    font-size: 13px;
}

/* Subscription Option */
.subscription {
    margin: 20px 0;
}

.subscription .nav-tabs {
    border: 0;
}

.subscription .nav-tabs .nav-item {
    width: 50%;
}

.subscription .nav-tabs .nav-link {
    font-size: 10px;
    font-weight: 600;
    color: #4E4E4E;
    width: 100%;
    border: 1px solid #929292;
    border-radius: 5px;
    padding: 12px;
}

.subscription .nav-tabs .nav-link.active {
    border-bottom: 0;
    border-right: 0;
    background: transparent;
}

.subscription .nav-tabs .nav-item:last-child .nav-link.active {
    border-left: 0;
    border-right: 1px solid #929292;
}

.subscription .tab-content {
    padding: 30px 0 20px;
}

.selected-label {
    position: relative;
    width: 100%;
}

.selected-label input {
    display: none;
}

.subscription-plan {
    margin: 0 4px;
    width: 33.333%;
}

.selected-content {
    font-size: 26px;
    font-weight: 600;
    line-height: 1;
    color: #4E4E4E;
    text-align: center;
    border-radius: 3px;
    border: solid 1px #929292;
    cursor: pointer;
    padding: 12px 10px 20px;
    transition: .3s ease-in-out all;
}

.selected-content span.label {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.3;
    min-height: 50px;
    padding-bottom: 15px;
    text-align: center;
}

.selected-label input:checked~.selected-content {
    border: solid 2px #CE1432;
}

/* Thank You Card */
.thank-you-card {
    position: relative;
}

.thank-you-card:before,
.thank-you-card img {
    border-radius: 5px;
}

.thank-you-card .text {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    width: 400px;
    margin: 0 auto;
    z-index: 10;
}

.thank-you-card .text h3,
.thank-you-card .text p {
    color: #fff;
}

/* Newsletter
================================================== */
.newsletter {
    margin-bottom: 20px;
}

.newsletter-inner {
    border-radius: 5px;
    color: #fff;
    padding: 25px 30px;
}

.newsletter .headline h3 {
    line-height: 1.1;
}

.newsletter .headline p {
    font-size: 16px;
}

.newsletter .form-group {
    position: relative;
}

.newsletter .form-control {
    background: transparent;
    color: #fff;
    border-color: #fff;
    padding: 6px 50px 6px 20px;
}

.newsletter .btn {
    background: transparent url(../images/arow-btn.svg) no-repeat 0 0;
    background-size: contain;
    border: 0;
    position: absolute;
    right: 15px;
    top: 50%;
    font-size: 0;
    width: 24px;
    height: 18px;
    transform: translateY(-50%);
}

.newsletter input:focus {
    box-shadow: none;
}

.newsletter input::placeholder {
    color: #fff;
    opacity: 1;
}

.newsletter input::-webkit-input-placeholder {
    color: #fff;
}

/* Podcast
================================================== */
.podcast {
    padding-top: 40px;
    overflow: hidden;
}

.podcast .title {
    position: relative;
    padding: 0 280px 0 0;
    height: 100%;
}

.podcast .title h2 {
    margin-bottom: 10px;
}

.podcast .title p {
    color: #929292;
}

.podcast .title img {
    position: absolute;
    right: 10px;
    top: 0;
    bottom: inherit;
    width: 150px;
}

.podcast .new-podcast {
    padding-top: 15px;
}

.podcast .new-podcast h3 {
    font-size: 20px;
    color: #000;
    line-height: 1.15;
    margin-bottom: 10px;
}

.podcast .new-podcast p {
    color: #929292;
}

.podcast .new-podcast a.play-btn {
    display: block;
    background: #CE1432;
    color: #fff;
    position: relative;
    margin-bottom: 20px;
    padding: 8px 22px;
    text-align: left;
}

.podcast .new-podcast a.play-btn:after {
    content: '';
    position: absolute;
    right: 22px;
    top: 50%;
    background: url(../images/play-btn.svg) no-repeat 0 0;
    background-size: contain;
    width: 21px;
    height: 21px;
    transform: translateY(-50%);
}

.podcast .new-podcast a.play-btn:hover {
    background: #000;
    text-decoration: none;
}

/* Article Count
================================================== */
.article-count {
    position: fixed;
    bottom: 0;
    border-radius: 5px;
    width: 100%;
    padding: 60px 0 30px;
    z-index: 99;
}

.article-count a.btn {
    width: 274px;
    margin-bottom: 16px;
}

.article-count a.close-btn {
    position: absolute;
    right: 50px;
    top: -16px;
    width: 32px;
    height: 32px;
    font-weight: 600;
    line-height: 32px;
    background: #fff;
    border: 1px solid #CE1432;
    border-radius: 50%;
    color: #CE1432;
    text-align: center;
    z-index: 99;
}

.article-count a.close-btn:hover {
    color: #000;
    text-decoration: none;
}

/* Support Us
================================================== */
.support-us {
    border-radius: 10px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 30px;
}

.support-us span {
    display: block;
    font-size: 14px;
    font-weight: 400;
}

.support-us a {
    position: relative;
    display: block;
    color: #fff;
    padding: 12px 80px 12px 12px;
}

.support-us a:hover {
    color: #fff;
    text-decoration: none;
}

.support-us img {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 56px;
}

/* Footer
================================================== */
/* Footer Main */
.footer-main {
    padding: 50px 0 0;
}

.footer-widget {
    margin: 10px 0;
}

.footer-widget h5 {
    line-height: 1.6;
}

.footer-widget h5>a {
    color: #CE1432;
}

.footer-widget h6 {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.5;
    color: #000;
    width: 120px;
}

.footer-widget img.logo {
    width: 157px;
    margin: 0 0 30px 0;
}

/* Footer Links */
.footer-links li {
    margin-bottom: 4px;
}

.footer-links li a {
    font-size: 13px;
}

/* Sponsored */
.sponsored p {
    color: #929292;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.6;
}

.sponsored img {
    width: 109px;
}

/* Copyright */
.copyright {
    font-size: 11px;
    font-weight: 500;
    color: #929292;
    padding: 20px 0 30px;
}

.copyright p {
    margin-bottom: 0.5rem;
}

/* Popup */
.popup-fix-btm {
    width: 100%;
    position: fixed;
    left: 0;
    bottom: 0;
    transition: 0.8s;
    padding: 4px;
    z-index: 999;
}

.popup-fix-btm .popup-wrapper a {
    display: block;
    background: #CE1432;
    border-radius: 6px;
    color: #fff;
    padding: 45px 0 25px;
}

.popup-fix-btm .popup-wrapper a:hover {
    text-decoration: none;
}

.popup-fix-btm .popup-close a {
    display: inline-block;
    position: absolute;
    top: -15px;
    right: 50px;
    width: 40px;
    height: 40px;
    font-size: 20px;
    line-height: 36px;
    background: #fff;
    color: #CE1432;
    border-radius: 50%;
    border: 2px solid #CE1432;
    text-align: center;
    cursor: pointer;
    z-index: 9;
}

.popup-fix-btm h5 {
    font-size: 20px;
}

.popup-fix-btm p {
    max-width: 700px;
}

/* Podcasts */
.widget.podcasts img.title-img {
    width: 75%;
    margin-bottom: 15px;
}

.widget.podcasts .podcast-post-items .list-item {
    overflow: hidden;
    padding: 0 0 25px;
}

.widget.podcasts .podcast-post-items .podcast-thumb {
    float: left;
    width: 70px;
    padding-top: 12px;
}

.widget.podcasts .podcast-post-items .podcast-content {
    margin-top: -2px;
    /* padding: 0 0 0 85px; */
}

.widget.podcasts .podcast-post-items p.podcast-date {
    font-size: 14px;
    margin-bottom: 3px;
}

.widget.podcasts .podcast-post-items h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}
