@import url(styles.css);

/* Start Fonts */
li.catnname a {
    display: inline-block !important;
}
@font-face {
    font-family: 'araboto';
    src: url(../fonts/araboto_Normal.ttf);
}

@font-face {
    font-family: 'arabotoLight';
    src: url(../fonts/araboto_Light.ttf);
}

@font-face {
    font-family: 'arabotoMed';
    src: url(../fonts/araboto_Medium.ttf);
}

@font-face {
    font-family: 'arabotoBold';
    src: url(../fonts/araboto_Bold.ttf);
}

/* End Fonts */

:root {
    --main-color: #5B158A;
    --sec-color: #E3A658;
    --dark-color: #000;
    --bg-color: #F0F0F0;
    --radius: 21.29px;
}

* {
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: #000;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

a:hover {
    text-decoration: none;
    color: var(--thr-color);
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

a:focus {
    text-decoration: none;
    /* color: inherit; */
}

button,
button:hover {
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

body {
    padding: 0;
    margin: 0;
    font-family: 'araboto';
    background: #fff;
    text-align: start;
    direction: rtl;
}

section,
footer {
    /* overflow: hidden; */
    position: relative;
}

p {
    margin: 0;
    font-size: 15px;
    line-height: 25px;
}

ul {
    padding: 0;
    margin: 0;
    display: block;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

li {
    display: block;
    list-style: none;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

iframe {
    width: 100%;
    height: 100%;
}

.padding {
    padding: 0 !important;
}

img {
    max-width: 100%;
}

input,
button,
input:focus,
button:focus,
input:active,
button:active,
button:hover,
textarea:active,
textarea:focus,
select,
select:active,
select:focus {
    outline: none !important;
}

textarea {
    resize: none;
}

main {
    overflow: hidden;
    /* position: relative; */
    /* min-height: 100vh; */
}

.owl-carousel {
    direction: ltr;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    text-transform: capitalize;
}

/* Start Sidebar */

.cursor {
    opacity: 0;
    transition: all .5s;
    display: none;
}

.mobile-menu {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100vh;
    padding: 20px;
    /* padding-top: 30.1px; */
    /* padding-bottom: 53.1px; */
    z-index: -1;
    opacity: 0;
    transition: all .3s;
    background: var(--main-color);
    visibility: hidden;
    /* transform: scaleY(0) translateY(-100%); */
    right: -100%;
}

.menu-backdrop {
    position: fixed;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: -10;
    opacity: 0;
    transition: all .3s;
}

.mobile-menu .menu-box {
    position: relative;
    z-index: 2;
    height: calc(100% - 70px);
    /* display: flex; */
    /* align-items: center; */
    /* -webkit-align-items: center; */
}

.mobile-menu .menu-box .navigation li {
    /* margin: 0 0 20px; */
    /* text-align: center; */
}

.mobile-menu .menu-box .navigation li a {
    text-transform: capitalize;
    font-size: 17px;
    font-weight: 500;
    line-height: 27px;
    color: #fff;
    padding: 12px 0;
    display: block;
    border-bottom: 1px #eeeeee12 solid;
    text-align: start;
    text-transform: capitalize;
}

.menu-right {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    gap: 37px;
}

body.mobile-menu-visible .mobile-menu {
    right: 0;
    opacity: 1;
    z-index: 999999;
    visibility: visible;
    /* transform: none; */
}

/* End Sidebar */

/*** 

====================================================================
	Start Search Popup
====================================================================

***/

.search-popup {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100%;
    z-index: 99999;
    margin-top: -200%;
    transform: translateY(-100%);
    background-color: rgba(0, 0, 0, 0.90);
    -webkit-transition: all 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition: all 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition: all 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition: all 1500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -webkit-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
}

.sidenav-bar-visible .search-popup {
    width: 80%;
}

.search-popup:before {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: 560px;
    /* background-image: url(../images/waves-shape.png); */
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin-top: 0px;
    content: "";
}

.search-active .search-popup {
    transform: translateY(0%);
    margin-top: 0;
}

.search-popup .close-search {
    position: absolute;
    left: 0;
    right: 0;
    top: 75%;
    margin: 0 auto;
    margin-top: -200px;
    border-radius: 50%;
    text-align: center;
    background-color: var(--main-color);
    width: 70px;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    border-bottom: 3px solid #ffffff;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    opacity: 0;
    visibility: hidden;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    text-align: center;
    padding: 0;
}

.search-popup .close-search span {
    position: relative;
    display: block;
    height: 70px;
    width: 70px;
    font-size: 30px;
    line-height: 70px;
    color: #ffffff;
}

.search-active .search-popup .close-search {
    visibility: visible;
    opacity: 1;
    top: 50%;
    -webkit-transition-delay: 1500ms;
    -moz-transition-delay: 1500ms;
    -ms-transition-delay: 1500ms;
    -o-transition-delay: 1500ms;
    transition-delay: 1500ms;
}

.search-popup form {
    position: absolute;
    max-width: 700px;
    top: 50%;
    left: 15px;
    right: 15px;
    margin: -35px auto 0;
    transform: scaleX(0);
    transform-origin: center;
    background-color: #111111;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.search-active .search-popup form {
    transform: scaleX(1);
    -webkit-transition-delay: 1200ms;
    -moz-transition-delay: 1200ms;
    -ms-transition-delay: 1200ms;
    -o-transition-delay: 1200ms;
    transition-delay: 1200ms;
}

.search-popup .form-group {
    position: relative;
    margin: 0px;
    overflow: hidden;
}

.search-popup .form-group input[type="text"],
.search-popup .form-group input[type="search"] {
    position: relative;
    display: block;
    font-size: 14px;
    line-height: 50px;
    color: #000000;
    height: 70px;
    width: 100%;
    padding: 10px 30px;
    background-color: #ffffff;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    font-weight: 500;
    text-transform: capitalize;
}

.search-popup .form-group input[type="submit"],
.search-popup .form-group button {
    position: absolute;
    left: 30px;
    top: 0px;
    height: 70px;
    line-height: 70px;
    background: transparent;
    text-align: center;
    font-size: 24px;
    color: #000000;
    padding: 0;
    cursor: pointer;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.search-popup .form-group input[type="submit"]:hover,
.search-popup .form-group button:hover {
    color: #000000;
}

.search-popup input::placeholder,
.search-popup textarea::placeholder {
    color: #000000;
}

.search-popup .close-search.style-two {
    position: absolute;
    right: 25px;
    left: auto;
    color: #ffffff;
    width: auto;
    height: auto;
    top: 25px;
    margin: 0px;
    border: none;
    background: none !important;
    box-shadow: none !important;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.search-popup .close-search.style-two span {
    font-size: 20px;
    color: #ffffff;
}


/*** 

====================================================================
	End Search Popup
====================================================================

***/


/* Start Header */

.header-med .head-inner ul {
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-align-items: center;
    /* margin-top: 27px; */
    gap: 26px;
}

header.sticky {
    position: absolute;
    z-index: 9;
    left: 0;
    right: 0;
    padding: 30px 0;
    /* overflow: hidden; */
    top: 0;
}

.header-med .head-inner .logo a {
    display: block;
    max-width: 63px;
}

.close-btn {
    color: #fff;
    display: table;
    margin: 0 0 20px;
    margin-inline-start: auto;
    font-size: 18px;
    cursor: pointer;
    width: 40.37px;
    height: 40.37px;
    border-radius: 50%;
    border: 0.47px solid #fff;
    line-height: 40.37px;
    text-align: center;
}

.menu-right .mobile-nav-toggler .lines {
    display: block;
    width: 53px;
    overflow: hidden;
}

.menu-right .mobile-nav-toggler .lines i {
    display: block;
    width: 53px;
    height: 4px;
    margin: 6.5px 0;
    transition: all .5s;
    position: relative;
    overflow: hidden;
}

.menu-right .mobile-nav-toggler .lines ::after,
.menu-right .mobile-nav-toggler .lines ::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    background: #fff;
    transition: all .5s;
    top: 0;
}

.menu-right .mobile-nav-toggler .lines ::after {
    transform: translateX(-50px);
    transition: all .3s;
}

.menu-right .mobile-nav-toggler:hover .lines ::after {
    transform: none;
}

.menu-right .mobile-nav-toggler:hover .lines ::before {
    transform: translateX(50px);
}

.menu-right .mobile-nav-toggler .lines .line2::after {
    transition: all .5s;
}

.menu-right .mobile-nav-toggler .lines .line3::after {
    transition: all .7s;
}

.menu-right .mobile-nav-toggler .lines i:nth-child(1),
.menu-right .mobile-nav-toggler .lines i:nth-child(3) {
    width: 25px;
}

.menu-right .mobile-nav-toggler .lines i:nth-child(1) {
    margin-inline-start: auto;
}

.lang-h {
    color: var(--main-color);
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
    display: inline-block;
}

.overlay-img {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.overlay-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.navbar-collapse {
    /* display: flex; */
    flex-wrap: wrap;
    justify-content: space-between;
    /* max-height: 100%; */
    /* overflow-y: auto; */
}

.navbar-collapse .navigation {
    /* width: 50%; */
    flex: 0 0 auto;
}

.mobile-menu .menu-box .navigation li a:hover {
    /* color: #fff; */
    /* text-decoration: underline; */
}

.mobile-menu .menu-box .navigation li:last-child {
    margin: 0;
}

.mobile-menu .menu-box .menu-outer {
    height: 100%;
    max-height: 100%;
    overflow-y: auto;
}

.flex-h {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
}

.logo a {
    display: block;
    text-align: center;
}

.logo a img {
    max-height: 277.78px;
}

header .flex-h {
    margin-top: 84px;
}

.header-med .head-inner ul li a {
    text-transform: capitalize;
    display: inline-flex;
    align-items: center;
    -webkit-align-items: center;
    color: #fff;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    padding: 0;
}


.head-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    -webkit-align-items: center;
}

.logo-h {
    max-width: 194.9px;
    width: 100%;
    /* margin-inline-end: 47px; */
}

.logo-h a {
    display: block;
    width: 100%;
}

.header-med .head-inner ul li {
    position: relative;
}

.header-med .head-inner ul li.current-menu-item a,
.header-med .head-inner ul li a:hover,
.header-med .head-inner ul li .sub-menu li a:hover {
    color: var(--sec-color);
}

.header-med .head-inner ul li.menu-item-has-children>a::after {
    content: "\f107";
    font-family: 'Font Awesome 6 Pro';
    margin-inline-start: 12px;
    transition: all .4s;
    position: relative;
    display: inline-block;
}

.header-med .head-inner ul li .sub-menu {
    min-width: 206px;
    position: absolute;
    top: 100%;
    right: 0;
    display: block;
    background: #fff;
    box-shadow: 0px 0px 14px 0px #0000001A;
    border-radius: 6px;
    padding: 19px 9px;
    visibility: hidden;
    z-index: 99;
    transform: scale(1, 0);
    transform-origin: 0 0;
    transition: all 0.3s ease-out 0s;
    margin: 0;
}

.header-med .head-inner ul li .sub-menu li a {
    font-size: 15px;
    font-weight: 300;
    line-height: 22px;
    padding: 8px 0;
    display: block;
    color: var(--dark-color);
    border-bottom: 1px solid #E6E6E6;
    padding-inline-start: 20px;
}

.header-med .head-inner ul li .sub-menu li:first-child a {
    padding-top: 0;
}

.header-med .head-inner ul li .sub-menu li:last-child a {
    padding-bottom: 0;
    border: none;
}

.header-med .head-inner ul li:hover .sub-menu {
    transform: scale(1, 1);
    opacity: 1;
    visibility: visible;
}

.header-med .head-inner ul li.menu-item-has-children>a:hover::after {
    transform: rotate(180deg);
}

.head-inner .menu-left {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    gap: 32px;
}

.lang-h:hover {
    /* color: #fff; */
}

.mobile-nav-toggler .lines {
    display: block;
    width: 35px;
    overflow: hidden;
}

.mobile-nav-toggler .lines i {
    display: block;
    width: 53px;
    height: 4px;
    margin: 6.5px 0;
    transition: all .5s;
    position: relative;
    overflow: hidden;
}

.mobile-nav-toggler .lines ::after,
.mobile-nav-toggler .lines ::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background: #fff;
    transition: all .5s;
    top: 0;
}

.mobile-nav-toggler .lines ::after {
    transform: translateX(-50px);
    transition: all .3s;
}

.mobile-nav-toggler:hover .lines ::after {
    transform: none;
}

.mobile-nav-toggler:hover .lines ::before {
    transform: translateX(50px);
}

.mobile-nav-toggler .lines .line2::after {
    transition: all .5s;
}

.mobile-nav-toggler .lines .line3::after {
    transition: all .7s;
}

.mobile-nav-toggler .lines i:nth-child(1),
.mobile-nav-toggler .lines i:nth-child(3) {
    width: 25px;
}

.mobile-nav-toggler .lines i:nth-child(1) {
    margin-inline-start: auto;
}

.item.res-menu {
    display: none;
}

body.mobile-menu-visible {
    overflow: hidden;
}

.btn-mobile {
    margin-top: 30px;
}

.btn {
    outline: none;
    position: relative;
    border: none !important;
    padding: 8px 33px;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    min-width: 125px;
    background: var(--main-color);
    min-height: 45px;
    border-radius: 50px;
    color: #fff;
    text-transform: capitalize;
    font-size: 14px;
    font-family: 'arabotoBold';
    line-height: 22px;
    box-shadow: 0px 0px 24px 0px #F5F5FF;
    z-index: 1;
    font-weight: 400;
    transition: all .4s;
    gap: 20px;
}

header .btn {
    /* font-size: 15px; */
    padding: 8px 24px;
}

.btn::before,
.btn::after,
.btn span::before,
.btn span::after {
    content: "";
    position: absolute;
    top: 0;
    width: 25.25%;
    height: 0;
    background-color: var(--sec-color);
    transition: 0.5s ease-in-out;
    z-index: -1;
}

.btn::before {
    left: 0;
}

.btn::after {
    left: 50%;
}

.btn:hover::before,
.btn:hover::after,
.btn:hover span::before,
.btn:hover span::after {
    /* height: 80px; */
}

.btn span::before,
.btn span::after {
    top: auto;
    bottom: 0;
}

.btn span::before {
    left: 25%;
}

.btn span::after {
    left: 75%;
}

.nav-inner {
    /* margin-inline-start: auto; */
}

.search-box-btn.search-box-outer {
    color: #fff;
    font-size: 20.46px;
    font-weight: 900;
    line-height: 16px;
    cursor: pointer;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
}

/* End Header */

/* Start Banner-h */

.banner-block .row {
    min-height: 768.55px;
    align-items: center;
    -webkit-align-items: center;
}

.banner-block .overlay-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(184.57deg, rgba(0, 0, 0, 0) 3.65%, #000000 96.3%);
    height: calc(100% - 142px);
    top: auto;
    opacity: .4;
}

.text-banner {
    text-align: center;
    max-width: 576px;
    margin: 0 auto;
}

.text-banner h1 {
    color: #fff;
    margin: 0;
    font-family: 'arabotoBold';
    font-size: 48.45px;
    line-height: 76px;
}

.banner-slider {
    margin: 0 !important;
}

.banner-slider .slick-dots {
    bottom: 64px;
    position: absolute;
    z-index: 3;
}

.banner-slider .slick-dots li {
    width: auto;
    height: auto;
    margin: 0;
}

.banner-slider .slick-dots li button {
    width: 29px;
    height: 5px;
    background: #fff;
    margin: 0 6px;
    border-radius: 50px;
    padding: 0;
    transition: all .4s;
}

.banner-slider .slick-dots li.slick-active button {
    background: var(--sec-color);
}

.banner-slider .slick-dots li button::before {
    display: none;
}

.header-med .head-inner ul li .sub-menu li a::before {
    content: "\f104";
    font-family: 'Font Awesome 6 Pro';
    position: absolute;
    right: 0;
    top: 11px;
}

.header-med .head-inner ul li .sub-menu li:nth-child(1) a::before {
    top: 2px;
}

.banner-h .row {
    min-height: 617.72px;
    align-items: center;
    -webkit-align-items: center;
}

.sub-title {
    border: 1px solid #FFD7A4;
    padding: 3px 10px;
    color: #FFE1BA;
    font-weight: 400;
    font-size: 12.83px;
    line-height: 19px;
    display: inline-flex;
    border-radius: 50px;
    margin-bottom: 16px;
}

.text-banner p {
    font-family: 'arabotoLight';
    font-weight: 400;
    font-size: 16px;
    line-height: 27px;
    color: var(--main-color);
    margin-top: 10px;
}

.text-banner .btn {
    margin-top: 47px;
    background: #fff;
    color: #24242F;
}

.banner-h .overlay-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--main-color);
    opacity: 0.9;
}

.search-box-btn.search-box-outer i {
    transform: scaleX(-1);
    font-weight: 300;
}

.btn:hover,
.btn.btn-white:hover {
    background: var(--main-color);
    color: #fff;
}

/* End Banner-h */

/* Start Blogs-h */

.blogs-h {
    padding-block: 100px 80px;
    background: var(--bg-color);
}

.title {
    margin-bottom: 24px;
}

.title h3 {
    font-family: 'arabotoBold';
    color: #000;
    font-size: 30px;
    line-height: 45px;
    margin: 0;
}

.blog-block {
    margin: 10px 0;
}

.link-block {
    position: absolute;
    inset: 0;
    z-index: 3;
}

.blog-block .img {
    position: relative;
    height: 491px;
    border-radius: 20px;
    overflow: hidden;
}

.blog-block .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.blog-block .img .alert-block {
    background: rgb(255 255 255 / 60%);
    backdrop-filter: blur(60px);
    position: absolute;
    right: 0;
    top: 0;
    padding: 12px 26px;
    border-radius: 50px;
    margin: 28px;
    font-family: 'arabotoBold';
    font-size: 14px;
    line-height: 20px;
    color: #4E4E53;
}

.blog-block .details {
    padding-top: 41px;
}

.blog-block .details h3 {
    font-family: 'arabotoBold';
    margin-bottom: 12px;
    font-size: 23px;
    line-height: 34px;
    max-width: 90%;
    margin: 0 0 10px;
}

.blog-block .details p {
    color: #454545;
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    max-width: 98%;
}

.blog-block.small-block .img {
    height: 187.74px;
    border-radius: 17.21px;
}

.blog-block.small-block .img .alert-block {
    margin: 20px 15px;
}

@media (min-width: 1400px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1140px;
    }
}

.blog-block.small-block .details {
    padding-top: 15px;
}

.blog-block.small-block .details h3 {
    font-family: 'araboto';
    font-size: 16.34px;
    line-height: 15.64px;
    color: #222;
}

/* End Blogs-h */

/* Start News-h */

.news-h {
    background: var(--bg-color);
}

.news-h .row {
    background: #fff;
    border-radius: 40px;
    padding: 46px 23px;
}

.news-block {
    margin: 12px 0;
    background: #FAF9FF;
    border-radius: var(--radius);
    overflow: hidden;
    padding: 30px 14px 22px;
    height: calc(100% - 24px);
}

.news-block .img {
    height: 190.96px;
    border-radius: var(--radius);
    overflow: hidden;
}

.news-block .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.news-block .details {
    padding-top: 20px;
}

.date-h {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    gap: 5px;
    color: #454545;
    font-weight: 400;
    font-size: 13.39px;
    line-height: 22.6px;
}

.news-block .details h3 {
    color: #000;
    font-family: 'arabotoBold';
    font-size: 20.89px;
    line-height: 31px;
    margin: 12px 0;
}

.news-block .details p {
    color: #454545;
    font-weight: 400;
    font-size: 15.91px;
    line-height: 26.85px;
}

.btn-center {
    text-align: center;
    margin-top: 21px;
}

.btn.btn-white {
    box-shadow: 0px 0px 24px 0px #E9E9F9;
    background: #fff;
    color: #24242F;
}

/* End News-h */

/* Start Latest-h */

.latest-news-h {
    background: var(--bg-color);
    padding: 100px 0;
}

.news-block.news-flex-block {
    display: flex;
    padding: 20px 10px;
    padding-inline-end: 20px;
    margin: 0 0 14px;
    background: #fff;
}

.news-block.news-flex-block .icon {
    height: 190.96px;
    border-radius: var(--radius);
    overflow: hidden;
    width: 329.21px;
}

.news-block.news-flex-block .details {
    padding: 0;
    width: calc(100% - 329.21px);
    padding-inline-start: 16px;
}

.news-block.news-flex-block .icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.news-block.news-flex-block .details .date-h {
    margin-top: 12px;
}

.cat-sidebar {
    background: #FFFFFF;
    border-radius: 30px;
    padding: 22px 14px;
    padding-inline-end: 24px;
}

.cat-sidebar .sidebar-title {
    margin: 28px 0 23px;
    border-bottom: 1px solid #EEEEFE;
    padding-bottom: 16px;
}

.cat-sidebar .sidebar-title h3 {
    margin: 0;
    font-family: 'arabotoBold';
    color: #000;
    font-size: 21px;
    line-height: 31px;
}

.sidebar-list ul {
    padding-inline-start: 20px;
}

.sidebar-list ul li {
    list-style: disc;
    display: list-item;
    color: #000;
    margin: 3px 0;
    font-size: 18px;
    line-height: 29px;
}

.latest-cat {
    margin-top: 21px;
}

.latest-cat .cat-sidebar {
    display: flex;
    flex-wrap: wrap;
}

.latest-cat .cat-sidebar .item {
    width: 50%;
    flex: 0 0 auto;
    padding: 0 40px;
    border-inline-end: 1px solid #EEEEFE;
}

.latest-cat .cat-sidebar .item:last-child {
    border: none;
}

.sidebar-list ul li a {
    color: #000;
    margin: 3px 0;
    font-size: 18px;
    line-height: 29px;
    display: block;
}

.sidebar-list ul li a:hover {
    color: var(--main-color);
}


/* End Latest-h */

/* Start Footer */

.footer-top {
    padding-block: 51px 61px;
}

.logo-f {
    display: block;
    max-width: 117.9px;
}

.des-f {
    margin-block: 15px 25px;
}

.des-f p {
    color: #000;
    font-weight: 400;
    font-size: 16px;
    line-height: 27px;
}

.s-h {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.s-h a {
    display: flex;
}

.s-h a i {
    width: 32.05px;
    height: 30.77px;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    color: #2B2929;
    font-weight: 400;
    font-size: 13.9px;
    transition: all .4s;
    border-radius: 4px;
}

.s-h a i:hover {
    background: var(--main-color);
    color: #fff;
}

.foot-block h3 {
    font-family: 'arabotoBold';
    font-weight: 400;
    font-size: 16px;
    line-height: 27px;
    color: #000;
    margin-bottom: 9px;
}

.links-f ul {
    display: flex;
    flex-wrap: wrap;
}

.links-f ul li {
    width: 50%;
    flex: 0 0 auto;
    padding-inline-end: 10px;
}

.links-f ul li a {
    display: inline-block;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 26px;
}

.links-f ul li a:hover {
    color: var(--main-color);
}

.blogs-item-f .blog-item {
    width: 100%;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
}

.blogs-item-f {
    display: flex;
    flex-direction: column;
    gap: 11px 0;
}

.blogs-item-f .item {
    width: 100%;
}

.blogs-item-f .blog-item .img {
    width: 64px;
    height: 61px;
    border-radius: 6.36px;
    overflow: hidden;
}

.blogs-item-f .blog-item .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.blogs-item-f .blog-item .details {
    width: calc(100% - 64px);
    padding-inline-start: 15px;
}

.blogs-item-f .blog-item .details h3 {
    font-size: 15.89px;
    line-height: 23px;
    margin-bottom: 2px;
}

.blogs-item-f .blog-item .details .date-h {
    font-size: 11.93px;
    line-height: 20.13px;
}

.footer-bottom {
    border-top: 1px solid #EEEEFE;
    padding: 15px 0;
}

.footer-bottom .row {
    align-items: center;
    -webkit-align-items: center;
}

.copy-right p {
    color: #000;
    font-weight: 400;
    font-size: 16px;
    line-height: 27px;
}

.logo-comp {
    display: table;
    margin-inline-start: auto;
    max-width: 117px;
}

.all-latest .btn-center {
    margin-top: 43px;
}

/* End Footer */

/* Start Archive-page */



.all-pages {
    text-align: center;
}

.all-pages .pagination {
    direction: ltr;
    display: inline-flex;
    border: 1px solid rgb(103 103 103 / 40%);
    border-radius: 16px;
    padding: 21px;
    align-items: center;
    -webkit-align-items: center;
}

.all-pages .pagination .page-item .page-link {
    padding: 0;
    border: none;
    background: transparent;
    margin: 0 7px;
    color: #2C2C2C;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    opacity: .2;
}

.all-pages .pagination .page-item.active .page-link {
    opacity: 1;
    width: 32px;
    height: 32px;
    align-content: center;
    background: var(--main-color);
    color: #fff;
    border-radius: 8px;
    font-size: 20px;
    line-height: 31px;
}

.all-pages .pagination .page-item.prev-btn .page-link,
.all-pages .pagination .page-item.next-btn .page-link {
    border: 1px solid var(--main-color);
    padding: 3px 8px;
    border-radius: 8px;
    font-family: 'arabotoMed';
    color: var(--main-color);
    font-size: 16px;
    line-height: 26px;
    opacity: 1;
}

.all-pages .pagination .page-item.disabled {
    opacity: .3;
}

.all-pages .pagination .page-item.prev-btn .page-link {
    margin-right: 26px;
}

.all-pages .pagination .page-item.next-btn .page-link {
    margin-left: 26px;
}

.all-pages {
    margin-top: 40px;
}

.breadcrumb-h-h {
    height: 129px;
}

.breadcrumb-h-h .overlay-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--main-color);
    opacity: .9;
}

.body-inner {
    background: var(--bg-color);
    padding: 77px 0;
}

.archive-inner.row {
    background: #fff;
    margin: 0;
    border-radius: 40px;
    padding: 40px 8px;
}

.body-inner .cat-sidebar .sidebar-title {
    border: none;
    border-inline-start: 0.86px solid #6DE4EA;
    padding: 0;
    padding-inline-start: 21px;
}

.body-inner .cat-sidebar .item:first-child .sidebar-title {
    margin-top: 0;
}

.cat-sidebar .blogs-item-f {
    gap: 0;
}

.cat-sidebar .blogs-item-f .item {
    padding: 14px 0;
    border-bottom: 1px solid #EFEFEF;
}

.cat-sidebar .blogs-item-f .item:nth-child(1) {
    padding-top: 0;
}

.cat-sidebar .blogs-item-f .item .blog-item .img {
    width: 121.14px;
    height: 80.03px;
    border-radius: 11.26px;
}

.cat-sidebar .blogs-item-f .item .blog-item .details {
    width: calc(100% - 121.14px);
    padding-inline-start: 11px;
}

.cat-sidebar .blogs-item-f .item .blog-item .details h3 {
    font-family: 'arabotoBold';
    font-weight: 400;
    font-size: 13.98px;
    line-height: 26.9px;
}

/* End Archive-page */

/* Start Galley-page */

.gallery-block {
    height: 151.1px;
    overflow: hidden;
    margin: 17px 0;
    border-radius: 16.85px;
}

.gallery-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.gallery-block::before,
.gallery-block::after {
    content: "";
    position: absolute;
    inset: 0;
    transition: all .5s;
}

.gallery-block::before {
    background: var(--main-color);
    opacity: 0;
}

.gallery-block:hover::before {
    opacity: .7;
}

.gallery-block::after {
    content: "\f002";
    margin: auto;
    z-index: 2;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    font-size: 35px;
    color: #fff;
    font-family: 'Font Awesome 6 Pro';
    transform: scale(.5);
    opacity: 0;
}

.gallery-block:hover::after {
    opacity: 1;
    transform: none;
}

/* End Galley-page */

/* Start Single-page */

.single-inner .single-title {
    margin-bottom: 20px;
}

.single-inner .single-title>span {
    font-family: 'arabotoMed';
    font-size: 13px;
    line-height: 32.51px;
    display: inline-block;
}

.single-inner .single-title h1 {
    font-family: 'arabotoBold';
    font-weight: 400;
    font-size: 27.08px;
    line-height: 26.01px;
    margin: 12px 0 15px;
}

.single-inner .single-title ul {
    display: flex;
    align-items: center;
}

.single-inner .single-title ul li a {
    display: flex;
    font-family: 'arabotoLight';
    font-weight: 400;
    font-size: 13.96px;
    line-height: 21.67px;
    align-items: center;
    -webkit-align-items: center;
}

.single-inner .single-title ul li a::after {
    content: "|";
    color: #7D7D7D80;
    margin: 0 7px;
}

.single-inner .single-title ul li span {
    font-family: 'arabotoLight';
    font-weight: 400;
    font-size: 13.96px;
    line-height: 21.67px;
    color: #000;
    opacity: .5;
    display: inline-block;
}

.single-img {
    height: 399.07px;
    overflow: hidden;
    border-radius: 25.34px;
    margin-block: 17px 35px;
}

.single-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.single-content p {
    color: #000;
    font-weight: 400;
    font-size: 13px;
    line-height: 21.67px;
    opacity: .8;
    margin-bottom: 27px;
}

.single-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    -webkit-align-items: center;
    margin: 42px 0;
}

.single-s {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.single-s span {
    font-family: 'arabotoBold';
    font-weight: 400;
    font-size: 17.34px;
    line-height: 21.67px;
    color: #000;
    opacity: .8;
    margin-inline-end: 21px;
}

.single-s a {
    font-size: 28px;
    color: #00000080;
}

.single-tags {
    display: flex;
    justify-content: end;
    gap: 5px;
}

.single-tags a {
    background: #C4C4C480;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-width: 97.43px;
    min-height: 26.73px;
    border-radius: 50px;
    color: rgb(0 0 0 / 80%);
    font-size: 13px;
    line-height: 21.67px;
}

.single-af-be {
    display: flex;
    justify-content: space-between;
    background: #F5F5F5;
    border-radius: 18.58px;
    padding: 26px;
}

.single-af-be .nav-item {
    display: flex;
    gap: 12px;
    max-width: 267.83px;
}

.single-af-be .nav-item .img {
    height: 84.54px;
    border-radius: 9.51px;
    width: 70.2px;
    overflow: hidden;
}

.single-af-be .nav-item .details {
    width: calc(100% - 70.2px - 12px);
}

.single-af-be .nav-item .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.single-af-be .nav-item .details span {
    font-family: 'arabotoBold';
    font-weight: 400;
    font-size: 13.96px;
    line-height: 21.67px;
    color: rgb(0 0 0 / 50%);
}

.single-af-be .nav-item .details h3 {
    font-family: 'arabotoBold';
    font-weight: 400;
    font-size: 13.5px;
    line-height: 22.72px;
    color: #000;
    opacity: .8;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* number of lines to show */
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.single-af-be .nav-item.next-single {
    flex-direction: row-reverse;
    text-align: end;
}

.single-rat {
    margin: 50px 0;
}

.single-rat span.alert-block {
    display: none;
}

.single-rat .blog-block.small-block .img {
    height: 104.89px;
}

.form-group {
    margin-bottom: 8px;
}

.form-group .form-control {
    border: 0.72px solid #7D7D7D80;
    height: 40px;
    border-radius: 3.61px;
    padding: 0 13px;
}

.form-group textarea.form-control {
    height: 111.35px;
    padding: 13px;
}

.form-group .btn {
    margin-top: 10px;
}

.single-comments {
    margin-top: 41px;
}

.commet-item .user-name {
    display: flex;
    /* align-items: center; */
    /* -webkit-align-items: center; */
    background: #C4C4C44D;
    margin-bottom: 26px;
    padding: 15px;
    border-radius: 3.61px;
}

.commet-item .user-name .user-img {
    width: 53.46px;
}

.commet-item .user-name .user-img .icon {
    width: 53.46px;
    height: 53.46px;
    overflow: hidden;
    border-radius: 50%;
    margin-bottom: 4px;
}

.commet-item .user-name .user-img .icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.commet-item .user-name .user-img h3 {
    font-family: 'arabotoMed';
    font-weight: 400;
    font-size: 13px;
    line-height: 21.67px;
    color: #000;
    opacity: .8;
    margin: 0;
}

.commet-item .user-name .user-commet {
    width: calc(100% - 53.46px);
    padding-inline-start: 33px;
}

.commet-item .user-name .user-commet p {
    font-family: 'arabotoLight';
    font-weight: 400;
    font-size: 13.51px;
    line-height: 21.67px;
    color: #000;
    opacity: .8;
}

.commet-item .user-name .user-commet .flex-h {
    gap: 20px;
    margin-top: 8px;
}

.commet-item .user-name .user-commet .flex-h a {
    opacity: .5;
    font-weight: 400;
    font-size: 13px;
    line-height: 21.67px;
    color: #000;
}

.commet-item .user-name .user-commet .flex-h span {
    font-weight: 400;
    font-size: 13px;
    line-height: 21.67px;
    color: var(--main-color);
    opacity: .5;
}

/* End Single-page */

/* Start Contact-page */

.contact-inner {
    margin: 0 auto;
    max-width: 669px;
    background: #fff;
    border-radius: 20px;
    padding: 60px 32px;
}

.contact-inner .form-group {
    margin: 16px 0;
}

.contact-inner .form-group label {
    font-family: 'arabotoBold';
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #151515;
    margin-bottom: 29px;
}

.contact-inner .form-group .form-control {
    height: 50px;
    border-radius: 50px;
    background: #F6F6F6;
    padding: 0 22px;
    border: 1px transparent solid;
    transition: all .4s;
    overflow: hidden;
}

.contact-inner .form-group .form-control:focus {
    border-color: var(--main-color);
    box-shadow: none;
    background: #fff;
}

.iti {
    display: block;
}

.iti__selected-flag {
    border-start-end-radius: 50px;
    border-end-end-radius: 50px;
    direction: ltr;
}

.contact-inner .form-group textarea.form-control {
    height: 144.58px;
    border-radius: 20px;
    padding: 22px;
}

/* End Contact-page */

/* Start Privacy-page */

.privacy-inner {
    background: #FFFFFF;
    border-radius: 40px;
    padding: 60px 46px;
    margin-top: 48px;
}

.privacy-inner h3 {
    font-family: 'arabotoBold';
    font-weight: 400;
    font-size: 27px;
    line-height: 40px;
    color: #333F51;
    margin: 0 0 25px;
}

.privacy-inner p {
    margin: 25px 0;
    max-width: 755.58px;
    font-weight: 400;
    font-size: 16px;
    line-height: 27px;
    color: #556987;
}

/* End Privacy-page */

/* Start About-page */

.about-inner.row {
    margin: 0;
    background: #fff;
    border-radius: 40px;
    padding: 64px 15px 95px;
    align-items: center;
}

.about-img img {
    max-height: 449.16px;
    object-fit: contain;
}

.about-text {
    padding-inline-start: 10px;
}

.about-title {
    margin-bottom: 29px;
}

.about-title span {
    font-family: 'arabotoBold';
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #000;
}

.about-title h1 {
    font-family: 'arabotoBold';
    font-weight: 400;
    font-size: 55px;
    line-height: 60px;
    margin: 0;
}

.about-text p {
    font-weight: 400;
    font-size: 16px;
    line-height: 27px;
    color: #2B2B2B;
}

.about-more.row {
    padding-top: 42px;
}

.about-block {
    height: calc(100% - 20px);
    margin: 10px 0;
    background: #F0F0F0;
    border-radius: 11.39px;
    padding: 29px 19px;
}

.about-block .icon {
    width: 38.62px;
    height: 38.62px;
    line-height: 38.62px;
    margin-bottom: 32px;
}

.about-block h3 {
    font-family: 'arabotoBold';
    font-weight: 400;
    font-size: 25.4px;
    line-height: 34.18px;
    color: #000;
    margin-bottom: 10px;
}

.about-block p {
    font-weight: 400;
    font-size: 16px;
    line-height: 27px;
    color: #000;
}

.about-block ul {
    padding-inline-start: 20px;
}

.about-block ul li {
    display: list-item;
    list-style: disc;
    color: #000;
    font-weight: 400;
    font-size: 16px;
    line-height: 27px;
    margin: 3px 0;
}

form {
    direction: rtl;
}

/* End About-page */