/*--------------------------------------------------------------
# News Page
--------------------------------------------------------------*/
.programs-page {
    position: relative;
    display: block;
    padding: 120px 0 90px;
}
/*--------------------------------------------------------------
# News One
--------------------------------------------------------------*/
.programs-one {
    position: relative;
    display: block;
    padding: 120px 0 90px;
    z-index: 1;
}

.programs-one__bg-color {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 497px;
    background-color: var(--qrowd-extra);
    z-index: -1;
}

.programs-one__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.programs-one__img-box {
    position: relative;
    display: block;
}

.programs-one__img {
    position: relative;
    display: block;
    overflow: hidden;
}

.programs-one__img img {
    width: 100%;
    transition: all 500ms ease;
    transform: scale(1);
}

.programs-one__single:hover .programs-one__img img {
    transform: scale(1.05);
}

.programs-one__img > a {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(var(--qrowd-black-rgb), 0.3);
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    color: var(--thm-base);
    transition: opacity 500ms ease, visibility 500ms ease, transform 500ms ease;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-30%);
}

.programs-one__img > a > span {
    position: relative;
}

.programs-one__img > a > span::before {
    content: "";
    width: 20px;
    height: 2px;
    background-color: var(--qrowd-base);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 500ms ease;
}

.programs-one__img > a > span::after {
    content: "";
    transition: all 500ms ease;
    width: 2px;
    height: 20px;
    background-color: var(--qrowd-base);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.programs-one__img > a:hover > span::before,
.programs-one__img > a:hover > span::after {
    background-color: var(--qrowd-white);
}

.programs-one__single:hover .programs-one__img > a {
    visibility: visible;
    transform: translateY(0%);
    opacity: 1;
}

.programs-one__date {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: var(--qrowd-base);
    text-align: center;
    padding: 15px 14px 15px;
    align-items: center;
}

.programs-one__date p {
    font-size: 16px;
    color: var(--qrowd-white);
    font-weight: 800;
    line-height: 16px;
    margin-bottom: 2px;
}

.programs-one__date span {
    position: relative;
    display: block;
    font-size: 12px;
    font-weight: 800;
    color: var(--qrowd-white);
    letter-spacing: 0.1em;
    line-height: 12px;
    text-transform: uppercase;
}

.programs-one__content {
    position: relative;
    display: block;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
    padding: 20px 30px 30px;
}

.programs-one__meta {
    position: relative;
    display: flex;
    align-items: center;
}

.programs-one__meta li + li {
    margin-left: 10px;
}

.programs-one__meta li a {
    font-size: 14px;
    font-weight: 500;
    color: #6e7a7a;
    line-height: 34px;
}

.programs-one__meta li a:hover {
    color: var(--qrowd-base);
    transition: all 500ms ease;
}

.programs-one__meta li a i {
    color: var(--qrowd-primary);
    padding-right: 6px;
}

.programs-one__title {
    font-size: 26px;
    font-weight: 800;
    line-height: 37px;
}

.programs-one__title a {
    color: #1e3737;
    transition: all 500ms ease;
}

.programs-one__title a:hover {
    color: var(--qrowd-base);
}
.programs-one__description {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
}

.programs-one__bottom {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--qrowd-extra);
    padding: 0px 30px 0px;
    margin-top: 21px;
}

.programs-one__button a {
    position: relative;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--qrowd-gray);
    transition: all 500ms ease;
    display: flex;
    align-items: center;
    padding: 5px 0;
}

.programs-one__button a:hover {
    color: var(--qrowd-base);
}

.programs-one__arrow a {
    font-size: 16px;
    color: var(--qrowd-gray);
    transition: all 500ms ease;
    position: relative;
    display: flex;
    align-items: center;
    padding: 12px 0;
}

.programs-one__arrow a:hover {
    color: var(--qrowd-base);
}

/*--------------------------------------------------------------
# Artikel Details
--------------------------------------------------------------*/
.programs-details {
    position: relative;
    display: block;
    padding: 120px 0 120px;
}

.programs-details__left {
    position: relative;
    display: block;
}

.programs-details__img {
    position: relative;
    display: block;
}

.programs-details__img img {
    width: 100%;
}

.programs-details__date {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: var(--qrowd-base);
    text-align: center;
    padding: 15px 14px 15px;
    align-items: center;
}

.programs-details__date p {
    font-size: 16px;
    color: var(--qrowd-white);
    font-weight: 800;
    line-height: 16px;
    margin-bottom: 2px;
}

.programs-details__date span {
    position: relative;
    display: block;
    font-size: 12px;
    font-weight: 800;
    color: var(--qrowd-white);
    letter-spacing: 0.1em;
    line-height: 12px;
    text-transform: uppercase;
}

.programs-details__content {
    position: relative;
    display: block;
    margin-top: 21px;
}

.programs-details__meta {
    position: relative;
    display: flex;
    align-items: center;
}

.programs-details__meta li + li {
    margin-left: 10px;
}

.programs-details__meta li a {
    font-size: 14px;
    color: var(--qrowd-gray);
    font-weight: 500;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.programs-details__meta li a:hover {
    color: var(--qrowd-primary);
}

.programs-details__meta li a i {
    color: var(--qrowd-primary);
    padding-right: 3px;
}

.programs-details__title {
    font-size: 34px;
    line-height: 40px;
    margin-top: 4px;
    margin-bottom: 14px;
    font-weight: 800;
}

.programs-details__text-1 {
    font-size: 16px;
    font-weight: 500;
}

.programs-details__text-2 {
    font-size: 16px;
    padding-top: 31px;
    font-weight: 500;
}

.programs-details__bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 30px 0 30px;
    margin-top: 51px;
    border-top: 1px solid #e1eaea;
}

.programs-details__bottom p {
    margin: 0;
}

.programs-details__tags span {
    color: var(--qrowd-black);
    font-size: 20px;
    margin-right: 14px;
    font-weight: 800;
}

.programs-details__tags a {
    position: relative;
    color: var(--qrowd-white);
    font-size: 12px;
    background-color: var(--qrowd-base);
    display: inline-block;
    padding: 5px 20px 5px;
    font-weight: 800;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.programs-details__tags a:hover {
    background-color: var(--qrowd-primary);
    color: var(--qrowd-white);
}

.programs-details__tags a + a {
    margin-left: 6px;
}

.programs-details__social-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.programs-details__social-list a {
    position: relative;
    height: 40px;
    width: 40px;
    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;
    text-align: center;
    color: var(--qrowd-black);
    background-color: var(--qrowd-extra);
    font-size: 15px;
    border-radius: 50%;
    overflow: hidden;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 1;
}

.programs-details__social-list button {
    position: relative;
    height: 40px;
    width: 40px;
    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;
    text-align: center;
    color: var(--qrowd-black);
    background-color: var(--qrowd-extra);
    font-size: 15px;
    border-radius: 50%;
    overflow: hidden;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 1;
    margin-left: 10px;
}

.programs-details__social-list button:hover {
    color: var(--qrowd-white);
}

.programs-details__social-list button:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-color: var(--qrowd-base);
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
    -webkit-transition-property: all;
    transition-property: all;
    opacity: 1;
    -webkit-transform-origin: top;
    transform-origin: top;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    z-index: -1;
}

.programs-details__social-list button:hover:after {
    opacity: 1;
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
}

.programs-details__social-list button + button {
    margin-left: 10px;
}

.programs-details__social-list a:hover {
    color: var(--qrowd-white);
}

.programs-details__social-list a:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-color: var(--qrowd-base);
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
    -webkit-transition-property: all;
    transition-property: all;
    opacity: 1;
    -webkit-transform-origin: top;
    transform-origin: top;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    z-index: -1;
}

.programs-details__social-list a:hover:after {
    opacity: 1;
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
}

.programs-details__social-list a + a {
    margin-left: 10px;
}

.programs-details__pagenation-box {
    position: relative;
    display: block;
    overflow: hidden;
    margin-bottom: 54px;
}

.programs-details__pagenation {
    position: relative;
    display: block;
}

.programs-details__pagenation li a {
    position: relative;
    float: left;
    font-size: 20px;
    color: var(--qrowd-black);
    font-weight: 800;
    background-color: var(--qrowd-extra);
    line-height: 34px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    max-width: 370px;
    width: 100%;
    padding-left: 60px;
    padding-right: 60px;
    padding-top: 51px;
    padding-bottom: 50px;
    letter-spacing: var(--qrowd-letter-spacing);
}

.programs-details__pagenation li + li {
    margin-left: 30px;
}

.programs-details__pagenation li a:hover {
    background-color: var(--qrowd-base);
    color: var(--qrowd-white);
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-one__title,
.comment-form__title {
    margin: 0;
    color: var(--qrowd-black);
    font-size: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
    font-weight: 800;
    letter-spacing: var(--qrowd-letter-spacing);
}

.comment-one__single {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-bottom: 1px solid #e1eaea;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.comment-one__content {
    position: relative;
    margin-left: 25px;
}

.comment-one__content h3 {
    margin: 0;
    font-size: 20px;
    color: var(--qrowd-black);
    margin-bottom: 10px;
    font-weight: 800;
}

.comment-one__content p {
    font-size: 16px;
    font-weight: 500;
}

.comment-one__btn {
    padding: 4px 20px;
    position: absolute;
    top: 0;
    right: 0;
    font-size: 12px;
    font-weight: 800;
    color: var(--qrowd-white);
}

.comment-one__btn:hover {
    color: var(--qrowd-white);
}

.comment-one__btn:before {
    background-color: var(--qrowd-primary);
    transform: translate(-50%, -50%) rotate(-75deg);
}

.comment-one__image {
    position: relative;
    display: block;
    border-radius: 50%;
}

.comment-one__image img {
    border-radius: 50%;
}

.comment-form .comment-form__title {
    margin-top: -7px;
}

.comment-one__form .row {
    --bs-gutter-x: 20px;
}

.comment-form__input-box {
    position: relative;
    display: block;
    margin-bottom: 20px;
}

.comment-form__input-box input[type="text"],
.comment-form__input-box input[type="email"] {
    height: 58px;
    width: 100%;
    border: none;
    background-color: var(--qrowd-extra);
    padding-left: 30px;
    padding-right: 30px;
    outline: none;
    font-size: 14px;
    color: var(--qrowd-gray);
    display: block;
    font-weight: 500;
}

.comment-form__input-box textarea {
    font-size: 14px;
    color: var(--qrowd-gray);
    height: 190px;
    width: 100%;
    background-color: var(--qrowd-extra);
    padding: 25px 30px 30px;
    border: none;
    outline: none;
    margin-bottom: 0px;
    font-weight: 500;
}

.comment-form__btn {
    border: none;
}

.comment-form__input-box.text-message-box {
    height: 190px;
}

/*--------------------------------------------------------------
# serach index
--------------------------------------------------------------*/
.index__top__search {
    margin-bottom: 100px;
}

.index__search {
    position: relative;
    display: block;
}

.index__search-form {
    position: relative;
}

.index__search-form input[type="text"] {
    display: block;
    border: none;
    outline: none;
    background-color: var(--qrowd-primary);
    color: var(--qrowd-white);
    font-size: 16px;
    font-weight: 500;
    padding-left: 50px;
    height: 74px;
    width: 100%;
    padding-right: 80px;
}

.index__search-form ::-webkit-input-placeholder {
    color: var(--qrowd-white);
    opacity: 1;
}

.index__search-form :-ms-input-placeholder {
    color: var(--qrowd-white);
    opacity: 1;
}

.index__search-form ::-ms-input-placeholder {
    color: var(--qrowd-white);
    opacity: 1;
}

.index__search-form ::placeholder {
    color: var(--qrowd-white);
    opacity: 1;
}

.index__search-form :-ms-input-placeholder {
    color: var(--qrowd-white);
}

.index__search-form ::-ms-input-placeholder {
    color: var(--qrowd-white);
}

.index__search-form button[type="submit"] {
    background-color: transparent;
    color: var(--qrowd-white);
    font-size: 22px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 72px;
    outline: none;
    border: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0;
}
/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/
@media (max-width: 991px) {
    .sidebar {
        margin-top: 50px;
    }
}

.sidebar__single + .sidebar__single {
    margin-top: 30px;
}

.sidebar__title {
    margin: 0;
    font-size: 20px;
    margin-bottom: 5px;
    font-weight: 800;
}

.sidebar__search {
    position: relative;
    display: block;
}

.sidebar__search-form {
    position: relative;
}

.sidebar__search-form input[type="text"] {
    display: block;
    border: none;
    outline: none;
    background-color: var(--qrowd-primary);
    color: var(--qrowd-white);
    font-size: 16px;
    font-weight: 500;
    padding-left: 50px;
    height: 74px;
    width: 100%;
    padding-right: 80px;
}

.sidebar__search-form ::-webkit-input-placeholder {
    color: var(--qrowd-white);
    opacity: 1;
}

.sidebar__search-form :-ms-input-placeholder {
    color: var(--qrowd-white);
    opacity: 1;
}

.sidebar__search-form ::-ms-input-placeholder {
    color: var(--qrowd-white);
    opacity: 1;
}

.sidebar__search-form ::placeholder {
    color: var(--qrowd-white);
    opacity: 1;
}

.sidebar__search-form :-ms-input-placeholder {
    color: var(--qrowd-white);
}

.sidebar__search-form ::-ms-input-placeholder {
    color: var(--qrowd-white);
}

.sidebar__search-form button[type="submit"] {
    background-color: transparent;
    color: var(--qrowd-white);
    font-size: 22px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 72px;
    outline: none;
    border: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0;
}

.sidebar__post {
    position: relative;
    display: block;
    padding: 46px 30px 30px;
    background-color: var(--qrowd-extra);
    overflow: hidden;
    z-index: 1;
}

.sidebar__post .sidebar__title {
    margin-left: 20px;
}

.sidebar__post-list {
    margin: 0;
}

.sidebar__post-list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 16px 20px 17px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.sidebar__post-list li:hover {
    background-color: var(--qrowd-white);
}

.sidebar__post-list li + li {
    margin-top: 10px;
}

.sidebar__post-image {
    margin-right: 20px;
}

.sidebar__post-image > img {
    width: 70px;
}

.sidebar__post-content {
    position: relative;
    top: -3px;
}

.sidebar__post-content h3 {
    font-size: 18px;
    margin: 0;
    line-height: 26px;
    letter-spacing: 0;
}

.sidebar__post-content-meta {
    font-size: 14px;
    font-weight: 500;
    color: var(--qrowd-gray) !important;
    font-family: var(--qrowd-font);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.sidebar__post-content-meta i {
    color: var(--qrowd-primary);
    font-size: 15px;
    padding-right: 4px;
}

.sidebar__post-content h3 a {
    color: var(--qrowd-black);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    display: block;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: var(--qrowd-letter-spacing);
}

.sidebar__category {
    position: relative;
    display: block;
    background-color: var(--qrowd-extra);
    padding: 46px 30px 34px;
    overflow: hidden;
    z-index: 1;
}

.sidebar__category .sidebar__title {
    padding-left: 20px;
    margin-bottom: 9px;
}

.sidebar__category-list {
    margin: 0;
}

.sidebar__category-list li + li {
    margin-top: 4px;
}

.sidebar__category-list li a {
    color: var(--qrowd-gray);
    font-size: 16px;
    position: relative;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    display: block;
    background: none;
    padding: 7px 20px 7px;
    font-weight: 600;
}

.sidebar__category-list li a:hover {
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
    color: var(--qrowd-black);
}

.sidebar__category-list li.active a {
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
    color: var(--qrowd-black);
}

.sidebar__category-list li a span {
    position: absolute;
    top: 50%;
    right: 20px;
    -webkit-transform: translateY(-50%) scale(0);
    transform: translateY(-50%) scale(0);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    color: var(--qrowd-base);
    text-align: center;
    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;
    font-size: 16px;
}

.sidebar__category-list li a:hover span {
    color: var(--qrowd-base);
    -webkit-transform: translateY(-50%) scale(1);
    transform: translateY(-50%) scale(1);
}

.sidebar__category-list li.active a span {
    -webkit-transform: translateY(-50%) scale(1);
    transform: translateY(-50%) scale(1);
    color: var(--qrowd-base);
}

.sidebar__tags {
    position: relative;
    display: block;
    background: var(--qrowd-extra);
    padding: 46px 45px 50px;
    overflow: hidden;
    z-index: 1;
}

.sidebar__tags .sidebar__title {
    margin-left: 5px;
    margin-bottom: 25px;
}

.sidebar__tags-list {
    margin-top: -10px;
}

.sidebar__tags-list a {
    font-size: 12px;
    color: var(--qrowd-black);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    background: var(--qrowd-white);
    display: inline-block;
    padding: 5px 20px 5px;
    margin-left: 5px;
    font-weight: 800;
}

.sidebar__tags-list a + a {
    margin-left: 5px;
    margin-top: 10px;
}

.sidebar__tags-list a:hover {
    color: var(--qrowd-white);
    background: var(--qrowd-base);
}

.sidebar__comments {
    position: relative;
    display: block;
    background-color: var(--qrowd-extra);
    padding: 46px 50px 43px;
    overflow: hidden;
    z-index: 1;
}

.sidebar__comments .sidebar__title {
    margin-bottom: 25px;
}

.sidebar__comments-list {
    position: relative;
    display: block;
}

.sidebar__comments-list li {
    position: relative;
    display: block;
    padding-left: 65px;
}

.sidebar__comments-list li + li {
    margin-top: 23px;
}

.sidebar__comments-icon {
    height: 45px;
    width: 45px;
    background-color: var(--qrowd-white);
    border-radius: 50%;
    font-size: 15px;
    color: var(--qrowd-black);
    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;
    top: 0;
    left: 0;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.sidebar__comments-list li:hover .sidebar__comments-icon {
    background-color: var(--qrowd-base);
    color: var(--qrowd-white);
}

.sidebar__comments-text-box p {
    font-size: 15px;
    margin: 0;
    line-height: 26px;
    font-weight: 600;
}

.sidebar__comments-text-box p span {
    color: var(--qrowd-black);
}

.sidebar__comments-text-box h5 {
    font-size: 15px;
    margin: 0;
    line-height: 26px;
    color: var(--qrowd-gray);
    font-weight: 500;
    letter-spacing: 0;
}
