/* ========================= */
/* :: 1.0 WEB FONTS  */
/* ========================= */
@import url('https://fonts.googleapis.com/css2?family=MonteCarlo&family=Poetsen+One&display=swap');

@font-face {
    font-family: 'Helvetica Neue';
    src: url('../fonts/HelveticaNeue-Roman.woff2') format('woff2'),
        url('../fonts/HelveticaNeue-Roman.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Helvetica Neue';
    src: url('../fonts/HelveticaNeue-Medium.woff2') format('woff2'),
        url('../fonts/HelveticaNeue-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Helvetica Neue';
    src: url('../fonts/HelveticaNeue-Bold.woff2') format('woff2'),
        url('../fonts/HelveticaNeue-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

/* ================================== */
/* :: 2.0 GLOBAL Variable Define CSS  */
/* ================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    /* Font */
    --helvetica-neue: 'Helvetica Neue', sans-serif;
    --monteCarlo: 'MonteCarlo', cursive;
    --poetsenOne: 'Poetsen One', sans-serif;

    /* Color Palette */
    --primary: #dd362d;
    --white: #fff;
    --light-white: #f8f8f8;
    --black: #000;
    --dark: #232a31;
}

/* ========================= */
/* :: 3.0 COMMON CSS */
/* ========================= */
html,
body {
    height: 100%;
    scroll-behavior: smooth;
}
body {
    color: var(--dark);
    font-size: 16px;
    font-family: var(--helvetica-neue);
    font-weight: 400;
    line-height: 25px;
    background-color: var(--white);
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}
p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
}
section,
.section {
    position: relative;
}
.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 16px;
}
a,
button {
    outline: none;
    box-shadow: none;
    text-decoration: none;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
button {
    padding: 0;
    border: none;
    background: unset;
}
ol,
ul {
    margin: 0;
    padding: 0;
}
ol li,
ul li {
    list-style: none;
}
img {
    height: auto;
    max-width: 100%;
    object-fit: cover;
}
input,
input:focus,
input:focus-visible,
input:active,
select,
.form-select,
.form-select:focus,
textarea {
    outline: none;
    box-shadow: none;
}
* + address,
* + dl,
* + fieldset,
* + figure,
* + ol,
* + p,
* + pre,
* + ul {
    margin: 0;
    padding: 0;
}

*::-moz-selection {
    background: var(--primary);
    color: var(--white);
    text-shadow: none;
}
::-moz-selection {
    background: var(--primary);
    color: var(--white);
    text-shadow: none;
}

::selection {
    background: var(--primary);
    color: var(--white);
    text-shadow: none;
}

/* ===== Common CSS Start */

/* ----- Buttons ----- */
.btn {
    height: 45px;
    padding: 8px 20px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-size: 17px;
    border: 1px solid transparent;
    border-radius: 0;
    background-color: var(--primary);
    transition: all 0.3s ease-in-out;
}
.btn:hover {
    color: var(--primary);
    border-color: var(--primary);
    background-color: transparent;
}

/* ----- Typography ----- */
.fs-1 {
    font-size: 24px !important;
    line-height: normal;
}
.fs-5 {
    font-size: 20px !important;
    line-height: normal;
}
.fs-6 {
    font-size: 16px !important;
    line-height: 1.41;
}

.ff-monteCarlo {
    font-family: var(--monteCarlo);
}
.ff-poetsenOne {
    font-family: var(--poetsenOne);
}

/* ----- Animation ----- */
.hover-text:hover {
    color: var(--primary);
}

/* ===== Common CSS End */

/* =============================== */
/* :: 4.0 Header Area CSS Start */
/* =============================== */
.header__main {
    padding: 15px 0px;
}

.offcanvasButton {
    font-size: 21px;
    color: #dd362d;
    border: 1px solid #dd362d;
    width: 34px;
    height: 33px;
    border-radius: 4px;
}
.offcanvas__menu ul li a {
    display: block;
    color: #000;
    font-size: 16px;
    line-height: 20px;
    padding: 13px 0px;
    border-bottom: 1px solid #dd362d1f;
    text-align: center;
}

.offcanvas__menu ul li a.active {
    color: #dd362d;
}

.offcanvas__menu ul li a:hover {
    color: #dd362d;
}

.offcanvas-header .btn-close {
    background: transparent;
    font-size: 20px;
    color: #ff0d00;
    opacity: 1;
}
.offcanvas-header .btn-close:focus {
    box-shadow: unset;
}
.btn--header {
    border-radius: 100px;
}
/* =============================== */
/* :: 4.0 Header Area CSS End */
/* =============================== */

/* =============================== */
/* :: 5.0 Page Content Inner CSS Start */
/* =============================== */

/* ----- Page Content Inner Start ----- */
.sidebar-prev-wrap,
.sidebar {
    width: 100%;
}
:root {
    --sidebar-width: 300px;
}
@media (min-width: 1200px) {
    :root {
        --sidebar-width: 324px;
    }
}
/* ----- Page Content Inner End ----- */

/* ----- Slider Section Start ----- */
.slider__item {
    width: 100%;
    min-height: 300px;
    padding: 52px 16px;
    border-radius: 10px;
}
.slider__item::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0) 0%,
        rgba(0, 0, 0, 1) 100%
    );
    z-index: -1;
    opacity: 0.5;
}
.slider--section .swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: 20px;
}
.slider--section .swiper-pagination-bullet {
    background-color: var(--white);
    opacity: 0.4;
    transition: all 0.3s ease-in-out;
}
.slider--section .swiper-pagination-bullet-active {
    width: 16px;
    border-radius: 10px;
    opacity: 1;
}
.slider--section
    .swiper-pagination-horizontal.swiper-pagination-bullets
    .swiper-pagination-bullet {
    margin: 0 3px;
}
/* ----- Slider Section End ----- */

/* ----- ContentBlock ArticleMini Section Start ----- */
.article__thumb {
    flex-shrink: 0;
}
.article--mini .article__thumb {
    width: 100%;
    height: 128px;
    border-radius: 5px;
    background-color: #ddd;
}
.article__thumb__image {
    transition: all 0.4s ease-in-out;
}
.article:hover .article__thumb__image {
    transform: scale(1.05);
}
.article__title,
.article__title__link {
    font-size: 17px;
    color: var(--dark);
    transition: all 0.3s ease-in-out;
}
.article__title__link:hover,
.article--mini:hover .article__title {
    color: var(--primary);
}
/* ----- ContentBlock ArticleMini Section End ----- */

/* ----- ContentBlock ArticleRecent Section Start ----- */
.section__head--border {
    border-bottom: 1px solid #d9d9d9;
}
.section__tag {
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 32px;
    color: var(--white);
    font-size: 16px;
    background-color: var(--primary);
}
.article--recent .article__thumb {
    width: 100%;
    height: 164px;
    border-radius: 10px;
}
.article__content {
    gap: 12px;
}
.article__date {
    font-size: 14px;
    color: #9ea9b8;
}
.article--recent .article__title {
    font-size: 15px;
    line-height: 1.41;
}
.article__para {
    line-height: 1.43;
}
.article__meta {
    gap: 10px;
}
.article__meta__item {
    color: #333;
    font-size: 10px;
    gap: 3px;
}
.article__meta__item .icon {
    width: 14px;
    height: 14px;
    color: var(--primary);
}
.article__meta__item .icon svg {
    max-width: 14px;
}
/* ----- ContentBlock ArticleRecent Section End ----- */
/* =============================== */
/* :: 5.0 Page Content Inner CSS End */

/* =============================== */
/* =============================== */
/* :: 6.0 Sidebar CSS Start */
/* =============================== */
/* ----- ArticleBlock NewlyReleasec Section Start ----- */
.articleBlock__box {
    padding: 20px 16px;
    border: 1px solid #eee;
    border-radius: 10px;
    box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.07);
}
.articleBlock__link {
    color: var(--black);
    font-size: 14px;
    line-height: 1.33;
    gap: 10px;
}
.articleBlock__link:hover {
    color: var(--primary);
}
.articleBlock__link .text-underline-anim {
    display: inline;
    background: no-repeat 0 100%;
    background-image: none;
    background-size: auto;
    background-image: linear-gradient(currentColor, currentColor);
    background-size: 0 1px;
    -webkit-transition: all 0.3s, background-size 0.5s;
    transition: all 0.3s, background-size 0.5s;
}
.articleBlock__link:hover .text-underline-anim {
    background-size: 100% 1px;
}
.articleBlock__link .icon {
    width: 13px;
    margin-top: -1px;
}
.articleBlock__link .icon svg {
    width: 100%;
    height: auto;
}
/* ----- ArticleBlock NewlyReleasec Section End ----- */

/* ----- Advertising (Card) Section Start ----- */
.card {
    padding: 20px 16px;
    border-radius: 10px;
    border: none;
}
.card--advertising {
    min-height: 248px;
    gap: 12px;
    background: url('../imgs/cards/card-thumb-bg-01.png') no-repeat center /
            cover,
        linear-gradient(90deg, #fdf7e2 0%, #ffe795 100%);
}
.card__heading {
    font-size: 28px;
}
.card__title {
    font-size: 18px;
}
.card--advertising__btn {
    height: 30px;
    width: max-content;
    padding: 8px 16px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    border-radius: 4px;
    border: 1px solid #935d3b;
    background-color: #935d3b;
    transition: all 0.3s ease-in-out;
}
.card--advertising__btn:hover {
    color: #935d3b;
    background-color: transparent;
}
/* ----- Advertising (Card) Section End ----- */
/* =============================== */
/* :: 6.0 Sidebar CSS End */
/* =============================== */

/* =================================== */
/* :: 8.0 NewsLetter Section CSS Start */
/* =================================== */
.newsletter--section {
    padding: 40px 0 0;
    background-color: var(--light-white);
}
.newsletter__head {
    max-width: 856px;
}
.form--newsletter {
    max-width: 772px;
}
.form--newsletter__item {
    gap: 10px;
}
.form--newsletter__input {
    height: 44px;
    width: 100%;
    padding: 8px 16px;
    color: var(--dark);
    font-size: 14px;
    border-radius: 8px;
    border: 1px solid rgba(35, 42, 49, 0.2);
    background-color: var(--white);
    transition: all 0.3s ease-in-out;
}
.form--newsletter__input:focus,
.form--newsletter__input:not(:placeholder-shown) {
    border-color: var(--dark);
}
.form--newsletter__input::placeholder {
    color: #6c6c6c;
    font-size: 14px;
    opacity: 0.3;
}
.form--newsletter__submit {
    height: 44px;
    width: 100%;
    padding: 8px 34px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    border-radius: 8px;
    border: 1px solid var(--primary);
    background-color: var(--primary);
}
.form--newsletter__submit:hover {
    color: var(--primary);
    background-color: transparent;
}
.newsletter__thumb {
    max-width: 404px;
}
/* ================================= */
/* :: 8.0 NewsLetter Section CSS End */
/* ================================= */

/* =============================== */
/* :: 8.0 Edition Section CSS Start */
/* =============================== */
.edities--section {
    padding: 48px 0px 56px;
}

.edities__item {
    display: flex;
    align-items: flex-start;
    padding: 12px 0px;
    border-bottom: 1px solid #d9d9d9;
}

.edities__item-thumb {
    flex: 0 0 auto;
    width: 80px;
}

.edities__item-thumb img {
    max-width: 100%;
}

.edities__item-body span.date {
    display: block;
    color: #dd362d;
    font-size: 14px;
    margin-bottom: 16px;
    line-height: 20px;
}
.edities__item-body h4 {
    color: #232a31;
}

.edities__item-body {
    padding-left: 20px;
}
/* =============================== */
/* :: 8.0 Edition Section CSS End */
/* =============================== */

/* =============================== */
/* :: 9.0 Footer CSS Start */
/* =============================== */

footer.footer {
    background: #000000;
    padding: 50px 0px 20px;
}

.footer__widget ul li a {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #ffffff;
    transition: all 0.3s ease;
    line-height: 21px;
}
.footer__widget ul li a:hover {
    color: #dd362d;
}

.footer__widget ul li a span.icon {
    flex: 0 0 auto;
    width: 24px;
    height: 24px;
    border: 2px solid #fff;
    border-radius: 50%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer__widget ul li a span.icon img {
    max-width: 14px;
}

.footer__widget ul li {
    padding: 6px 0px;
}

.footer__widget h4 {
    margin-bottom: 10px;
}

.footer__bottom {
    border-top: 1px solid #7a7a7a;
    padding: 20px 0px 0px;
    align-items: center;
    text-align: center;
    margin-top: 20px;
}

.footer__bottom p {
    margin-bottom: 5px;
}

ul.footer__bottom-menu li a {
    display: block;
    color: #fff;
    text-decoration: underline;
    line-height: 20px;
}
/* =============================== */
/* :: 9.0 Footer CSS End */
/* =============================== */


.article-intro { margin-bottom: 25px; width: 100%; font-weight: bold; }

h1.h1 { font-size: 1.7rem; font-weight: bold; }

.form input { margin-bottom: 26px; width: 100%; max-width: 100%; padding: 10px 10px; border: 1px solid #eee; border-radius: 10px; box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.07); }
.form input[type="submit"] { padding: 10px 30px; width: auto; color: #fff; background: var(--primary); box-shadow: none; }
.form input[type="submit"]:hover { background: #000; }

.news--article--section ul { margin: 25px 0; }
.news--article--section ul li { margin-left: 15px; list-style: disc; }