/* Button widget */
.hamrah-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
    border: none;
    cursor: pointer;
}

.hamrah-button:hover {
    text-decoration: none;
}

.hamrah-button-icon {
    display: inline-flex;
    align-items: center;
}

.hamrah-button-icon + .hamrah-button-text {
    margin-left: 8px;
}

.hamrah-button-text + .hamrah-button-icon {
    margin-left: 8px;
}

.hamrah-button.style-primary {
    color: #000014;
    background-color: #FCB814;
    border-radius: 16px;
}

.hamrah-button.style-secondary {
    color: #000014;
    background-color: #FDFDFD;
    border-radius: 16px;
}

.hamrah-button.style-primary:hover,
.hamrah-button.style-secondary:hover {
    background-color: #FCB814;
    box-shadow: 0 13px 14px -8px #FCB814;
}

.hamrah-button.style-glassy {
    font-weight: 400;
    color: #FDFDFD;
    background: #7FA1F819;
    background: linear-gradient(3deg, #7FA1F819 5%, #7FA1F819 81%);
    border-radius: 16px;
    width: 100%;
    height: 100%;
    padding: 14px 12px;
    position: relative;
    overflow: hidden;
    z-index: 0;
    transition: .5s;
}

.hamrah-button.style-glassy::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(24deg, rgba(0, 32, 128, 1) 9%, rgba(127, 161, 248, 1) 107%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    pointer-events: none;
}

.hamrah-button.style-glassy:hover::before {
    opacity: 1;
}

/* /Button widget */

/* Icon widget */
.hamrah-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
    border: none;
}

.hamrah-icon:hover {
    text-decoration: none;
}

.hamrah-icon-icon {
    display: inline-flex;
    align-items: center;
}

.hamrah-icon-icon + .hamrah-icon-text {
    margin-left: 8px;
}

.hamrah-icon-text + .hamrah-icon-icon {
    margin-left: 8px;
}

.hamrah-icon.style-primary {
    color: #000014;
    background-color: #FCB814;
    box-shadow: 0 0 0 8px rgba(252, 184, 19, 0.2);
    border-radius: 16px;
    transition: .3s;
}

.hamrah-icon.style-primary:hover {
    box-shadow: 0 0 0 8px rgba(252, 184, 19, 0.3);
    transition: .3s;
}

.hamrah-icon.style-secondary {
    color: #000014;
    background: #002080;
    background: radial-gradient(at top right, #7FA1F8 -20%, #002080 100%);
    box-shadow: 0 0 0 8px rgba(0, 32, 128, 0.1);
    border-radius: 16px;
    transition: .3s;
}

.hamrah-icon.style-secondary svg {
    fill: white;
}

.hamrah-icon.style-secondary:hover {
    box-shadow: 0 0 0 8px rgba(0, 32, 128, 0.2);
    transition: .3s;
}

.hamrah-icon.style-glassy {
    font-weight: 400;
    color: #FDFDFD;
    background: #7FA1F819;
    background: linear-gradient(3deg, #7FA1F819 5%, #7FA1F819 81%);
    box-shadow: 0 0 0 8px rgba(127, 161, 248, 0.2);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    z-index: 0;
    transition: .5s;
}

.hamrah-icon.style-glassy:hover {
    box-shadow: 0 0 0 8px rgba(127, 161, 248, 0.3);
    transition: .5s;
}

.hamrah-icon.style-glassy:hover svg {
    fill: white;
    transition: .5s;
}

.hamrah-icon.style-glassy::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(24deg, rgba(0, 32, 128, 1) 9%, rgba(127, 161, 248, 1) 107%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    pointer-events: none;
}

.hamrah-icon.style-glassy:hover::before {
    opacity: 1;
}

/* /Icon widget */

/* Process steps widget */
.hamrah-process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.hamrah-step-item {
    background-color: #FDFDFD;
    padding: 8px;
    border: 8px solid #EAEAEA;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    flex: 1 1;
    min-width: 167px;
    max-width: 100%;
    box-sizing: border-box;
    margin-top: 35px;
    box-shadow: 0 10px 20px -3px rgba(0, 0, 0, 0.1);
}

.hamrah-step-item:hover svg,
.hamrah-step-item:hover path {
    fill: black;
}

.hamrah-step-item .step-arrow {
    width: 32px;
    height: 11px;
    background-image: url(../images/widget-process-arrow.png);
    background-repeat: no-repeat;
    position: relative;
    top: -90px;
    right: 100%
}

.hamrah-step-item:last-child .step-arrow {
    opacity: 0;
}

@media screen and (max-width: 767px) {
    .hamrah-process-steps {
        gap: 12px;
    }

    .hamrah-step-item {
        min-width: 140px;
        max-width: 100%;
    }
}

.hamrah-step-icon {
    font-size: 32px;
    color: #333;
    background-color: white;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    padding: 9px 15px;
    border: 8px solid rgba(234, 234, 234, 1);
    border-radius: 24px;
    position: relative;
    top: -52px;
    border-bottom: 8px solid white;
    transition: .3s;
}

.hamrah-step-icon svg,
.hamrah-step-icon path {
    fill: #002080;
}

.hamrah-step-item:hover .hamrah-step-icon {
    background-color: #FCB814;
    border: 8px solid rgba(255, 255, 255, 0.8);
    transition: .3s;
}

.hamrah-step-icon svg {
    width: 1em;
    height: 1em;
    fill: currentColor;
}

.hamrah-step-content {
    border: 1px solid #EAEAEA;
    border-radius: 16px;
    margin-top: -63px;
    padding: 5px;
    min-height: 80px;
}

.hamrah-step-title {
    font-size: 16px;
    font-weight: 900;
    color: #000014;
    margin: 10px 0;
}

.hamrah-step-desc {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* /Process steps widget */

/* Newsletter section */
#btn-submit-newsletter {
    box-shadow: 0 0 0 8px rgba(252, 184, 19, 0.2);
    transition: .3s;
}

#btn-submit-newsletter:hover {
    box-shadow: 0 0 0 8px rgba(252, 184, 19, 0.3);
    transition: .3s;
}

/* /Newsletter section */

/* Blog posts widget */
.hamrah-blog-post-item {
    background: white;
    background: linear-gradient(-136deg, white 8%, white 51%);
    border: 8px solid #EAEAEA;
    border-radius: 24px;
    transition: .3s;
}

@media screen and (max-width: 1279px) {
    .homepage-elements.elementor-widget-hamrah_blog_posts a {
        display: none;
    }

    .homepage-elements.elementor-widget-hamrah_blog_posts a:nth-child(1),
    .homepage-elements.elementor-widget-hamrah_blog_posts a:nth-child(2) {
        display: inherit;
    }
}

.hamrah-blog-post-item:hover {
    background: #7FA1F8;
    background: linear-gradient(-136deg, rgba(127, 161, 248, 1) 8%, rgba(0, 32, 128, 1) 51%);
    transition: .3s;
}

.hamrah-blog-post-item:hover .side-color span {
    width: 0;
    transition: .3s;
}

.hamrah-blog-post-item img {
    border-radius: 8px;
}

.hamrah-blog-post-item .content {
    border: 1px solid #EAEAEA;
    border-radius: 8px;
    transition: .3s;
}

.hamrah-blog-post-item:hover .content {
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: .3s;
}

.hamrah-blog-post-item .hamrah-post-title {
    font-size: 16px;
    font-weight: bold;
    color: black;
    min-height: 48px;
    transition: .3s;
}

.hamrah-blog-post-item:hover .hamrah-post-title {
    color: white;
    transition: .3s;
}

.hamrah-blog-post-item .hamrah-post-excerpt {
    font-size: 14px;
    font-weight: normal;
    color: black;
    color: rgba(0, 0, 0, 0.7);
    transition: .3s;
}

.hamrah-blog-post-item:hover .hamrah-post-excerpt {
    color: rgba(255, 255, 255, 0.7);
    transition: .3s;
}

.hamrah-blog-post-item .hamrah-post-meta {
    font-size: 14px;
    font-weight: 400;
    margin-right: 8px;
    transition: .3s;
}

.hamrah-blog-post-item:hover .hamrah-post-meta {
    color: white;
    transition: .3s;
}

.hamrah-blog-post-item:hover .hamrah-post-readmore path {
    fill: #FCB813;
    transition: .3s;
}

.hamrah-blog-post-item .side-color span {
    width: 16px;
    height: 8px;
    background-color: #FCB813;
    margin-right: -17px;
    position: absolute;
    margin-top: 10px;
    transition: .3s;
}
/* /Blog posts widget */

/* Learning posts widget */
.hamrah-learning-post-item {
    background: white;
    background: linear-gradient(-136deg, white 8%, white 51%);
    border: 8px solid #EAEAEA;
    border-radius: 24px;
    box-shadow: 0 9px 8px -9px #ababab;
    transition: .3s;
}

@media screen and (max-width: 1279px) {
    .homepage-elements.elementor-widget-hamrah_learning_posts a {
        display: none;
    }

    .homepage-elements.elementor-widget-hamrah_learning_posts a:nth-child(1),
    .homepage-elements.elementor-widget-hamrah_learning_posts a:nth-child(2) {
        display: inherit;
    }
}

.hamrah-learning-post-item:hover {
    background: #7FA1F8;
    background: linear-gradient(-136deg, rgba(127, 161, 248, 1) 7%, rgba(0, 32, 128, 1) 91%);
    transition: .3s;
}

.hamrah-learning-post-item:hover .side-color span {
    width: 0;
    margin-right: 26px;
    transition: .3s;
}

.hamrah-learning-post-item .hamrah-learning-post-image {
    border-radius: 8px;
    background-size: cover;
    background-position: center center;
}

.hamrah-learning-post-item .content {
    border: 1px solid #EAEAEA;
    border-radius: 8px;
    transition: .3s;
}

.hamrah-learning-post-item:hover .content {
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: .3s;
}

.hamrah-learning-post-item .hamrah-learning-post-title {
    font-size: 16px;
    font-weight: bold;
    color: black;
    transition: .3s;
}

.hamrah-learning-post-item:hover .hamrah-learning-post-title {
    color: white;
    transition: .3s;
}

.hamrah-learning-post-item .hamrah-learning-post-excerpt {
    font-size: 14px;
    font-weight: normal;
    color: rgba(0, 0, 0, 0.7);
    min-height: 42px;
    transition: .3s;
}

.hamrah-learning-post-item:hover .hamrah-learning-post-excerpt {
    color: rgba(255, 255, 255, 0.7);
    transition: .3s;
}

.hamrah-learning-post-item .hamrah-learning-post-meta {
    font-size: 14px;
    font-weight: 400;
    transition: .3s;
}

.hamrah-learning-post-item:hover .hamrah-learning-post-meta {
    color: white;
    transition: .3s;
}

.hamrah-learning-post-item:hover .hamrah-learning-post-readmore path {
    fill: #FCB813;
    transition: .3s;
}

.hamrah-learning-post-item .side-color {
    width: 100%;
    text-align: left;
}

.hamrah-learning-post-item .side-color span {
    width: 16px;
    height: 8px;
    background-color: #FCB813;
    margin-right: 10px;
    position: absolute;
    transition: .3s;
}

@media screen and (max-width: 767px) {
    .hamrah-learning-post-item .side-color {
        width: 16px;
        position: absolute;
        left: 33px;
    }
}
/* /Learning posts widget */

/* FAQ widget */
.faq-column {
    background: linear-gradient(90deg, #F3F3F3 0%, #EAEAEA 100%);
    border-radius: 24px;
    padding: 8px;
}

.hamrah-faq-item {
    background-color: white;
    padding: 8px;
    border-radius: 16px;
}

.hamrah-faq-item button {
    font-size: 16px;
    font-weight: 700;
    color: black;
    text-align: right;
    background-color: white;
    border: 1px solid #EAEAEA;
    border-radius: 8px;
    transition: .3s;
}

.hamrah-faq-item button[aria-expanded="true"] {
    color: white;
    background-color: black;
    transition: .3s;
}

.hamrah-faq-item button[aria-expanded="true"] .icon path {
    fill: #FCB813;
    opacity: 1;
}

.hamrah-faq-item button[aria-expanded="true"] .arrow path {
    fill: #FDFDFD;
}

.hamrah-faq-item .hamrah-faq-answer {
    position: absolute;
    background-color: white;
    width: 47.5%;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 10px 20px -11px gray;
    margin-right: -7px;
}

@media screen and (min-width: 768px) and (max-width: 1200px) {
    .hamrah-faq-item .hamrah-faq-answer {
        width: 46%;
    }
}

@media screen and (max-width: 767px) {
    .hamrah-faq-item .hamrah-faq-answer {
        width: 93%;
        position: absolute;
        left: 50% !important;
        right: inherit !important;
        transform: translateX(-50%) !important;
    }
}
/* /FAQ widget */

/* Gallery widget */
.hamrah-gallery-item {
    background: linear-gradient(233deg, white 26.81%, white 84.46%);
    padding: 8px;
    border-radius: 16px;
    box-shadow: 0 18px 14px -7px #dddddd;
    transition: .3s;
}

.hamrah-gallery-item:hover {
    background: linear-gradient(233deg, #FCB813 26.81%, #DD940E 84.46%);
    transition: .3s;
}

.hamrah-gallery-item:hover .side-color-right span {
    width: 1px;
    transition: .3s;
}

.hamrah-gallery-item:hover .side-color-left span {
    width: 0;
    margin-right: 8px;
    transition: .3s;
}

@media screen and (max-width: 1279px) {
    .homepage-elements .hamrah-gallery-item {
        display: none;
    }

    .homepage-elements .hamrah-gallery-item:nth-child(1),
    .homepage-elements .hamrah-gallery-item:nth-child(2) {
        display: inherit;
    }
}

.hamrah-gallery-item .hamrah-gallery-title {
    font-size: 16px;
    font-weight: 700;
    color: #000014;
    border: 1px solid #EAEAEA;
    border-radius: 8px;
    padding: 12px 16px;
    min-height: 74px;
    cursor: default;
}

.hamrah-gallery-item:hover .hamrah-gallery-title {
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: .3s;
}

.hamrah-gallery-item .side-color-right {
    text-align: right;
}

.hamrah-gallery-item .side-color-right span {
    width: 16px;
    height: 8px;
    background-color: #FCB813;
    margin-right: -25px;
    position: absolute;
    margin-top: 23px;
    transition: .3s;
}

.hamrah-gallery-item .side-color-left {
    width: 100%;
    text-align: left;
}

.hamrah-gallery-item .side-color-left span {
    width: 16px;
    height: 8px;
    background-color: #FCB813;
    margin-right: -7px;
    margin-top: -38px;
    position: absolute;
    transition: .3s;
}
/* /Gallery widget */

/* Honors widget */
.hamrah-honors {
    max-width: 100%;
}

@media screen and (max-width: 1279px) {
    .homepage-elements .hamrah-honor-item {
        display: none;
    }

    .homepage-elements .hamrah-honor-item:nth-child(1),
    .homepage-elements .hamrah-honor-item:nth-child(2) {
        display: inherit;
    }
}

.hamrah-honor-image {
    width: 100px;
    border-radius: 24px;
    margin-bottom: 8px;
    position: absolute;
    margin-left: 180px;
}

.hamrah-honor-name {
    color: #000014;
    background: linear-gradient(233deg, #EAEAEA 26.81%, #EAEAEA 84.46%);
    padding: 16px 48px 16px 16px;
    border-radius: 24px 24px 0 0;
    margin-left: 18px;
    transition: .3s;
}

.hamrah-honor-item:hover .hamrah-honor-name {
    color: #FDFDFD;
    background: linear-gradient(27deg, #002080 7.18%, #7FA1F8 112.39%);
    transition: .3s;
}

.hamrah-honor-item:hover .hamrah-honor-name .name-en {
    color: rgba(253, 253, 253, 0.7);
    transition: .3s;
}

.hamrah-honor-name .name-fa {
    font-size: 16px;
    font-weight: 900;
}

.hamrah-honor-name .name-en {
    font-size: 14px;
    font-weight: 400;
}

.hamrah-honor-title {
    background-color: white;
    padding: 8px;
    border: 8px solid #EAEAEA;
    border-radius: 24px;
    box-shadow: 0 21px 21px -20px gray;
}

.hamrah-honor-title .hamrah-honor-content {
    padding: 8px;
    border: 1px solid #EAEAEA;
    border-radius: 8px
}

.hamrah-honor-title .title-fa {
    color: #000014;
    font-size: 16px;
    font-weight: 700;
}

.hamrah-honor-title .title-en {
    color: #000014;
    font-size: 14px;
    font-weight: 400;
}

.hamrah-honor-title .side-color span {
    width: 9px;
    height: 8px;
    background-color: #FCB813;
    margin-right: -17px;
    position: absolute;
    margin-top: 18px;
}
/* /Honors widget */

/* Dropdown widget */
.hamrah-dropdown-wrapper .dropdown-list-box {
    background-color: #EAEAEA;
    min-height: 240px;
}

.hamrah-dropdown-wrapper .dropdown-button {
    min-width: 130px;
}

.hamrah-dropdown-wrapper .dropdown-button:after {
    font-family: "Font Awesome 5 Free";
    content: "\f078";
    display: inline-block;
    padding-right: 3px;
    vertical-align: middle;
    font-weight: 900;
    font-size: 14px;
}

.hamrah-dropdown-wrapper .dropdown-list {
    display: block;
    overflow-y: scroll;
    max-height: 170px;
    margin-top: 5px !important;
}

.hamrah-dropdown-wrapper .dropdown-list::-webkit-scrollbar {
    width: 5px;
    height: 8px;
    background-color: #CCD2E6;
}

.hamrah-dropdown-wrapper .dropdown-list::-webkit-scrollbar-thumb {
    background: #002080;
}

.hamrah-dropdown-wrapper ul {
    margin: 0 !important;
}

.hamrah-dropdown-wrapper ul li {
    margin: 8px 0 8px 12px !important;
}

.hamrah-dropdown-wrapper ul li.dropdown-item svg {
    display: inline;
}

.hamrah-dropdown-wrapper ul li.dropdown-item:hover {
    color: white;
    background: linear-gradient(24deg, rgba(0, 32, 128, 1) 9%, rgba(127, 161, 248, 1) 107%);
    transition: .3s;
}

.hamrah-dropdown-wrapper .goto-link:disabled {
    opacity: .6;
}

@media screen and (min-width: 1024px) {
    .hamrah-dropdown-wrapper .dropdown-button.opened {
        background-color: #7FA1F8 !important;
    }

    .hamrah-dropdown-wrapper .dropdown-list-box {
        position: absolute;
        margin-right: -122px;
        margin-top: -43px;
        padding-top: 55px;
        z-index: -1;
    }
}
/* /Dropdown widget */

/* Videos widget */
.hamrah-video-items {
    background: linear-gradient(-136deg, #F3F3F3 0%, #EAEAEA 100%);
    border-radius: 24px;
    padding: 8px;
}

.hamrah-video-item {
    background: white;
    background: linear-gradient(-136deg, white 8%, white 51%);
    border-radius: 16px;
    transition: .3s;
}

@media screen and (max-width: 1279px) {
    .homepage-elements.elementor-widget-hamrah_videos a {
        display: none;
    }

    .homepage-elements.elementor-widget-hamrah_videos a:nth-child(1),
    .homepage-elements.elementor-widget-hamrah_videos a:nth-child(2) {
        display: inherit;
    }
}

.hamrah-video-item:hover {
    background: #7FA1F8;
    background: linear-gradient(-136deg, rgba(127, 161, 248, 1) 7%, rgba(0, 32, 128, 1) 91%);
    transition: .3s;
}

.hamrah-video-item:hover .side-color span {
    width: 0;
    margin-right: 26px;
    transition: .3s;
}

.hamrah-video-item:hover .duration span {
    color: #F3F3F3;
    transition: .3s;
}

.hamrah-video-item .hamrah-video-image {
    border-radius: 8px;
    background-size: cover;
    background-position: center center;
}

.hamrah-video-item .hamrah-video-image-cover {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 7px;
}

.hamrah-video-item .content {
    border: 1px solid #EAEAEA;
    border-radius: 8px;
    transition: .3s;
}

.hamrah-video-item:hover .content {
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: .3s;
}

.hamrah-video-item .hamrah-video-title {
    font-size: 16px;
    font-weight: bold;
    color: black;
    padding-left: 40px;
    transition: .3s;
}

.hamrah-video-item:hover .hamrah-video-title {
    color: white;
    transition: .3s;
}

.hamrah-video-item .hamrah-video-excerpt {
    font-size: 14px;
    font-weight: normal;
    color: rgba(0, 0, 0, 0.7);
    padding-left: 40px;
    transition: .3s;
}

.hamrah-video-item:hover .hamrah-video-excerpt {
    color: rgba(255, 255, 255, 0.7);
    transition: .3s;
}

.hamrah-video-item .hamrah-video-meta {
    font-size: 14px;
    font-weight: 400;
    transition: .3s;
}

.hamrah-video-item:hover .hamrah-video-meta {
    color: white;
    transition: .3s;
}

.hamrah-video-item:hover .hamrah-video-readmore path {
    fill: #FCB813;
    transition: .3s;
}

.hamrah-video-item .side-color,
.hamrah-video-item .duration {
    width: 100%;
    text-align: left;
}

.hamrah-video-item .side-color span {
    width: 16px;
    height: 8px;
    background-color: #FCB813;
    margin-right: 10px;
    margin-top: -10px;
    position: absolute;
    transition: .3s;
}

.hamrah-video-item .duration span {
    color: #002080;
    margin-right: -28px;
    margin-top: -16px;
    position: absolute;
    transition: .3s;
}
/* /Videos widget */

/* Shorts widget */
.hamrah-short-item {
    background: linear-gradient(-136deg, #F3F3F3 0%, #EAEAEA 100%) center;
    background-size: cover;
    border-radius: 24px;
    min-height: 328px;
    transition: .3s;
}

@media screen and (max-width: 1279px) {
    .homepage-elements .hamrah-short-item {
        display: none;
    }

    .homepage-elements .hamrah-short-item:nth-child(1),
    .homepage-elements .hamrah-short-item:nth-child(2) {
        display: inherit;
    }
}

@media screen and (max-width: 639px) {
    .homepage-elements .hamrah-short-item:nth-child(2) {
        display: none;
    }
}

.hamrah-short-item:hover {
    background: #7FA1F8;
    background: linear-gradient(-136deg, rgba(127, 161, 248, 1) 7%, rgba(0, 32, 128, 1) 91%) center;
    background-size: cover;
    transition: .3s;
}

@media screen and (min-width: 768px) {
    .hamrah-short-item.first-item {
        width: 120%;
        height: 120%;
        margin-top: -68px;
        margin-right: -40px;
    }
}


.hamrah-short-item .hamrah-short-image {
    border-radius: 8px;
    background-size: cover;
    background-position: center center;
}

.hamrah-short-item .hamrah-short-image-cover {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 7px;
}

.hamrah-short-item .short-item {
    background: linear-gradient(-180deg, rgba(0, 0, 0, .6) 0%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, .6) 100%);
    border-radius: 24px;
    transition: .3s;
}

.hamrah-short-item:hover .short-item {
    background: linear-gradient(-180deg, rgba(0, 0, 0, .7) 0%, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, .7) 100%);
    border-radius: 24px;
    transition: .3s;
}

.hamrah-short-item .hamrah-short-time {
    font-size: 16px;
    font-weight: bold;
    text-align: left;
    color: #FDFDFD;
    padding: 16px 16px 0 16px;
    transition: .3s;
}

.hamrah-short-item .hamrah-short-title {
    font-size: 14px;
    font-weight: bold;
    color: #FDFDFD;
    padding: 12px 12px 0 12px;
    transition: .3s;
}

.hamrah-short-item:hover .hamrah-short-title {
    color: white;
    transition: .3s;
}

.hamrah-short-item .play-icon {
    background: rgba(252, 184, 19, 0);
    padding: 10px 14px 10px 14px;
    border-radius: 16px;
    box-shadow: 0 0 0 8px rgba(252, 184, 19, 0);
    transition: .3s;
}

@media screen and (max-width: 767px) {
    .hamrah-short-item .play-icon {
        background: #FCB813;
        box-shadow: 0 0 0 8px rgba(252, 184, 19, 0.3);
        position: absolute;
        top: 180px;
        margin-right: 66px;
    }
}

@media screen and (max-width: 639px) {
    .hamrah-short-item .play-icon {
        margin-right: 76px;
    }
}

.hamrah-short-item:hover .play-icon {
    background: #FCB813;
    box-shadow: 0 0 0 8px rgba(252, 184, 19, 0.3);
    transition: .3s;
}

.hamrah-short-item:hover .play-icon path {
    fill: black;
    transition: .3s;
}

.hamrah-short-item .hamrah-short-excerpt {
    font-size: 14px;
    font-weight: normal;
    color: rgba(0, 0, 0, 0.7);
    min-height: 42px;
    transition: .3s;
}

.hamrah-short-item:hover .hamrah-short-excerpt {
    color: rgba(255, 255, 255, 0.7);
    transition: .3s;
}

.hamrah-short-item .hamrah-short-meta {
    font-size: 14px;
    font-weight: 400;
    transition: .3s;
}

.hamrah-short-item:hover .hamrah-short-meta {
    color: white;
    transition: .3s;
}

.hamrah-short-item:hover .hamrah-short-readmore path {
    fill: #FCB813;
    transition: .3s;
}
/* /Shorts widget */
