:root {
	--pri-color: #2B2D39;
	--sec-color: #009ADE;
	--link-color: #009ADE;
	--spacing: 25px;
    --header-height:110px;
    --contact-items-height:70px;
}

html {
	scroll-behavior: smooth;
    overflow-y: scroll;
}

body {
	height: 100vh;
	color: var(--pri-color);
	font-family: "Rubik", "Tajawal", "sans-serif";
	background-color: #fff;
    font-size: 16px;
    /* -webkit-user-select: none;
    -webkit-touch-callout: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; */
}

a {
	color: var(--link-color);
    /* word-break: break-all; */
}

a:focus,
a:hover {
	color: var(--link-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 900;
}

.site-container {
	max-width: 1260px;
	margin: 0 auto;
	width: 100%;
	padding: 0 var(--spacing);
}

/*******Sec*******/
.site-sec {
	padding: 80px 0;
}
.site-sec-grey{
	background-color: var(--bg-color);
}
.site-sec-title {
	text-align: center;
	margin-bottom: 45px;
}
.site-sec-title > span {
    color: var(--sec-color);
    margin-bottom: 15px;
    display: block;
    font-size: 1.3rem;
}

.site-sec-title h2 {
    font-size: 2.1rem;
    font-weight: 800;
    line-height: 1.4;
    margin: 0;
    margin-bottom: 5px;
    color: var(--pri-color);
}

/* .site-sec-title h2 span {
    font-weight: 700;
    border-bottom: 4px solid var(--sec-color);
    padding-bottom: 5px;
} */

.site-sec-title p {
    margin: 0 auto;
    margin-top: 12px;
    max-width: 650px;
    width: 100%;
    line-height: 26px;
    opacity: 0.9;
    font-size: 1.1rem;
}
.site-sec-inner {
	padding: 35px 0 25px 0;
}
.site-sec-more-btn-con {
	text-align: center;
	margin-top: 40px;
}

.site-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--sec-color);
    background: transparent;
    border-radius: 50px;
    color: var(--sec-color);
    padding: 10px 30px;
    width: 100%;
    max-width: 180px;
    font-size: 1.1rem;
}

.site-btn:focus,
.site-btn:hover {
	background: var(--sec-color);
	text-decoration: none;
    color: #fff;
}

.site-inner-sec {
    margin-top: 40px;
}

.site-inner-sec h2 {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 20px;
}

.rtl .site-inner-sec > h2 {
}

/*
**Site Ham
*/

.site-ham-menu-con {
	position: relative;
	width: 36px;
	height: 36px;
}

.site-ham-menu {
	position: absolute;
	top: 0;
	left: 0px;
	z-index: 1;
	width: 28px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Hamburger Line */
.site-ham-menu > div {
	position: relative;
	flex: none;
	width: 100%;
	height: 2px;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease;
}

/* Hamburger Lines - Top & Bottom */
.site-ham-menu > div::before,
.site-ham-menu > div::after {
	content: "";
	position: absolute;
	z-index: 1;
	top: -8px;
	width: 100%;
	height: 2px;
	background: inherit;
}

/* Moves Line Down */
.site-ham-menu > div::after {
	top: 8px;
}

/* Toggler Animation */
.extra-menu-opend #site-extra-menu-btn .site-ham-menu > div,
.menu-opend .site-ham-menu > div {
	transform: rotate(135deg);
}

/* Turns Lines Into X */
.extra-menu-opend #site-extra-menu-btn .site-ham-menu > div:before,
.menu-opend .site-ham-menu > div:before,
.extra-menu-opend #site-extra-menu-btn .site-ham-menu > div:after ,
.menu-opend .site-ham-menu > div:after {
	top: 0;
	transform: rotate(90deg);
}

#site-main-menu-btn {
    display: none;
}

.site-wrapper-inner {
    padding-top: 94px;
}

/***Header***/
.site-header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 3;
	/* transition: height 0.4s ease; */
	transition: background-color 0.3s ease;
}
.site-header-w {
    position: relative;
}

.site-wrapper-inner .site-header{
	background-color: var(--pri-color);
}

.site-header-con {
    display: flex;
    height: var(--header-height);
    align-items: center;
    justify-content: space-between;
	transition: height 0.4s ease;
	position: relative;
    grid-gap: 20px;
}

.site-header-main {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
    height: 100%;
	grid-gap: 20px;
}

/*******site-logo*******/
.site-logo {
	/* transition: height 0.3s ease;
     */
    max-width: 270px;
    width: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-start !important;
    height: 100%;
    position: relative;
	transition: max-width 0.4s ease;
}

.site-logo img {
    height: 50px;
	transition: height 0.4s ease;
}

/*******site-navs*******/
.site-navs {
	--direction: left;
}
.site-navs ul {
	padding: 0;
	margin: 0;
	list-style: none;
	display: none;
}

.site-navs input[type="checkbox"] {
	display: none;
}

.site-navs li > span,
.site-navs a {
	color: #fff;
	text-transform: capitalize;
}

.site-navs > ul {
	display: flex;
	align-items: center;
	/*   justify-content: space-between; */
	/* position: relative; */
	grid-gap: 15px;
}

.site-navs > ul li {
	position: relative;
}

.site-navs > ul > li > ul {
	top: calc(100% + 30px);
}

.site-navs > ul > li:hover > ul {
	animation: animateSiteNavs 0.35s ease 0.01s forwards;
}

.site-navs > ul > li > span,
.site-navs > ul > li > a {
    font-weight: 500;
    display: flex;
    text-decoration: none;
    height: var(--header-height);
    align-items: center;
    transition: color 0.5s ease;
}

.site-navs > ul ul li > span,
.site-navs > ul ul a {
	display: block;
	padding: 7px 24px 7px 15px;
	font-size: 0.95rem;
    color: var(--pri-color);
}

/* .site-navs > ul > li > input[type="checkbox"] + a {
	padding-right: 18px;
} */

.site-navs ul input[type="checkbox"] + span:after,
.site-navs ul input[type="checkbox"] + a:after {
	content: "";
	width: 8px;
	height: 8px;
	border-left:2px solid #fff;
	border-bottom:2px solid #fff;
	margin: -3px 8px 0px 8px;
	transform: rotate(-45deg);
	transition: border-color 0.5s ease;
}

.site-navs ul ul input[type=checkbox]+a:after, .site-navs ul ul input[type=checkbox]+span:after {
    position: absolute;
    border-left: 1px solid #000;
    border-bottom: 1px solid #000;
    right: 11px;
    top: 50%;
    transform: rotate(-135deg);
}

.site-navs ul ul input[type=checkbox]:checked+a:after, .site-navs ul ul input[type=checkbox]:checked+span:after {
    transform: rotate(-45deg);
}


.site-navs > ul ul a:hover {
	text-decoration: none;
}

.site-navs > ul ul {
	position: absolute;
	top: 100%;
	z-index: 2;
	background: white;
	width: 100%;
	min-width: 230px;
	max-width: 260px;
	box-shadow: 0 0 12px rgb(0 0 0 / 10%);
	border-radius: 3px;
	
}

.site-navs > ul > li > ul ul {
	position: absolute;
	top: 0;
	left: 100%;
}

.site-navs > ul > li ul li:hover {
	background: #eee;
}

.site-navs > ul li:hover > ul {
	display: flex;
	flex-direction: column;
}

@keyframes animateSiteNavs {
	to {
		opacity: 1;
		top: 80%;
	}
}

.site-navs .site-menu-active > span,
.site-navs .site-menu-active > a{
    color: var(--link-color);
    opacity: 1 !important;
}



.site-navs-home > ul > li:first-child > span,
.site-navs > ul > .site-menu-active > a,
.site-navs > ul > .site-menu-active > span,
.site-navs > ul > li:hover > a {
	color: var(--sec-color) !important;
}

.site-navs > ul > .site-menu-active > a:after,
.site-navs > ul > .site-menu-active > span:after,
.site-navs > ul > li:hover > a:after {
	border-color: var(--sec-color) !important;
}



.site-navs ul.site-navs-sub-full {
    width: 100% !important;
    max-width: none !important;
    /* display: flex; */
    left: 0;
	flex-direction: row !important;
	padding: 20px 20px 20px 20px;
}

.site-navs ul.site-navs-sub-full li:hover {
    background: none !important;
}

.site-navs ul.site-navs-sub-full > li {
    flex:1;
}

.site-navs ul.site-navs-sub-full > li > a,
.site-navs ul.site-navs-sub-full > li > span {
    font-size: 0.96rem;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.4rem;
}

.site-navs ul.site-navs-sub-full > li > ul a,
.site-navs ul.site-navs-sub-full > li > ul span {
    padding: 2px 15px;
    opacity: 0.8;
    font-weight: 500;
    font-size: 0.96rem;
}

.site-navs ul.site-navs-sub-full > li:hover > a ,
.site-navs ul.site-navs-sub-full > li:hover > span {
    color: var(--link-color);
	/* background-color: #f2f2f2; */
}

.site-navs ul.site-navs-sub-full > li > span > span,
.site-navs ul.site-navs-sub-full > li > a > span {
    display: block;
	font-weight: 300;
	font-size: 0.8rem;
	color: #555;
	text-transform: capitalize;
}

.site-navs ul.site-navs-sub-full a:hover {
	opacity: 1;
    color: var(--link-color);
}

.site-navs ul.site-navs-sub-full input[type="checkbox"] + span:after ,
.site-navs ul.site-navs-sub-full input[type="checkbox"] + a:after {
    display: none;
}

.site-navs ul.site-navs-sub-full ul {
    display: flex;
    position: relative !important;
    max-width: none !important;
    flex-direction: column !important;
    min-width: auto !important;
    left: auto !important;
    box-shadow: none;
}

.site-search-lang {
    list-style: none;
    display: flex;
    grid-gap: 20px;
    padding: 0;
    margin: 0;
}

.site-search-lang a{
    font-weight: 500;
	text-decoration: none;
}

.site-search-lang a:hover {
    color: var(--sec-color);
}

.site-search-btn svg {
    width: 18px;
    height: 18px;
}
.site-search-btn svg path{
   fill:#fff;
}

.site-lang-link {
    font-family: 'Tajawal' !important;
}

.site-search-lang a:hover svg path{
    fill: var(--sec-color);
}

.small-header .site-header {
	position: fixed;
	box-shadow: 0px -2px 10px 0px rgb(0 0 0 / 10%);
    background-color: var(--pri-color);
}

.small-header .site-header-con {
    height: 90px;
}

.small-header .site-navs > ul > li > a {
    /* color: var(--pri-color); */
    height: 100px;
}

/* .small-header .site-navs ul input[type="checkbox"] + a:after {
    border-color: var(--pri-color);
} */

.small-header .site-logo {
    max-width: 200px;
}

.small-header .site-logo img{
    height: 45px !important;
}

.site-call-now-btn a{
    height: 40px !important;
    padding: 0 25px;
    background: var(--sec-color);
    border-radius: 50px;
    color: white !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    direction: ltr;
    margin: 0 20px;
}

.site-navs > ul > li:hover > a.site-call-now-btn:hover{
    filter: brightness(1.07);
}

/**************site-main-slider**************/
.tb-slider{
    position: relative;
    min-height: 500px;
    max-height: 950px;
    height: 100vh;
    /* padding-bottom: 56.25%; */
}

.tb-slider-con {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.tb-slide{
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.tb-slide-active{
    z-index: 2;
}

.tb-slide-prev{
    z-index: 1 !important;
}

.tb-slide-img,
.tb-slide-reveal {
    height: 100%;
}

.tb-slide-img {
    width: 100vw;
    position: relative;
    display: flex;
    align-items: center;
}

.tb-slide-img:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color:rgb(26 28 36 / 90%);
    z-index: 1;
}

.tb-slide-reveal {
    width: 0%;
    overflow: hidden;
}

.tb-slide-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transform-origin: right top;
}

.tb-slide:nth-of-type(even) .tb-slide-img img{
    transform-origin: left top;
}

.tb-slide-active .tb-slide-reveal img{
    /* animation: scaleSliderImg calc(var(--tb-duration) + 2s) ease forwards; */
}

@keyframes scaleSliderImg {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.05);
    }
}

.tb-slide-contents {
    position: absolute;
    width: 100%;
    height: 100%; 
    top: 0;
    z-index: 1;
    left: 0;
    display: flex;
    align-items: center;
}

.tb-slide-content {
    /* display: none; */
}

.tb-slide-details {
    position: relative;
    color: white;
    z-index: 2;
    width: 100%;
	max-width: 800px;
    display: none;
}

.tb-slide-details h1 {
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: capitalize;
}

.tb-slide-details span {
    transform: translateY(100%);
    position: relative;
    display: block;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.tb-slide-details h1,
.tb-slide-details p{
    position: relative;
    overflow: hidden;
}

.tb-slide-details p {
    opacity: 0.9;
	margin: 20px 0 25px 0;
    max-width: 600px;
    width: 100%;
    line-height: 1.4rem;
}

.tb-slide-details a {
    font-size: 1.1rem;
	font-weight: 500;
	padding: 10px 30px;
    opacity: 0;
    transform: translateY(60%);
    transition: opacity 0.3s ease,transform 0.3s ease;
    color: var(--sec-color);
    border: 2px solid var(--sec-color);
    background: transparent;
}

.tb-slide-details a:hover {
    color: #fff;
    background: var(--sec-color);
}

.tb-slide-details-active{
    display: block;
}

.tb-slide-details-animate a,
.tb-slide-details-animate span{
    /* display: block; */
    transition-duration: 0.7s !important;
    transform: translateY(0%);
    opacity: 1;
}

.tb-slide-details-animate p span{
    /* display: block; */
    transition-delay: 0.3s !important;
}
.tb-slide-details-animate a{
    transition-delay: 0.5s !important;
}

.tb-slider-dots-con {
    position: absolute;
    bottom: 50px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 20px;
 
}

ul.tb-slider-dots {
    display: flex;
    list-style: none;
    grid-gap: 14px;
    z-index: 1;
    transition: opacity .5s;
    padding: 0;
    margin: 0;

}

ul.tb-slider-dots li {
    width: 18px;
    height: 18px;
    cursor: pointer;
	display: flex;
    border: 2px solid #fff;
    border-radius: 50%;
    transition: background-color 0.3s, border-color 0.3s;
}

.tb-slider-dot-active{
    pointer-events: none;
    border: 2px solid var(--sec-color) !important;
    background: var(--sec-color);
}
/*
ul.tb-slider-dots li span {
    height: 12px;
    width: 12px;
    background: rgba(255,255,255,0.3);
    border-radius: 3px;
	display: block;
    position: relative;
    flex: 1;
}

 ul.tb-slider-dots li span::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    border-radius: 3px;
	display: block;
    width: 0%;
    background: var(--sec-color) !important;
} */



/* .tb-slider-dot-active span::after{
    animation: width var(--tb-duration) forwards linear;
} */

.tb-slider-dot-hide{
    opacity: 0;
}

@keyframes width {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

/**************site-carousel**************/
.site-carousel {
    position: relative;
    --carousel-height: 500px;
    padding-bottom: 60px;
}

.site-carousel-item {
    position: relative;
    height: var(--carousel-height);
}

.site-carousel-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.site-carousel-img > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.site-carousel-con {
    position: absolute;
    bottom: 0;
    padding: 20px 25px 25px 25px;
    background: rgba(0,0,0,.4);
    width: 100%;
    color: white;
    grid-gap: 25px;
    align-items: center;
}

.site-carousel-info h2 {
    font-weight: 900;
    font-size: 1.4rem;
    margin-bottom: -1px;
}

.site-carousel .tns-controls > button {
    position: absolute;
    top: calc(var(--carousel-height) / 2 - 22px);
    /* width: 100%; */
    z-index: 2;
    left: 0;
    border: none;
    height: 40px;
    width: 44px;
    color: white;
    background: rgba(0,0,0,.2);
}
.site-carousel .tns-controls > button:hover {
    background: var(--sec-color);
}

.site-carousel .tns-controls > button:last-child {
    right: 0;
    left: auto;
}

.site-carousel .tns-controls > button svg {
    height: 30px;
    width: 30px;
}

.site-carousel .tns-controls > button svg path {
    fill: white;
}

.site-carousel-con .site-btn {
    height: 40px;
    max-width: 160px;
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.site-carousel .tns-nav {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    grid-gap: 10px;
}

.site-carousel .tns-nav button {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #ccc;
    border: none;
}

.site-carousel .tns-nav button:focus{
    border: none;
}

.site-carousel .tns-nav button.tns-nav-active {
    background: var(--sec-color);
}

/**************site-cards**************/
.site-cards {
    display: grid;
    justify-content: center;
    flex-wrap: wrap;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    /* align-items: center; */
    justify-content: center;
    gap: 40px;
    /* grid-template-columns: 1fr 1fr 1fr; */
    padding-bottom: 10px;
    grid-auto-rows: 1fr;
}

.site-cards-inner-4,
.site-cards-4 {
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.site-card {
    background: #fff;
    display: flex;
    flex-direction: column;
    box-shadow: 0px 10px 17px 0px rgba(161, 124, 2, 0.10);
    height: 100%;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.site-cards-home-services .site-card::after{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgb(0 0 0 / 40%);
}

.site-card-img {
    padding-bottom: 56.5%;
    position: relative;
    overflow: hidden;
    background: var(--sec-color);
}

.site-cards-home-services .site-card-img {
    padding-bottom: 64.5%;
}


.site-card-img img {
    width: 100%;
    position: absolute;
    height: 100%;
    /* height: 200px; */
    object-fit: cover;
	flex-shrink: 0;
	flex-grow: 0;
    top: 0;
    left: 0;
}

.site-card-img svg {
    width: 40%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50% , -50%);
}

.site-card-img svg path{
    fill: #222;
}

.site-card-video-icon {
    width: 56px !important;
    height: 56px;
    z-index: 1;
    opacity: 0.8;
}
.site-card-video-icon polygon{
    fill: #fff;
    stroke: #fff;
    stroke-width: 65px;
}

/*
.site-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
	flex-shrink: 0;
	flex-grow: 0;
}
*/
.site-card-con {
    padding: var(--spacing);
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    justify-content: space-between;
}

.site-cards-home-services .site-card-con {
    position: absolute;
    bottom: 0;
    width: 100%;
    z-index: 1;
}

.site-card-info {
    margin-bottom: 20px;
}

.site-card h2 {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--pri-color);
    margin: 0;
    line-height: 1.8rem;
}

.site-cards-home-services .site-card h2  {
    color: #fff;
}

.site-cards-home-services .site-card a  {
    color: #B5FAFF;
    font-size: 1.1rem;
}

.site-card span {
    color: var(--link-color);
    font-size: 0.94rem;
}

.site-card p {
    font-weight: 400;
    color: #666;
    margin: 0;
    margin-top: 10px;
    line-height: 26px;
}

.site-card .site-btn {
    /* flex-grow: 0; */
    /* flex-shrink: 0; */
    padding: 10px 30px;
    max-width: 170px;
    margin: 0 auto;
    width: 100%;
    background: transparent;
    border: 2px solid var(--sec-color);
    color: #1a1a1a;
    font-weight: 600;
}

.site-card-btn {
    /* border-top: 1px solid #fdc445; */
    font-weight: 700;
    font-size: 16px;
    padding: 10px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    border: 1px solid #fdc445;
    max-width: 210px;
    width: 100%;
    margin: 10px auto;
}

.site-card-btn:hover{
    background: var(--sec-color);
    color: #fff;
    text-decoration: none;
}

.site-card .site-btn:hover {
    background: var(--sec-color);
    color: #fff;
}

.rtl .site-btn {
    font-weight: 600;
    font-size: 0.95rem;
}

/* .site-cards-small .site-card{
    min-width: 220px;
} */
/*
.site-cards-small img {
    height: 170px;
}
*/
.site-cards-small .site-card-con {
    padding: 22px 20px 0 20px;
}

.site-cards-small h2 {
    font-weight: 600;
    font-size: 1.05rem;
    line-height: 1.7rem;
}

.site-cards-small .site-btn {
    margin: 20px auto 25px auto;
    font-size: 0.95rem;
    padding: 6px 26px;
}

.site-cards-shadow .site-card{
    /* box-shadow: 0 1px 11px rgb(0 0 0 / 13%), 0 1px 6px rgb(0 0 0 / 1%); */
    /* box-shadow: 0 1px 6px rgb(0 0 0 / 10%), 0 1px 2px rgb(0 0 0 / 4%); */
    box-shadow: 0 1px 13px -6px rgb(0 0 0 / 15%), 0 1px 2px rgb(0 0 0 / 4%);
    transition: box-shadow 0.4s ease;
}

.site-cards-shadow .site-card:hover{
    box-shadow: 0 14px 46px -8px rgb(0 0 0 / 16%), 0 1px 6px rgb(0 0 0 / 1%);
    /* box-shadow: 0 1px 6px rgb(0 0 0 / 10%), 0 1px 2px rgb(0 0 0 / 4%); */
    /* box-shadow: 0 1px 13px -6px rgb(0 0 0 / 15%), 0 1px 2px rgb(0 0 0 / 4%); */
}

.site-cards-h {
    grid-template-columns: 1fr 1fr;
    overflow: visible !important;
}

.site-cards-h .site-card {
    flex-direction: row;
}

.site-cards-h .site-card-img {
    width: 185px;
    padding-bottom: 0;
}

.site-cards-h .site-card-con{
    padding: 18px;
    justify-content: center;
    display: flex;
    flex-direction: column;
}

.site-cards-h h2 {
    font-weight: 600;
    font-size: 1rem;
}

.site-card time {
    font-size: 0.9rem;
    opacity: 0.7;
    display: block;
    margin-top: 4px;
}

.site-cards-h .site-btn{
    margin: 0 !important;
    margin-top: 10px !important;
    padding: 5px 25px !important;
    align-self: baseline;
}

.site-cards-center {
    text-align: center;
}

.site-search-page > h1 {
    font-size: 1.5rem;
    font-weight: 600;
}

.site-search-page > h1 span {
    font-weight: 300;
    color: var(--link-color);
    font-size: 1.3rem;
}

.site-search-page-res-count {
    color: #777;
    margin-bottom: 30px;
    margin-top: 4px;
}

.site-cards-search {
    flex-direction: column;
}

.site-cards-search .site-btn {
    background: transparent;
    color: var(--link-color);
    font-weight: 400;
    font-size: 0.95rem;
    padding: 8px 0 !important;
}

.site-cards-search .site-btn:hover {
    text-decoration: underline;
}

.site-search-keyword-highlight {
    background: var(--sec-color);
    color: inherit !important;
}

/**************site-pagination**************/
.site-pagination {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.site-pagination > ul {
    display: flex;
    list-style: none;
    grid-gap: 12px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.site-pagination > ul > li > a, .site-pagination > ul > li > span {
    color: var(--link-color);
    border: 1px solid var(--link-color);
    padding: 0 15px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-pagination>ul>li>span {
    background: var(--link-color);
    color: #fff;
}

.site-pagination > ul > li > a:hover {
    background: var(--link-color);
    color: #fff;
    text-decoration: none;
}

span.page-numbers.dots {
    background: white;
    color: var(--link-color);
}

/**************site-feature**************/
.site-feature {
    padding: 150px 0;
    text-align: center;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
	position: relative;
	color: white;
}

.site-feature::after {
    content:"";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 0;
	background-color: rgba(0, 0, 0, 0.6);
}

.site-feature .site-container {
    position: relative;
    z-index: 1;
}

.site-feature h2 {
    font-size: 2.5rem;
    font-weight: 800;
}

.site-feature p {
    max-width: 653px;
    margin: 0 auto;
    margin-top: 7px;
    font-weight: 400;
    color: #eee;
}

.site-feature a {
    margin: 20px auto 0px auto;
}

.site-feature-1 {
    background-image: url(../images/bg-1.jpg);
}

.site-feature-items {
    display: flex;
    max-width: 1100px;
    margin: 20px auto 0px auto;
}

.site-feature-item {
    flex: 1;
}

.site-feature-item p {
    max-width: 430px;
    margin-bottom: 10px;
    /* background: #eee; */
}

/**************footer**************/
.site-gc {
    display: flex;
    /* grid-gap: var(--spacing); */
    grid-gap: 100px;
    justify-content: center;
}

.site-gc-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    /* justify-content: space-between; */
    grid-gap: var(--spacing);
    align-items: center;
    text-align: center;
    max-width: 450px;
    background: var(--bg-color);
    padding: var(--spacing);
}

.site-gc-img {
    height: 70px;
    display: flex;
}

.site-gc-img img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    max-width: 250px;
}

.site-gc-info {
    flex: 1;
}

.site-gc-info h2 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.site-gc-info p {
    font-size: 0.95rem;
    color: #545454;
}

.site-gc-btn {
    display: flex;
}

.site-gc-btn a {
    padding: 10px 30px;
    background: var(--pri-color);
    border-radius: 50px;
    color: white;
}

/**************footer**************/
.site-footer {
	background-color: var(--pri-color);
	position: relative;
}

.site-footer-top {
    padding-top: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    grid-gap: 20px;
}

.site-footer-ls {
    display: flex;
    grid-gap: 40px;
}

.site-footer-logo {
   width: 100%;
   max-width: 300px;
}

.site-footer-logo img{
    width: 100%;
 }

ul.site-social-links {
    display: flex;
    grid-gap: 18px;
    padding: 0;
    margin: 0;
    list-style: none;
    align-items: center;
}

.site-footer ul.site-social-links {
    padding-top: 15px;
}

ul.site-social-links a {
    display: flex;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: var(--sec-color);
    color: var(--pri-color);
}

ul.site-social-links a:hover {
	color: var(--sec-color);
}

ul.site-social-links svg {
    width: 26px;
    height: 26px;
}

.site-social-link-path {
    fill: var(--pri-color);
}


.site-footer-links {
    display: flex;
    justify-content: center;
    padding: 40px 0;
    position: relative;
    flex-direction: column;
    align-items: center;
}

.site-footer-links ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    grid-gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.site-footer-links ul a {
    color: var(--sec-color);
    font-size: 0.98rem;
    line-height: 28px;
}

.site-footer-links ul a:hover {
	text-decoration: none;
}

.site-footer-copyright {
    display: flex;
    align-items: center;
    text-align: center;
    color: #ffffff;
    font-size: 0.9rem;
    opacity: 0.8;
    padding: 12px 0;
    justify-content: center;
    background: rgba(0,0,0,0.38);
}

/********site search**********/
.site-search {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,0);
    display: none;
    align-items: center;
	z-index: 99;
	transition: background-color 0.3s ease;
	padding-bottom: 100px;
    /* justify-content: center; */
}

.site-search-form {
    width: 100%;
    height: 80px;
    display: flex;
	position: relative;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.site-search-form::after{
    content: "";
	position: absolute;
	top: 100%;
	height: 3px;
	width: 0%;
	background-color: var(--sec-color);
	transition: width 0.4s ease;
}

.site-search-form input {
    flex: 1;
    border: none;
	background-color: transparent;
	font-size: 2.25rem;
    color: #ffffff;
    caret-color: var(--sec-color);
	width: 100%;
}

.site-search-form input:focus {
	outline: none;
}

.site-search-form button {
    width: 70px;
    border: none;
	background-color: transparent;
	flex-grow: 0;
	flex-shrink: 0;
}

.site-search-form button:focus {
	outline: none;
}

.site-search-form button svg {
    width: 26px;
}

.site-search-form button svg path {
	fill: #fff;
    opacity: 0.6;
}

.site-search-form input::placeholder {
	font-size: 1.8rem;
	font-weight: 300;
	opacity: 0.8;
	padding: 0 10px;
}

.site-search span {
    display: block;
    text-align: right;
    color: white;
    font-size: 0.95rem;
    margin-top: 10px;
    opacity: 0;
	transition: opacity 0.5s ease;
	font-weight: 300;
}

.site-search-close {
    width: 40px;
    height: 40px;
    position: absolute;
    right: 50px;
    top: 50px;
	cursor: pointer;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.4s ease;
    transform: rotate(-45deg);
}

.site-search-close::before,
.site-search-close::after {
    content: "";
    width: 100%;
    height: 4px;
    background: var(--sec-color);
    position: absolute;
	top: calc(50% - 2px);
    transform: rotate(45deg);
}

.site-search-close::after {
    transform: rotate(-45deg);
}

.site-search-animate .site-search-close {
    opacity: 1;
    transform: rotate(0deg);
}

.site-search-show .site-search{
	display: flex;
}

.site-search-show .site-wrapper {
    position: relative;
    overflow: hidden;
	transition: transform 0.5s;
    width: 100%;
    height: 100vh;
}

.site-search-animate .site-wrapper {
    transform: scale3d(0.8,0.8,1);
}

.site-search-animate .site-search{
	background-color: rgba(0,0,0,0.9);
}

.site-search-animate .site-search-form {
    opacity: 1;
}

.site-search-animate .site-search-form::after{
	width: 100%;
}

.site-search-animate .site-search span {
    transition-delay: 0.35s;
    opacity: 0.7;
}

/***********/
.site-main-banner {
}
.site-main-banner-con {
    height: 450px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    align-items: center;
}

.site-main-banner-con-page{
    height: 450px !important;
}

.site-main-banner-con:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
	background:rgba(0,0,0,.6);
}

.site-main-banner-con .site-main-banner-img,
.site-main-banner-con .site-main-banner-img > img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
	object-position: center;
}

.site-main-banner-con .site-main-banner-img > img {
    animation: scale 10s forwards ease-in-out;
}

.site-main-banner-details {
    padding: 20px 0;
    color: white;
    z-index: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.site-main-banner-details h1 {
	margin: 0;
    margin-bottom: 15px;
    font-weight: 900;
    line-height: 2.4rem;
    animation: slidefade 0.8s forwards ease;
    text-align: center;
    max-width: 750px;
}

.site-main-banner-details p {
	text-align: center;
    font-size: 0.9rem;
    max-width: 650px;
    margin: 0 auto;
    font-weight: 300;
    opacity: 0;
    color: #ccc;
    animation: slidefade 0.8s 0.15s forwards ease;
}

.site-post-controls {
    list-style: none;
    display: flex;
    grid-gap: 10px;
    padding: 0;
    margin: 0;
    /* animation: slidefade 0.8s 0.3s forwards ease; */
}

.site-post-controls a{
    display: flex;
    grid-gap: 6px;
    align-items: center;
    font-size: 0.85rem;
    color: var(--pri-color);
}

.site-post-controls a svg {
    width: 18px;
}

.site-post-controls a svg path {
    fill: var(--sec-color);
}

.site-post-controls a:hover{
    opacity: 1;
	text-decoration: none;
}

.site-title {
    margin: 5px 0 15px 0;
}


/********site main*******/
main.site-main {
    margin: 30px 0;
}

.site-content {
    flex: 1;
    width: 100%;
    background: white;
    /* padding:25px 0; */
    height: max-content;
    line-height: 29px;
}

.site-content > p:first-child {
    margin-top: -9px;
}

/******html*******/
.site-content-html {
    font-weight: 300;
}

.site-content-html-ss {
    margin-bottom: 20px;
}

.site-content-html img {
	max-width: 100%;
	width: auto;
	margin: 0 auto;
	display: inherit;
    margin-bottom: 20px;
    height: auto;
    /* border: 10px solid white;
    box-shadow: 0 2px 10px rgb(0 0 0 / 15%); */
}

.site-content-html strong {
    font-weight: 500;
}

.rtl .site-content-html strong {
    font-weight: 600;
}

.site-content-html p {
    margin-bottom: 1rem;
    line-height: 1.8rem;
    text-align: justify;
}

.site-content-html p:last-child {
    margin: 0 !important;
}


/* .site-content-html ul > li > ul, .site-content-html ol > li > ul {
    margin-top: 10px !important;
} */


/* 
.site-content-html ul{
    list-style: disc !important;
    padding-left: 40px;
}

.site-content-html ul > li::marker{
    color: var(--link-color);
    font-size: 150%;
} */

.site-quote{
    padding-left: 40px;
    background-color: #f8f8f8;
    border-left: 3px solid var(--link-color);
}

.site-content-html table {
    /* margin:30px 0; */
    margin:0px 0 30px 0;
    padding: 0;
    width: 100%;
    box-shadow: 0 3px 12px rgb(0 0 0 / 10%);
    border-left: 1px solid #ddd;
    border-top: 1px solid #ddd;
}

.site-content-html table td{
    padding:  0.95rem 1rem;
}

.site-content-html table th,
.site-content-html table th strong{
    padding: 0.8rem 1rem;
    background: #e4ecf9;
    color: #222;
    font-size: 1rem;
    font-weight: 600;
}

.site-content-html table th strong {
    padding: 0;
}

.site-content-html table td{
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    font-weight: 300;
}
.site-content-html table td strong {
    /* font-weight: 600; */
}

.site-content-html table th{
    border-right: 1px solid #cccfdd;
    border-bottom: 1px solid #cccfdd;
}

.site-content-html .table-striped tbody tr:nth-of-type(even){
    background: #f8f8f8;
}

.site-content-html .force-header tbody tr:first-child{
    background-color: var(--link-color);
    color: white;
}

.site-content-html .force-header tbody tr:first-child td{
    border-right: 1px solid var(--sec-color);
    border-bottom: 1px solid var(--sec-color);
}

.site-content-html table.table-style-gray th {
    border-right: 1px solid #dbdbdb;
    border-bottom: 1px solid #dbdbdb;
    background: #efefef;
    color: #222;
}

.table-responsive{
    overflow-x: auto;
}

.site-content-html blockquote{
    background: #f8f8f8;
    padding: 36px;
    border-left: 5px solid var(--link-color);
    position: relative;
    padding-left: 66px;
    padding-right: 66px;
    text-align: justify;
}

.site-content-html blockquote,
.site-content-html blockquote p{
    font-style: italic;
}

.site-content-html blockquote:before,
.site-content-html blockquote:after {
    position: absolute;
    color: #ccc;
    font-size: 3.6rem;
    font-family: serif;
    font-weight: bold;
    width: 34px;
    height: 16px;
    line-height: 36px;
}

.site-content-html blockquote:before {
	content: '\201C';
    left: 20px;
    top: 30px;
}

.site-content-html blockquote:after {
	content: '\201D';
    right: 22px;
    bottom: 30px;
}

.site-content-html embed {
	width: 100% !important;
}


.site-responsive-embed ,
.site-responsive-video {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 56.25%;
    background: #f8f8f8;
}

.site-responsive-embed {
    padding-top: 100%;
}

.site-responsive-embed embed,
.site-responsive-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

.table-responsive + h2 {
    margin-top: 0px;
}

/******site-share-btns*******/
.site-share-header {
    margin-top: 30px!important;
    font-weight: 300;
    line-height: 1.4rem;
    font-size: 1rem!important;
    margin-bottom: 16px!important;
    color: #555;
}
.site-share-btns {
    display: flex;
    grid-gap: 10px;
    flex-wrap: wrap;
}

.site-share-btns > a {
    display: flex;
    background: var(--link-color);
    color: white;
    align-items: center;
    border-radius: 40px;
    text-decoration: none;
    position: relative;
}

.site-share-btns > a:hover .site-share-btn-icon{
    filter: brightness(95%);
}

.site-share-btns > a .site-share-btn-icon {
    /* padding: 3px 6px;
    background: rgba(255, 255, 255, 0.15); */
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-share-btns > a svg {
    width: 20px;
}

.site-share-btns > a svg path {
    fill: white;
}

.site-share-btns > a .site-share-btn-label {
    font-size: 0.87rem;
    line-height: 0;
    position: absolute;
    padding: 14px 10px;
    background: white;
    top: -8px;
    color: #343434;
    transform: translate(-50%, -100%);
    left: 50%;
    box-shadow: 0 1px 5px rgb(0 0 0 / 15%);
    border-radius: 3px;
    display: none;
    white-space: nowrap;
}

.site-share-btns > a:hover .site-share-btn-label{
    display: block;
}


.site-share-btn-linkedin {
    background: #0077b5 !important;
}

.site-share-btn-facebook {
    background: #4867aa !important;
}

.site-share-btn-whatsapp {
    background: #25d366 !important;
}

.site-share-btn-twitter {
    background: #1da1f2 !important;
}

.site-share-btn-email {
    background: #ea4335 !important;
}


/*****accordion*****/
.site-accordion {
    margin-bottom: 25px;
    border-bottom: 1px solid #e5e5e5;
}
.site-accordion-item-header {
    padding: 16px 25px;
    background: #f8f8f8;
    border: 1px solid #e5e5e5;
    border-bottom: none;
    cursor: pointer;
    font-weight: 500;
    font-size: 1.1rem;
    text-transform: capitalize;
    position: relative;
    padding-right: 50px;
}

.site-accordion-item-header::after {
    content: "";
    width: 8px;
    height: 8px;
    border-left: 2px solid var(--pri-color);
    border-bottom: 2px solid var(--pri-color);
    transition: transform 0.3s ease;
    transform: rotate(-45deg);
    display: block;
    position: absolute;
    right: 25px;
    top: calc(50% - 2px);
    margin-top: -4px;
}

.rtl .site-accordion-item-header {
    padding-right: 25px;
    padding-left: 50px;
}

.site-accordion-item-header h2 {
    font-size: 1.15rem;
    line-height: 2rem;
    margin: 0;
}

.site-accordion-item-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
}

.site-accordion-item-content {
    padding: 25px;
    border: 1px solid #eee;
    border-bottom: none;
}

.site-accordion-expand .site-accordion-item-header::after{
    transform:rotate(-224deg)
}

.site-accordion-expand .site-accordion-item-body{
    max-height: 5000px;
    transition: max-height 1s ease-in-out;
}

.rtl .site-accordion-item-header::after {
    right: auto;
    left: 25px;
    margin-top: -3px;
}

/*****Animation*****/
/* .animate {
    animation: scale 1.5s both;
  }
   */
@keyframes scale {
    0% {
        transform: scale(1.0);
    }
    100% {
        transform: scale(1.05);
    }
}

@keyframes slidefade {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.site-ref {
    font-style: italic !important;
    font-size: 0.95rem !important;
    color: #777 !important;
}

.site-l-style {
    margin-bottom: 10px;
}

.site-desc {
    margin-bottom: 10px;
    color: #777;
    font-size: 0.95rem;
}


/*****btn******/
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f2f2f2;
    border-radius: 5px;
    color: #000;
    font-weight: 500;
    padding: 7px 20px;
}

.btn:focus,
.btn:hover{
    text-decoration: none;
    background: #eee;
    color: var(--pri-color);
}

.btn-primary {
    background: var(--sec-color);
    color: #fff;
}

.btn-primary:focus,
.btn-primary:hover {
    color: var(--pri-color);
    filter: brightness(0.95);
}

/*****site-gallery******/
.site-gallery-w {
    padding: 30px 0 60px 0;
    position: relative;
    background: var(--pri-color);
}

.site-gallery-title {
    font-size: 2rem;
    color: white;
    margin: 0;
    margin-bottom: 31px;
}

/* .site-gallery {
    display: grid;
    width: 100%;
    grid-gap: 30px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    position: relative;
    z-index: 1;
} */

.site-gallery > a {
    /* flex: 1; */
    /* align-items: center; */
    display: flex;
    /* flex-direction: column; */
    position: relative;
}

.site-gallery > a > span {
    position: relative;
    padding-bottom: 64.5%;
    display: block;
    
}


.site-gallery > a img {
    position: absolute;
    width: calc(100% - 20px);
    /* border: 10px solid var(--sec-color);
    box-shadow: 0 10px 16px rgb(0 0 0 / 13%); */
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 10px;
}

.site-gallery-con .tns-controls > button {
    position: absolute;
    top: 50%;
    /* width: 100%; */
    z-index: 2;
    left: 0;
    border: none;
    height: 40px;
    width: 44px;
    color: white;
    background: rgba(255,255,255,.2);
}

.site-gallery-con .tns-controls > button:hover {
    background: var(--sec-color);
}

.site-gallery-con .tns-controls > button:last-child {
    right: 0;
    left: auto;
}

.site-gallery-con .tns-controls > button svg {
    height: 30px;
    width: 30px;
}

.site-gallery-con .tns-controls > button svg path {
    fill: white;
}

.site-gallery-con-con .site-btn {
    height: 40px;
    max-width: 160px;
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.site-gallery-con .tns-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    grid-gap: 10px;
}

.site-gallery-con .tns-nav button {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #ccc;
    border: none;
}

.site-gallery-con .tns-nav button:focus{
    border: none;
}

.site-gallery-con .tns-nav button.tns-nav-active {
    background: var(--sec-color);
}


.site-img-frame{
    display: inline-block;
	padding: 20px;
	border-width: 10px;
	border-style: solid;
	border-color: #2F2D2D #434040 #4F4C4C #434040;
	background: #f7f2ee;
    box-shadow: 0 14px 28px rgb(0 0 0 / 25%), 0 10px 10px rgb(0 0 0 / 22%);
    position: relative;
	overflow: hidden;
}

.site-img-frame::before{
    content: "";
	position: absolute;
	top: -175px;
	right: -20%;
	width: 400px;
	height: 400px;
	-webkit-transform: rotateZ(-40deg);
	-moz-transform: rotateZ(-40deg);
	-o-transform: rotateZ(-40deg);
	transform: rotateZ(-40deg);
	background-image: -webkit-linear-gradient(rgba(255,255,255,.4), rgba(255,255,255,0));
	background-image: -moz-linear-gradient(rgba(255,255,255,.4), rgba(255,255,255,0));
	background-image: -o-linear-gradient(rgba(255,255,255,.4), rgba(255,255,255,0));
	background-image: linear-gradient(rgba(255,255,255,.4), rgba(255,255,255,0));
}

.site-img-frame img{
    border-width: 2px;
	border-style: solid;
	border-color: #BBBAB4 #C7C7BF #E5E4DF #C7C7BF;
	box-shadow:  0 -1px 1px rgba(0,0,0,.1), 0 1px 1px 1px rgba(255,255,255,.7);
    margin: 0;
}

.site-pl {
    padding-left: 25px;
}

.rtl .site-pl {
    padding-left: 0;
    padding-right: 25px;
}

.site-pr {
    padding-right: 25px;
}

/*****404******/
.site-wrapper-404 {
    display: flex;
    flex-direction: column;
    min-height: 700px;
    background: white;
    height: 100vh;
}
.site-404 {
    flex: 1;
    display: flex;
    align-items: center;
}

.site-404-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 70px 0;
    text-align: center;
}
.site-404-icon {
    margin-bottom: 3px;
}

.site-404-icon svg {
    width: 200px;
}

.site-404-icon img {
    width: 100%;
    max-width: 400px;
}

.site-404-main h2 {
    font-size: 1.4rem;
    margin-bottom: 9px;
}

.site-404-main p {
    color: #888;
    margin-bottom: 20px;
}

.site-404-search-form {
    display: flex;
    width: 100%;
    max-width: 320px;
    border: 1px solid #dbdbdb;
    border-radius: 51px;
    overflow: hidden;
}

.site-404-search-form input:focus,
.site-404-search-form input {
    flex: 1;
    border: none;
    padding-left: 20px;
    outline: none;
}

.rtl .site-404-search-form input {
    padding-left: 0;
    padding-right: 20px;
}

.site-404-search-form input[type="search"]::-webkit-search-cancel-button {
    --webkit-appearance: none;
    height: 1em;
    width: 1em;
    border-radius: 50em;
    opacity: 0;
    pointer-events: none;
}
  
.site-404-search-form input[type="search"]:focus::-webkit-search-cancel-button {
    opacity: .3;
    pointer-events: all;
}

.site-404-search-form button {
    width: 60px;
    height: 46px;
    border: none;
    background: transparent;
    outline: none;
}

.site-404-search-form button svg {
    width: 20px;
}

.site-404-search-form button svg path {
    fill: #777;
}


/*****arabic rtl******/
.rtl {
	height: 100vh;
	color: var(--pri-color);
	font-family: "Tajawal", "sans-serif";
    direction: rtl;
    text-align: right;
    font-size: 17px;
}


/* .site-logo {
    transform: skewX(30deg);
}

.site-logo svg {
    transform: skewX(-30deg);
} */


.rtl .site-logo::before {
    left: 99%;
    right: auto;
}

.rtl .site-navs {
    --direction: left;
    font-family: inherit;
}

.rtl .site-navs > ul ul {
    text-align: right;
}

.rtl .site-navs > ul ul li > span,
.rtl .site-navs > ul ul a {
    padding: 10px 15px 10px 24px;
}

.rtl .site-navs > ul > li > span,
.rtl .site-navs > ul > li > a {
    font-size: 1rem;
    font-weight: 600;
}

.rtl .site-navs ul.site-navs-sub-full > li > span > span,
.rtl .site-navs ul.site-navs-sub-full > li > a > span {
    font-size: 0.78rem;
    font-family: inherit;
}

.rtl ul.tb-slider-dots li span::after {
    right: 0;
    left: auto;
}

.rtl .tb-slide-details {
    max-width: 1000px;
}

.rtl .tb-slide-details h1 {
    font-size: 2.5rem;
}

.rtl .tb-slide-details p {
    max-width: 700px;
    line-height: 1.8rem;
}

.rtl .tb-slide-details a {
    font-size: 1rem;
    font-weight: 500;
}


.rtl .site-footer-links ul a {
    font-size: 0.95rem;
    font-weight: 500;
}

.rtl .site-search-close {
    right: auto;
    left: 50px;
}

.rtl .site-search span {
    text-align: left;
}

.rtl .site-main-banner-details ul a {
    font-weight: 500;
}

.rtl .site-main-banner-details h1,
.rtl .site-content-html h2 {
    line-height: 2.2rem;
}

.rtl .site-content-html p {
    margin-bottom: 1rem;
    line-height: 30px;
}

.rtl .site-content-html blockquote {
    border-left: none;
    border-right:5px solid var(--link-color);
}

.rtl .site-footer-logo svg {
    width: 165px;
}

.rtl .site-logo svg {
    width: 180px;
}

.rtl .site-content-html blockquote:before {
    content: '\201D';
    left: auto;
    right: 25px;
}

.rtl .site-content-html blockquote:after {
    right: auto;
    content: '\201C';
    left: 17px;
}

/***********************/
.site-cookie-law {
    position: fixed;
    bottom: 0;
    background: rgb(0 0 0 / 90%);
    left: 0;
    padding: 16px 0 20px 0;
    box-shadow: 0px 0px 12px rgb(0 0 0 / 15%);
    z-index: -1;
    color: white;
    width: 100%;
    transition: transform 0.4s ease;
    transform: translateY(100%);
}

.site-cookie-law-show {
    z-index: 9999999;
    transform: translateY(0%);
}

.site-cookie-law h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 4px;
}
.site-cookie-law-con {
    display: flex;
}
.site-cookie-law-con p {
    margin: 0;
    line-height: 20px;
    color: #b5b5b5;
    font-size: 0.9rem;
}
.rtl .site-cookie-law-con p {
    line-height: 24px;
}
.site-cookie-law-btns {
    display: flex;
    grid-gap: 20px;
    padding-left: 20px;
}
.rtl .site-cookie-law-btns {
    padding-left: 0;
    padding-right: 20px;
}
.site-cookie-law-btns button {
    background: transparent;
    border: 2px solid var(--link-color);
    padding: 0px 30px;
    flex-shrink: 0;
    flex-grow: 0;
    height: 43px;
    color: var(--link-color);
    font-weight: 400;
    border-radius: 3px;
}

.site-cookie-law-btns button.site-cookie-law-active-btn {
    background: var(--link-color);
    color: white;
}

.site-cookie-law-btns button:hover{
    filter: brightness(1.2);
}

* > h4:first-child {
    margin-top: 0;
}

/************/
.site-post-details {
    display: flex;
    grid-gap: 15px;
    padding: 0;
    margin: 0;
    margin-bottom: 25px;
    color: #999;
    align-items: center;
    font-size: 0.95rem;
}

.site-post-details li {
    display: flex;
    grid-gap: 6px;
    align-items: center;
}

.site-post-details svg {
    width: 24px;
    margin-top: -2px;
}

.site-post-details svg path{
    fill:#999;
}




.otgs-development-site-front-end {
    display: none;
}

.site-lang-switcher {
    position: fixed;
    z-index: 999;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    display: none;
}

.site-lang-switcher a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pri-color);
    box-shadow: -4px 0px 16px rgb(0 0 0 / 15%);
}

.site-lang-switcher a.wpml-ls-current-language {
    background: var(--sec-color);
    color: white;
    pointer-events: none;
}

.site-contact-items {
    display: flex;
    justify-content: center;
    position: fixed;
    bottom: 0;
    z-index: 999;
    width: 100%;
    height: var(--contact-items-height);
    transform: translateY(100%);
    transition: transform 0.4s ease , box-shadow 0.4s ease;
}

.site-contact-item-con {
    background: var(--pri-color);
    flex: 1;
    display: flex;
    justify-content: center;
}

.site-contact-item {
    width: 100px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 10px;
    text-decoration: none;
    justify-content: center;
}

.site-contact-item:hover {
    background: #000;
}

.site-contact-item svg {
    width: 18px;
    margin-bottom: 10px;
}

.site-contact-item svg path{
    fill: var(--sec-color);
}

.site-contact-item-text {
    line-height: 14px;
    font-size: 0.9rem;
    color: var(--sec-color);
    
}

.site-contact-item-list {
    position: absolute;
    background: var(--pri-color);
    transform: translateY(100%);
    list-style: none;
    padding: 0;
    transition: transform 0.4s ease;
    z-index: -1;
}

.site-contact-item-list li {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    border-bottom: 1px solid rgb(255 255 255 / 21%);
    color: var(--sec-color);
    /* color: white; */
}
.site-contact-item-list li:hover {
    background: #2a2a2a;
}

.site-contact-item-list li a:hover {
    text-decoration: none;
}

.site-contact-item-con:hover .site-contact-item-list{
    transform: translateY(-100%);
}

.small-header .site-contact-items {
    box-shadow: -7px 0 16px 1px rgb(0 0 0 / 16%);
    transform: translateY(0);
}

.site-slogan {
    background: #f6f6f6;
    padding: 60px 0;
    text-align: center;
    font-size: 1.35rem;
    font-weight: 600;
    line-height: 2.5rem;
}

.site-slogan p {
    max-width: 940px;
    margin: 0 auto;
    text-align: center;
}

.site-google-map {
    height: 400px;
    position: relative;
}

.site-google-map iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.site-form-msgs-success{
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.5);
    width: 100%;
    height: 100%;
    z-index: 9;
    padding: 20px;
    align-items: center;
    justify-content: center;
}

.site-form-msgs-success h2 {
    color: #77de18;
}

.site-form-msgs-success-popup {
    width: 100%;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white;
    padding: 25px;
    border-radius: 10px;
}

.site-form-msgs-success-check {
    width: 60px;
    height: 60px;
    background: #77de18;
    margin-top: -54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-form-msgs-success-check svg {
    width: 45px;
}

.site-form-msgs-success-check svg path {
    fill: white;
}

.site-form-msgs-success h2 {
    margin: 20px 0 4px 0;
}

.site-form-msgs-success-popup button {
    max-width: 160px;
    width: 100%;
    height: 42px;
    border: none;
    background: var(--pri-color);
    color: white;
    font-size: 1.2rem;
    border-radius: 5px;
}

.site-form-msgs-success-popup button:hover{
    filter: brightness(0.9);
}

.site-form {
    display: grid;
    grid-gap: 25px;
    flex-wrap: wrap;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.site-form-control {
    /* max-width: 216px; */
    border: 1px solid #ccc;
    /* display: flex; */
    outline: none;
    position: relative;
}

.site-form-control select,
.site-form-control textarea,
.site-form-control input {
    height: 46px;
    width: 100%;
    border: none;
    padding: 0 15px;
}

.site-form-control select:focus,
.site-form-control textarea:focus,
.site-form-control input:focus {
    outline: none;
}

.site-form-control textarea {
    height: 120px;
    padding: 15px;
}

.site-form-btn {
    margin-top: 24px;
}

.site-form-btn input,
.site-form-btn button {
    width: 100%;
    height: 55px;
    border: none;
    background: var(--sec-color);
    color: #fff;
    /* font-weight: 600; */
    text-transform: uppercase;
    max-width: 200px;
    font-size: 1.1rem;
    border-radius: 5px;
}
.site-form-btn input:hover,
.site-form-btn button:hover {
    background:var(--pri-color);
    color: #fff;
}

/*********site-form-file***********/
.site-form-file {
    padding: 0 14px;
    height:46px;
    width: 100%;
    font-size: 0.9rem;
    border-radius: 3px;
    position: relative;
    display: flex;
    align-items: center;
}

.site-form-file input {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    opacity: 0;
    z-index: 1;
}

.site-form-file > label {
    padding: 0;
    margin: 0;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    padding-right: 20px;
}

.site-form-control-icon {
    position: absolute;
    right: 0;
    top: 0;
    pointer-events: none;
    z-index: 0;
    width: 50px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
    
.site-form-control-icon svg {
   width: 18px;
   height: 18px;

}


.site-name-abbr {
    display: flex;
}
.site-name-abbr select {
    width: 76px;
    padding: 0 8px;
}

.site-msg-error {
    color: #ff7373;
    margin-bottom: 2px;
}

.site-msg-error:last-child {
    margin-bottom: 20px;
}

.site-form-loader {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 60%);
    top: 0;
    left: 0;
    /* display: flex; */
    align-items: center;
    justify-content: center;
    z-index: 6;
    display: none;
}


.lds-ripple {
display: inline-block;
position: relative;
width: 80px;
height: 80px;
}
.lds-ripple div {
position: absolute;
border: 4px solid #fff;
opacity: 1;
border-radius: 50%;
animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
.lds-ripple div:nth-child(2) {
animation-delay: -0.5s;
}
@keyframes lds-ripple {
0% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 0;
}
4.9% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 0;
}
5% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 1;
}
100% {
    top: 0px;
    left: 0px;
    width: 72px;
    height: 72px;
    opacity: 0;
}
}
/**********/
.site-extra-menu {
    position: absolute;
    width: 100%;
    left: 0;
    top: 100%;
    background: var(--pri-color);
    transform: translateY(-100%);
    transition: transform 0.4s ease;
}

.extra-menu-opend .site-extra-menu {
    transform: translateY(0%);
}

.site-extra-menu-con {
    display: flex;
    grid-gap: 20px;
}

.site-extra-menu-con > div {
    flex: 1;
}

.site-extra-menu-list {
    padding: 70px 0;
    color: white;
}

.site-extra-menu-list ul{
    padding: 0;
    margin: 0;
    list-style: none;
}

.site-extra-menu-list a{
    color: rgb(185, 185, 185);
}

.site-extra-menu-list h2{
   margin-top: 0;
}

.site-extra-menu-img {
    width: 50%;
    position: absolute;
    right: 0;
    height: 100%;
}

.site-extra-menu-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/**********/
.grid-1 {
    display: flex;
    flex-direction: column;
    grid-gap: 25px;
}
.grid-2 {
    display: grid;
    grid-gap: 25px;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}
.site-contact-form-con {
    display: flex;
    width: 100%;
    grid-gap: 25px;
}

.site-contact-form {
    flex: 1;
    position: relative;
}

.site-contact-form > form {
    display: flex;
    grid-gap: 25px;
    flex-direction: column;
    width: 100%;
    position: relative;
}

.site-contact-info {
    flex-shrink: 0 !important;
    width: 100%;
    max-width: 450px;
    padding: 0 20px;
}

.site-contact-info-item {
    display: flex;
    /* margin-bottom: 10px; */
}

.site-contact-info-item .site-contact-info-img {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--sec-color);
    margin-right: 20px;
    font-size: 1.2rem;
    flex-shrink: 0;
    flex-grow: 0;
}

.site-contact-info-item .site-contact-info-img svg{
    width: 22px;
    height: 22px;
}

.site-contact-info-item .site-contact-info-img svg path{
    fill: white;
}

.site-contact-info-content label {
    /* font-weight: 900;
    font-size: 1.1rem; */
    margin-bottom: 5px;
}
.site-contact-info-content p {
    font-weight: 900;
}

.site-form-con2 {
    position: relative;
}

/********/
.site-page-sn {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-gap: 25px;
}

.site-gallery-2 {
    grid-gap: 25px;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.site-gallery-item {
    position: relative;
    width: 100%;
}

.site-gallery-item > span {
    padding-bottom: 56.25%;
    position: relative;
    display: block;
    width: 100%;
}

.site-gallery-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
}

.site-about-us-sec {
    padding: 50px 0;
}

.site-about-us-sec-con {
    display: flex;
    grid-gap: 30px;
}

.site-about-us-sec-img {
    width: 400px;
    flex-grow: 0;
    flex-shrink: 0;
}

.site-about-us-sec-img img {
    width: 100%;
    height: auto;
}

.site-about-us-sec-details h2 {
    margin-top: 0;
}

/****product gallery******/
.tbpg{
	position: relative;
	overflow: hidden;
    direction: ltr;
    flex-shrink: 0;
    flex-grow: 0;
}

.tbpg-items {
	height: 400px;
    display: flex;
    flex: 1;
	transition: transform 0.5s ease;
}

.tbpg-item {
    flex: 1;
	display: flex;
    align-items: center;
    justify-content: center;
	background: #858585;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.tbpg-item img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    /* object-fit: contain; */
}

.tbpg-item-hide img{
    opacity: 0;
}

.tbpg-thumbs {
    position: relative;
    display: grid;
    flex-wrap: wrap;
    grid-gap: 15px;
    grid-template-columns: repeat(auto-fit, minmax(60px, 90px));
    padding: 15px 0;
	width: 100%;
    max-width: 900px;
    margin: 0 auto;
	/* justify-content: center; */
}
.rtl .tbpg-thumbs {
    direction: rtl;
}

.tbpg-thumb {
    position: relative;
    padding-top: 100%;
	user-select: none;
	opacity: 0.5;
	transition: opacity 0.3s ease;
    filter: grayscale(1);
    /* transform: scale(1); */
}

.tbpg-thumb-active{
	opacity: 1;
	pointer-events: none;
    filter: grayscale(0);
    /* transform: scale(1.15); */
}

.tbpg-thumb img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    object-position: center center;
}

/*viewer*/
.tbpg-viewer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 999999;
}

.tbpg-viewer-controls {
    position: absolute;
    top: 0;
    right: 0;
    height: 50px;
    z-index: 3;
}

.tbpg-viewer-items {
    /* width: 100%; */
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    /* transition: transform 0.5s ease; */
}


.tbpg-viewer-prev-btn,
.tbpg-viewer-next-btn {
    position: absolute;
    width: 50px;
    height: 50px;
    background: white;
    top: calc(50% - 25px);
    left: 0;
    cursor: pointer;
    z-index: 3;
    transition: opacity 0.5s ease;
}

.tbpg-viewer-next-btn {
    left: auto;
    right: 0;
}

.tbpg-viewer-item {
    /* flex: 1; */
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
    width: 100%;
    height: 100%;
    position: relative;
    /* position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: 1; */
}

.tbpg-viewer-transition .tbpg-viewer-items {
    transition: transform 0.5s ease;
}

/* .tbpg-viewer-transition .tbpg-viewer-prev-btn,
.tbpg-viewer-transition .tbpg-viewer-next-btn{
    pointer-events: none;
    opacity: 0;
} */


.tbpg-viewer-item-active{
    /* opacity: 1; */
    z-index: 2;
}

.tbpg-viewer-item-prev {
    left: -100%;
}

.tbpg-viewer-item-next {
    left: 100%;
}

.tbpg-viewer-item img {
    user-select: none;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    pointer-events: none;
    /* transition: opacity 0.5s ease; */
}

.tbpg-viewer-img-transition{
    transition: width 0.5s ease,height 0.5s ease,left 0.5s ease,top 0.5s ease;
}

/* .tbpg-viewer-item-transition img{
    opacity: 0;
} */

.tbpg-viewer-img-zoom-in{
    position: absolute;
    max-width: initial !important;
    max-height: initial !important;
}

/* .tbpg-viewer-disable{this.#galleryViewer
    pointer-events: none;
} */


.tbpg-viewer-disable .tbpg-viewer-prev-btn,
.tbpg-viewer-disable .tbpg-viewer-next-btn {
    pointer-events: none;
    opacity: 0;
}

.tbpg-viewer-disable .tbpg-viewer-controls{
    pointer-events: none;
}

.tbpg-viewer-open-btn {
    display: none;
}

/********************/
#tbpg-1,
#tbpg-2{
	width: 600px;
	/* height: 400px; */
}
.site-product-main {
    display: flex;
    grid-gap: 20px;
}

.site-product-info h1 {
    margin-top: 0;
}

.site-product-btn{
    font-weight: 700;
    font-size: 16px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    border: 1px solid #fdc445;
    max-width: 210px;
    width: 100%;
    margin-top: 25px;
}

.site-product-btn:hover {
    background: var(--sec-color);
    color: #fff;
    text-decoration: none;
}

.site-content-product {
    border-top: 2px solid var(--sec-color);
    margin-top: 20px;
}

.site-cards-suppliers h2{
    text-align: center;
}

.site-cards-suppliers .site-card-img img {
    opacity: 0.8;
}

/********profile************/
.site-profile-bg {
	height: 250px;
	background-color: #f1f8fb;
	background-image: url(../images/suppliers.jpg);
	background-position: bottom;
	background-size: cover;
	position: relative;
	background-attachment: fixed;
}

.site-profile-details {
	display: flex;
	grid-gap: 20px;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100%;
	margin-top: -100px;
	position: relative;
}

.site-profile-img {
	width: 200px;
	height: 200px;
	border-radius: 50%;
	overflow: hidden;
	flex-grow: 0;
	flex-shrink: 0;
	border: 6px solid #ffffff;
	box-shadow: 0px 8px 17px rgb(0 0 0 / 16%);
}

.site-profile-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.site-profile-info {
	/* margin-top: 12px; */
	text-align: center;
	max-width: 900px;
}

.site-profile-info h1 {
	font-size: 2rem;
	letter-spacing: 0px;
}

.site-profile-info p {
	/* color: #555; */
}

/************/
.site-card-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
}


/***why***/
.site-why-con {
    overflow: hidden;
    position: relative;
}

.site-why {
    display: flex;
}

.site-why > div {
    width: 50%;
    position: relative;
}
.site-why > div::after{
    content: "";
    width: 50vw;
    position: absolute;
    background-color: var(--pri-color);
    height: 100%;
    right: 100%;
    z-index: -1;
    top: 0;
}

.site-why-img::after {
    right: auto !important;
    left: 0;
    background-image: url(../images/why-sulaiman-al-bassam.jpg);
    background-size: cover;
    background-position: center;
}

.site-why-info {
    padding: 100px 0;
    background: var(--pri-color);
    color: white;
    padding-right: 30px;
}

.site-why-info .site-sec-title{
    text-align: inherit;
}
.site-why-info .site-sec-title span{
    font-size: 1.3rem;
    color: var(--sec-color);
}
.site-why-info .site-sec-title h2{
    color: white;
    margin-top: 10px;

    font-size: 2.1rem;
    font-weight: 800;
    line-height: 1.4;
    /* margin: 0;
    margin-bottom: 5px; */
}

.site-why-info p{
    margin: 30px 0 15px 0;
    text-align: inherit;
    line-height: 30px;
    font-size: 1rem;
    opacity: 0.8;
}

/* .site-why-info .site-btn{
    background: var(--pri-color);
    color: white;
}

.site-why-info .site-btn:hover{
    filter: brightness(0.9);
} */

/****breadcrumb***/
.site-breadcrumb-con {
    padding: 15px 0;
    background: #f3f3f3;
}
.site-breadcrumb {
    /* margin-bottom: 20px; */
}
.site-breadcrumb ul{
    list-style:none;
    display:flex;
    padding:0;
    margin:0;
    font-size:.95rem;
    align-items:center;
    flex-wrap:wrap;
    line-height:2rem
 }
 .site-main-banner,.site-partners .site-accordion-item,main.site-main{
    /* margin-bottom:30px */
 }
 .site-breadcrumb ul a{
    position:relative;
    display:flex;
    align-items:center
 }
 .site-breadcrumb ul a:after{
    content:"";
    width:8px;
    height:8px;
    border-left:2px solid var(--link-color);
    border-bottom:2px solid var(--link-color);
    margin:0 10px;
    transform:translateX(-3px) rotate(-135deg);
    transition:border-color .5s
 }

 /******/
 .site-main-con {
    display: flex;
    gap: 40px;
}

.site-sidebar > h2 {
    margin: 0;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.site-list > ul {
    padding: 0;
    padding-left: 20px;
    line-height: 1.8rem;
}

.site-sidebar {
    width: 300px;
}

.rtl .site-breadcrumb ul a:after, .rtl .site-sidebar-menu-open>a .site-sidebar-menu-btn::after {
    transform: rotate(45deg);
}

.site-form-title-contact h1 {
    margin-top: 0px;
}

/***/
.tb-tabs {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tb-tabs-item {
    padding: 20px;
    background: #eceef1;
    border-radius: 9px;
}

.tb-tabs-header {
    display: flex;
    gap: 25px;
    align-items: center;
}

.tb-tabs-img {
    flex-grow: 0;
    flex-shrink: 0;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
}

.tb-tabs-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tb-tabs-info {
    flex: 1;
}

.tb-tabs-info h2 {
    margin-top: 10px;
}

.tb-tabs-info > span {
    opacity: 0.7;
    font-size: 1.1rem;
    font-weight: 500;
}

.tb-tabs-contact {
    margin-top: 10px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.tb-tabs-contact-item {
    display: flex;
    gap: 10px;
}

.tb-tabs-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
}

.tb-tabs-body div{
    margin-top: 20px;
    padding: 20px;
    background: #fff;
}

.tb-tabs-item-active .tb-tabs-body{
    max-height: 5000px;
    transition: max-height 1s ease-in-out;
}

.tb-tabs-btn {
    padding: 8px 25px;
    background: var(--sec-color);
    border-radius: 22px;
    color: white;
    flex-grow: 0;
    flex-shrink: 0;
    display: flex;
    gap: 8px;
    cursor: pointer;
}

.tb-tabs-btn svg {
    width: 14px;
    transition: transform 0.3s ease;
}

.tb-tabs-item-active .tb-tabs-btn svg{
    transform: rotate(-180deg);
}

.tb-tabs-btn svg path{
    fill: white;
}

.site-navs > ul ul::after{
   content: "";
   position: absolute;
   height: var(--scrolbarHeight);
   width: 5px;
   top: var(--scrolbarTop);
   right: 2px;
   border-radius: 2px;
   background: rgb(204 204 204 / 38%);
   pointer-events: none;
   /* display: none; */
}
