@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    /*     --main-color: #FF1616;*/
    --main-color: #A90214;
    --main-gradient: linear-gradient(90deg, rgba(169, 2, 20, 1) 0%, rgba(204, 11, 31, 1) 51%, rgba(229, 18, 39, 1) 100%);
    /*    --main-color: #d81757;*/
    --shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
    ;
}

body {
    background: #f4f4f4;
}

@media (min-width: 1400px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1180px;
    }
}

.text-main {
    color: var(--main-color) !important;
}

.bg-main {
    background: var(--main-gradient);
}

.card {
    background: #fcfcfc;
    border-radius: 10px;
    border: 0.09375rem solid #E6E6E6;
    margin-bottom: 1.5rem;
    position: relative;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    /* box-shadow: 0px 2px 4px rgba(0, 0, 0, .1), 0px 8px 16px rgba(0, 0, 0, .1);*/
}

.card img {
    border-radius: 10px;
    width: 100%;
}

.category {
    color: var(--main-color);
    font-weight: bold;
    margin-bottom: 10px;
    display: inline-block;
    font-size: 12px;
    text-transform: uppercase;
}

.category a {
    color: var(--main-color);
    text-decoration: none;
}

.card-title {
    font-weight: bold;
    margin-bottom: 10px;
}

.card-title a {
    text-decoration: none;
    color: inherit;
}

.card-text {
    font-size: 14px;
}

.upper-side-card {
    height: calc(100% - 24px);
    overflow: hidden;
}

.upper-side-card .card img {
    height: 90px !important;
}

.upper-side-card .card:last-child {
    margin-bottom: 0 !important;
}

.upper-side-card .card .card-body {
    padding: 10px;
}

.upper-side-card .card .card-body .category {
    margin-bottom: 0px;
}

.upper-side-card .card .card-body h6 {
    margin-bottom: 0;
}

.side-card-inner {
    overflow: hidden;
}

.category-box {
    background: white;
    border-radius: 10px;
    overflow: hidden;

    box-shadow: var(--shadow);

}

.category-box .category-img {
    height: 150px;
    object-fit: cover;
    overflow: hidden;
}

.category-box .category-img img {
    width: 100%;

    object-fit: cover;
}

.categories {
    padding: 50px 20px;
    padding-bottom: 0;
}

.category-box .category-content {
    padding: 15px;
    margin-bottom: 0
}

.category-box .category-content h6 {
    margin-bottom: 0;
}

.category-box .category-content h6 a {
    color: inherit;
    text-decoration: none;
}

.view-button {
    background: var(--main-gradient);
    /*width: calc(100% - 20px);*/
    padding: 5px 10px;
    display: flex;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    margin-top: 10px;
    justify-content: space-between;
    align-items: center;
    transition: 0.5s;
    border: 1.5px solid white;
}

.view-button:hover {
    transition: 0.5s;
    border: 1.5px solid var(--main-color);
    color: var(--main-color);
    background: white;
}

.category-container {
    /* margin-bottom: -150px; */
}

.category-slider {
    /* transform: translateY(70px); */
}

.category-slider .swiper-wrapper {
    padding: 10px;
}

.category-slider .swiper-button-next,
.category-slider .swiper-button-prev {
    background: white;
    height: 50px;
    width: 50px;
    border-radius: 50%;
}

.category-slider .swiper-button-next:after,
.category-slider .swiper-button-prev:after {
    font-size: 25px;
    font-weight: bold;
    color: var(--main-color);
}

.google-card {
    height: max-content;
}

.flw-btn {
    width: 100%;
    background-color: #fff;
}

.flw-btn:hover {
    background: var(--main-gradient);
}

.btn-danger {
    background: var(--main-gradient);
}

.footer-container {
    background-color: black;
    padding-top: 35px;
}

.footer-container ul li:first-child a {
    color: var(--main-color);
    font-size: 18px;
    font-weight: 700;
}

.footer-container ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.footer-container ul li {
    margin-bottom: 10px;
}

.footer-link a {
    text-decoration: none;
    color: #fff;
}

.footer-link {
    color: white;
}

.footer-social a {
    width: 35px;
    height: 35px;

    padding: 6px;
    background-color: #fff;
    margin-right: 3px;
    color: black;
    text-decoration: none;
    border-radius: 3px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

/* like btn code */
.like-btn {
    display: inline-block;
    padding: 5px 20px;
    border: 2px solid #ccc;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s, border-color 0.3s;
    user-select: none;
}

/* Hide the default checkbox */
.like-checkbox {
    display: none;
}

/* Default button style */
.like-btn {
    background-color: #f0f0f0;
    color: #333;
}

/* When checkbox is checked */
.like-checkbox:checked+.like-btn {
    background-color: #ff4d4d;
    border-color: #ff4d4d;
    color: white;
}

/* end like btn code */
/* bookmakr btn code -- start */
.bookmark-btn {
    font-size: 26px;
    color: #333;
    cursor: pointer;
    transition: color 0.3s, transform 0.2s;
}

.bookmark-checkbox {
    display: none;
}

/* Icon states */
.bookmark-icon-regular {
    display: inline-block;
}

.bookmark-icon-solid {
    display: none;
}

/* When checked: swap icons */
.bookmark-checkbox:checked+label .bookmark-icon-regular {
    display: none;
}

.bookmark-checkbox:checked+label .bookmark-icon-solid {
    display: inline-block;
    color: #ff5722;
    /* Change color when bookmarked */
}

.card-content p {
    font-size: 18px;
    font-style: normal;
    font-family: "Noto Sans", sans-serif;
    letter-spacing: 0px;
    line-height: 130%;
    color: #666;
}

.sub-card img {
    height: 200px;
    object-fit: cover;
}

.card.sub-card {
    height: calc(100% - 24px);
}

.backend-card img {
    height: 170px;
    object-fit: cover;
}

.google-card {
    position: sticky;
    top: 10px;
}

.autoComplete_wrapper>input {
    width: 450px !important;
    display: block;
    height: 48px;
    border-radius: 8px;
}

.autoComplete_wrapper {
    display: block;
}

.autoComplete_wrapper>input {
    color: black;
    border: 1px solid #dadada;
}

.autoComplete_wrapper>input:hover {
    color: black;
    border: 1px solid #dadada;
}

.autoComplete_wrapper>input:focus {
    color: black;
    border: 1px solid black;
}

.autoComplete_wrapper>input:focus::placeholder,
.autoComplete_wrapper>input:hover::placeholder {
    color: #dadada;
    opacity: 1;
}

.autoComplete_wrapper>input::placeholder {
    color: #dadada;
    opacity: 1;
}

.autoComplete_wrapper ul a {
    text-decoration: none;
    color: black;
    width: 100%;
    display: inline-block;
}

.autoComplete_wrapper ul li span {
    width: 100%;
}

.links .footer-social a {
    background: #efefef;
}

.page-header {
    background: var(--main-gradient);
    text-align: center;
    color: white;
    padding: 80px 20px;
}

.page-header h1 {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 65px;
}

.modal-content {
    background: black;
}

.form-floating>.form-control {
    height: calc(2.8rem + 2px);
}

.form-floating>label {
    padding: 10px .75rem;
}

.btn-close {
    background: transparent url('../img/download.svg') center / 1em auto no-repeat;
}

.modal-title {
    color: white;
}

#to-signup,
#to-login {
    color: var(--main-color);
    text-decoration: none;
    font-weight: 600;
}

@media (min-width: 576px) {
    .modal-dialog {
        max-width: 350px;
        margin: 1.75rem auto;
    }
}

.page-content {
    font-size: 18px;
    line-height: 130%;
}

/* create account blur  */
.create-account-box {
    position: relative;
    z-index: 2;
    padding: 70px 20px !important;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
}

.create-account-box::before {
    content: '';
    position: absolute;
    background: transparent;
    width: 100%;
    height: 100px;
    left: 0;
    top: -106px;
    filter: blur(20px);
}
.summary ul li::marker {
  color: var(--main-color);          /* Change bullet color */
  font-size: 18px;     /* Optional: change size */
}
.summary li, .summary a, .summary p, .summary strong, .summary span{
    font-size: 18px;
    line-height: 130%;
} 
.google-btn {
      display: inline-flex;
      align-items: center;
      background-color: white;
      color: #444;
      border: 1px solid #ccc;
      border-radius: 4px;
      padding: 10px 15px;
      font-size: 16px;
      font-family: Arial, sans-serif;
      cursor: pointer;
      transition: box-shadow 0.3s ease;
    }

    .google-btn:hover {
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }

    .google-icon-wrapper {
      margin-right: 10px;
      display: flex;
      align-items: center;
    }

    .google-icon {
      width: 20px;
      height: 20px;
    }
    button.google-btn {
        padding: 6px 15px;
        border-radius: 5px;
        width: 100%;
        margin-bottom: 15px;
        height: auto;
        box-sizing: border-box;
        opacity: 1;
    }
    .create-account-box {
  display: none;
}
.published_by{
    font-size: 14px;
    color: grey;
    margin-bottom: 0;
}
.read_article{
    color: var(--main-color);
    font-size: 14px;
    text-align: right;
    display: inline-block;
    text-decoration: none;
}