/* ------------------------------------------ */
/*         General & Basic Styles
/* ------------------------------------------ */
body,
html {
    overflow-x: hidden;
}

body {
    font-family: "STC-regular";
    direction: ltr;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: 0;
}

ul {
    margin-bottom: 0;
    padding: 0 !important;
    list-style: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin-bottom: 0 !important;
}

p {
    margin-bottom: 0 !important;
}

a {
    text-decoration: none !important;
    outline: none;
    transition: all 0.3s;
}

a:hover,
a:active,
a:focus {
    outline: 0;
}

.background-cover {
    background-size: cover !important;
}

input,
textarea,
button,
select {
    outline: none;
    border: none;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

.overflow-h {
    overflow: hidden;
}

.btn-style {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 225px;
    height: 60px;
    border-radius: 100px;
    font-size: 20px;
    font-family: "STC-medium";
}

.hooper {
    height: unset !important;
}

.sr-only {
    display: none !important;
}

.loading-spinner {
    width: 50px;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 8px solid;
    border-color: #000 rgba(0, 0, 0, 0);
    margin: auto;
    animation: loading-spinner 1s infinite;
}


@keyframes loading-spinner {
    to {
        transform: rotate(0.5turn);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(0, 13px, 0);
    }
}

@keyframes jumpInfinite {
    0% {
        opacity: 1;
        transform: translateY(0px);
    }

    50% {
        opacity: 0;
        transform: translateY(50px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

.mobile-menu {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: -1;
    left: 0;
    top: 0;
    opacity: 0;
    transition: all 0.3s;
}

.mobile-menu.active {
    opacity: 1;
    z-index: 999999;
}

.mobile-menu.active .bg-close {
    z-index: 99;
}

.mobile-menu .bg-close {
    background-color: rgba(0, 0, 0, 0.4);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    cursor: pointer;
}

.mobile-menu .menu-content {
    width: 320px;
    max-width: 100%;
    background-color: #f7f7f7;
    position: absolute;
    top: 0;
    height: 100%;
    overflow: auto;
    z-index: 100;
    right: -320px;
    transition: all 0.3s;
}

.mobile-menu .menu-content.active {
    right: 0;
}

.mobile-menu .menu-content .menu-head {
    padding: 10px 0;
    background-color: #fff;
    padding-left: 21px;
}

.mobile-menu .menu-content .menu-head .menu-logo {
    display: block;
    margin: 15px 10px 20px;
    width: 180px;
}

.mobile-menu .menu-content .menu-head .close-x svg {
    position: absolute;
    top: 15px;
    left: 20px;
    width: 30px;
    height: 30px;
    cursor: pointer;
}

.mobile-menu .menu-content .res-menu {
    padding-bottom: 20px;
}

.mobile-menu .menu-content .res-menu li a,
.mobile-menu .menu-content .res-menu li div {
    color: #000;
    height: 50px;
    display: block;
    font-size: 15px;
    padding: 0 15px;
    line-height: 50px;
    cursor: pointer;
    font-family: "STC-Bold";
    border-bottom: 1px solid #eee;
}

.mobile-menu .menu-content .res-menu li a svg,
.mobile-menu .menu-content .res-menu li div svg {
    float: left;
    margin-top: 17px;
}

.mobile-menu .menu-content .res-menu li .sub-menu {
    display: none;
}

.mobile-menu .menu-content .res-menu li .sub-menu.active {
    display: block;
}

.mobile-menu .menu-content .res-menu li .sub-menu li a {
    position: relative;
}

.mobile-menu .menu-content .res-menu li .sub-menu li svg {
    float: right;
    margin-top: 18px;
    margin-left: 20px;
}

.mobile-menu .menu-content .login {
    width: 170px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    color: #fff;
    font-size: 18px;
    font-family: "STC-Bold";
    margin: 20px 0;
    display: inline-block;
    border-radius: 35px;
    background-color: #00c5bb;
}

.mobile-menu .menu-content .free-trail {
    width: 170px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    color: #fff;
    font-size: 18px;
    font-family: "STC-Bold";
    margin-bottom: 20px !important;
    display: inline-block;
    border-radius: 35px;
    background-color: #00ADC8;
}

.mobile-menu .menu-content .social-links {
    text-align: center;
    margin-bottom: 20px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.mobile-menu .menu-content .social-links li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background-color: #fdd302;
    color: #fff;
    border-radius: 5px;
    text-align: center;
    font-size: 18px;
}

/* ------------------------------------------ */
/*         Header
/* ------------------------------------------ */
.header {
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 999;
    background-color: #fff;
}

.header.fixed {
    box-shadow: 0 0 29px 0 rgba(7, 8, 8, 0.2);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.header .content {
    display: flex;
    align-items: center;
    font-family: "STC-medium";
    gap: 40px;
}

.header .content .menu>ul {
    display: flex;
    align-items: center;
    gap: 30px;
}

.header .content .menu>ul>li>a {
    display: flex;
    align-items: center;
    gap: 5px;
    height: 100px;
    font-size: 18px;
    color: #023a51;
    cursor: pointer;
}

.header .content .menu>ul>li>a.has-menu:hover~.has-sub-menu {
    visibility: visible;
    animation: fadeIn 0.3s ease 1;
    display: block;
}

.header .content .lang {
    margin-right: 15px;
}

.header .content .lang a {
    font-size: 16px;
    color: #023a51;
    cursor: pointer;
}

.header .content .button a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 50px;
    border-radius: 100px;
    background-color: #00c5bb;
    font-size: 18px;
    color: #fff;
    cursor: pointer;
}

.header .menu-mobile-icon {
    display: none;
    font-size: 24px;
}

.header .has-sub-menu {
    position: absolute;
    top: 100%;
    /* left: 50%;
    transform: translateX(-50%); */
    width: 100%;
    display: none;
    visibility: hidden;
    transition: all 0.5s;
    z-index: -1;
}

.header .has-sub-menu:hover {
    visibility: visible;
    animation: fadeIn 0.3s ease 1;
    display: block;
}

.header .has-sub-menu {
    width: -moz-fit-content;
    width: fit-content;
}

.header .has-sub-menu .list {
    display: flex;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
    border-radius: 0 0 5px 5px;
    overflow: hidden;
}

.header .has-sub-menu .list .list-menu {
    padding: 15px;
    background-color: #fff;
}

.header .has-sub-menu .list .list-menu ul li a {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header .has-sub-menu .list .list-menu ul li a .icon {
    display: flex;
    width: 60px;
    height: 60px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.header .has-sub-menu .list .list-menu ul li a .text {
    width: 265px;
}

.header .has-sub-menu .list .list-menu ul li a .text p {
    font-size: 18px;
    color: #000;
    margin-bottom: 5px !important;
}

.header .has-sub-menu .list .list-menu ul li a .text span {
    font-size: 14px;
    font-family: "STC-Light";
    color: #000;
}

.header .has-sub-menu .list .list-menu ul li:not(:last-child) {
    margin-bottom: 35px !important;
}

.header .has-sub-menu .list .list-menu ul li:nth-child(1) .icon {
    background-color: #ebf3ff;
}

.header .has-sub-menu .list .list-menu ul li:nth-child(2) .icon {
    background-color: #fef8e0;
}

.header .has-sub-menu .list .list-menu ul li:nth-child(3) .icon {
    background-color: #e3f7ec;
}

.header .more-menu {
    background-color: #fff;
    border-radius: 10px;
    padding: 35px 40px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
}

.header .more-menu .title {
    font-size: 20px;
    font-family: "STC-Bold";
    color: #000;
    margin-right: 5px;
}

.header .more-menu .menu-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin: 30px 0 40px;
}

.header .more-menu .menu-list li a {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header .more-menu .menu-list li a .icon {
    display: flex;
    width: 60px;
    height: 60px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.header .more-menu .menu-list li a .text {
    width: 265px;
}

.header .more-menu .menu-list li a .text p {
    font-size: 18px;
    color: #000;
    margin-bottom: 5px !important;
}

.header .more-menu .menu-list li a .text span {
    font-size: 14px;
    font-family: "STC-Light";
    color: #000;
}

.header .more-menu .menu-list li:nth-child(1) .icon {
    background-color: #ebf3ff;
}

.header .more-menu .menu-list li:nth-child(2) .icon {
    background-color: #fef8e0;
}

.header .more-menu .menu-list li:nth-child(3) .icon {
    background-color: #e3f7ec;
}

/* ------------------------------------------ */
/*         Footer
/* ------------------------------------------ */
.footer {
    position: relative;
    overflow-y: hidden;
}

.footer .go-top {
    position: absolute;
    bottom: 45px;
    left: 50px;
    animation: jumpInfinite 3s infinite;
    transform: translateY(50px);
    cursor: pointer;
}

.footer .whatsapp {
    position: fixed;
    bottom: 50px;
    left: 50px;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 145px;
    height: 40px;
    background-color: #3c9700;
    border-radius: 20px;
    font-size: 14px;
    color: #fff;
    line-height: 40px;
}

.footer .footer-content {
    background-color: #141414;
    padding-top: 40px;
}

.footer .footer-content .footer-lists {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    border-bottom: 1px solid #262626;
    padding-bottom: 80px;
}

.footer .footer-content .footer-lists .list li {
    margin-bottom: 30px;
}

.footer .footer-content .footer-lists .list li a {
    font-size: 14px;
    font-family: "STC-Light";
    color: #fff;
}

.footer .footer-content .footer-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 0;
}

.footer .footer-content .footer-info .copyright {
    font-size: 14px;
    font-family: "STC-Light";
    color: #fff;
}

.footer .footer-content .footer-info .social-link {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer .footer-content .footer-info .social-link li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: #202020;
    border-radius: 50%;
}

.footer .footer-content .footer-info .social-link li a svg {
    color: #c2c4cb;
}

/* ------------------------------------------ */
/*          Blog Page
/* ------------------------------------------ */
.blog-page {
    padding: 100px 0 0;
    background-color: #f6f6f6;
}

.blog-page .head {
    background-color: #141414;
    padding: 115px 0 75px;
    text-align: center;
}

.blog-page .head .head-title {
    font-size: 30px;
    font-family: "STC-Bold";
    color: #fff;
    margin-bottom: 5px !important;
}

.blog-page .head .head-desc {
    display: block;
    margin-bottom: 45px !important;
    font-size: 14px;
    color: #fff;
}

.blog-page .head .search {
    max-width: 820px;
    margin: auto;
    position: relative;
}

.blog-page .head .search .search-box {
    position: relative;
    width: 100%;
    z-index: 2;
}

.blog-page .head .search .search-box input {
    width: 100%;
    padding: 25px;
    border-radius: 10px;
    font-size: 16px;
    color: #000;
}

.blog-page .head .search .search-box input::-moz-placeholder {
    color: #000;
    opacity: 1;
}

.blog-page .head .search .search-box input::placeholder {
    color: #000;
    opacity: 1;
}

.blog-page .head .search .search-box .search-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
    color: #000;
}

.blog-page .head .search .archive-results {
    position: absolute;
    top: 60px;
    width: 100%;
    background-color: #fff;
    z-index: 1;
    box-shadow: 0 2px 12px rgba(207, 207, 207, 0.3803921569);
    border-radius: 10px;
    text-align: left;
}

.blog-page .head .search .archive-results .search-title {
    padding: 0 25px;
    font-size: 14px;
    opacity: 0;
    height: 0;
}

.blog-page .head .search .archive-results .search-list {
    transition: 0.3s;
    width: calc(100% - 30px);
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    padding: 0;
    margin: 0 auto;
}

.blog-page .head .search .archive-results .search-list li:not(:first-child) {
    border-top: 1px solid #eee;
}

.blog-page .head .search .archive-results .search-list li a {
    color: #023a51;
    font-size: 14px;
    padding: 10px;
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.2, 1, 0.3, 1);
    display: flex;
    align-items: center;
}

.blog-page .head .search .archive-results .search-list li a .icon {
    border: 1px solid #00c5bb;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
    margin-right: 10px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-page .head .search .archive-results .search-list li a .icon svg {
    font-size: 16px;
    color: #023a51;
    opacity: 0.5;
}

.blog-page .head .search .archive-results.focused .search-title {
    padding-top: 15px;
    opacity: 1;
    height: auto;
}

.blog-page .head .search .archive-results.focused .search-list {
    opacity: 1;
    max-height: 273px;
    margin-bottom: 15px;
    margin-top: 15px;
    overflow-y: auto;
}

.blog-page .content {
    padding: 80px 0 195px;
}

.blog-page .content .slider {
    position: relative;
}

.blog-page .content .slider .item .box {
    display: flex;
    align-items: center;
    background-color: #fff;
    direction: ltr;
}

.blog-page .content .slider .item .box .text {
    flex-basis: 50%;
    padding: 70px 60px;
    text-align: left;
}

.blog-page .content .slider .item .box .text h2 {
    max-width: 100%;
    font-size: 45px;
    font-family: "STC-Bold";
    line-height: 60px;
    color: #000;
    margin: 10px 0 15px;
}

.blog-page .content .slider .item .box .text .date svg {
    color: #a2a2a2;
}

.blog-page .content .slider .item .box .text .date span {
    font-size: 14px;
    font-family: "STC-Light";
    color: #a2a2a2;
}

.blog-page .content .slider .item .box .image {
    flex-basis: 50%;
}

.blog-page .content .slider .item .box .image img {
    width: 100%;
    max-width: 100%;
}

.blog-page .content .slider .hooper-navigation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
}

.blog-page .content .slider .hooper-navigation .hooper-prev,
.blog-page .content .slider .hooper-navigation .hooper-next {
    left: unset;
    right: unset;
    padding: unset;
    position: absolute;
    top: unset;
    transform: unset;
}

.blog-page .content .slider .hooper-navigation .hooper-prev .icon,
.blog-page .content .slider .hooper-navigation .hooper-next .icon {
    width: 48px;
    height: 48px;
}

.blog-page .content .slider .hooper-navigation .hooper-prev {
    right: -170px;
}

.blog-page .content .slider .hooper-navigation .hooper-next {
    left: -170px;
}

.blog-page .content .blogs {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    margin: 65px 0 60px;
}

.blog-page .content .blogs .blog-box {
    width: 630px;
    height: 600px;
    background-color: #fff;
}

.blog-page .content .blogs .blog-box .image {
    height: 355px;
    overflow: hidden;
}

.blog-page .content .blogs .blog-box .image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.blog-page .content .blogs .blog-box .text {
    padding: 30px 50px 40px;
    color: #000;
}

.blog-page .content .blogs .blog-box .text .title {
    max-width: 500px;
    font-size: 30px;
    font-family: "STC-Bold";
    line-height: 40px;
    margin: 15px 0 10px;
}

.blog-page .content .blogs .blog-box .text .desc {
    line-height: 1.8;
    margin: 5px 0 10px;
}

.blog-page .content .blogs .blog-box .text .date {
    display: flex;
    gap: 10px;
}

.blog-page .content .blogs .blog-box .text .date svg {
    color: #a2a2a2;
}

.blog-page .content .blogs .blog-box .text .date span {
    font-size: 14px;
    font-family: "STC-Light";
    color: #a2a2a2;
}


/* ------------------------------------------ */
/*          Blog details Page
/* ------------------------------------------ */
.blog-details-page {
    background-color: #f6f6f6;
    padding: 140px 0 100px;
}

.blog-details-page .content {
    background-color: #fff;
    padding: 70px;
}

.blog-details-page .content .blog-image img {
    width: 100%;
    max-width: 100%;
}

.blog-details-page .content .blog-categories {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
}

.blog-details-page .content .blog-categories .label {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 135px;
    height: 40px;
    background-color: #f8f8f8;
    border-radius: 20px;
    color: #666666;
    font-size: 14px;
    font-family: "STC-Light";
}

.blog-details-page .content .blog-details {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.blog-details-page .content .blog-details .details {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: 35px 0 20px;
}

.blog-details-page .content .blog-details .details .date span,
.blog-details-page .content .blog-details .details .views span,
.blog-details-page .content .blog-details .details .share span {
    font-size: 14px;
    font-family: "STC-Light";
    color: #a2a2a2;
    display: inline-block;
    margin-right: 5px;
}

.blog-details-page .content .blog-details .share {
    position: relative;
    cursor: pointer;
}

.blog-details-page .content .blog-details .share .open-share {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 115px;
    height: 40px;
    background-color: #ebf3ff;
    border-radius: 20px;
}

.blog-details-page .content .blog-details .share .open-share p {
    font-size: 14px;
    font-family: "STC-medium";
    color: #000;
}

.blog-details-page .content .blog-details .share .list-social {
    position: absolute;
    width: 130px;
    left: -5px;
    top: 55px;
    background-color: #fff;
    box-shadow: 0px 0px 6px 3px rgba(53, 53, 53, 0.06);
    z-index: 99;
}

.blog-details-page .content .blog-details .share .list-social li:not(:last-of-type) {
    border-bottom: 1px solid #f5f8fa;
}

.blog-details-page .content .blog-details .share .list-social li a {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    height: 45px;
    color: #8ba0b9;
    font-size: 13px;
    border-radius: 3px;
    padding: 0 15px;
}

.blog-details-page .content .blog-details .share .list-social li a .icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.blog-details-page .content .blog-details .share .list-social li a .icon svg {
    font-size: 8px;
    color: #fff;
    transition: all 0.3s;
}

.blog-details-page .content .blog-details .share .list-social li a:hover .icon {
    margin-right: 15px;
}

.blog-details-page .content .blog-details .share .list-social li a.facebook .icon {
    background-color: #334c8c;
}

.blog-details-page .content .blog-details .share .list-social li a.twitter .icon {
    background-color: #00a6de;
}

.blog-details-page .content .blog-details .share .list-social li a.linkedin .icon {
    background-color: #0b69c7;
}

.blog-details-page .content .blog-details .share .list-social li a.whats .icon {
    background-color: #2aa81a;
}

.blog-details-page .content .blog-title {
    font-size: 40px;
    font-family: "STC-Bold";
    line-height: 60px;
    color: #000;
    max-width: 970px;
}

.blog-details-page .content .blog-font-resize {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    width: -moz-fit-content;
    width: fit-content;
    border: 1px solid #00c5bb;
    border-radius: 100px;
    margin: 10px auto;
}

.blog-details-page .content .blog-font-resize .btn {
    border: none;
}

.blog-details-page .content .blog-font-resize .btn.lg {
    font-size: 1.2rem;
    line-height: 35px;
}

.blog-details-page .content .blog-font-resize .btn.sm {
    font-size: 0.9rem;
    line-height: 25px;
}

.blog-details-page .content .blog-font-resize .btn.base {
    font-size: 1rem;
    line-height: 30px;
}

.blog-details-page .content .blog-font-resize .btn.active {
    color: #00c5bb;
}

.blog-details-page .content .blog-content {
    margin: 25px 0 50px;
    font-size: 18px !important;
    font-family: "STC-regular" !important;
}

.blog-details-page .content .blog-content.lg {
    font-size: 1.2rem !important;
    line-height: 35px !important;
}

.blog-details-page .content .blog-content.sm {
    font-size: 0.9rem !important;
    line-height: 25px !important;
}

.blog-details-page .content .blog-content.base {
    font-size: 1rem !important;
    line-height: 30px !important;
}

.blog-details-page .content .reactions,
.blog-details-page .content .rating {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    border-top: 1px solid #ebebeb;
}

.blog-details-page .content .reactions .label,
.blog-details-page .content .rating .label {
    font-size: 18px;
}

.blog-details-page .content .reactions .reacts,
.blog-details-page .content .rating .reacts {
    display: flex;
    align-items: center;
    gap: 15px;
}

.blog-details-page .content .reactions .reacts .react,
.blog-details-page .content .rating .reacts .react {
    display: block;
    cursor: pointer;
    transition: all 0.3s;
}

.blog-details-page .content .reactions .reacts .react:hover,
.blog-details-page .content .reactions .reacts .react.active,
.blog-details-page .content .rating .reacts .react:hover,
.blog-details-page .content .rating .reacts .react.active {
    transform: scale(1.5);
}

.blog-details-page .content .similar-blog {
    padding-top: 40px;
    border-top: 1px solid #ebebeb;
}

.blog-details-page .content .similar-blog>.title {
    font-size: 20px;
    font-family: "STC-Bold";
    color: #878787;
    margin-bottom: 40px !important;
}

.blog-details-page .content .similar-blog .slider {
    position: relative;
}

.blog-details-page .content .similar-blog .slider .item .blog-box {
    display: block;
    margin: 0 12px;
}

.blog-details-page .content .similar-blog .slider .item .blog-box .image img {
    width: 100%;
}

.blog-details-page .content .similar-blog .slider .item .blog-box .text {
    padding: 30px;
    background-color: #f9f9f9;
    height: 160px;
    text-align: left;
    direction: ltr;
}

.blog-details-page .content .similar-blog .slider .item .blog-box .text .title {
    max-width: 100%;
    font-size: 16px;
    font-family: "STC-medium";
    line-height: 30px;
    color: #000;
    margin-bottom: 10px !important;
}


.blog-details-page .content .similar-blog .slider .item .blog-box .text .date svg {
    color: #a2a2a2;
}

.blog-details-page .content .similar-blog .slider .item .blog-box .text .date span {
    font-size: 14px;
    font-family: "STC-Light";
    color: #a2a2a2;
}

.blog-details-page .content .similar-blog .slider .hooper-navigation {
    position: absolute;
    top: -90px;
    right: 30px;
}

.blog-details-page .content .similar-blog .slider .hooper-navigation button {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 22px;
}

.blog-details-page .content .similar-blog .slider .hooper-navigation button.hooper-prev,
.blog-details-page .content .similar-blog .slider .hooper-navigation button.hooper-next {
    left: unset;
    right: unset;
    padding: unset;
    position: absolute;
    top: unset;
    transform: unset;
}

.blog-details-page .content .similar-blog .slider .hooper-navigation button.hooper-prev {
    left: 0;
}

.blog-details-page .content .similar-blog .slider .hooper-navigation button.hooper-next {
    right: 0;
    background-color: #f1f1f1;
}

/*# sourceMappingURL=style-rtl.css.map */
